.home .main {
    margin-top: 0px;
}
.hero_section .hero_content .tagline {
    color: var(--primary-green);
    text-shadow: 6px 2px 13px #000000;
}
/* Section Our Stories */
.story_section {
    padding: 70px 0;
    border-radius: 0 0 32px 32px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 498px 1fr;
    gap: 48px;
    align-items: start;
}

/* Right Stats */

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat_card {
    min-height: 185px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
}
/* Vertical middle lines */
.stat_card:nth-child(1),
.stat_card:nth-child(2),
.stat_card:nth-child(4),
.stat_card:nth-child(5){
    border-right:1px dashed rgba(154, 164, 184, 0.3);
}

/* Horizontal middle line */
.stat_card:nth-child(-n+3){
    border-bottom:1px dashed rgba(154, 164, 184, 0.3);
}

.stat_card h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat_card h3 span.suffix {
    color:var(--primary-green);
}
.stat_card h3 span.suffix img {
    margin-left: 8px;
}

.stat_card .description  {
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color:var(--bg-green);

    font-family: "Manrope", sans-serif;
    font-weight: 500;
}


/* Our Companies Section */
.companies_section{
    border-radius:30px 30px 0px 0px;
    overflow:hidden;
    padding-block: 0px;
    min-height: 729px;
    margin-bottom: 40px;
}
.companies_hero .figure {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    z-index: -1;
}
.companies_hero .figure img {
    width: 100%;
}
.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: 65%;
    width: 100%;
    z-index: 0;
}

.companies_header {
    padding-top: 118px;
    padding-bottom: 126px;
}

.companies_header .intro_header {
    max-width: 410px;
    width: 100%;
}
.companies_header .intro_header .description {
    color:var(--bg-dark-green);
}

.companies_grid{
    /* display:grid;
    grid-template-columns:repeat(2,1fr); */

    display: flex;
    flex-wrap: wrap;
    gap:24px;
}

/* 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;
    flex-direction:column;
    max-width: 440px;
    width:100%;

}
.company_card .figure {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company_card .figure img{
    max-height: 60px;
    object-fit: contain;
}

.company_card h3{
    margin-bottom:16px;
    margin-top: 30px;
    color: var(--steel-blue);
}

.company_card .description {
    margin-bottom:40px;
}
.company_card .link_wrap {
    margin-top: auto;
}

.company_card_xl, .company_card:nth-child(1), .company_card:nth-child(4) {
    max-width: 712px;
}
.company_card_lg, .company_card:nth-child(5) {
    max-width: 626px;
}
.company_card_md, .company_card:nth-child(6) {
    max-width: 526px;
}
/* Companies Responsive */
@media screen and (max-width:1279px){
    .companies_grid {
        gap: 16px;
    }
    .company_card {
        max-width: 40%;
    }
    .company_card_xl, .company_card:nth-child(1), .company_card:nth-child(4) {
        max-width: calc(60% - 16px);
    }
    .company_card_lg, .company_card:nth-child(5) {
        max-width: calc(60% - 16px);
    }
    .company_card_md, .company_card:nth-child(6) {
        max-width: 40%;
    }
}



/* CAPABILITIES SECTION */

.capabilities_section {
    overflow:hidden;
    border-radius:30px;
}
.capabilities_section .figure {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}
.capabilities_section .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capabilities_section .figure::after {
    content: "";
    position:absolute;
    inset:0;
background-color: var(--black);
opacity: 0.4;
z-index: 0;
}

/* Heading */

.capabilities_section .intro_header {
    text-align:center;
    margin-bottom:48px;
}

.capabilities_section .intro_header .tagline, 
.capabilities_section .intro_header .title, 
.capabilities_section .intro_header .description {
    color: var(--white);
}

/* Grid */

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

/* Cards */

.capability-card{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:12px;

    padding: 16px;
}

.icon-box{
    width:50px;
    height:50px;

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

    border-radius:12px;
    background:#101604;

    margin-bottom:16px;
}

.icon-box img{
    width:26px;
}

.capability-card h4{
color: var(--aviation-deep);
    margin-bottom:16px;
}

.capability-card .description {
    color: var(--aviation-deep);
}

/* Responsive Capabilites */
@media screen and (max-width:1279px){
    .capabilities-grid {
        gap: 16px;
    }
}



/* Locations And Facilities Section */
.locations_section{
    padding-block: 0px;
}
.locations_section .container {
    max-width: calc(var(--header-container) + 40px);
}
.locations_inner_wrap {
    overflow:hidden;
    position: relative;border-radius:30px;
    padding-inline: 40px;
    padding-bottom: 24px;
}
.locations_section .figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
.locations_section .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locations_section .figure::after {
    content: "";
    position:absolute;
    inset:0;
background-color: var(--black);
opacity: 0.4;
z-index: 0;
display: none;
}

.locations_section .intro_header {
    padding-top: 150px;
    padding-bottom: 74px;
    text-align: center;
}
.locations_section .intro_header .title {
    color: var(--white);
    margin-bottom: 0;
}

/* Cards */

.locations_grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

.location_card{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:15px;

    padding: 16px;
    min-height:170px;

    display:flex;
    flex-direction:column;
    justify-content: space-between;
    position: relative;

    transition:0.6s ease-in;
}

.location_card:hover{
    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 10%, rgba(232, 236, 242, 1) 100%);
}

.location_card .location_heading{
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: normal;
    color: var(--aviation-deep);
    font-family: "Inter", sans-serif;
}
.location_card .address {
    font-size: 10px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: normal;
    color:var(--aviation-deep);
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}
.location_card .address b {
    color: var(--aviation-deep);
    font-weight: 400;
}
.location_card .location_center_name {
    font-size: 9px;
    line-height: 13px;
    font-weight: 600;
    letter-spacing: normal;
    color:#80C72B;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
}
.location_card .distance {
    font-size: 9px;
    line-height: 16px;
    font-weight: 400;
    color: #595959;
    font-family: "Inter", sans-serif;
    margin-bottom: 6px;
}
.location_card .country {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: normal;
    color: var(--aviation-deep);
}


/* Certifications & Compliance Sections */
.certifications_section{
    overflow:hidden;
    border-radius:30px;
    padding-bottom: 120px;
}
.certifications_section .figure {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}
.certifications_section .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certifications_section .figure::after {
    content: "";
    position:absolute;
    inset:0;
background-color: var(--black);
opacity: 0.8;
z-index: 0;
display: none;
}

/* Heading */

.certifications_section .intro_header {
    text-align:center;
    margin-bottom:75px;
}

.certifications_section .intro_header .tagline, 
.certifications_section .intro_header .title, 
.certifications_section .intro_header .description {
    color: var(--bone-white);
}

/* Logo Tabs */

.company_tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin-bottom:86px;
}

.company_tab{
    max-width: 156px;
    width: 100%;
    border:none;
    cursor:pointer;

    border-radius:20px;
    padding: 20px;

    background:rgba(255,255,255,10%);

    backdrop-filter:blur(25px);

    transition:.3s;
}
.company_tab .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.company_tab .icon img{
    max-height: 40px;
    object-fit: contain;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
}
.company_tab:nth-child(3) .icon img {
    max-height: 42px;
}
.company_tab:nth-child(5) .icon img {
    max-height: 52px;
}
.company_tab:nth-child(6) .icon img {
    max-height: 50px;
}
.company_tab .icon img + img {
    position: absolute;
    opacity: 0;
    
}
.company_tab:hover .icon img, .company_tab.active .icon img {
    opacity: 0;
}
.company_tab:hover .icon img + img, .company_tab.active .icon img + img {
    opacity: 1;
}

.company_tab.active{
    background: rgba(255,255,255,100%);
}

.company_tab:hover {
    transform:translateY(-5px);
    background: rgba(255,255,255,100%);
}

/* Content */

.tab_content{
    /* display:none; */
    min-height: 104px;
}

.tab_content.active{
    /* display:block; */
}

.tab_content{
    opacity:0;
    visibility:hidden;
    /* transform:translateY(20px); */

    transition:
        opacity .45s ease,
        transform .45s ease,
        visibility .45s ease;

    /* position:absolute; */
    inset:0;
    pointer-events:none;
}
.tab_content_wrap {
    position: relative;
}
.tab_content + .tab_content {
    position: absolute;
}

.tab_content.active{
    opacity:1;
    visibility:visible;
    /* transform:translateY(0); */

    /* position:relative; */
    pointer-events:auto;
}

.certification_list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:4px;

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

.cert_badge{
    display:flex;
    align-items:center;
    gap:8px;

    padding:4px 12px;

    height: 50px;

    border-radius:999px;

    color:var(--white);

    background:
    rgba(255,255,255,10%);

    border:1px solid
    rgba(255,255,255,12%);

    backdrop-filter:blur(25px);

    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
}

.cert_badge img{
    max-height: 38px;
    object-fit:contain;
}


/* GET IN TOUCH SECTION */

.contact_section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:30px;
    padding-block: 80px 40px;
    overflow: hidden;
}

.contact_grid{
    display:grid;
    grid-template-columns:375px 1fr;
    gap:95px;
}
.contact_section .contact_info {
    padding-top: 86px;
}

.contact_section .intro_header .tagline {
    margin-bottom: 20px;
    color: var(--main-text);
}
.contact_section .intro_header .title {
    margin-bottom: 26px;
    color: var(--main-text);
}

.contact_detail:not(.contact_detail:last-child) {
    margin-bottom:24px;
}

.contact_detail label{
    display:block;
    margin-bottom:12px;

    color:var(--bg-green);
}

.contact_detail a{
    text-decoration:none;
    font-size:20px;
    line-height: 28px;
    color:var(--primary-green);
}

.contact_detail:last-child a{
    color:var(--bg-green);
}

/* Form */

.contact_form{
    width:100%;
}

.form_row{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:30px;
}

.form_group{
    margin-bottom:16px;
}

.form_group label{
    display:block;
    margin-bottom:8px;

    font-size:11px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: normal;
    color:#9AA4B8;

    font-family: "Inter", sans-serif;
}

.form_group input,
.form_group textarea,
.form_group select{
    width:100%;
    outline:none;

    background:var(--white);
    border: 1px solid rgba(244, 246, 248, 14%);

    font-size:13px;
    line-height: 18px;
    color:#5A6478;
    letter-spacing: normal;

    border-radius:30px;

    padding:16px 26px;

    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.form_group input::placeholder{
    color:#5A6478;
  }

.form_group input,
.form_group select{
    /* height:58px; */
}

.form_group textarea{
    height:130px;
    resize:none;
    color:#5A6478;
    padding-top:20px;
    border-radius:28px;
    vertical-align: middle;
}

.form_submit{
    display:flex;
    justify-content:flex-end;
    margin-top:30px;
}
.form_submit p {
    display: flex;
    align-items: center;
}
.form_submit .wpcf7-submit {
    min-width: fit-content;
    order: 2;
    cursor: pointer;
    border: none;
}
/* Select Arrow */

.form_group select{
    appearance:none;

    background:#fff url(../images/green-arrow-down.svg) no-repeat;
    background-position: 90% center;
    background-size: 14px;
}

/* CF7 */
.wpcf7-form-control-wrap {
    display: block;
}
.wpcf7-not-valid-tip {
    display: none;
  }
  .contact_form .wpcf7-not-valid {
    border-color: red;
  }
  .wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    border-width: 1px;
    display: none;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    display: block;
  }

/* Responsive */



/* Leadership Section */

.leadership_section{

    padding-block: 100px 42px;

    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:30px;

    overflow:hidden;

    min-height: 560px;
}
.leadership_context {
    width:276px;
    display: flex;
    flex-direction: column;
    min-height: 416px;
}
.leadership_context .intro_header .tagline {
    margin-bottom: 14px;
    color: var(--aviation-deep);
    color: var(--main-text);
}
.leadership-slider-wrap{
    position:absolute;
    left:calc((100% - 1280px) / 2 + 380px);
    right:0;
    top:100px;
    overflow: hidden;
}
.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;

    /* width: 316px; */
    height:416px;
    border-radius:12px;

    overflow:hidden;
}

.leader_card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

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

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

.leader_info{
    position:absolute;
    left:16px;
    right:16px;
    bottom:16px;

    z-index:2;
}

.leader_info span{
    display:block;

    color:#fff;

    margin-bottom:10px;
}

.leader_info h4{
    color:#fff;
}


/* Responsive */

@media screen and (max-width:1199px){
    /* story */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .company_card:nth-child(1), 
    .company_card:nth-child(4), 
    .company_card:nth-child(5), 
    .company_card:nth-child(6),
    .company_card, .company_card_xl, .company_card_lg, .company_card_md {
        max-width: calc(50% - 8px);
    }

    /* Leader ship */
    .leadership_context {
        width: 100%;
        min-height: auto;
    }
    .leadership_nav {
        justify-content: flex-end;
    }
    .leadership-slider-wrap {
        position: static;
        padding-inline: 20px;
        margin-top: 20px;
    }
    .leader_card {
        height: auto;
    }


    /* Locations */
    .locations_section .intro_header {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .locations_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Certifications */
    .certifications_section {
        padding-bottom: 80px;
    }
    .certifications_section .intro_header {
        margin-bottom: 60px;
    }
    .company_tabs {
        gap: 10px;
        margin-bottom: 60px;
    }
    .company_tab {
        max-width: 140px;
    }
    .company_tab .icon img {
        max-height: 34px;
    }


    /* Contact */

    .contact_grid {
        grid-template-columns: 360px 1fr;
        gap: 40px;
    }
    .contact_section .contact_info {
        padding-top: 0;
    }
    .contact_section {
        padding-block: 60px 40px;
    }
}

@media screen and (max-width:991px){
    /* Company */
    .companies_header {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    /* Capabilities */
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Leadership */
    .leadership_section {
        padding-block: 60px;
    }

    /* Location */
    .locations_inner_wrap {
        padding-inline: 20px;
        padding-bottom: 20px;
    }

    /* Contact */
    .contact_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:767px){
    section {
        padding-block: 48px;
    }
    /* Story */
    .story_section {
        padding: 48px 0;
    }
    .story-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .stat_card {
        padding: 16px 0px;
        min-height: 150px;
    }
    .stat_card:nth-child(2), .stat_card:nth-child(4) {
        border-right:none;
    }
    .stat_card:nth-child(3) {
        border-right: 1px dashed rgba(154, 164, 184, 0.3);
    }
    .stat_card:nth-child(-n+4) {
        border-bottom: 1px dashed rgba(154, 164, 184, 0.3);
    }

    /* companies */
    .company_card:nth-child(1),
    .company_card:nth-child(4),
    .company_card:nth-child(5),
    .company_card:nth-child(6),
    .company_card, .company_card_xl, .company_card_lg, .company_card_md {
        max-width: calc(100% - 0px);
    }
    .companies_header {
        padding-bottom: 40px;
    }
    .company_card h3 {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .company_card .description {
        margin-bottom: 20px;
    }

    /* Leadership */
    .leadership_section {
        padding-block: 48px;
    }

    /* Capabilities */
    .capabilities-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Locations */
    .locations_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .locations_section .intro_header {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* Certifications */
    .certifications_section {
        padding-bottom: 48px;
    }
    .company_tabs {
        overflow-x: auto;
        margin-inline: -20px;
        justify-content: flex-start;
        padding-inline: 20px;
        padding-bottom: 6px;
        flex-wrap: nowrap;
    }
    .company_tab {
        padding: 16px;
        flex-shrink: 0;
    }
    .company_tab:hover {
        transform: translateY(0px);
    }
    .tab_content {
        min-height: 394px;
    }

    /* Contact */
    .form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media screen and (max-width:539px){
    .locations_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}