:root{

    --white: #ffffff;
    --black: #040404;
    --charcoal: #536A79;
    --light-charcoal: #A4B5C1;
    --green: #0CA236;
    --lighgreen: #e5ffe5;
    --lighgray: #d6d6d6;

}
body {
    overflow-x: hidden;
  }
/* ========================== HOME PAGE ========================== */
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(/images/image0.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* ========================== NAVIGATION BAR ========================== */
.navigation {
    display: absolute;
    width: 100%;
    height: 100px;
}

nav {
    display: flex;
    padding: 22.5px 112px;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 100px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: var(--light-charcoal);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.nav-links ul li .active {
    color: var(--green);
    font-weight: 500;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--green);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* =============== DROPDOWN =============== */

.nav-links ul li.dropdown {
    position: relative;
}

.nav-links ul li .dropdown-content {
    display: none;
    position: absolute;
    top: 45px; /* distance below "About" link */
    left: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 999;
}

.nav-links ul li .dropdown-content li {
    display: block;
    padding: 0;
}

.nav-links ul li .dropdown-content li a {
    display: block;
    padding: 10px 16px;
    color: var(--light-charcoal);
    background-color: white;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

.nav-links ul li .dropdown-content li a:hover {
    background-color: #f2f2f2;
    color: var(--green);
}

.nav-links ul li.dropdown:hover .dropdown-content {
    display: block;
}
/* =======STICKY BUTTON============= */
html{
    scroll-behavior: smooth;
}
#back-to-top{
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    font-size: 16px;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: var(--green);
    cursor: pointer;
    outline: none;
    border: 3px solid var(--green);
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    text-align: center;
}
#back-to-top:hover, #back-to-top:focus {
    background-color: var(--green);
    color: var(--white);
}

.btnEntrance{
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: btnEntrance;
}
/* zoom in */
@keyframes btnEntrance{
    from{
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to{
        opacity: 1;
    }
}
.btnExit{
    animation-duration: 0.25s;
    animation-fill-mode: both;
    animation-name: btnExit;
}
/* zoom out */
@keyframes btnExit{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

/* ========================== HOME ==========================
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 180px;
    color: #fff;
}
.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 62px;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-subheadline-container{
    margin-top: 40px;
}
.hero-subheadline {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}
.social-icons {
    margin-top: 12px;
    list-style-type: none;
    padding: 0;
}
.social-icons {
    display: inline-block;
    margin-left: 10px;
}
.social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
}

} */

/* ========================== SLIDER ========================== */
.slide{
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
.slider figure div{
    float: left;
    width: 20%;
}
.slider figure img{
    width: 100%;
    height: 100vh;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    float: left;
}
.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    animation: animate 20s infinite;
}
@keyframes animate{
    0%{left: 0%;}
    10%{left: 0%;}
    12%{left: -100%;}
    22%{left: -100%;}
    24%{left: -200%;}
    32%{left: -200%;}
    36%{left: -300%;}
    46%{left: -300%;}
    48%{left: -400%;}
    58%{left: -400%;}
    60%{left: -300%;}
    70%{left: -300%;}
    72%{left: -200%;}
    82%{left: -200%;}
    84%{left: -100%;}
    94%{left: -100%;}
    96%{left: 0%;}
}
.hero-content{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}
.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 62px;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero-subheadline-container{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.hero-subheadline {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}
.social-icons {
    margin-top: 12px;
    list-style-type: none;
}
.social-icons {
    display: inline-block;
    margin-left: 10px;
    padding: 0;
}
.social-icons a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}
nav i{
    display: none;
}
nav .ri-close-fill
{
    color: #fff;
}

/* ========================== PARTNERS ========================== */
.partners-section {
    text-align: center;
    margin-top: 56px;
}

.partners-subheadline {
    font-size: 30px;
    font-weight: bold;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.partner-logo {
    margin: 10px;
}

.partner-logo img {
    max-height: 60px;
}

/* ========================== MISSION/VISION ========================== */
.mvc-title h1{
    font-size: 42px;
    color: var(--black);
    text-align: center;
    margin: 0;
    padding: 56px 112px;
    font-weight: 700;
}
.row{
    color: var(--black);
    text-align: left;
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 1%; 
}
.row img, h3{
    padding-bottom: 6%;
}
.mission{
    flex-basis: 45%;
    margin-bottom: 5%;
    padding: 64px 32px;
    box-sizing: border-box;
}
.vision{
    flex-basis: 45%;
    margin-bottom: 5%;
    padding: 64px 32px;
    box-sizing: border-box;
}
.core{
    flex-basis: 45%;
    margin-bottom: 5%;
    padding: 64px 32px;
    box-sizing: border-box;
}
.core ul{
    padding-left: 4%;
}
.quality ul{
    padding-left: 4%;
}
.quality{
    flex-basis: 45%;
    margin-bottom: 5%;
    padding: 64px 32px;
    box-sizing: border-box;
}
.quality:hover{
    background-color: var(--green);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    transition: all .38s ease;
}
.quality:hover img{
    content: url(images/com-quality-white.svg);
}
.mission:hover{
    background-color: var(--green);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    transition: all .38s ease;
}
.mission:hover img{
    content: url(images/mvc-mission-white.svg);
}
.vision:hover{
    background-color: var(--green);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    transition: all .38s ease;
}
.vision:hover img{
    content: url(images/com-vision-white.svg);
}
.core:hover{
    background-color: var(--green);
    color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    
    transition: all .38s ease;
}
.core:hover img{
    content: url(images/com-core-white.svg);
}

/* ========================== OVERVIEW ========================== */
.overview-section{
    margin: 84px 56px;
}
.btnOver{
    text-align: left;
    padding-left: 1%;
}
.oBtn{
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--green);
    padding: 12px 34px  ;
    font-size: 13px;
    background: var(--green);
    position: relative;
}
.row2{
    display: flex;
    align-items: left;
    height: 88%;
}
.col{
    padding-left: 56px;
}
.col h1{
    padding-top: 2%;
    font-size: 42px;
    text-align: left;
}
.ePhoto img{
    padding-right: 10%;
    width: 594px;
    height: 640px;
    margin-right: 10%;
}
.import{
    display: flex;
    padding-top: 10%;
}
.six{
    padding-left: 30%;
}
.bs{
    display: flex;
    padding-top: 10%;
}
.supplier{
    padding-left: 49%;
}
.seven h1:hover{
    color: var(--green);
    cursor: pointer;
}
.six h1:hover{
    color: var(--green);
    cursor: pointer;
}
.buyer h1:hover{
    color: var(--green);
    cursor: pointer;
}
.supplier h1:hover{
    color: var(--green);
    cursor: pointer;
}

/* ========================== BANNER ========================== */
.build{
    text-align: center;
    padding: 56px 112px;
    background-color: var(--green);
}
.future{
    color: var(--white);
}
.future h1{
    font-size: 48px;
    padding-bottom: 18px;
}
.future p{
    font-size: 18px;
    padding-bottom: 32px;
}
.future a{
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 34px  ;
    font-size: 13px;
    background: var(--green);
    position: relative;
    cursor: pointer;
}
.future a:hover{
    background: var(--white);
    color: var(--green);
    transition: 0.5s;
}

/* ========================== TESTIMONIALS ========================== */
.tArea{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.tArea .owl-carousel{
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -40px;
    padding-right: 10px;
}
.container{
    max-width: 1000px;
    margin: auto; 
}
.theadline h1{
    font-size: 40px;
    padding-bottom: 24px;
    text-align: center;
}
.single{
    border: 2px solid var(--green);
    text-align: center;
    position: relative;
    z-index: 2;
    height: auto;
}
.single p{
    font-size: 24px;
    font-weight: bold;
    padding: 50px;
    padding-bottom: 24px;
    position: relative;
    z-index: 3;
    line-height: 50px;
}
.client-details h6{
    font-size: 16px;
    padding-top: 5px;
}
.client-details span{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 5px;
    font-size: 16px;
}
.client-pic{
    display: inline-block;
    border-radius: 50px;
    padding-top: 30px;
}
.owl-dots{
    text-align: center;
    margin-top: 50px;
}
.owl-dots button{
    background: var(--green) !important;
    width: 15px;
    height: 15px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}
.owl-dots button.active{
    width: 30px;
}

/* ========================== FAQS ========================== */
.fre{
    padding: 80px 0 0 0;
}
.freq h1{
    font-size: 42px;
    text-align: center;
}
.accordion{
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}
.accItem{
    margin: -1px 0;
}
.accItem-header{
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accItem-header::after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z'/%3E%3C/svg%3E");
    font-size: 16px;
    position: absolute;
    right: 1rem;
    transition: transform 0.38s ease-in-out;
}
.accItem-header.active::after{
    /* content: "\02C4"; */
    transform: rotate(180deg);
}
.accItem-body{
    display: none;
    padding: 1rem;
    line-height: 1.5rem;
    justify-content: left;

}
.accItem-body ul{
    padding-left: 2.5%;
}
.accItem-header.active + .accItem-body{
    display: block;
}

/* ========================== HOME: MAP ========================== */
.map{
    padding-top: 56px;
    text-align: center;
    max-width: 100%;
}
/* ========================== ABOUT: FRAMEWORK ========================== */
.fre2{
    padding: 40px 0 40px 0;
}
.freq2 h1{
    text-align: center;
    font-size: 42px;
}
.accordion2{
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}
.accItem2{
    margin: -1px 0;
}
.accItem-header2{
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 22px;
}
.accItem-header2::after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z'/%3E%3C/svg%3E");
    font-size: 16px;
    position: absolute;
    right: 1rem;
    transition: transform 0.38s ease-in-out;
}
.accItem-header2.active::after{
    transform: rotate(180deg);
}
.accItem-body2{
    display: none;
    padding: 1rem;
    line-height: 1.5rem;
    justify-content: left;
}
.accItem-body2 ul{
    padding-left: 2.5%;
}
.accItem-header2.active + .accItem-body2{
    display: block;
}

/* ========================== HOME: QUESTIONS ========================== */
.sQuestion{
    text-align: center;
}
.sText h3{
    font-size: 32px;
    padding-top: 24px;
    padding-bottom: 10px;
}
.sText p{
    padding-bottom: 20px;
}   
.contactBtn{
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--green);
    padding: 12px 34px  ;
    font-size: 13px;
    background: var(--green);
    position: relative;
    cursor: pointer;
}
.contactBtn:hover{
    background-color: #005017;
}

/* ========================== CONTACT US ========================== */
.cUs{
    padding-top: 40px;
}
.row3{
    display: flex;
    align-items: center;
    text-align: left;
}
.cLet{
    width: 50%;
    padding-left: 17%;
    padding-bottom: 15%;
}
.cLet h1{
    font-size: 42px;
    padding-bottom: 16px;
}
.cLet p{
    font-size: 16px;
}
.cInfo{
    width: 50%;
    padding-left: 15%;
    margin-right: 10%;
    padding-top: 30px;
}
.cInfo i{
    color: var(--black);
}
.cInfo h6{
    color: var(--black);
    font-size: 18px;
    padding-bottom: 8px;
}
.cInfo p{
    margin-left: 7%;
    color: var(--charcoal);
    font-size: 18px;
    padding-bottom: 8px;
    text-decoration: none;
}
.cInfo a{
    text-decoration: none;
    color: var(--charcoal);
}
/* ========================== CONTACT PAGE ========================== */
.rowCUS{
    display: flex;
}
.contact-col h1{
    font-size: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.contact-col .letUs{
    font-size: 18px;
    padding-bottom: 40px;
    color: var(--charcoal);
}
.contact-us{
    width: 80%;
    margin: auto;
    padding-top: 56px;
}
.contact-col{
    flex-basis: 48%;
}
.contact-col div{
    display: flex;
    align-items: center;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color:var(--black);
    font-weight: bold;
}
.contact-col div h5 i{
    font-weight: normal;
}
.contact-col div p{
    padding-left: 50px;
    color: var(--charcoal);
    padding-bottom: 15px;
}
.contact-col div a{
    color: var(--charcoal);
    text-decoration: none;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid var(--green);
}

/* ========================== ABOUT PAGE ========================== */
.closer{
    text-align: center;
    padding-top: 40px;
}
.closer-div h1{
    font-size: 56px;
}
.closer-div p{
    padding-top: 30px;
    font-size: 20px;
    margin: auto;
    color: var(--charcoal);
}
.closer-div img{
    padding-top: 40px;
    width: 1216px;
    height: 700px;
    object-fit: cover;
}

/* ========================== ABOUT: TIMELINE ========================== */
.timeline{
    text-align: center;
    margin: 0;
    padding: 0;
}
.timeline-div h1{
    font-size: 42px;
    padding-bottom: 24px;
}
.timeline-div p{
    font-size: 18px;
}
.timeline-section{
    background-color: white;
    min-height: 100vh;
    padding: 40px 0 40px;
}
.timeline-items{
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.timeline-items::before{
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #0CA236;
    left: calc(50% - 1px);
}
.timeline-item{
    margin-bottom: 40px;
    width: 100%;
    position: relative;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 30px);
    text-align: right;
}
.timeline-item:nth-child(even){
    padding-left:  calc(50% + 30px);
    text-align: left;
}
.timeline-item:last-child{
    margin-bottom: 0;
}
.timeline-dot{
    height: 14px;
    width: 14px;
    background-color: #0CA236;
    position: absolute;
    left: calc(50% - 8px);
    top: 10px;
}
.timeline-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #040404;
    margin: 6px 0 15px;
}
.timeline-content{
    font-family: 'Lato', sans-serif;
    background-color: #D8F0DF;
    padding: 30px;
}
.timeline-content h3{
    color: #040404;
    font-size: 14px;
    margin: 15px 0 15px 0;
    padding: 0;
}
.timeline-content p{
    color: #36454F;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    padding: 0;
}
.timeline-headline {
    display: flex;
    align-items: center;
  }
.column {
    flex: 1;
}
/* ========================== OUR TEAM ========================== */
.our-team{
    padding-top: 40px;
    text-align: left;
}
.headline  h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin: 16px 0;
}
.headline p{
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    margin: 16px 0 56px;
}
.headline-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 12px 34px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    background: #0CA236;
    position: relative;
}
.tab-container{
    width: auto;
    margin: 56px 112px 56px 112px;
}
.tab_box{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.tab_box .tab_btn{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin: 0 12px 0 0;
    border: none;
    background-color: #fff;
    color: #36454F;
    padding: 6px;
    cursor: pointer;
}
.tab_box .tab_btn.active{
    color: #0CA236;
}
.line{
    position: absolute;
    top: 32px;
    left: 0;
    width: 115px;
    height: 3px;
    background-color: #0CA236;
    transition: all .3s ease-in-out;
}
.content-box .tab_content{
    display: none;
}
.content-box .tab_content.active{
    display: block;
}
.tab_content{
    display: block;
    margin: 56px 0 56px 0;
}
.message{
    display: flex;
    margin: 0 0 56px 0;
}
.team_message img{
    margin-bottom: 32px;
}
.team_message p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
}
.member{
    display: flex;
    gap: 37px;
}
.team_member{
    margin: 0 112px 0 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
}
.team_member h5{
    font-weight: 700;
    font-size: 18px;
    margin: 16px 0 0 0;
}
.team_member p{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}
.team_member img{
    width: 360px;
    background-color: #e2f6f2;
    border-radius: 250px;
}
.sub_member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Lato', sans-serif;
}
.sub_member img{
    width: 250px;
    background-color: #e2f6f2;
    border-radius: 250px;
}
.sub_member h5{
    font-weight: 700;
    font-size: 18px;
    margin: 16px 0 0 0;
}
.sub_member p{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

/* ========================== OUR OFFICES ========================== */
.offices{
    padding-top: 20px;
    text-align: left;
}
.world-map{
    width: 1306px;
    margin: 56px 112px 56px 112px;
    position: relative;
}
.world-map img{
    width: 100%;
  height: 100%;
  object-fit: cover;
}
.pin{
    background-color: #0CA236;
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
}
.pin::before{
    content: '';
    background: #0CA236;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 1.3s ease-in-out infinite;
}
.pin span{
    width: 250px;
    padding: 16px 0 16px 0;
    margin: 0;
    position: absolute;
    top: -98px;
    left: -120px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    display: none;
    z-index: 999;
}
.pin span:after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.pin span img{
    width: 28px;
    height: 20px;
}
.pin span p{
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
}
.mx{
    top: 58%;
    left: 18.10%;
}
.br{
    top: 78%;
    left: 34%;
}
.ph{
    top: 63.50%;
    left: 80.50%;
}
.vn{
    top: 56%;
    left: 78.50%;
}
.jp{
    top: 52%;
    left: 85.25%;
}
@keyframes pulse{
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

/*                                  OFFICESROWS                                */
.offices1{
    padding: 0 112px 0;
}
.officeRow{
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRowLeft img{
    width: 592px;
    height: 360px;
}
.officeRowRight h1{
    font-size: 32px;
    padding-bottom: 20px;
}
.officeRowRight p{
    font-size: 16px;
    padding: 0 0 10px 0;
}
.officeIcon i{
    transform: translate(20%,50%);
    padding-right: 15px;
    font-size: 18px;
}
.officeRow2{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow3{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow4{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow5{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow6{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow7{
    padding-top: 52px;
    display: flex;
    gap: 52px;
    flex-direction: row;
    align-items: flex-start;
}
.down{
    padding-left: 40px;
}
.officeRowRight h1:hover{
    color: var(--green);
    cursor: pointer;
}
.officeRowRight a{
    text-decoration: none;
    color: var(--black);
}



/* ========================== FOOTER ========================== */
.footer {
    background-color: var(--green);
    color: var(--white);
    padding: 32px;
    margin-top: 56px;
    text-align: center;
    overflow: hidden;
  }
  .copyright p{
    font-family: 'Lato', sans-serif;
  }
  
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-icons a{
    padding-left: 8px;
  }
  .icon-link {
    color: var(--white);
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: transform .3s ease-in-out;
  }
  
  .icon-link:hover {
    transform: scale(1.1);
  }

/*                                  PRODUCT PAGEEEEE                        */
.whContainer{
    display: flex;
    flex-direction: row;
    padding: 56px 112px;
    gap: 80px;
}
.whLeft h1{
    padding-bottom: 24px;
    font-size: 40px;
    color: var(--green);
    font-weight: 800;
}
.whLeft p{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 26px;
}
.subwhContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 56px 112px;
    gap: 48px;
}
.whProd img{
    padding-bottom: 32px;
}
.whProd p{
    font-family: 'Lato', sans-serif;
    padding: 16px 0 24px 0;
}
.whProd a{
    text-decoration: none;
    color: var(--green);
}
.prodBack{
    text-decoration: none;
    color: var(--green);
    font-size: 16px;
}








/* ========================== MEDIA RESPONSIVE ========================== */
@media(max-width: 834px){
    .nav-links ul li a{
        display: block;
        color: var(--white);
        overflow: hidden;
    }
    .nav-links{
        position: absolute;
        background: var(--green);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        overflow: hidden;
    }
    nav{
        padding: 15px 15px;
    }
    nav i{
        display: block;
        color: var(--black);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        display: block;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav img{
        width: 90px; 
    }
    .hero-content {
        position: fixed;
        text-align: center;
        display: none;
    }   
    .hero-headline {
        font-size: 24px;
        display: none;
        
    } 
    .hero-subheadline {
        position: fixed;
        font-size: 16px;
    }

    /* ============= MEDIA: PARTNERS ============= */
    .partners-subheadline {
        font-size: 20px;
      }
  
    .partner-logo img {
        max-height: 24px;
    }

    /* ============= MEDIA: MISSION/VISION ============= */
    .mvc-title h1{
        font-size: 22px;
        color: var(--black);
        text-align: center;

    }
    .row{
        padding-top: 56px;
        flex-direction: column;
    }

    /* ============= MEDIA: OVERVIEW ============= */
    .oBtn{
        display: inline-block;
        text-decoration: none;
        color: var(--green);
        border: 1px solid var(--green);
        padding: 9px 22px  ;
        font-size: 10px;
        background: transparent;
        position: relative;
        cursor: pointer; 
    }
    .row2{
        display: flex;
        align-items: center;
        height: 88%;
        padding-top: 10%;
    }
    .col{
        padding-left: 10%;
    }
    .col h1{
        padding-top: 10%;
        font-size: 11px;
        text-align: left;
    }
    .ePhoto img{
        padding-right: 11%;
        width: 200px;
        height: 250px;
        margin-right: 11%;
    }
    .import{
        display: flex;
        padding-top: 10%;
    }
    .six{
        padding-left: 10%;
    }
    .bs{
        display: flex;
        padding-top: 10%;
    }
    .supplier{
        padding-left: 35%;
    }
    .eCustomer p{
        font-size: 8px;
    }

    /* ============= MEDIA: BANNER ============= */
    .future h1{
        font-size: 20px;
    }
    .future p{
        font-size: 8px;
    }
    .future a{
        display: inline-block;
        text-decoration: none;
        color: var(--white);
        border: 1px solid var(--white);
        padding: 8px 18px  ;
        font-size: 8px;
        background: var(--green);
        position: relative;
    }
    /* ============= MEDIA: TESTIMONIALS ============= */
    .container{
        max-width: 350px;
        margin: auto;
    }
    .single{
        border: 4px solid var(--green);
        text-align: center;
        position: relative;
        z-index: 2;
        height: 400px;
    }
    .single p{
        font-size: 12px;
        padding: 50px;
        padding-bottom: 50px;
        position: relative;
        z-index: 3;
        line-height: 14px;
    }
    .owl-dots button{
        background: var(--green) !important;
        width: 10px;
        height: 10px;
        border-radius: 26px;
        margin: 0 5px;
        transition: 0.3s;
    }
    .client-pic{
        max-height: 1000px;
    }
    .client-details h6{
        font-size: 12px;
    }
    .client-details span{
        font-size: 12px;
    }

    /* ============= MEDIA: FAQS ============= */
    .freq{
        text-align: center;
        font-size: 18px;
    }
    .freq2{
        text-align: center;
        font-size: 18px;
    }
    .accordion{
        width: 100%;
        max-width: 1000px;
        margin: 1rem auto;
    }
    .accItem-header{
        padding: 0.5rem 3rem 0.5rem 1rem;
        min-height: 1.5rem;
        line-height: 1.25rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
        font-size: 12px;
    }
    .accItem-body{
        font-size: 10px;
    }

    /* ============= MEDIA: QUESTIONS ============= */
    .sText h3{
        font-size: 22px;
        padding-top: 24px;
        padding-bottom: 10px;
    }
    .sText p{
        padding-bottom: 20px;
        font-size: 12px;
    }   
    .contactBtn{
        display: inline-block;
        text-decoration: none;
        color: var(--white);
        border: 1px solid var(--green);
        padding: 10px 18px  ;
        font-size: 12px;
        background: var(--green);
        position: relative;
        cursor: pointer;
    }
    /* ========================== CONTACT US ========================== */
    .cUs{
        padding-top: 40px;
    }
    .row3{
        display: flex;
        align-items: center;
        text-align: left;
    }
    .cLet{
        width: 50%;
        padding-left: 15%;
        padding-bottom: 10%;
    }
    .cLet h2{
        font-size: 52px;
        padding-bottom: 16px;
    }
    .cLet p{
        font-size: 16px;
    }
    .cInfo{
        width: 50%;
        padding-left: 15%;
        margin-right: 10%;
        padding-top: 30px;
    }
    .cInfo i{
        color: var(--black);
    }
    .cInfo h6{
        color: var(--black);
        font-size: 18px;
        padding-bottom: 8px;
    }
    .cInfo p{
        margin-left: 7%;
        color: var(--charcoal);
        font-size: 18px;
        padding-bottom: 15px;
    }

        /* ============= MEDIA: CONTACT US PAGE ============= */
        .contact-col h1{
            font-size: 22px;
        }
        .contact-col .letUs{
            font-size: 10px;
        }
        .con-info p{
            font-size: 10px;
        }
        .cLet h2{
            font-size: 18px;
        }
        .cLet p{
            font-size: 10px;
        }
        .cInfo h6{
            font-size: 12px;
        }
        .cInfo p{
            font-size: 8px;
        }
       
        /* ============= MEDIA: OUR OFFICES ============= */
        .world-map{
            font-size: 13px
        }

    /* ============= MEDIA: ABOUT PAGE ============= */
    .closer-div h1{
        font-size: 22px;
    }
    .closer-div p{
        padding-top: 30px;
        font-size: 8px;
        margin: auto;
    }
    .closer-div img{
        padding-top: 40px;
        width: 400px;
        height: 200px;
    }

    /* ============= MEDIA: VALUES ============= */
    .values{
        padding: 56px;
        text-align: left;
    }
    .oValues  h1{
        font-size: 22px;
        padding-top: 15px;
    }
    .oValues p{
        font-size: 8px;
        padding-top: 15px;
    }
    .valBtn{
        display: inline-block;
        text-decoration: none;
        color: var(--white);
        border: 1px solid var(--green);
        padding: 8px 22px  ;
        font-size: 12px;
        background: var(--green);
        position: relative;
    }
    .row5{
        display: flex;
        padding-top: 7%;
    }
    .row5 img{
        width: 150px;
        height: 150px;
    }
    .row5 p{
        font-size: 8px;
        justify-content: left;
        padding-bottom: 100px;
        margin-right: 1px;
        padding-top: 30px;
    }
    .row5 h1{
        padding-top: 30px;
        font-size: 12px;
    }

    /* ============= MEDIA: TIMELINE ============= */
    .timeline-items::before{
        left: 7px;
    }
    .timeline-item:nth-child(odd){
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
        padding-left: 37px;
    }
    .timeline-dot{
        left: 0;
    }

    /* ============= MEDIA: HIRING ============= */
    .Hiring{
        margin: 0 23px;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .Hiring h1{
        font-size: 22px;
    }
    .Hiring p{
        font-size: 12px;
        margin: 30px 0 30px 0px;
    }
    .hBtn{
        display: inline-block;
        text-decoration: none;
        color: var(--green);
        border: 1px solid var(--green);
        padding: 8px 12px  ;
        font-size: 10px;
        background: var(--white);
        position: relative;
        cursor: pointer;
        transition: 0.3s;
    }
    .footer {
        text-align: center;
      }



      /* ========================== OUR OFFICES ========================== */
      .offices{
        padding-left: -10px;
        overflow: hidden;

      }
      .headline-btn{
        font-size: 11px;
        padding: 10px 10px 10px 10px;
      }
      .headline h1{
        font-size: 12px;
      }
      .headline p{
        font-size: 10px;
      }
    .offices{
        padding-top: 56px;
        text-align: left;
    }
    .world-map{
        width: 100%;
        max-width: 400px;
        margin: 12px 12px 12px 24px;
        position: relative;
    }
      /*                                 MEDIA OFFICESROWS                                */
.offices1{
    padding: 2px 12px 12px;
}
.officeRow{
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRowLeft img{
    width: 110px;
    height: 110px;
}
.officeRowRight h1{
    font-size: 12px;
    padding-bottom: 20px;
}
.officeRowRight p{
    font-size: 10px;
    padding-bottom: 10px;
}
.officeIcon img{
    transform: translate(20%,50%);
    padding-right: 15px;
    width: 10px;
}
.officeRow2{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow3{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow4{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow5{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow6{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.officeRow7{
    padding-top: 52px;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
}
.down{
    padding-left: 24px;
}
.officeRowRight h1:hover{
    color: var(--green);
    cursor: pointer;
}
.officeRowRight a{
    text-decoration: none;
    color: var(--black);
}
.map iframe{
    max-width: 100%;
    width: 400px;
    height: 400px;
}

/* ========================== MEDIA FOOTER ========================== */
.footer {
    background-color: var(--green);
    color: var(--white);
    padding: 32px;
    margin-top: 56px;
    text-align: center;
    overflow: hidden;
  }
  .copyright p{
    font-size: 10px;
  }
  
  .footer-wrapper {
    align-items: center;
    display: flex;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
  }
  
  .icon-link {
    color: var(--white);
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: transform .3s ease-in-out;
  }
  
  .icon-link:hover {
    transform: scale(1.1);
  }
  
  .copyright .link:hover{
    text-decoration: underline;
  }
  
  /* ========================== OUR TEAM MEDIA ========================== */
.our-team{
    padding-top: 56px;
    text-align: left;
    
}
.message{
    gap: -100px;
}
.headline  h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin: 16px 0;
}
.headline p{
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    margin: 16px 0 56px;
}
.headline-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 12px 12px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    background: #0CA236;
    position: relative;
}
.tab-container{
    width: auto;
    margin: 6px 6px 6px 5px;
}
.tab_box{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.tab_box .tab_btn{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin: 0 12px 0 0;
    border: none;
    background-color: #fff;
    color: #36454F;
    padding: 6px;
    cursor: pointer;
}
.tab_box .tab_btn.active{
    color: #0CA236;
}
.line{
    position: absolute;
    top: 32px;
    left: 0;
    width: 115px;
    height: 3px;
    background-color: #0CA236;
    transition: all .3s ease-in-out;
}
.content-box .tab_content{
    display: none;
}
.content-box .tab_content.active{
    display: block;
}
.tab_content{
    display: block;
    margin: 56px 0 56px 0;
}
.message{
    display: flex;
    margin: 0 0 56px 0;
}
.member{
    display: flex;
    gap: 12px;
}
.sub_member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Lato', sans-serif;
}
.sub_member img{
    width: 90px; 
}
.sub_member h5{
    font-weight: 700;
    font-size: 12px;
    margin: 16px 0 0 0;
}
.sub_member p{
    font-weight: 400;
    font-size: 10px;
    margin: 0;
}
.team_member{
    margin: 0 112px 0 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
}
.team_message img{
    margin-bottom: 32px;
    width: 20px;
}
.team_member h5{
    font-weight: 700;
    font-size: 18px;
    margin: 16px 0 0 0;
}
.team_member p{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}
.team_message p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 6px  ;
    font-size: 12px;
   
}
.team_member img{
    width: 200px; 
}

/* =====PRODUCT PAGE========= */
.whContainer{
    display: flex;
    flex-direction: row;
    padding: 26px 56px;
    gap: 20px;
}
.whLeft h1{
    padding-bottom: 24px;
    font-size: 18px;
    color: var(--green);
    font-weight: 800;
}
.whLeft p{
    font-size: 8px;
    line-height: 10px;
}
.whRight img{
    width: 200px;
}
.subwhContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 26px 56px;
    gap: 28px;
}
.whProd img{
    padding-bottom: 32px;
    width: 100px;
}
.whProd p{
    padding: 16px 0 24px 0;
    font-size: 8px;
}
.whProd h1{
    font-size: 10px;
}
.whProd a{
    text-decoration: none;
    color: var(--green);
    font-size: 10px;
}

/* SLIDER */

.slider figure img{
    width: 100%;
    height: 40vh;
}
.slide{
    overflow: hidden;
    width: 100%;
    height: 50vh;
}
.header{
    min-height: 40vh;
}
.column {
    display: none;
}
}
.certifications-section {
    padding: 60px 20px;
    text-align: center;
}

.certifications-header {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
}

.certifications-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}