/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    color: #212529;
}


a {
    text-decoration: none;
}

a:hover {
    color: #ef7f4d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #009743;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #009743;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 3px 16px #0aae522b;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #7a6960;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

/* #main {
    margin-top: 72px;
}
 */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #222;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
    color: #ffcb0a;
}

.navbar .getstarted {
    background: #ffcb0a;
    color: #222;
    padding: 10px 25px;
    margin-left: 50px;
    border-radius: 50px;
    max-width: 120px;
}

.navbar .getstarted:hover {
    color: #fff;
    background: #05853e;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #eb5d1e;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #009743;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000000a3;
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #222;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #eb5d1e;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    background: url('../img/hero_bg.svg') no-repeat center center;
    background-size: 100%;
}

#hero .btn-get-started {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
}
.btn_store a {
    margin-right: 15px;
}
#hero h1 {
    letter-spacing: 0px;
    color: #dfdfe6;
    font-size: 117px;
    line-height: 140px;
    font-weight: 100;
}
#hero h2 {
    font-size: 50px;
    color: #222;
    line-height: 60px;
    font-weight: 900;
    padding-bottom: 25px;
}
#hero p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #8b8b8b;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.contact .section-title {
    text-align: left;
}

.section-bg {
    background: #edfff5;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 10px 23px 36px #0097431c;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
}

.services .icon-box:hover {
    transform: translateY(-5px);
    background: #009743;
    color: #fff !important;
}

.services .icon i {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 15px;
    color: #009743;
    background: #fff5cf;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 30px;
    margin: 0 auto;
    transition: 0.3s;
}
.icon-box:hover .content_box h4,
.icon-box:hover .content_box p,
.icon-box:hover .icon i {
    color: #fff;
    
}
.icon-box:hover .icon i{
  background: #ffcb0a;
}
.services {
    position: relative;
}
.services .t1{
    bottom: 31%;
}
.icon {
    min-height: 150px;
}
.services h4 {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 21px;
    line-height: 26px;
}

.services a {
    color: #111;
}
.services p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0px;
    color: #8b8b8b;
    font-weight: 300;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
    transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
    opacity: 1;
}

.clients .clients-slider .swiper-pagination {
    margin-top: 80px;
    position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #009743;
    opacity: 1;
    border: 1px solid #009743;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffcb0a;
    border: 1px solid #ffcb0a;
}

.section-title h1 {
    font-size: 40px;
    letter-spacing: 0px;
    color: #222222;
    line-height: 46px;
    font-weight: 900;
}
.section-title p {
    letter-spacing: 0px;
    color: #8b8b8b;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.clients .clients-slider .swiper-slide h5 {
    font-size: 16px;
    font-weight: bold;
    color: #1D1D1D;
    padding: 15px 0 0;
}
.clients .clients-slider .swiper-slide {
    border: 1px solid #DFDFE6;
    text-align: center;
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.winn_box_c h1 b {
    color: #B6FBD5;
    font-size: 126px;
    line-height: 140px;
}

.winn_box_c h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 48px;
}
.business_box h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 46px;
    padding-bottom: 20px;
}

.business_box {
    text-align: center;
    padding: 0 100px;
    border-left: 10px solid #009743;
    border-right: 10px solid #009743;
}

.business_box p {
    font-size: 18px;
    line-height: 28px;
}
.business_sec {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
}
/* .adv{
    background: url('../img/section-bg-map.png') no-repeat center center;
    background-size: 100%;
    position: relative;
    height: 100vh;
} */
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
}
.contact {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
}
.clients {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}


.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #7a6960;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #eb5d1e;
    color: #fff;
}

.contact .php-email-form {
    padding: 40px;
    width: 100%;
    background: #ffffff 0% 0% no-repeat padding-box;
    border: 1px solid #DFDFE6;
    border-radius: 45px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 50px;
    border: none;
    border-bottom: 1px solid #0097431c;

}
.contact .php-email-form select{
    height: 50px;
    border: none;
    border-bottom: 1px solid #0097431c;
    font-size: 14px;
    color: #6c757d;
}
.top_banner {
    background: #009743;
    position: relative;
    padding-top: 120px;
    padding-bottom: 50px;
}
 .t1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.t2 {
    position: absolute;
    right:0;
    top: 0;
}
.top_banner h2 {
    text-align: center;
    color: #fff;
    font-weight: 900;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 0;
}

.terms_condtions p {
    font-size: 16px;
    color: #222;
    line-height: 25px;
}
.contact .php-email-form textarea {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #0097431c;
    resize: none;
}

.contact .php-email-form button[type="submit"] {
    background: #009743;
    border: 0;
    padding: 10px 50px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
    margin-top: 30px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ffcb0a;
}
.email_id {
    display: flex;
    align-items: center;
}

.email_contact a {
    background: #009743;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    border-radius: 50%;
    padding: 5px;
    color: #fff;
    margin-right: 15px;
}

.email_id h5 {
    margin-bottom: 0;
    letter-spacing: 0px;
    color: #222222;
    font-size: 20px;
    line-height: 27px;
}

.email_id h6 {
    letter-spacing: 0px;
    color: #8B8B8B;
    margin-bottom: 0;
    line-height: 28px;
}

.email_id {
    margin-top: 30px;
}
.terms_condtions ul {
    padding-left: 0;
    list-style: none;
}

.terms_condtions ul li {
    position: relative;
    padding-left: 15px;
    padding-bottom: 10px;
}

.terms_condtions ul li:before {
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ffcb0a;
    content: '';
    border-radius: 50%;
    top: 6px;
    bottom: 0;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 0px 0;
    color: #fff;
    font-size: 14px;
    background: #009743;
}

#footer .footer-newsletter {
    padding: 80px 0;
    text-align: center;
    font-size: 15px;
    background: url("../img/footer-bg.svg") no-repeat center center;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

.social_link a {
    background: rgb(0 0 0 / 18%);
    border-radius: 50%;
    padding: 10px 13px 12px;
    color: #fff;
    margin-left: 10px;
}
.web_box a {
    background: rgb(0 0 0 / 18%);
    border-radius: 50%;
    padding: 6px 10px 10px;
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
}
.social_link {
    text-align: right;
}
.footer_box ul {
    padding-left: 0;
    margin-top: 60px;
}

.footer_box ul li {
    display: inline-block;
    margin: 0 25px;
}

.footer_box ul li a {
    color: #222222;
    font-weight: 500;
    transition: 0.3s;
}
.footer_box ul li a:hover {
    color: #ffcb0a;
}

/* Custom Responsive */

@media (max-width:1450px) {

    #hero h2{
        font-size: 32px;
        line-height: 38px;
    }
    .business_box h1{
        font-size: 32px;
        line-height: 38px;
    }
    .section-title h1{
        font-size: 32px;
        line-height: 38px;
    }
    .services h4{
        font-size: 18px;
        line-height: 22px;
    }
    .winn_box_c h1 b {
        font-size: 96px;
        line-height: 100px;
    }
    .winn_box_c h1 {
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 15px;
    }
    .t1 img {
        max-width: 65%;
    }
    .t2 img {
        max-width: 65%;
    }
    #hero .animated {
        max-width: 56%;
    }
}

@media (max-width: 991px) {
    .hiw_sec {
        padding-left: 0px;
    }
    .services .icon-box{
        padding: 15px;
    }
    .contact .php-email-form{
        padding: 15px;
        border-radius: 20px;
    }

}

@media (max-width: 767px) {
    .sec_img_bg{
        background-image: none;
    }
    .hiw_sec ul li{
        color: #111;
    }
    #hero h1{
        font-size: 80px;
        line-height: 90px;
    }
    .services {
        padding-top: 30px;
        padding-bottom: 15px;
    }
    #hero h2{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0;
        padding-bottom: 15px;
        padding-top: 40px;
    }
    .services h4{
        margin-top: 15px;
    }
    .about .section-title span{
        font-size: 80px;
        line-height: 90px;
    }
    .clients .clients-slider .swiper-pagination{
        margin-top: 40px;
    }
    .section-title h1{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .winn_box_c h1{
        font-size: 21px;
        line-height: 25px;
    }
    .btn_store a {
        margin-right: 10px;
        margin-left: 10px;
    }
    #hero{
        text-align: center;
    }
    .winn_box_c h1 b {
        font-size: 50px;
        line-height: 60px;
    }
    .top_banner {
        padding-bottom: 24px;
        padding-top: 75px;
    }
    .top_banner h2{
        font-size: 24px;
        line-height: 30px;
    }
    .terms_condtions p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer_box ul li{
        margin: 0 15px;
    }
    .footer_box ul li a{
        font-size: 12px;
    }
    .contact {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .t1 img{
        display: none;
    }
    .t2 img{
       display: none;  
    }
    .business_sec{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .business_box{
        padding: 0 15px;
    }
    #main{
        margin-top: 15px;
    }
    .business_box p{
        font-size: 14px;
        line-height: 20px;
    }
    .business_box h1{
        font-size: 24px;
        padding-bottom: 10px;
        line-height: 30px;
        margin-bottom: 0;
    }
    #hero .animated{
        max-width: 100%;
    }
    .terms_condtions ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .terms_condtions h6 {
        font-size: 14px;
        line-height: 22px;
    }
    .adv img {
        display: none;
    }
   
}


@media (max-width: 575px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        -moz-text-align-last: center;
        text-align-last: center;
        padding: 15px 0;
    }
    .footer_box ul li{
        margin: 0 5px;
    }
    .web_box {
    text-align: center;
    margin-bottom: 15px;
}
.social_link {
    text-align: center;
    margin-top: 15px;
    }
.adv{
    background: url('../img/mobile_are.png') no-repeat center center;
    background-size: 100%;
    position: relative;
    height: 1100px;
    }

}
@media (max-width: 480px) {
.clients{
    height: 65vh;
}
@media (max-width: 375px) {
.clients{
    align-items: flex-end;
    padding-top: 0;
    height: 70vh;
    }
}
@media (max-width: 320px) {
.clients{
    align-items: flex-end;
    padding-top: 0;
    height: 78vh;
    }
.clients .clients-slider .swiper-slide {
    padding-top: 20px;
    padding-bottom: 20px;
    }
}