.content {
    max-width: 1100px;
    margin: 0 auto;
}

/* 主体颜色 */
:root {
    --background-color: #409EFF;
    --bgColor: #F4F4F4;
    --text-deep: #494949;
    --text-shallow: #727272;
    --text-color-grey: #999999;
    --deep-background: #f9f9f9;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--background-color);
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .2) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .2) 0, hsla(0, 0%, 100%, .2) 75%, transparent 0, transparent);
}

body {
    background-color: var(--bgColor);
}

a:hover {
    color: var(--background-color);
}

/* 背景颜色 */
.bgColorWhite {
    background-color: white;
}

.bgColorDefault {
    background-color: var(--bgColor);
}

#loading {
    background-color: var(--background-color);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px;
    animation: loading-center-absolute 1s infinite;

}

.object {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    float: left;
    border-radius: 50% 50% 50% 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.object:nth-child(2n+0) {
    margin-right: 0px;

}

#object_one {
    animation: object_one 1s infinite;
}

#object_two {
    animation: object_two 1s infinite;
}

#object_three {
    animation: object_three 1s infinite;
}

#object_four {
    animation: object_four 1s infinite;
}

@keyframes loading-center-absolute {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes object_one {
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes object_two {
    50% {
        transform: translate(-20px, 20px);
    }
}

@keyframes object_three {
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes object_four {
    50% {
        transform: translate(-20px, -20px);
    }
}

/* 标题文字 */
.textTop {
    height: 35px;
    background-color: #333;
    color: #FFF;
    line-height: 35px;
    font-size: 16px;
    cursor: pointer;
}

/* 导航栏 */
nav {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #FFF;
}

nav .content {
    display: flex;
    justify-content: space-between;
}

nav .content .nav {
    position: relative;
    display: flex;
}

nav .content .logo {
    font-size: 30px;
}

nav .content ul {
    display: flex;
    font-size: 18px;
}

nav .content ul li {
    margin: 0 15px;
    cursor: pointer;
    transition: all .2s;
}

nav .content ul li:hover {
    color: var(--background-color);
    margin-top: -3px;
    border-bottom: 3px solid var(--background-color);
}

/* 轮播图 */
.banner .swiper-slide {
    position: relative;
    width: 100vw;
    height: calc(100vh - 115px);
}

.banner .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.2);
}

.banner .swiper-slide a img {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    transition: all .5s;
}

.banner .swiper-slide img:hover {
    transform: scale(1.1);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

/* 轮播图文字部分 */
.swiper-wrapper {
    position: relative;
}

.swiper-slide .bannerText {
    position: absolute;
    z-index: 10;
}

.swiper-slide .bannerText>* {
    color: #FFF;
    text-align: left;
}

.swiper-slide .bannerText h1 {
    width: 70vw;
    margin-bottom: 30px;
    font-size: 50px;
}

/* 打字机 */
.swiper-slide .bannerText .typewriter {
    width: 66vw;
}
.swiper-slide .bannerText .typewriter span.mark {
    border-right: 2px solid white;
    animation: blink 0.6s step-end infinite;
}

@keyframes blink {
    from {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
    to {
        border-color: transparent;
    }
}

.swiper-slide .bannerText p:nth-child(1) {
    font-size: 20px;
}

.swiper-slide .bannerText p:last-child {
    width: 110px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: var(--background-color);
    border-radius: 6px;
    margin-top: 30px;
    cursor: pointer;
}

/* 关于我们 */
.aboutus {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    background-color: #FFF;
}

.aboutus .hd {
    display: none;
}

.aboutus .abHd {
    flex: 1;
}

.aboutus .abHd h1 {
    position: relative;
    text-align: center;
    font-size: 50px;
    color: var(--background-color);
    line-height: 340px;
}

.aboutus .abHd h1 span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    opacity: .1;
}

.aboutus .adText {
    flex: 1;
    padding: 20px 50px 20px 20px;
}

.aboutus .adText h1 {
    font-size: 24px;
    margin-top: 10px;
}

.aboutus .adText h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    margin: 10px 0;
    background-color: var(--background-color);
    user-select: none;
}

.aboutus .adText p {
    font-size: 16px;
}

/* 通用hd */
.hd {
    margin: 0 auto;
    text-align: center;
}

.hd h1 {
    font-size: 32px;
    position: relative;
    padding: 35px 0 60px;
    color: var(--background-color);
}

.hd h1::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    margin: 10px auto;
    background-color: var(--background-color);
}

.hd h1 span {
    font-size: 38px;
    position: absolute;
    left: 46%;
    top: 15px;
    color: #000;
    opacity: .1;
    user-select: none;
}

/* 服务流程 */
.service {
    padding-bottom: 30px;
}

.service .seBd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.service .seBd .seBdBox {
    display: flex;
    align-items: center;
    width: 330px;
    height: 180px;
    margin-bottom: 25px;
    background-color: #FFF;
    padding: 20px;
    border-bottom: 5px solid var(--background-color);
    box-shadow: 0px 0px 18px rgb(0 0 0 / 6%);
}

.service .seBd .seBdBox .seBdBoxIcon span {
    display: block;
    width: 70px;
    height: 70px;
    background-color: var(--background-color);
    border-radius: 50%;
    opacity: .2;
}

.service .seBd .seBdBox .seBdBoxIcon {
    position: relative;
}

.service .seBd .seBdBox .seBdBoxIcon i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    font-size: 36px;
    line-height: 70px;
    font-weight: 500;
    color: var(--background-color);
}

.service .seBd .seBdBox .seBdBoxText {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.service .seBd .seBdBox .seBdBoxText h1 {
    margin: 5px 0;
    font-size: 26px;
}

.service .seBd .seBdBox .seBdBoxText p {
    font-size: 17px;
}

/* 案例赏析 */
.case {
    padding-bottom: 25px;
}

.case .caseBd {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    justify-content: space-evenly;
}

.case .caseBd .caseBdBig {
    position: relative;
    overflow: hidden;
    width: 510px;
    height: 240px;
}

.case .caseBd .caseBdBig:nth-child(1),
.case .caseBd .caseBdBig:nth-child(2) {
    margin-bottom: 20px;
}

.case .caseBd .caseBdBig img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}

/* 案例欣赏遮罩 */
.case .caseBd .caseBdBigMask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-999px);
    width: 75%;
    height: 58%;
    background-color: rgba(0, 0, 0, .6);
    margin: auto;
    padding: 20px;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFF;
    font-weight: 400;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText p {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
}

.case .caseBd .caseBdBigMask .caseBdBigMaskText a {
    position: absolute;
    top: 52px;
    right: 35px;
    font-size: 20px;
    color: #FFF;
}

/* 案例赏析鼠标悬停状态 */
@keyframes move {
    0% {
        transform: translateX(-999px);
    }

    100% {
        transform: translateX(0);
    }
}

.case .caseBd .caseBdBig:hover img {
    transform: scale(1.1);
}

.case .caseBd .caseBdBig:hover .caseBdBigMask {
    display: block;
}

.case .caseBd .caseBdBig:hover .caseBdBigMask .caseBdBigMaskText {
    animation: move .3s ease-out forwards;
}

/* 核心成员 */
.member {
    padding-bottom: 35px;
}

.member .memberBd {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    cursor: pointer;
}

.member .memberBd .memberBdBox {
    overflow: hidden;
    position: relative;
    width: 310px;
    height: 450px;
    background-color: #FFF;
    box-shadow: 0px 0px 24px rgb(0 0 0 / 20%);
    border-radius: 6px;
    margin-bottom: 30px;
    transition: all .5s;
}

/* 遮罩 */
.member .memberBd .memberBdBoxMask {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    width: 310px;
    height: 310px;
    padding: 25px;
    transform: rotate(160deg);
    /* 设置中心点为左下角 */
    transform-origin: bottom right;
    /* 变换效果 */
    transition: all .5s;
}

.member .memberBd .memberBdBoxMask h2 {
    font-size: 18px;
    color: #FFF;
    margin: 30px 5px 15px;
}

.member .memberBd .memberBdBoxMask span {
    font-size: 16px;
    color: #FFF;
    opacity: .9;
}

/* 主体内容 */
.member .memberBd .memberBdBox img {
    width: 100%;
    height: auto;
}

.member .memberBd .memberBdBox h1 {
    font-size: 34px;
    text-align: center;
    margin: 10px auto;
    color: var(--text-deep);
}

.member .memberBd .memberBdBox p {
    font-size: 20px;
    text-align: center;
    color: var(--text-shallow);
}

.member .memberBd .memberBdBox i {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 88px;
    font-weight: bold;
    font-style: italic;
    opacity: .1;
    user-select: none;
}

.member .memberBd .memberBdBox:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0px 0px 36px rgb(0 0 0 / 10%);
}

.member .memberBd .memberBdBox:hover .memberBdBoxMask {
    transform: rotate(0deg);

}

.member .memberBd .memberBdBox:hover i {
    color: var(--background-color);
}

/* 公司新闻 */
.navlist {
    padding-bottom: 30px;
}

.navlist .navlistBd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.navlist .navlistBd .navlistBdBox {
    display: flex;
    justify-content: space-between;
    width: 500px;
    height: 150px;
    background-color: var(--deep-background);
    margin-bottom: 20px;
    padding: 20px;
    transition: all .5s;
}

.navlist .navlistBd .navlistBdBoxTime {
    flex: 1;
}

.navlist .navlistBd .navlistBdBoxTitle {
    flex: 2;
    transition: all .3s;
}

.navlist .navlistBd .navlistBdBoxTime h1 {
    position: relative;
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--text-color-grey);
}

.navlist .navlistBd .navlistBdBoxTime h1::after {
    content: '';
    position: absolute;
    left: 99px;
    top: 22px;
    width: 38px;
    height: 1px;
    background-color: var(--text-color-grey);
    transition: all .3s;
}

.navlist .navlistBd .navlistBdBoxTime span {
    font-size: 30px;
    color: var(--text-color-grey);
    transition: all .3s;
    cursor: pointer;
}

.navlist .navlistBd .navlistBdBoxTitle {
    overflow: hidden;
    text-overflow: ellipsis;
}

.navlist .navlistBd .navlistBdBoxTitle h1 {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
}

.navlist .navlistBd .navlistBdBoxTitle p {
    font-size: 18px;
}

/* 公司新闻悬停动画 */
.navlist .navlistBd .navlistBdBox:hover {
    border-bottom: 3px solid var(--background-color);
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime h1 {
    color: var(--background-color);
    opacity: 0.7;
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime span {
    padding: 6px 8px;
    color: #FFF;
    border-radius: 3px;
    background-color: var(--background-color);
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTime h1::after {
    width: 50px;
}

.navlist .navlistBd .navlistBdBox:hover .navlistBdBoxTitle {
    transform: translateX(16px);
}

/* 查看更多 */
.Seemore {
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    margin: auto;
    text-align: center;
    background-color: var(--deep-background);
    border-radius: 6px;
    color: var(--text-deep);
    font-size: 18px;
}

/* 图 */
.chart {
    position: relative;
}

.chart img {
    width: 100%;
}

.chartText {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.chartText h1 {
    font-size: 52px;
    color: #FFF;
    font-weight: 400;
}

.chartText a {
    display: block;
    width: 150px;
    height: 50px;
    border: 2px solid #FFF;
    text-align: center;
    line-height: 48px;
    margin: 0 40px;
    font-size: 24px;
    color: #FFF;
}

/* 底部 */
footer {
    padding-bottom: 30px;
    background-color: #333;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 80px 40px 50px;
}

.footer .forHelp {
    display: flex;
    flex-wrap: wrap;
}

.footer .forHelp dl {
    margin-right: 40px;
    line-height: 2.5;
}

.footer .forHelp dl dt {
    font-size: 24px;
    color: #FFF;
}

.footer .forHelp dl dd {
    font-size: 14px;
}

.footer .forDetails {
    display: flex;
}

.footer .forDetails dl {
    line-height: 2.8;
}

.footer .forDetails i {
    font-size: 18px;
    vertical-align: sub;
}


.footer .forDetails dl dt {
    font-size: 22px;
    color: #FFF;
}

.footer .forDetails dl dd {
    font-size: 14px;
}

.footer .forDetails dl dd img {
    margin: 10px 20px 10px 0;
}

.FooterSeparate {
    margin: 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.FooterSeparate .content {
    display: flex;
    align-items: center;
    line-height: 2;
    margin-top: 15px;
}

.footerLogo {
    width: 150px;
    text-align: center;
}

.footrCopyright {
    margin-left: 50px;
    /* margin: 0 auto; */
}

.FooterSeparate .footerLogo h1 {
    font-size: 45px;
    color: #FFF;
    font-weight: 500;
}

.FooterSeparate .footrCopyright p {
    font-size: 18px;
}

.FooterSeparate .footrCopyright a {
    font-size: 18px;
}

/* goBack制作 */
.goBack {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 52px;
    height: 56px;
    border-radius: 6px;
    background-color: var(--background-color);
    cursor: pointer;
}
.goBack span {
    display: block;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

/* 面包屑 */
.crumbs {
    margin: 15px auto;
    font-size: 16px;
    vertical-align: middle;
}

.crumbs > * {
    font-size: 16px;
}

.crumbs span {
    font-size: 20px;
    padding-right: 10px;
}

/* 网页适配 */
@media screen and (max-width: 1100px) {
    /* 取消移动端长按高亮背景显示 这里设置为透明 */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
    input {
        -webkit-appearance: none;
    }

    /* 禁用长按页面时弹出的菜单 */
    img,a {
        -webkit-touch-callout: none;
    }
    
    nav .content .nav {
        display: none;
    }

    /* 汉堡按钮 */
    .burger {
        position: absolute;
        top: 70px;
        right: 30px;
        display: block;
        width: 20px;
        height: 6px;
        z-index: 999;
        cursor: pointer;
    }

    .burger .top-line,
    .burger .middle-line,
    .burger .bottom-line {
        width: 25px;
        height: 2px;
        background-color: var(--text-deep);
    }

    .burger .top-line {
        position: absolute;
        top: -6px;
    }

    .burger .middle-line {
        width: 15px;
    }

    .burger .bottom-line {
        position: absolute;
        top: 6px;
    }

    /* 被点击以后的样式 */
    header.open .top-line,
    header.open .middle-line,
    header.open .bottom-line {
        transition: .4s ease;
    }

    /* 第一条线 */
    header.open .top-line {
        transform: rotate(45deg) translate(3px, 5px);
    }

    /* 第二条线 */
    header.open .middle-line {
        transform: translateX(5px);
        opacity: 0;
    }

    /* 第三条线 */
    header.open .bottom-line {
        transform: rotate(-45deg) translate(3px, -5px);
    }

    /* nav样式 */
    header.open nav .content .nav {
        position: relative;
        display: block;
        z-index: 999;
        width: 100vw;
        /* height: calc(100vh - 92px); */
        margin-top: -1px;
        background-color: #FFF;
        /* 下滑效果 */
        animation: slideDown .6s ease-in-out forwards;
    }

    @keyframes slideDown {
        from {
            width: 0;
            height: 0;
        }

        to {
            height: 100vh;
            padding-left: 20px;
            opacity: 1;
        }
    }

    nav .content {
        display: block;
    }

    header.open nav .content .nav ul {
        display: flex;
        flex-direction: column;
    }

    header.open nav .content .nav>* {
        font-size: 18px;
        color: var(--text-shallow);
        opacity: 0;
        animation: showMenu 0.5s linear forwards 0.4s;
    }

    @keyframes showMenu {
        from {
            opacity: 0;
            transform: translateY(-1vh);
        }

        to {
            opacity: 1;
        }
    }

    /* 文字适应 */
    .textTop p {
        font-size: 16px;
        margin: 0 20px;
    }



    nav .content .logo {
        font-size: 24px;
        margin: 0 20px;
    }

    .swiper-slide .bannerText {
        margin: 0 26px;
    }

    .swiper-slide .bannerText h1 {
        font-size: 50px;
    }

    /* 案例赏析 */
    .case .caseBd .caseBdBigMask .caseBdBigMaskText {
        width: 80%;
        height: 66%;
    }

    .case .caseBd .caseBdBigMask .caseBdBigMaskText a {
        top: 38px;
    }

    /* 文字说明图 */
    .chartText h1 {
        font-size: 30px;
    }

    .chartText a {
        width: 116px;
        height: 35px;
        margin: 0 16px;
        line-height: 33px;
        font-size: 18px;
    }
}

@media screen and (max-width: 540px) {
    @import url(../css/normalize.css);

    /* 关于我们Hd变化 */
    .aboutus .abHd h1 {
        font-size: 32px;
        line-height: 100px;
        margin-top: 35px;
    }
    
    .aboutus .abHd h1 span {
        top: -15px;
    }

    .swiper-slide .bannerText p:last-child {
        width: 99px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .case .caseBd .caseBdBig {
        height: auto;
        margin: 10px;
    }

    /* 汉堡按钮位置 */
    .burger {
        top: 62px;
    }

    /* 小屏宽度下nav重载 */
    .textTop {
        height: 28px;
        line-height: 28px;
    }

    .textTop p {
        font-size: 14px;
    }

    nav {
        height: 66px;
        line-height: 66px;
    }

    /* 轮播图高度重置 */
    .banner .swiper-slide {
        height: calc(100vh - 94px);
    }

    /* 轮播图边距重置 */
    /* .swiper-slide .bannerText {
        margin: 0 26px;
    } */
    .swiper-slide .bannerText h1 {
        font-size: 26px;
    }

    

    .aboutus {
        flex-direction: column;
    }

    .aboutus .hd {
        display: block;
    }

    /* 文字说明图 */
    .chart img {
        height: 60px;
    }

    .chartText h1 {
        font-size: 18px;
    }

    .chartText a {
        width: 90px;
        font-size: 16px;
        margin: 0 10px;
        height: 32px;
        line-height: 30px;
    }

    .navlist .navlistBd .navlistBdBoxTime h1::after {
        display: none;
    }

    /* 底部 */
    .footer {
        flex-wrap: wrap;
    }

    .footer .forHelp {
        flex-direction: column;
    }
    
    .FooterSeparate .content h1 {
        display: none;
    }

    .footerLogo {
        width: 0;
    }
    
    .footrCopyright {
        margin: auto;
    }

    /* 公司新闻 */

    .navlist .navlistBd .navlistBdBox {
        height: 125px;
        margin: 10px;
    }

    .navlist .navlistBd .navlistBdBoxTime h1,
    .navlist .navlistBd .navlistBdBoxTime span {
        font-size: 26px;
    }

    .navlist .navlistBd .navlistBdBoxTitle h1 {
        font-size: 20px;
    }

    .navlist .navlistBd .navlistBdBoxTitle p {
        font-size: 16px;
    }

    .Seemore {
        width: 150px;
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }

    /* 底部 */

    .FooterSeparate {
        margin: 0 10px;
    }

    .FooterSeparate .footrCopyright p,
    .FooterSeparate .footrCopyright a {
        display: block;
        font-size: 14px;
        text-align: center;
    }

    .hd h1 span {
        left: 33%;
    }

    .goBack {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 50px;
    }

    .goBack span {
        font-size: 30px;
    }
}



@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* =======================================================
*
* 	Template Style 
*	Edit this section
*
* ======================================================= */
body {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  color: #8f989f;
  height: 100%;
  position: relative;
  background: #F4F7F7;
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.offcanvas #page {
  overflow: hidden;
  position: absolute;
}
.offcanvas #page:after {
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.7);
  content: "";
}

a {
  color: #3EC483;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #3EC483;
  outline: none;
}

p {
  margin-bottom: 1.5em;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  margin: 0 0 30px 0;
}

::-webkit-selection {
  color: #fff;
  background: #00ADB5;
}

::-moz-selection {
  color: #fff;
  background: #00ADB5;
}

::selection {
  color: #fff;
  background: #00ADB5;
}

#fh5co-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  opacity: 1;
  top: 0;
}
.copyrights{
	text-indent:-9999px;
	height:0;
	line-height:0;
	font-size:0;
	overflow:hidden;
}
#fh5co-header .navbar {
  padding-bottom: 0;
  margin-bottom: 0;
}
#fh5co-header #navbar .navbar-right {
  margin-right: 0;
  text-align: center;
  padding: 0;
}
#fh5co-header #navbar li a {
  font-family: "Roboto Mono", monospace;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  #fh5co-header #navbar li a {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 16px;
  }
}
#fh5co-header #navbar li a span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}
#fh5co-header #navbar li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -27px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
#fh5co-header #navbar li a:hover {
  color: #000;
}
#fh5co-header #navbar li a:hover span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
#fh5co-header #navbar li.active a {
  background: transparent;
  background: none;
}
@media screen and (max-width: 480px) {
  #fh5co-header #navbar li.active a {
    color: #3EC483;
  }
}
#fh5co-header #navbar li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #3EC483;
}
@media screen and (max-width: 480px) {
  #fh5co-header #navbar li.active a span:before {
    background-color: transparent;
  }
}
@media screen and (max-width: 992px) {
  #fh5co-header #navbar li.active a {
    background: transparent;
    background: none;
  }
}
@media screen and (max-width: 992px) and (max-width: 480px) {
  #fh5co-header #navbar li.active a {
    color: #3EC483;
  }
}
@media screen and (max-width: 992px) {
  #fh5co-header #navbar li.active a span {
    display: inline-block;
    color: #3EC483;
  }
  #fh5co-header #navbar li.active a span:before {
    bottom: 0;
    height: 0;
    background: transparent;
  }
}
#fh5co-header #navbar li.call-to-action {
  margin-left: 5px;
}
#fh5co-header #navbar li.call-to-action a {
  padding: 5px 10px 3px 10px;
  margin: 12px 0 0 0px;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
#fh5co-header #navbar li.call-to-action a:hover {
  background-color: #3EC483;
  color: #fff;
}
#fh5co-header #navbar li.call-to-action a span:before {
  background-color: transparent;
}
#fh5co-header #navbar li.call-to-action a.sign-up {
  border: 2px solid #00ADB5;
  background: #00ADB5;
}
#fh5co-header #navbar li.call-to-action a.sign-up:hover {
  background: #00ADB5;
  color: #fff;
}
#fh5co-header #navbar li.call-to-action a.log-in {
  border: 2px solid #3EC483;
  background: #3EC483;
}
#fh5co-header #navbar li.call-to-action a.log-in:hover {
  background: #3EC483;
  color: #fff;
}
#fh5co-header .navbar-brand {
  float: left;
  display: block;
  font-size: 24px;
  font-weight: bold;
  padding-left: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
}
@media screen and (max-width: 992px) {
  #fh5co-header .navbar-brand {
    margin-left: 20px;
    padding-right: 0 !important;
  }
}
#fh5co-header.navbar-fixed-top {
  position: fixed !important;
  background: #fff;
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
  top: 0;
}
#fh5co-header.navbar-fixed-top #navbar li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#fh5co-header.navbar-fixed-top #navbar li a:hover {
  color: #3EC483;
}
@media screen and (max-width: 992px) {
  #fh5co-header.navbar-fixed-top #navbar li a {
    font-size: 16px;
  }
}
#fh5co-header.navbar-fixed-top #navbar li.active a {
  color: #3EC483 !important;
}
@media screen and (max-width: 768px) {
  #fh5co-header.navbar-fixed-top #navbar li.active a {
    color: #3EC483 !important;
  }
}
#fh5co-header.navbar-fixed-top #navbar li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #3EC483;
}
@media screen and (max-width: 768px) {
  #fh5co-header.navbar-fixed-top #navbar li.active a span:before {
    background-color: transparent;
  }
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a {
  border: 2px solid #3EC483;
  padding: 5px 10px 3px 10px;
  margin: 12px 0 0 0px;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a:hover {
  background-color: #3EC483;
  color: #fff !important;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a span:before {
  background-color: transparent;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a.sign-up {
  border: 2px solid #00ADB5;
  background: #00ADB5;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a.sign-up:hover {
  background: #00ADB5;
  color: #fff;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a.log-in {
  border: 2px solid #3EC483;
  background: #3EC483;
}
#fh5co-header.navbar-fixed-top #navbar li.call-to-action a.log-in:hover {
  background: #3EC483;
  color: #fff;
}
#fh5co-header .navbar-default {
  border: transparent;
  background: #fff;
  margin: 0;
  padding: 10px 70px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 768px) {
  #fh5co-header .navbar-default {
    margin-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

#fh5co-home {
  background-color: transparent;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  background-color: #e6e6e6;
  color: #fff;
}
#fh5co-home a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: underline;
}
#fh5co-home a:hover {
  color: #fff;
  text-decoration: none;
}
#fh5co-home .gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}
#fh5co-home, #fh5co-home .text-wrap {
  height: 900px;
}
#fh5co-home .text-wrap {
  display: table;
  width: 100%;
  position: relative;
  z-index: 4;
}
#fh5co-home .text-inner {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
#fh5co-home .text-inner h1 {
  font-size: 40px;
  color: white;
  margin: 0 0 40px 0;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  #fh5co-home .text-inner h1 {
    font-size: 30px;
  }
}
#fh5co-home .text-inner h1 span {
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  line-height: 20px;
}
#fh5co-home .text-inner h1 .big {
  font-size: 58px;
  text-transform: none;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  #fh5co-home .text-inner h1 .big {
    font-size: 30px;
  }
}
#fh5co-home .text-inner h1 .medium {
  font-size: 40px;
  text-transform: none;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  #fh5co-home .text-inner h1 .medium {
    font-size: 30px;
  }
}
#fh5co-home .text-inner h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 60px 0;
}
#fh5co-home .text-inner .call-to-action {
  display: block;
  width: 100%;
}
#fh5co-home .text-inner .call-to-action a {
  width: 200px;
  display: inline-block;
  font-size: 20px;
  padding: 15px 0;
  margin-right: 10px;
  -webkit-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
  -ms-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
  -o-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  border: none;
}
#fh5co-home .text-inner .call-to-action a i {
  margin-right: 5px;
  margin-top: 5px;
  font-size: 18px;
}
#fh5co-home .text-inner .call-to-action a.demo {
  border: 2px solid #3EC483;
  background: #3EC483;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  #fh5co-home .text-inner .call-to-action a.demo {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
#fh5co-home .text-inner .call-to-action a.download {
  border: 2px solid #00ADB5;
  background: #00ADB5;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  #fh5co-home .text-inner .call-to-action a.download {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

#fh5co-services,
#fh5co-testimony,
#fh5co-explore,
#fh5co-footer,
#fh5co-work,
#fh5co-counters,
#fh5co-pricing,
#fh5co-blog {
  padding: 8em 0;
}
@media screen and (max-width: 768px) {
  #fh5co-services,
  #fh5co-testimony,
  #fh5co-explore,
  #fh5co-footer,
  #fh5co-work,
  #fh5co-counters,
  #fh5co-pricing,
  #fh5co-blog {
    padding: 3em 0;
  }
}

#fh5co-services {
  padding-bottom: 0;
}

.fh5co-explore {
  padding-bottom: 40px;
}

.fh5co-portfolio {
  width: 100%;
  float: left;
  margin-bottom: 40px;
}
.fh5co-portfolio > a {
  width: 100%;
  float: left;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
}
.fh5co-portfolio > a:hover {
  webkit-box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
}
.fh5co-portfolio > a:hover .desc {
  opacity: 1;
}
.fh5co-portfolio .portfolio-entry {
  width: 100%;
  float: left;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .fh5co-portfolio .portfolio-entry {
    height: 400px;
  }
}
.fh5co-portfolio .portfolio-entry .desc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  padding: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.fh5co-portfolio .portfolio-entry .desc p {
  color: #8f989f;
}
.fh5co-portfolio .portfolio-text {
  width: 100%;
  float: left;
  padding: 20px;
}
.fh5co-portfolio .portfolio-text h3 {
  font-size: 20px;
}
.fh5co-portfolio .portfolio-text .stuff {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}
.fh5co-portfolio .portfolio-text .stuff li {
  list-style: none;
  display: inline-block;
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
}
.fh5co-portfolio .portfolio-text .stuff li:first-child {
  margin-left: 0;
}
.fh5co-portfolio .portfolio-text .stuff li i {
  font-size: 14px;
  padding-right: 5px;
}

.fh5co-bg-color {
  background: #F4F7F7;
}

.testimony-entry {
  margin-bottom: 50px;
}
.testimony-entry .feed-bubble {
  padding: 30px;
  margin-bottom: 20px;
  background: #3ec483;
  position: relative;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.testimony-entry .feed-bubble:after {
  position: absolute;
  bottom: -10px;
  left: 30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #3ec483 transparent transparent transparent;
}
.testimony-entry .feed-bubble p {
  color: #fff;
}
.testimony-entry .author-img {
  width: 75px;
  height: 75px;
  background-size: cover;
  background-position: center center;
  position: relative;
  float: left;
  margin-right: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.testimony-entry .user {
  font-size: 18px;
  color: #000;
}
.testimony-entry .user small {
  font-size: 14px;
  color: #8f989f !important;
}

.fh5co-blog .blog {
  margin-bottom: 40px;
}
.fh5co-blog .entry {
  width: 100%;
  text-decoration: none;
}
.fh5co-blog .entry .desc-grid h3 {
  padding: 2px 0 0 0;
  margin: 0;
  font-size: 20px;
}
.fh5co-blog .entry .blog-bg {
  height: 350px;
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: 20px;
}
.fh5co-blog .entry .blog-bg .date {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  z-index: 2;
  text-align: center;
  padding: 5px 10px;
  background: #3EC483;
}
.fh5co-blog .entry .blog-bg .date span, .fh5co-blog .entry .blog-bg .date small {
  display: block;
  color: #fff;
}
.fh5co-blog .entry .blog-bg .date span {
  font-size: 20px;
}
.fh5co-blog .entry .blog-bg .date small {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.fh5co-blog .entry .blog-bg .desc {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 60px;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.fh5co-blog .entry .blog-bg .desc p {
  color: #8f989f;
}
.fh5co-blog .entry:hover .desc {
  opacity: 1;
}

.pricing__item {
  margin: 1.5em 0;
  padding: 3em 2em 2em 2em;
  cursor: default;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.06);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.pricing__item:hover {
  color: #333;
  background: rgba(62, 196, 131, 0.4);
  webkit-box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.13);
}

.pricing__item:nth-child(2) {
  border-right: none;
  border-left: none;
}

.pricing__title {
  width: 100%;
  margin: 0 0 2em 0;
  padding: 0;
}

.pricing__price {
  font-weight: bold;
  line-height: 95px;
  width: 100px;
  height: 100px;
  margin: 1.15em auto 1em;
  background: #3EC483;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.pricing__item:hover .pricing__price {
  color: #fff;
  background: #3EC483;
}

.pricing__feature-list {
  margin: 0;
  padding: 1em 1em 2em 1em;
  list-style: none;
  text-align: center;
}
.pricing__feature-list li {
  font-size: 16px;
  line-height: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
}

.pricing__action {
  font-weight: bold;
  margin-top: auto;
  padding: 0.75em 2em;
  opacity: 0;
  color: #fff;
  background: #82C57E;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
}

.pricing__item:hover .pricing__action {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pricing__action:hover,
.pricing__action:focus {
  background: #6EA76B;
}

.fh5co-services {
  padding-bottom: 4em;
}
.fh5co-services .box-services {
  position: relative;
  margin: 0 30px 70px 20px;
}
.fh5co-services .box-services .icon {
  margin-bottom: 20px;
}
.fh5co-services .box-services .icon span {
  width: 130px;
  height: 130px;
  display: inline-block;
  position: relative;
  background: #3EC483;
  display: table;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.fh5co-services .box-services .icon span i {
  display: table-cell;
  vertical-align: middle;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 30px;
  height: 130px;
  color: #fff;
}
.fh5co-services .fh5co-post h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.fh5co-services .call-to-action .btn-learn {
  padding: 12px 30px;
  background: #4292f5;
  color: #fff;
}

.fh5co-counters {
  padding: 3em 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
.fh5co-counters .counter-wrap {
  border: 1px solid red !important;
}
.fh5co-counters .fh5co-counter {
  font-size: 30px;
  display: block;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Roboto Mono", monospace;
  width: 100%;
  font-weight: 700;
  margin-bottom: .3em;
}
.fh5co-counters .fh5co-counter-label {
  font-size: 16px;
  margin-bottom: 2em;
  display: block;
}

.section-heading {
  float: left;
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 0px;
}
.section-heading h2 {
  margin: 0 0 20px 0;
  font-size: 30px;
  font-weight: 400;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.5;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
.section-heading h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #8f989f;
  position: relative;
  display: block;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section-heading h3 {
    font-size: 16px !important;
    line-height: 28px;
  }
}

#fh5co-footer {
  background: #41444B;
  color: rgba(255, 255, 255, 0.6);
}
#fh5co-footer a {
  color: rgba(255, 255, 255, 0.8);
}
#fh5co-footer a:hover {
  color: #fff !important;
  text-decoration: underline;
}
#fh5co-footer .section-title {
  font-size: 22px;
  color: #fff;
  position: relative;
  padding-bottom: 20px;
}
#fh5co-footer .copy-right {
  position: relative;
  padding-top: 20px;
  margin-top: 40px;
}
#fh5co-footer .copy-right > a {
  color: rgba(255, 255, 255, 0.8);
}
#fh5co-footer .contact-info {
  margin: 0 0 60px 0;
  padding: 0;
}
#fh5co-footer .contact-info li {
  font-size: 16px;
  list-style: none;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 40px;
}
#fh5co-footer .contact-info li i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 22px;
  color: #3EC483;
}
#fh5co-footer .copyright {
  padding-top: 5em;
}
#fh5co-footer .copyright .block {
  display: block;
}
#fh5co-footer .social-media {
  margin: 0 0 30px 0;
  padding: 0;
}
#fh5co-footer .social-media li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 24px;
  margin-right: 10px;
}
#fh5co-footer .social-media li a {
  color: #3EC483;
}
#fh5co-footer .social-media li a:hover, #fh5co-footer .social-media li a:focus, #fh5co-footer .social-media li a:active {
  text-decoration: none;
}
#fh5co-footer .social-media li a i {
  font-size: 22px;
}
#fh5co-footer .contact-form .form-group input[type="name"],
#fh5co-footer .contact-form .form-group input[type="text"],
#fh5co-footer .contact-form .form-group input[type="email"],
#fh5co-footer .contact-form .form-group textarea {
  font-size: 16px;
}
#fh5co-footer .contact-form .form-group input[type="name"]::-webkit-input-placeholder,
#fh5co-footer .contact-form .form-group input[type="text"]::-webkit-input-placeholder,
#fh5co-footer .contact-form .form-group input[type="email"]::-webkit-input-placeholder,
#fh5co-footer .contact-form .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#fh5co-footer .contact-form .form-group input[type="name"]:-moz-placeholder,
#fh5co-footer .contact-form .form-group input[type="text"]:-moz-placeholder,
#fh5co-footer .contact-form .form-group input[type="email"]:-moz-placeholder,
#fh5co-footer .contact-form .form-group textarea:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.5);
}
#fh5co-footer .contact-form .form-group input[type="name"]::-moz-placeholder,
#fh5co-footer .contact-form .form-group input[type="text"]::-moz-placeholder,
#fh5co-footer .contact-form .form-group input[type="email"]::-moz-placeholder,
#fh5co-footer .contact-form .form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
}
#fh5co-footer .contact-form .form-group input[type="name"]:-ms-input-placeholder,
#fh5co-footer .contact-form .form-group input[type="text"]:-ms-input-placeholder,
#fh5co-footer .contact-form .form-group input[type="email"]:-ms-input-placeholder,
#fh5co-footer .contact-form .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#fh5co-footer .contact-form .form-group input {
  color: #fff;
  background: transparent;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}
#fh5co-footer .contact-form .form-group textarea {
  color: #fff;
  background: transparent;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}
#fh5co-footer #btn-submit {
  color: rgba(255, 255, 255, 0.9) !important;
  background: #3EC483 !important;
}

.fh5co-nav-toggle {
  width: 25px;
  height: 25px;
  cursor: pointer;
  text-decoration: none;
}
.fh5co-nav-toggle.active i::before, .fh5co-nav-toggle.active i::after {
  background: #3EC483;
}
.fh5co-nav-toggle:hover, .fh5co-nav-toggle:focus, .fh5co-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.fh5co-nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 25px;
  height: 3px;
  color: #535659;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #535659;
  transition: all .2s ease-out;
}
.fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after {
  content: '';
  width: 25px;
  height: 3px;
  background: #535659;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.fh5co-nav-toggle i::before {
  top: -7px;
}

.fh5co-nav-toggle i::after {
  bottom: -7px;
}

.fh5co-nav-toggle:hover i::before {
  top: -10px;
}

.fh5co-nav-toggle:hover i::after {
  bottom: -10px;
}

.fh5co-nav-toggle.active i {
  background: transparent;
}

.fh5co-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.fh5co-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.fh5co-nav-toggle {
  position: absolute;
  top: 2px;
  right: 15px;
  z-index: 21;
  padding: 6px 0 0 0;
  display: block;
  margin: 0 auto;
  display: none;
  height: 44px;
  width: 25px;
  border-bottom: none !important;
}
@media screen and (max-width: 768px) {
  .fh5co-nav-toggle {
    display: block;
  }
}

.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-family: "Roboto Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  background: #3EC483;
  color: #fff;
  border: 2px solid #3EC483;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: #52ca90 !important;
  border-color: #52ca90 !important;
}
.btn-primary.btn-outline {
  background: transparent;
  color: #3EC483;
  border: 2px solid #3EC483;
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
  background: #3EC483;
  color: #fff;
}

.btn-success {
  background: #5cb85c;
  color: #fff;
  border: 2px solid #5cb85c;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background: #4cae4c !important;
  border-color: #4cae4c !important;
}
.btn-success.btn-outline {
  background: transparent;
  color: #5cb85c;
  border: 2px solid #5cb85c;
}
.btn-success.btn-outline:hover, .btn-success.btn-outline:focus, .btn-success.btn-outline:active {
  background: #5cb85c;
  color: #fff;
}

.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 2px solid #5bc0de;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important;
}
.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 2px solid #5bc0de;
}
.btn-info.btn-outline:hover, .btn-info.btn-outline:focus, .btn-info.btn-outline:active {
  background: #5bc0de;
  color: #fff;
}

.btn-warning {
  background: #f0ad4e;
  color: #fff;
  border: 2px solid #f0ad4e;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
  background: #eea236 !important;
  border-color: #eea236 !important;
}
.btn-warning.btn-outline {
  background: transparent;
  color: #f0ad4e;
  border: 2px solid #f0ad4e;
}
.btn-warning.btn-outline:hover, .btn-warning.btn-outline:focus, .btn-warning.btn-outline:active {
  background: #f0ad4e;
  color: #fff;
}

.btn-danger {
  background: #d9534f;
  color: #fff;
  border: 2px solid #d9534f;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
  background: #d43f3a !important;
  border-color: #d43f3a !important;
}
.btn-danger.btn-outline {
  background: transparent;
  color: #d9534f;
  border: 2px solid #d9534f;
}
.btn-danger.btn-outline:hover, .btn-danger.btn-outline:focus, .btn-danger.btn-outline:active {
  background: #d9534f;
  color: #fff;
}

.btn-outline {
  background: none;
  border: 2px solid gray;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  box-shadow: none;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn.with-arrow:hover {
  padding-right: 50px;
}
.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.social {
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
  width: 100%;
}
.social li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.social li a {
  font-size: 16px;
  display: table;
  width: 40px;
  height: 40px;
  margin: 0 4px;
}
.social li a i {
  display: table-cell;
  vertical-align: middle;
}
.social li a:hover, .social li a:active, .social li a:focus {
  text-decoration: none;
  border-bottom: none;
}
.social li a.social-box {
  background: #3EC483;
  color: #fff;
}
.social li a.social-circle {
  background: #3EC483;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.social li a:hover {
  background: #393e46 !important;
}
.social.social-box a {
  background: #3EC483;
  color: #fff;
}
.social.social-circle a {
  background: #3EC483;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  padding-bottom: 7em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 2em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 2em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 2em;
  }
}

.fh5co-animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fh5co-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader.gif) center no-repeat #fff;
}

.js .animate-box {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
