.header-three {
    padding: 20px 0 0 !important;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px!important;
    }
}
.footer-top {
    border-top: 70px solid #f0ae24;
}

.footer-widget h3 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #aaabb3;

}
.footer-link ul li a:hover {
    padding-left: 5px;
    color: #f0ae24;
}
.footer-widget h4 {
    color: #aaabb3;
    font-weight: 200;
    font-size: 29px;
    letter-spacing: 3px;
}
#project_conent{
    padding: 60px 0;
}
#project_conent a {
    display: block;
    position: relative;
    z-index: 9999;
}
#project_conent a:before {
    background: url(img/project_cloud.png) no-repeat left center / contain;

    content: '';
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    z-index: 9;
    top: -40px;
}
#project_conent img {
    display: block;
    position: relative;
    width: 100%;
    height: 470px;
    border-radius: 12px;
    overflow: hidden;
}
#project_conent h4 {
     position: absolute;
    top: 20px;
    left: 20px;
    color: #454f72;
    font-size: 1.5rem;
    width: 80%;
    z-index: 999;
}
div#project_conent:before {
    content: '';
    background: url(img/left-lightning.png) no-repeat left center / contain;
    position: absolute;
    width: 15%;
    height: 150%;
    left: 0;
    z-index: 9;
    top:0;
    bottom: 0;
    margin: auto;
    animation: upDown 4s ease-in-out infinite;

}
div#project_conent:after {
    content: '';
    background: url(img/man.png) no-repeat right center / contain;
    position: absolute;
    width: 78%;
    height: 460px;
    right: 0;
    z-index: 9;
    top: 0;
    bottom: 23px;
    margin: auto;
}
div#project_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#project_conent a.btn_project {
    background: #40415b;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 25px;
}
#project_conent .btn_project i{
    margin-right: 15px;
    position: relative;
    animation: arrowMove 1.5s ease-in-out infinite;

}
div#project_footer p {
    font-size: 25px;
    color: #454f72;
    font-weight: 500;
    text-transform: uppercase;
}

div#about_content .left-content {
    padding: 50px;
    background: #f5efe3;
}
div#about_content h3 {
    font-size: 40px;
    text-align: center;
    color: #40415b;
    margin-bottom: 30px;
}
div#about_content p {
    color: #40415b;
    font-size: 34px;
    text-align: center;
    line-height: 55px;
}
div#about_content .left-content img {
    position: absolute;
    left: -80px;
    bottom: -80px;
}
div#about_content {
    margin: 50px 0;
}
div#about_content .row {
    border-radius: 22px !important;
    overflow: hidden;
}
div#about_content img.lef-before {
    position: absolute;
    left: -2rem;
    bottom: -3rem;
    width: 7rem;
    animation: spin 10s linear infinite;

}
div#module_content p {
    font-size: 40px;
    color: #40415b;
    margin-bottom: 70px;
}
div#module_content .module_item h4 {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 44px;
    color: #40415b;
}
div#module_content {
    padding: 50px 0;
}
div#module_content .module_item {
    padding: 0 35px;
}

div#module_content .module_item:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: #f0ae24;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -30px;
}
#module_content .module_item.last-child::after {
    display: none !important;
}
div#module_content img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -60px;
    animation: upDown 4s ease-in-out infinite;

}
div#faq_content {
    padding: 60px 0;
}
.main-menu ul li a.active {
    color: #f5a51e;
}
@media (max-width: 1200px) {
    div#project_conent:after,div#project_conent:before,div#module_content img{
        display: none;
    }
    .mobile_nopad{
        padding: 0!important;
    }
    div#project_footer {
        flex-direction: column!important;
    }
    #project_conent a.btn_project {
        margin-bottom: 30px;
    }
    div#project_footer p {
        text-align: center;
    }
    div#about_content .left-content {
        padding: 15px;
        background: #f5efe3;
    }
    div#about_content h3 {
        font-size: 30px;
    }
    div#about_content p {
        color: #40415b;
        font-size: 22px;
        text-align: center;
        line-height: 32px;
    }
    div#about_content {
        margin: 0;
    }
    div#module_content .module_item {
        padding: 20px 0;
    }
    div#module_content .module_item:after {
        margin: auto;
        right: 0!important;
        left: 0!important;
        top: auto!important;
    }
    div#module_content p {
        font-size: 40px;
        line-height: 62px;
        margin-bottom: 10px!important;
    }
    div#faq_content {
        padding: 0 20px 35px;
    }
    div#faq_content h3 {
        text-align: center;
    }

    .header-three .menu-area {
        margin-bottom: 0!important;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1299px) {
    #project_conent img {
        height: 350px!important;
    }
    div#project_conent:after {
        height: 360px!important;
        bottom: 56px!important;
        width: 18%;

    }
    div#module_content img {
        position: absolute;
        top: 0;
        bottom: 160px;
        margin: auto;
        right: 20px;
        animation: upDown 4s ease-in-out infinite;
    }
    div#about_content img.lef-before {
        left: 0rem;
    }
}