.hero_section .hero_content .tagline {
    color: var(--primary-green);
}

/* History */
.history_section {
    padding-block: 72px;
    background-color: var(--bone-white);
}

.history_header .intro_header {
    text-align: center;
    margin-bottom: 64px;
}
.history_header .intro_header .description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.history_header .intro_header .tagline,
.history_header .intro_header .title,
.history_header .intro_header .description {
    color: var(--main-text);
}

.history_cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.history_card{
    position:relative;

    background:#fff;
    border-radius:16px;

    overflow:hidden;

    transition:all .35s ease;
}

.history_image{
    aspect-ratio:1.35/0.8214;
    overflow:hidden;
}

.history_image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;
}

.history_card:hover .history_image img{
    transform:scale(1.05);
}

.history_content{
    padding:24px;
    color: var(--main-text);
}

.history_content h4{
    margin-bottom:16px;
}

/* Responsive */
@media screen and (max-width:1199px){
    /* History */
    .history_content {
        padding: 20px;
    }
}

@media (max-width:991px){
/* History */
    .history_section {
        padding-block: 60px;
    }
    .history_header .intro_header {
        margin-bottom: 48px;
    }
    .history_content {
        padding: 16px;
    }

}

@media (max-width:767px){
    /* History */
    .history_section {
        padding-block: 48px;
    }
    .history_header .intro_header {
        margin-bottom: 32px;
    }
    .history_header .intro_header .description {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.3px;
    }
    .history_cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
    .history_content {
        padding: 20px;
    }
}

/* QUALITY EXCELLENCE */

.companies_section{
    border-radius:30px 30px 0px 0px;
    padding-block:72px;
    margin: 0;
    overflow: hidden;
}
.companies_hero .figure {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    z-index: -1;
    border-radius: 30px 30px 0px 0px;
}
.companies_hero .figure img {
    width: 100%;
    object-fit: contain;
}
.companies_hero .figure::after {
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 1) 100%);
    position: absolute;
    bottom: 0;
    height: 35%;
    width: 100%;
    z-index: 0;
}

.companies_header {
    padding-bottom: 272px;
}

.companies_header .intro_header {
    text-align: center;
    max-width: 822px;
    width: 100%;
    margin-inline: auto;
}
.companies_header .intro_header .tagline,
.companies_header .intro_header .title,
.companies_header .intro_header .description {
    color:var(--white);
}

.companies_grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;

    max-width: 924px;
    width: 100%;
    margin-inline: auto;
}

/* Cards */

.company_card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:12px;
    padding:16px;
    display:flex;
    gap: 16px;

}
.company_card .figure {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    flex-shrink: 0;
}
.company_card .figure img{
    max-height: 28px;
    object-fit: contain;
}

.company_card h4{
    margin-bottom:8px;
}
.company_card .description {

}
.company_card .link_wrap {
    margin-top: auto;
}

/* Companies Responsive */
@media screen and (max-width:1199px){
    .companies_section {
        padding-block: 60px;
    }
    .companies_grid {
        gap: 16px;
    }
    .companies_header {
        padding-bottom: 160px;
    }
}

@media screen and (max-width:767px){
    .companies_section {
        padding-block: 48px;
    }
    .companies_header {
        padding-bottom: 60px;
    }
    .companies_header .intro_header .tagline, .companies_header .intro_header .title, .companies_header .intro_header .description {
        color: var(--main-text);
    }
    .companies_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
}



/* LeaderShip Section */

.leadership_section{
    padding-block: 72px;
    border-radius:30px;
    margin-block: 0px;

    overflow:hidden;
}
.leadership_context {
    margin-bottom: 48px;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.leadership_context .intro_header .tagline {
    margin-bottom: 12px;
    color: var(--main-text);
}
.leadership_context .intro_header .title {
    margin-bottom: 12px;
}
.leadership_context .intro_header .description {
    color: var(--secondary);
}
.leadership-slider-wrap{
}

.leadership_nav{
    display:flex;
    gap:16px;
    margin-top:auto;
}

.leadership_prev,
.leadership_next{
    width:40px;
    height:40px;

    border:none;
    cursor:pointer;

    border-radius:12px;

    background:#101604;
    color:#fff;

    font-size:24px;

    transition:.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}
.leadership_prev span {
    background: url(../images/white-left-arrow.svg) no-repeat;
    background-position: center center;
    background-size: contain;

    width: 16px;
    height: 16px;
    display: block;
}
.leadership_next span {
    background: url(../images/white-right-arrow.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 16px;
    height: 16px;
    display: block;
}
.leadership_prev:hover,
.leadership_next:hover{
    transform:translateY(-2px);
}

.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.leadership_right{
    min-width:0;
}

.swiper{
    overflow:visible;
}

.swiper-slide{
    height:auto;
}

.leader_card{
    position:relative;
    border-radius:12px;

    overflow:hidden;
}
.leader_card .figure {
    /* height: 338px; */
    position: relative;
    aspect-ratio: 1 / 0.9;
}
.leader_card img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: top;
}

.leader_card .figure::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1) 50%,
        transparent
    );
}

.external_link{
    background-color: rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.20);

    width:44px;
    height:44px;

    border-radius:50%;

    position:absolute;
    top:20px;
    right:20px;
    z-index:10;

    transition:all .3s ease;
}

.external_link a{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.external_link i{
    background:url(../images/arrow-external.svg) no-repeat center center;
    background-size:14px;

    width:18px;
    height:18px;
    display:block;

    transition:transform .3s ease;
}

.external_link:hover{
    background-color:rgba(255,255,255,.18);
    border-color:rgba(255,255,255,.35);
}

.external_link:hover i{
    transform:translate(3px,-3px);
}


.leader_info{
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
}

.leader_info span{
    display:block;

    color:#000;

    margin-bottom:10px;
}

.leader_info h3 {
    color:#000;
}


/* Responsive */
@media screen and (max-width:991px){
    .leadership_section {
        padding-block: 60px;
    }
    .leadership_context {
        margin-bottom: 48px;
    }
    .leader_info {
        padding: 16px;
    }
    .external_link {
        top: 16px;
        right: 16px;
    }

}

@media screen and (max-width:767px){
    .leadership_section {
        padding-block: 48px;
    }
    .leadership_context {
        margin-bottom: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-end;
    }
}



/* TEstimonials */
.testimonial_section{
    position:relative;
    overflow:hidden;
    padding-block: 72px;
}

.testimonial_bg{
    position:absolute;
    inset:0;
}

.testimonial_bg img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.testimonial_overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(10,26,43,.55) 0%,
        rgba(10,26,43,.45) 100%
    );
}

.testimonial_wrap{
    position:relative;
    z-index:2;

    text-align:center;
}

.section_tag{
    display:block;

    margin-bottom:40px;

    color:var(--white);
}

.testimonial_content h2{
    margin-bottom:48px;
}

.testimonial_content{
    color:var(--white);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4px;

    margin-bottom:48px;
}


.testimonial_nav{
    display:flex;
    gap:16px;
    justify-content: center;
    margin-top:auto;
}

.testimonial_prev,
.testimonial_next{
    width:44px;
    height:44px;

    border:none;
    cursor:pointer;

    border-radius:50px;

    background:#101604;
    color:#fff;

    font-size:24px;

    transition:.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial_prev span {
    background: url(../images/white-left-arrow.svg) no-repeat;
    background-position: center center;
    background-size: contain;

    width: 16px;
    height: 16px;
    display: block;
}
.testimonial_next span {
    background: url(../images/white-right-arrow.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 16px;
    height: 16px;
    display: block;
}
.testimonial_prev:hover,
.testimonial_next:hover{
    transform:translateY(-2px);
}

/* Responsive */

@media screen and (max-width:991px){
    .testimonial_section {
        padding-block: 60px;
    }
}

@media screen and (max-width:767px){
    .testimonial_section {
        padding-block: 48px;
    }
}