*{
    box-sizing:border-box;
}

html,
body{

    overflow-x:hidden;

}
/*ABOUT US PAGE HERO SECTION VIDEO*/

/*====================================
ABOUT VIDEO HERO
====================================*/

.about-video-hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.about-video-bg{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.about-video-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.42);

}

.about-video-hero .container{

    position:relative;

    height:100%;

    z-index:2;

}

.about-video-content{

    position:absolute;

    left:0;
    right:0;
    bottom:55px;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

}

.about-video-content h1{

    font-family:"Monument", sans-serif;

    font-size:48px;

    font-weight:400;

    color:#fff;

    letter-spacing:1px;

}

.about-video-scroll{

    display:flex;

    justify-content:center;

    align-items:center;

    animation:aboutVideoBounce 2s infinite;

}

.about-video-scroll svg{

    width:56px;

    height:56px;

    transition:.3s;

}

.about-video-scroll:hover{

    transform:translateY(6px);

}

@keyframes aboutVideoBounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(8px);

    }

    60%{

        transform:translateY(4px);

    }

}

@media(max-width:991px){

.about-video-content h1{

    font-size:34px;

}

.about-video-scroll svg{

    width:46px;
    height:46px;

}

}

@media(max-width:768px){

.about-video-hero{

    height:100vh;

    min-height:650px;

}

.about-video-content{

    bottom:120px;

}

.about-video-content h1{

    font-size:22px;

}

.about-video-scroll svg{

    width:36px;

    height:36px;

}

}
/*====================================
ABOUT HERO
====================================*/

.about-hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.about-hero-image{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.42);

}

.about-hero .container{

    position:relative;

    height:100%;

    z-index:2;

}

.about-hero-content{

    position:absolute;

    left:0;
    right:0;
    bottom:55px;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

}

.about-hero-content h1{

    font-family:"Monument", sans-serif;

    font-size:48px;

    font-weight:400;

    color:#fff;

    letter-spacing:1px;

}

.about-scroll{

    display:flex;

    justify-content:center;

    align-items:center;

    animation:aboutBounce 2s infinite;

}

.about-scroll svg{

    width:56px;

    height:56px;

    transition:.3s;

}

.about-scroll:hover{

    transform:translateY(6px);

}

@keyframes aboutBounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(8px);

    }

    60%{

        transform:translateY(4px);

    }

}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.about-hero-content h1{

    font-size:34px;

}

.about-scroll svg{

    width:46px;
    height:46px;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.about-hero{

    height:100vh;

    min-height:650px;

}

.about-hero-content{

    bottom:120px;

}

.about-hero-content h1{

    font-size:22px;

}

.about-scroll svg{

    width:36px;

    height:36px;

}

}





/*====================================
OUR COMPANY
====================================*/

.company-section{

    padding:90px 0;

    background:#fff;

}

.company-row{

    display:grid;

    grid-template-columns:1.5fr 1fr;

    /*align-items:center;*/
    align-items:stretch;

    gap:60px;

    margin-bottom:70px;

}

.company-row:last-child{

    margin-bottom:0;

}

.company-row.reverse{

    grid-template-columns:1fr 1.5fr;

}

/*====================================
IMAGE
====================================*/

.company-image{

    width:100%;
    height:100%;

    overflow:hidden;

    border-radius:8px;

}

.company-image img{

    width:100%;
    height:100%;

    /*height:300px;*/

    object-fit:cover;

    display:block;

}

/*====================================
CONTENT
====================================*/

.company-content{

    display:flex;

    flex-direction:column;

    justify-content:center;
     height:100%;

}

.company-content h2{

    font-family:"Monument",sans-serif;

    font-size:38px;

    font-weight:400;

    color:#1A1617;

    margin-bottom:22px;

    line-height:1.2;

}

.company-content p{

    font-family:"DM Sans",sans-serif;

    font-size:17px;

    line-height:1.8;

    color:#4A4A4A;

}

/*====================================
FADE ANIMATION
====================================*/

.reveal-left,
.reveal-right{

    opacity:1;

    transition:all .9s ease;

}

.reveal-left{

    transform:translateX(-80px);

}

.reveal-right{

    transform:translateX(80px);

}

.reveal-left.show,
.reveal-right.show{

    opacity:1;

    transform:translateX(0);

}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.company-row,
.company-row.reverse{

    grid-template-columns:1fr;

    gap:35px;

}

.company-row.reverse .company-content{

    order:2;

}

.company-row.reverse .company-image{

    order:1;

}

.company-image img{

    height:260px;

}

.company-content h2{

    font-size:30px;

}

.company-content p{

    font-size:16px;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.company-section{

    padding:60px 0;

}

.company-row{

    gap:24px;

    margin-bottom:50px;

}

.company-image img{

    height:220px;

}

.company-content{

    text-align:center;

}

.company-content h2{

    font-size:24px;

    margin-bottom:16px;

}

.company-content p{

    font-size:14px;

    line-height:1.7;

}

}




/*====================== OUR TEAM =====================================*/

/*====================================
TEAM INTRO
====================================*/

.team-intro{

    padding:40px 0 2px;
    background:#fff;

}

.team-intro p{

    max-width:1200px;

    margin:0 auto;

    font-family:"DM Sans", sans-serif;

    font-size:24px;

    line-height:1.75;

    color:#1A1617;

    font-weight:400;

}


/*====================================
TABLET
====================================*/

@media(max-width:991px){

.team-intro{

    padding:40px 0;

}

.team-intro p{

    font-size:18px;

    line-height:1.7;

}

}


/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.team-intro{

    padding:30px 0;

}

.team-intro p{

    font-size:14px;

    line-height:1.8;

    text-align:left;

}

}



/*====================================
TEAM SECTION
====================================*/

.team-section{

    padding:40px 0 15px;

    background:#fff;

}

.team-title{

    font-family:"Monument",sans-serif;

    font-size:42px;

    font-weight:400;

    color:#1A1617;

    margin-bottom:45px;

}


/*====================================
GRID
====================================*/

.team-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}


/*====================================
CARD
====================================*/

.team-card{

    background:#E8E8E8;

    border-radius:10px;

    overflow:hidden;

    transition:.35s;

}

.team-header{

    display:flex;

    gap:18px;

    padding:18px;

}

.team-header img{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:8px;

    flex-shrink:0;

}


/*====================================
INFO
====================================*/

.team-info{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    flex:1;

}

.team-info h3{

    font-family:"Monument", sans-serif;

    font-size:30px;

    font-weight:400;

    color:#1A1617;

    margin-bottom:12px;

}

.team-info p{

    font-family:"DM Sans", sans-serif;

    font-size:20px;

    line-height:1.35;

    color:#333;

}


/*====================================
BUTTON
====================================*/

.team-toggle{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#81C341;

    margin-top:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    transition:.35s;

}

.team-toggle:hover{

    background:#6cae2d;

}
/*
.team-toggle svg{

    transition:.35s;

}

.team-card.active .team-toggle svg{

    transform:rotate(45deg);

}*/

.team-arrow{

    width:20px;
    height:20px;

    transition:transform .35s ease;

}

.team-card.active .team-arrow{

    transform:rotate(180deg);

}


/*====================================
BODY
====================================*/

.team-body{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease,padding .45s ease;

    padding:0 18px;

}

.team-card.active .team-body{

    max-height:300px;

    padding:0 18px 18px;

}

.team-body p{

    font-family:"DM Sans";

    font-size:15px;

    line-height:1.8;

    color:#4A4A4A;

    margin-bottom:18px;

}


/*====================================
ICONS
====================================*/

.team-icons{

    display:flex;

    gap:10px;

}

.team-icons a{

    width:34px;

    height:34px;

    border-radius:6px;

    background:#81C341;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.team-icons a:hover{

    background:#1A1617;

}

.team-icons svg{

    width:18px;

    height:18px;

}


/*====================================
TABLET
====================================*/

@media(max-width:991px){

.team-grid{

    grid-template-columns:1fr;

}

.team-title{

    font-size:34px;

}

.team-header img{

    width:150px;

    height:150px;

}

.team-info h3{

    font-size:24px;

}

.team-info p{

    font-size:17px;

}

}


/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.team-section{

    padding:60px 0;

}

.team-title{

    font-size:28px;

    margin-bottom:28px;

}

.team-header{

    padding:14px;

    gap:12px;

}

.team-header img{

    width:95px;

    height:95px;

}

.team-info h3{

    font-size:18px;

    margin-bottom:6px;

}

.team-info p{

    font-size:14px;

    line-height:1.3;

}

.team-toggle{

    width:34px;

    height:34px;

    margin-top:10px;

}

.team-body{

    padding:0 14px;

}

.team-card.active .team-body{

    padding:0 14px 14px;

}

.team-body p{

    font-size:13px;

    line-height:1.7;

}

}




/*========================= core value=================================*/

/*====================================
PRINCIPLES
====================================*/

.principles-section{

    padding:90px 0;

    background:#fff;

}

.principles-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.principle-card{

    border:1px solid #DDDDDD;

    padding:28px;

    background:#fff;

    transition:.35s ease;

}

.principle-card:hover{

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transform:translateY(-6px);

}

.principle-number{

    display:block;

    font-family:"Monument",sans-serif;

    font-size:34px;

    color:#81C341;

    margin-bottom:20px;

}

.principle-card h3{

    font-family:"Monument",sans-serif;

    font-size:28px;

    font-weight:400;

    color:#111;

    margin-bottom:18px;

    text-transform:uppercase;

}

.principle-card p{

    font-family:"DM Sans",sans-serif;

    font-size:18px;

    line-height:1.8;

    color:#444;

}

.green-dot{

    color:#81C341;
    font-size:1.9em;   /* Increase size */
    line-height:1;

}

/*====================================
TABLET
====================================*/

@media(max-width:991px){

.principles-grid{

    grid-template-columns:repeat(2,1fr);

}

.principle-card:last-child{

    grid-column:1/-1;

}

.principle-number{

    font-size:30px;

}

.principle-card h3{

    font-size:24px;

}

.principle-card p{

    font-size:16px;

}

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px){

.principles-section{

    padding:60px 0;

}

.principles-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

    width:100%;

}

.principle-card{

    width:100%;

    max-width:100%;

    padding:24px;

    overflow:hidden;

}

.principle-number{

    font-size:28px;

    margin-bottom:16px;

}

.principle-card h3{

    font-size:20px;

    margin-bottom:14px;

    word-break:break-word;

}

.principle-card p{

    font-size:15px;

    line-height:1.7;

    word-break:break-word;

}

}