
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #03743d;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #03743d;
        border-top-color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #03743d;
        color: #fff;
        transition: all 0.4s;
    }

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgb(255, 255, 255);
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    border-bottom: 1px solid #e4f4d0;
}

    #header.header-scrolled {
        background: rgb(255, 255, 255);
        border-bottom: 1px solid #f3f3f3;
    }

    #header .logo {
        font-size: 26px;
        margin: 0% 0% 0% 0%;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

.nav-menu {
    margin: 0 0 0 auto;
}

#header .logo a {
    color: #0b2341;
}

#header .logo img {
    max-height:46px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }

    #header .logo {
        margin: 0%;
    }

    .nav-menu {
        margin: 0%;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 10px 5px 10px 5px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: #242424;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 6px 11px; 
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #fff;
        background: #03743d;
    }

.register-now {
    background: #03743d;
    color: #fff !important;
    border-radius: 3px;
    margin-top: -2px;
    padding: 8px 16px !important;
    animation: blinker 2s linear infinite;
    width: fit-content;
}

@keyframes blinker {
    50% {
        opacity: 0.6;
    }
}

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

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0b2341;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        color: #03743d;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    background: #03743d;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

    .get-started-btn:hover {
        background: #ef6445;
        color: #fff;
    }

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 20px 7px 20px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    top: 23px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: #0b2341;
    }

.mobile-nav {
    position: fixed;
    top: 42px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    padding: 10px 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        display: block;
        position: relative;
        color: #0b2341;
        padding: 10px 20px;
        font-weight: 500;
        outline: none;
        border-bottom: 1px solid #ddd;
    }

    .mobile-nav .register-now {
        border-radius: 0px;
        margin-top: 10px !important;
        width: fit-content;
        margin-left: 20px !important;
    }

    .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
        color: #03743d;
        text-decoration: none;
    }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 20px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: none;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #03743d;
    }



/** banner section start **/
.banner_section {
    width: 100%;
    margin-top: 1px;
    padding-bottom: 0px;
}

.banner-img {
    width: 100%;
    border-bottom: 1px solid #f0fde0;
}

.desktop-banner {
    display: block;
    margin: 0 auto;
}

.mob-banner {
    display: none;
}
/** banner section End **/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
 
section {
    padding: 40px 0px 47px 0px;
}
/** Start date 20/08/2025 **/
.section-bg {
    background-color: #daedce6b;
}
/** End date 20/08/2025 **/
.bg-gray {
    background: #f9f9f9;
} 
.section-title {
    padding-bottom: 1px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        line-height: 1px;
        margin: 0 0 5px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #aaaaaa;
        font-family: "Poppins", sans-serif;
    }

        .section-title h2::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: #f38b74;
            margin: 4px 10px;
        }

    .section-title h1,
    .section-title h6 {
        margin-bottom: 20px;
        font-size: 32px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: "Poppins", sans-serif;
        color: #0f2f57;
        text-align: center;
        position: relative;
    }

        .section-title h1:after,
        .section-title h6:after {
            display: block;
            content: "";
            width: 100px;
            height: 2px;
            background: #03743d;
            position: absolute;
            z-index: 2;
            left: 50%;
            margin-left: -50px;
            bottom: -7px;
        }

    .section-title h5 {
        color: #535353;
        font-size: 16px;
        margin-bottom: 2px;
        font-weight: 600;
        line-height: 20px;
    }


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
/** start date 23/10/2023 **/
.clients {
    text-align: center;
    padding: 10px 0px 10px 0px;
}

    .clients img {
        width: 100%;
        display: inline-block;
        margin: 0px 0px 10px 0;
        object-fit: contain;
    }

.partners-margin {
    margin-top: 1px;
}

.clients .partners-desk {
    max-width: 1140px;
    width: 100%;
    display: block;
}

.clients .partners-mob {
    width: 100%;
    display: none;
}
/** End date 23/10/2023 **/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about h5 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 4px;
}
/** Start date 20/08/2025 **/
.about .ab-h1 { 
    font-weight: 800;
    font-size: 30px;
    color: #03743d;
    line-height: 120%;
    margin-bottom: 4px;
    text-transform: uppercase;
    
}
.about p {
    font-size: 15px;
    line-height: 28px;
    text-align: left;
}
/** End date 20/08/2025 **/
    .about p b {
        color: #007101;
        font-weight: 700;
    }

.about .content ul {
    list-style: decimal;
    padding: 0;
    padding-left: 20px;
    font-size: 14px;
}

.overview-img {
    width: 100%;
    border: 1px solid #e8e7e7;
}

.about .content ul li {
    padding-left: 0px;
    position: relative;
}

    .about .content ul li + li {
        margin-top: 2px;
    }

.dt-box {
    padding-right: 5px;
    width: 100%;
}

    .dt-box p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .dt-box h6 {
        font-size: 18px;
        font-weight: 700;
        margin-top: 15px;
    }

    .dt-box .topic {
        font-size: 18px;
        margin-top: 15px;
    }

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #03743d;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #03743d;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #03743d;
}

    .about .content .btn-learn-more:hover {
        background: #03743d;
        color: #fff;
        text-decoration: none;
    }
/** Start date 20/08/2025 **/
  .bg-1 {
      background-image: url(../png/map-new.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: revert;
    background-size: cover;
    padding: 70px 0px 70px 0px;
  }
  .about .ab-row {
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap; /* allow wrapping to new line */
    gap: 20px; /* gap between items */
  }
  .about .ab-row > div {
    flex: 1 1 calc(50% - 20px); /* 50% width minus gap */ 
    text-align: center;  
    background-color: #FFF;
    margin: 0 0 10px 0;
    padding: 40px 5px 40px 5px;
    border-style: solid;
    border-width: 0 0 7px 0;
    border-color: #03743d;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 5px 13px 51px 62px rgba(9.999999999999991,50.99999999999997,80,.07)
  }
  .about .ab-row > div:hover { 
    background-color: #03743d; 
    border-color: #025503; 
  }
   .about .ab-row > div h6 {
        font-size: 52px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #03743d;
        margin: 0px 0px 25px 0px;
        text-align: center;
        font-family: "Open Sans", sans-serif;
    }

    .about .ab-row > div p {
        padding: 0px 0px 0px 0px;
        margin: 0;
        font-size: 17px;
        line-height: 21px;
        text-align: center;
        color: #444444;
        letter-spacing: 0.7px;
        font-weight: 600;
    }
     .about .ab-row > div:hover h6,
      .about .ab-row > div:hover p {
        color: #FFF;
      }
/** End date 20/08/2025 **/
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/


.counts .count-box {
    padding: 16px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}


    .counts .count-box h2 {
        font-size: 57px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #fff;
        margin: 0px 0px 20px 0px;
        text-align: center;
        font-family: "Open Sans", sans-serif;
    }

    .counts .count-box p {
        padding: 0px 0px 0px 0px;
        margin: 0;
        font-size: 17px;
        line-height: 21px;
        text-align: center;
        color: #fff;
        letter-spacing: 0.7px;
        font-weight: 600;
    }

    .counts .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #164682;
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        transition: ease-in-out 0.3s;
    }

        .counts .count-box a:hover {
            color: #2169c4;
        }

/*--------------------------------------------------------------
# technical
--------------------------------------------------------------*/


.technical .count-box {
    box-shadow: 1px 0px 21px 0 rgba(0, 77, 37, 0.12);
    padding: 28px 15px;
    width: 100%;
    background: #fff;
    border:1px solid #00763f48;
    border-radius: 10px;
    margin-bottom: 10px;
    margin: 10px auto 0 auto;
}

    .technical .count-box:hover { 
        border:1px solid #00763f;
    }

    .technical .count-box .price-dl {
        font-size: 42px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #00763f;
        text-align: center;
        width: 100%;
    }

    .technical .count-box .p-dl {
        padding: 12px 0 16px 0;
        margin: 0;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #444444;
        letter-spacing: 0.3px;
        font-weight: 500;
        width: 100%;
    }
.technical .count-box .h6-dl {
    font-size: 17px;
    line-height: 22px;
    display: block;
    font-weight: 700;
    color: #2f2f2f;
    text-align: left;
    width: 100%;
}
.technical .count-box .ul-box {
    width: 100%;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
}
.technical .count-box ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 5px 0 0px 0;
    width: 100%;
    margin-top: 10px;
}

.technical .count-box  ul li {
   margin-bottom: 12px;
    padding-left: 20px;
    background-image: url(../png/right.png);
    background-size: 12px;
    background-position: left 5px;
    background-repeat: no-repeat;
    font-size: 14px;
    color: #2f2f2f;
    font-weight: 500;
    letter-spacing: .3px
}
 
    .technical .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #164682;
        font-size: 15px;
        font-family: "Poppins", sans-serif;
        transition: ease-in-out 0.3s;
    }

        .technical .count-box a:hover {
            color: #2169c4;
        }

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

/** youtube video iframe css start **/
.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: '';
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/** youtube video iframe css end **/
.why-us .content {
    padding: 5px 100px 0 100px;
}

.faq-h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #0b2341;
}

.why-us .content h3 {
    font-weight: 500;
    font-size: 21px;
    color: #0b2341;
    text-align: center;
}

.ul-who-should {
    margin: 0px 0px 0px 0px;
    padding: 0px;
    width: 100%;
}

    .ul-who-should li {
        font-size: 17px;
        line-height: 1.3em;
        color: #000;
        font-weight: 500;
        padding: 18px 5px;
        margin-bottom: 0px;
        border-bottom: 1px solid rgba(114, 182, 64, 0.5);
        list-style-type: none;
    }

        .ul-who-should li:hover {
            background: #73b642;
            color: #fff;
        }

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
    margin-bottom: 25px;
    text-align: center;
}

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.why-us .accordion-list {
    padding: 0 100px 0px 100px;
}

    .why-us .accordion-list ul {
        padding: 0;
        list-style: none;
        margin: 0px;
    }

    .why-us .accordion-list li + li {
        margin-top: 0px;
    }

    .why-us .accordion-list .faq-ul li {
        border: none;
        padding: 6px 1px;
        font-size: 15px;
        list-style-type: decimal;
        margin: 4px 0% 0% 15px;
    }

    .why-us .accordion-list li {
        padding: 15px 20px;
        border-radius: 4px;
        background: #fff;
        border: 1px solid #f2f2f2;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .why-us .accordion-list a {
        color: #0b2341;
        display: block;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-size: 17px;
        line-height: 24px;
        font-weight: 500;
        padding-right: 30px;
        outline: none;
    }
    .why-us .accordion-list .email-a {
        display: inline-block;
        font-size: 15px;
        padding: 0;
    }
    .why-us .accordion-list span {
        color: #03743d;
        font-weight: 500;
        font-size: 17px;
        padding-right: 2px;
    }

    .why-us .accordion-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .why-us .accordion-list p {
        margin-bottom: 0;
        padding: 10px 0 0 0;
        font-size: 15px;
    }

    .why-us .accordion-list .icon-show {
        display: none;
    }

    .why-us .accordion-list a.collapsed {
        color: #0b2341;
    }

        .why-us .accordion-list a.collapsed:hover {
            color: #03743d;
        }

        .why-us .accordion-list a.collapsed .icon-show {
            display: inline-block;
        }

        .why-us .accordion-list a.collapsed .icon-close {
            display: none;
        }

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#03743d 50%, rgba(237, 80, 46, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .why-us .play-btn::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .why-us .play-btn::before {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation: pulsate-btn 2s;
        animation: pulsate-btn 2s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: steps;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(237, 80, 46, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .why-us .play-btn:hover::after {
        border-left: 15px solid #03743d;
        transform: scale(20);
    }

    .why-us .play-btn:hover::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        -webkit-animation: none;
        animation: none;
        border-radius: 0;
    }

.table-section {
    max-width: 770px;
    margin: 0 auto;
    overflow-x: auto;
    display: grid;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

    .table-section table {
        border: 1px solid #ececec;
        border-collapse: collapse;
        margin: 0 0 0 0;
        padding: 0;
        width: 100%;
        background: #fff;
    }

    .table-section::-webkit-scrollbar {
        height: 2px
    }

    .table-section::-webkit-scrollbar-thumb {
        background: #eaeaea;
        width: 20px;
        border-radius: 0
    }

    .table-section table thead tr {
        background: #03743d;
        color: #fff;
    }

    .table-section table tr {
        border: 1px solid #e3e3e3
    }

    .table-section table th, .table-section table td {
        padding: 6px 10px;
        text-align: left;
        font-size: 15px;
        vertical-align: top;
        border-left: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
    }

    .table-section table td {
        color: #424242
    }

        .table-section table td .magazine-name {
            font-weight: 600
        }

    .table-section table thead th {
        font-size: 15px;
        letter-spacing: .2px;
        font-weight: 600;
        padding: 6px 10px;
        text-transform: uppercase;
    }

    .table-section td a {
        color: #4b80aa;
    }

        .table-section td a:hover {
            color: #4b80aa;
            text-decoration: underline;
        }

@media (max-width: 1024px) {
    .why-us .content, .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/** start date 05/12/2023 **/
/** Slider owl-carousel section start **/
.row-owl-slider {
    width: 100%;
    margin: 0% 0% 0% 0%;
}

    .row-owl-slider .img-wrapper {
        width: 100%;
        box-sizing: border-box;
    }

    .row-owl-slider .owl-carousel .fa-bg {
        display: inline-block;
        text-align: center;
        line-height: 34px;
        width: 22px;
        background: rgba(2, 82, 2, 0.6);
        color: #C9C9C9;
        position: absolute;
        top: 51%;
        transform: translateY(-50%);
        z-index: 100;
        cursor: pointer;
        padding: 7px 6px;
        height: auto;
    }

    .row-owl-slider .owl-carousel .fa-angle-right {
        right: 0px;
        border-radius: 0px;
    }

    .row-owl-slider .owl-carousel .fa-angle-left {
        left: 0px;
        border-radius: 0px;
    }

    .row-owl-slider .carousel-wrap .owl-nav {
        display: flex;
    }
    /** .banner-slider .carousel-wrap .owl-nav {
  display: flex;
} **/
    /** owl dots start is hidden**/
    .row-owl-slider .carousel-wrap .owl-dots {
        display: block;
        margin-top: -30px;
        position: relative;
        display: none;
    }

    .row-owl-slider .carousel-wrap .owl-dots {
        text-align: center;
        padding-top: 0px;
    }

        .row-owl-slider .carousel-wrap .owl-dots button.owl-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            background: #f5f5f5;
            margin: 0 2px;
        }

            .row-owl-slider .carousel-wrap .owl-dots button.owl-dot.active {
                background-color: rgb(76, 155, 76);
            }

            .row-owl-slider .carousel-wrap .owl-dots button.owl-dot:focus {
                outline: none;
            }
/** owl dots end **/
/** Slider owl-carousel section end **/
.quotes-team {
    width: 100%;
}

.team-section {
    width: 100%;
    border: 1px solid #ececec;
    padding: 5px;
    margin: 0px;
    background: #fff;
    text-align: center;
    min-height: 521px;
}

    .team-section:hover {
        border: 1px solid #e7e7e7;
        box-shadow: 0px 2px 5px #dfdfdf;
    }

    .team-section .team-img {
        width: 100%;
        padding: 3px;
    }

    .team-section .dis-p {
        line-height: 20px;
        font-size: 14px;
        margin-bottom: 0;
        color: #2a2a2a;
        text-align: left;
        padding: 8px 3px 2px 5px;
    }

    .team-section .name-h5 {
        font-weight: 600;
        margin-bottom: 0px;
        font-size: 14px;
        color: #2d2d2d;
        text-align: left;
        padding: 4px 3px 1px 5px;
        letter-spacing: 0.2px;
        line-height: 20px;
    }

.articles-section {
    width: 100%;
    border: 1px solid #ececec;
    padding: 5px;
    margin: 0px;
    background: #fff;
    text-align: center;
    min-height: 410px;
}

    .articles-section:hover {
        border: 1px solid #e7e7e7;
        box-shadow: 0px 2px 5px #dfdfdf;
    }

    .articles-section .articles-img {
        width: 100%;
        padding: 3px;
    }

    .articles-section .name-h5 {
        font-weight: 600;
        margin-bottom: 0px;
        font-size: 15px;
        color: #2d2d2d;
        text-align: left;
        padding: 5px 3px 1px 5px;
        letter-spacing: 0.2px;
        line-height: 20px;
    }

    .articles-section .dis-p {
        line-height: 20px;
        font-size: 14px;
        margin-bottom: 0;
        color: #2a2a2a;
        text-align: left;
        padding: 3px 3px 2px 5px;
    }




/** End date 05/12/2023 **/

/** Start date 06/12/2023 **/


.row-owl-slider #gallery-pop .owl-dots {
    margin-top: 0px;
    display: block !important;
}

    .row-owl-slider #gallery-pop .owl-dots button.owl-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
        background: #cccccc;
        margin: 0 2px;
    }

        .row-owl-slider #gallery-pop .owl-dots button.owl-dot.active {
            background-color: rgb(76, 155, 76);
        }

.gallery-section {
    width: 100%;
    border: 1px solid #ececec;
    padding: 5px;
    margin: 0px;
    background: #fff;
    text-align: center;
}

    .gallery-section .gallery-img {
        width: 100%;
        padding: 3px;
    }

.videos-box {
    margin-bottom: 30px;
}

    .videos-box p {
        text-align: center;
        color: #646464;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 7px;
    }
/** End date 06/12/2023 **/




/*End style*/



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    padding: 80px 0;
    background: #0b2341;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 35px;
        border-radius: 4px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #03743d;
        color: #fff;
    }

        .cta .cta-btn:hover {
            background: #03743d;
            border: 2px solid #03743d;
        }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.address .icon-box {
    text-align: center;
    padding: 0px;
    transition: all ease-in-out 0.3s;
    width: 80%;
    margin: 0 auto;
}

    .address .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #ed502e;
        border-radius: 5px;
        transition: all 0.3s ease-out 0s;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transform-style: preserve-3d;
        position: relative;
        z-index: 2;
    }

    .address .icon-box h5 {
        margin-bottom: 10px;
        font-size: 25px;
        color: #0f2f57;
        margin-top: 0;
        text-transform: uppercase;
        font-weight: 600;
    }

    .address .icon-box h4 {
        font-weight: 600;
        margin-bottom: 3px;
        font-size: 19px;
        color: #2d2d2d;
        margin-top: 8px;
    }

    .address .icon-box p {
        line-height: 20px;
        font-size: 14px;
        margin-bottom: 0;
        color: #4d4d4d;
    }



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 10px;
    background: #fcfcfc;
    position: relative;
    overflow: hidden;
}

    .team .member .member-info {
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.2s;
    }

    .team .member .member-info-content {
        position: absolute;
        left: 50px;
        right: 0;
        bottom: 0;
        transition: bottom 0.4s;
    }

    .team .member h4 {
        font-weight: 600;
        margin-bottom: 2px;
        font-size: 16px;
        color: #2d2d2d;
        margin-top: 8px;
    }

    .team .member span {
        display: block;
        font-size: 13px;
        margin-bottom: 8px;
        color: #4d4d4d;
        letter-spacing: 0px;
        line-height: 15px;
    }

    .team .member .social {
        position: absolute;
        left: -50px;
        top: 0;
        bottom: 0;
        width: 50px;
        transition: left ease-in-out 0.3s;
        background: rgba(11, 35, 65, 0.5);
        text-align: center;
    }

        .team .member .social a {
            transition: color 0.3s;
            display: block;
            color: #fff;
            margin-top: 15px;
        }

            .team .member .social a:hover {
                color: #03743d;
            }

        .team .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .team .member:hover .member-info {
        background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
        opacity: 1;
        transition: 0.4s;
    }

    .team .member:hover .member-info-content {
        bottom: 30px;
        transition: bottom 0.4s;
    }

    .team .member:hover .social {
        left: 0;
        transition: left ease-in-out 0.3s;
    }



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 27px 0 30px 0;
    background: #fff;
}

.enquire-h3 {
    font-size: 19px;
    color: #292929;
    font-weight: 600;
    margin: 0px 0px 8px 0px;
    text-align: center;
    text-transform: uppercase;
}

.box-margin-right {
    padding-right: 7px;
}

.box-margin-left {
    padding-left: 7px;
}

.contact .info-box p a {
    color: #0b2341;
}

.contact .info-box i {
    font-size: 32px;
    color: #03743d;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #afec81;
}

.contact .info-box h3 {
    font-size: 18px;
    color: #292929;
    font-weight: 600;
    margin: 10px 0 3px 0px;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #393939;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 27px 15px;
    background: #fff;
}

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .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;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
            border-color: #03743d;
        }

    .contact .php-email-form input {
        padding: 20px 15px;
    }

    .contact .php-email-form textarea {
        padding: 12px 15px;
    }

    .contact .php-email-form button {
        background: #03743d;
        border: 0;
        padding: 9px 30px;
        color: #fff;
        transition: 0.4s;
        font-size: 15px;
        font-weight: 600;
        margin-top: 4px;
    }

        .contact .php-email-form button:hover {
            background: #03743d;
        }

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

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f6f9fd;
    min-height: 40px;
    margin-top: 82px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 74px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0b2341;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            display: inline-block;
            padding-right: 10px;
            color: #123a6d;
            content: "/";
        }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-container {
        position: relative;
    }

    .portfolio-details .portfolio-details-carousel {
        position: relative;
        z-index: 1;
    }

        .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: left;
        }

        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }

            .portfolio-details .portfolio-details-carousel .owl-dot.active {
                background-color: #03743d !important;
            }

    .portfolio-details .portfolio-info {
        padding: 30px;
        position: absolute;
        right: 0;
        bottom: -70px;
        background: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 50px;
    }

        .portfolio-details .portfolio-description h2 {
            width: 50%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
        }

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }

    .box-margin-right {
        padding-right: 15px;
    }

    .box-margin-left {
        padding-left: 15px;
    }

    .mob-form-margin {
        margin-top: 20px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #070707;
    padding: 0 0 20px 0;
    color: #dbdbdb;
    font-size: 14px;
}

    #footer .footer-top {
        background: #161616;
        padding: 50px 0 45px 0;
        border-top: 1px solid #070707;
        border-bottom: 1px solid #070707;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 0px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 19px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0; 
                color: #fff;
                font-weight: 600;
                line-height: 24px;
                text-transform: uppercase;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                margin-bottom: 15px;
                color: #fff;
                line-height: 26px;
                letter-spacing: 0.3px;
            }

                #footer .footer-top .footer-info p a {
                    color: #fff;
                }

                    #footer .footer-top .footer-info p a:hover {
                        color: #dadada;
                        text-decoration: underline;
                    }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: 600;
            color: #364146;
            position: relative;
            padding-bottom: 12px;
        }

    #footer .copyright {
        text-align: center;
        padding-top: 20px;
        font-size: 12px;
    }

    #footer .credits {
        padding-top: 8px;
        text-align: center;
        font-size: 13px;
        color: #364146;
    }


/** payment section start **/
.payment-sec {
    padding: 5px 0px 15px 0px;
    width: 100%;
}

.section-heading-h5 {
    font-size: 27px;
    margin-left: 0px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 5px;
}

.payment-detail {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .payment-detail .payment-s1 {
        width: 100%;
        margin: 10% 0% 10% 0%;
        padding: 0%;
        text-align: center;
    }

        .payment-detail .payment-s1 h6 {
            font-size: 30px;
            margin-left: 0px;
            font-weight: 600;
            line-height: 50px;
            margin-bottom: 8px;
            margin-top: 8px;
        }

        .payment-detail .payment-s1 p {
            font-size: 16px;
            margin-left: 0px;
            line-height: 26px;
            margin-bottom: 10px;
            color: #3a3636;
        }

.success-h6 {
    color: #01a601;
}

.failed-h6 {
    color: #ef3039;
}

.payment-icon {
    width: 120px;
    margin-bottom: 10px;
}


/** payment section end **/

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 0px 0;
    }

    .banner_section {
        margin-top: 7px;
    }

    #header {
        padding: 3px 0;
    }

        #header .logo img {
            max-height: 35px;
        }

    section {
        padding: 30px 0;
    }

    .member {
        width: 100%;
        margin: 5px auto 0px auto;
    }

    .team .member h4 {
        margin-bottom: 2px;
        font-size: 15px;
        margin-top: 7px;
    }

    .mobile-nav-toggle {
        top: 7px;
        right: 15px;
    }

    .why-us .accordion-list {
        padding-bottom: 10px;
    }

    .section-title h6 {
        margin-bottom: 20px;
        font-size: 27px;
        text-align: center;
    }

    .about p {
        text-align: left;
        font-size: 14px;
    }
    .bg-1 { 
    padding: 30px 0px 40px 0px;
    }
    .about .ab-row {
    padding-left: 0;
    gap: 15px;  
    margin-top: 25px;
    }

    .about .ab-row > div { 
    flex: 1 1 calc(50% - 15px);
    padding: 40px 2px 40px 2px;
    margin:0px;
    }
    .about .ab-row > div h6 {
    font-size: 45px;
    margin: 0px 0px 17px 0px;
    }
    .about .ab-row > div p { 
    font-size: 14px;
    }
    .about .ab-h1 {
    font-weight: 800;
    font-size: 26px;
    }
    .ul-who-should li {
        font-size: 15px;
        padding: 11px 5px;
        margin-bottom: 0px;
    }

    .why-us .accordion-list a {
        font-size: 16px;
        padding-right: 20px;
    }

    .why-us .accordion-list li {
        padding: 13px 12px;
    }

    .table-section table th, .table-section table td {
        padding: 5px 5px;
        font-size: 14px;
    }

    .table-section table thead th {
        font-size: 15px;
        letter-spacing: .2px;
        font-weight: 600;
        padding: 5px 5px;
    }

    .desktop-banner {
        display: none;
    }

    .mob-banner {
        display: block;
    }

    /** payment section Start **/
    .payment-detail .payment-s1 {
        margin: 17% 0% 9% 0%;
    }

    .payment-icon {
        width: 90px;
        margin-bottom: 10px;
    }

    .payment-detail .payment-s1 h6 {
        font-size: 31px;
    }

    .payment-detail .payment-s1 p {
        font-size: 15px;
        line-height: 21px;
    }
    /** payment section end **/
    /** start date 23/10/2023 **/
    .clients .partners-desk {
        max-width: 1140px;
        width: 100%;
        display: none;
    }

    .clients .partners-mob {
        width: 100%;
        display: block;
    }
    /** End date 23/10/2023 **/

}

.bk-mobile {
    display: none !important;
}

@media (max-width: 768px) {

    .bk-desktop {
        display: none !important;
    }

    .bk-mobile {
        display: block !important;
        font-size: 14px !important;
        padding: 9px 12px !important;
        line-height: initial !important;
        position: absolute !important;
        right: 55px !important;
    }
}
