:root {
    --container: 1176px;
    --container-sm: 1040px;
    --header-container:1228px;

    --primary-green: #63A710;
    --black: #000;
    --secondary: #9AA4B8;
    --white: #ffffff;
    --aviation-deep: #0C0E19;
    --steel-blue: #14334A;
    --main-text:#14334A;
    --bg-green: #101604;
    --bone-white:#E8ECF2;
    --bg-dark-green:#1A3D2B;

    --transition: all .3s ease;
}

/* Font Family */
.geist {
    font-family: "Geist", sans-serif;
}
.geist_mono {
    font-family: "Geist Mono", monospace;
}
.dm_mono {
    font-family: "DM Mono", monospace;
}
.font_inter {
    font-family: "Inter", sans-serif;
}
.font_manrope {
    font-family: "Manrope", sans-serif;
}

body {
    overflow-x: hidden;

    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

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

    color: var(--black);

    background-color: #F5F5F5;
}
.body_2 {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.3px;
}
.body_2_caps {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.7px;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.body_3 {
    font-size: 12px;
    line-height:16px;
    letter-spacing:normal;
}
.container {
    width: 100%;
    max-width: calc(var(--container) + 40px);
    margin-inline: auto;
    padding-inline: 20px;
}

section {
    position: relative;
    padding-block: 60px;
    margin-block: 20px;
}

iframe {
    width: 100%;
    border: 0;
}

.relative {
    position: relative;
}
.stretched_link{
    position:absolute;
    inset:0;
    z-index:10;

    text-indent:-9999px;
    overflow:hidden;
}

p {
    margin-bottom: 24px;
}
p:last-child {
    margin-bottom: 0;
}

/* Useful Utilities */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* Heading */
h1, .h1 {
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    letter-spacing: -2.6px;
}
h2, .h2 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    letter-spacing: -1.9px;
}
h3, .h3 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
    letter-spacing: -1.3px;
}
h4, .h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    letter-spacing: -1px;
}
.caption {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.linear_bg {
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
}

/* Header */
.site_header{
    padding-block: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;

    

}
.site_header .container {
    max-width: calc(var(--header-container) + 40px);
}

/* Navbar */
.navbar {
    display:flex;
    align-items:center;
    justify-content:space-between;

    
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:60px;
    padding:10px 26px;
}
.navbar .brand {
    width: 80px;
}
.navbar .brand a {
    display: block;
}
.navbar .brand .logo img{
    height:40px;
    display:block;
    object-fit: contain;
}

.navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}
.navbar .nav-menu > ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.navbar .nav-menu ul li a{
    text-decoration:none;
    color:var(--black);
    font-size:12px;
    letter-spacing:normal;
    transition: var(--transition);
    /* font-family: "Geist Mono", monospace;
    font-weight: 400; */

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

    text-transform: uppercase;
}

.navbar .nav-menu ul li a:hover {
    color:var(--primary-green);
}

.navbar .nav-menu ul li a.active, .navbar .nav-menu ul li.current-menu-item a {
    color:var(--primary-green);
}

.navbar .nav_small ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar .nav_small ul li a {
    font-size: 10px;
    color: var(--secondary);
}

/* dropdown */

.navbar .has-dropdown, .navbar .menu-item-has-children {
    position:relative;
}

.navbar .has-dropdown .arrow {
    display:inline-block;
    width:0;
    height:0;
    margin-left:8px;

    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-bottom:6px solid var(--secondary);
}

.navbar .menu-item-has-children>a::after {
    content: "";
    display:inline-block;
    width:0;
    height:0;
    margin-left:8px;

    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:6px solid var(--black);

    transition: 0.3s ease-in-out;
}
.navbar .menu-item-has-children:hover>a::after, .navbar .menu-item-has-children.active>a::after {
    transform: rotate(180deg);
    border-top-color: var(--primary-green);

}
.navbar .nav-menu ul li.menu-item-has-children>a {
    /* color: var(--black); */
}

.navbar .dropdown, .navbar .sub-menu{
    /* position:absolute;
    top:47px;
    left:-50px; */

    width:235px;

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

    padding:20px;

    /* opacity:0;
    visibility:hidden;
    transform:translateY(10px); */

    transition:.3s ease;
}

.navbar .has-dropdown:hover .dropdown, .navbar .menu-item-has-children:hover .sub-menu {
    /* opacity:1;
    visibility:visible;
    transform:translateY(0); */
}

.navbar .dropdown li, .navbar .sub-menu li {
    list-style:none;
}

.navbar .dropdown a, .navbar .sub-menu a {
    display:block;
    padding:6px 0px;
    border-bottom:1px solid #E2E6EC;
    color:var(--black);
    font-size:12px;
}
.navbar .dropdown li:first-child a, .navbar .sub-menu li:first-child a {
    padding-top: 0;
}
.navbar .dropdown li:last-child a, .navbar .sub-menu li:last-child a {
    border-bottom:none;
    padding-bottom: 0;
}
.navbar .dropdown a.current, .navbar .sub-menu a.current {
    color:var(--primary-green);
}


/* Humburger Menu */
.menu_toggle{
    width:40px;
    height:40px;
    border:0;
    background:none;
    cursor:pointer;

    display:none;
    position:relative;
    z-index:1001;
}

.menu_toggle span{
    position:absolute;
    left:8px;

    width:24px;
    height:2px;

    background:#000;
    transition:all .3s ease;
}

.menu_toggle span:nth-child(1){
    top:12px;
}

.menu_toggle span:nth-child(2){
    top:19px;
}

.menu_toggle span:nth-child(3){
    top:26px;
}

/* X State */

.menu_toggle.active span:nth-child(1){
    top:19px;
    transform:rotate(45deg);
}

.menu_toggle.active span:nth-child(2){
    opacity:0;
}

.menu_toggle.active span:nth-child(3){
    top:19px;
    transform:rotate(-45deg);
}


@media (min-width: 992px){

    .menu-item-has-children:hover > .sub-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .sub-menu{
        position:absolute;
        top:47px;
        left:-50px;

        opacity:0;
        visibility:hidden;

        transform:translateY(10px);
        transition:.3s ease;
    }

}

@media (max-width: 1199px){

    /* Heading */
h1, .h1 {
    font-size: 52px;
    line-height: 58px;
    letter-spacing: -2.1px;
}
h2, .h2 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: -1.7px;
}
h3, .h3 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -1.1px;
}
h4, .h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.8px;
}
    .navbar .nav-menu {
        gap: 20px;
    }
    .navbar .nav-menu > ul {
        gap: 12px;
    }
    .navbar .nav_small ul {
        gap: 12px;
    }
}
@media (max-width: 991px){
        /* Heading */
h1, .h1 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -1.9px;
}
h2, .h2 {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: -1.5px;
}
h3, .h3 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -1px;
}
h4, .h4 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.7px;
}
    .site_header {
        padding-block: 10px;
    }
    .menu_toggle{
        display:block;
    }

    .navbar .nav-menu > ul {
        flex-direction: column;
        gap: 16px;
    }
    .navbar .nav-menu {
        gap: 30px;
        justify-content: center;
    }
    .navbar .nav-menu ul li a {
        display: block;
        text-align: center;
    }

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;

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

        transition:right .35s ease;
        overflow-y:auto;

        /* z-index: -1; */

        flex-direction: column;
    }

    .nav-menu.active{
        right:0;
    }

    body.menu-open{
        overflow:hidden;
    }
    .site_header .btn_group {
        margin-left: auto;
        margin-right: 16px;
    }

   
        .sub-menu{
            display:none;
            position:static;
        }
    
        .menu-item-has-children.active > .sub-menu{
            display:block;
        }
}

@media (max-width: 767px){
    h1, .h1 {
        font-size: 44px;
        line-height: 48px;
        letter-spacing: -1.8px;
    }
    h2, .h2 {
        font-size: 34px;
        line-height: 40px;
        letter-spacing: -1.4px;
    }
    h3, .h3 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -1px;
    }
    .site_header .btn_group {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Primary btn */
.primary_btn {
    min-width:168px;
    position: relative;

    display:inline-block;
    text-align: center;
    overflow: hidden;

    background:var(--aviation-deep);
    color:var(--white);
    text-decoration:none;

    border-radius:40px;
    border: rgba(255, 255, 255, 40%) 1px solid;

    letter-spacing:1.7px;
    font-size:14px;
    line-height: 20px;

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

    padding: 10px 24px;
    text-transform: uppercase;

    transition:0.3s ease-in-out;

    vertical-align: middle;
}

.primary_btn:hover{
    transform:translateY(-2px);
}

.primary_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,transparent 0%,rgba(255,255,255,.3) 50%,transparent 100%);
    transform: skewX(-20deg)
}
.primary_btn:hover::after {
    animation: shine .9s ease forwards
}
@keyframes shine {
    100% {
        left: 150%
    }
}

.primary_btn.light_btn {
    background: var(--white);
    color: var(--main-text);
}

.primary_btn.grey_btn {
    background: var(--bone-white);
    color: var(--main-text);
}
.primary_btn.white_grey_btn {
    background: rgba(255, 255, 255, 30%);
}

/* Secondary Link */
.link_btn{
    display:inline-flex;
    align-items:center;
    font-size:14px;
    line-height:20px;
    letter-spacing: 1.7px;
    color:var(--black);

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

.link_btn i{
    margin-left:10px;
    transition:all .3s ease;
}

.link_btn:hover{
    color:var(--primary-green);
    
}

.link_btn:hover i{
    animation:arrowMove .8s ease infinite;
}
@keyframes arrowMove{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(6px);
    }
}

/* Footer */
.site_footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius:30px;
}
.footer_top {
    display: grid;
    grid-template-columns: 280px auto;
    gap: 224px;
    padding-top: 60px;
    margin-bottom: 24px;
}

.footer_top .footer_logo{
    display:block;
    margin-bottom:24px;
}

.footer_top .footer_logo img{
    max-width:220px;
    display:block;
}

.footer_top .footer_brand p{
    color: var(--main-text);
}

.footer_top .footer_links {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.footer_top .footer_links ul li a {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.3px;
    color: var(--main-text);
    padding-block: 5px;
    display: inline-block;
    transition:var(--transition);
}
.footer_top .footer_links ul li:first-child a {
    padding-top: 0px;
}
.footer_top .footer_links ul li:hover a {
    color: var(--primary-green);
}
.footer_top .footer_column h4{
    margin-bottom: 16px;
    color: var(--main-text);
}


.divider {
    background: #80C72B;
    background: linear-gradient(-90deg, rgba(128, 199, 43, 0) 0%, rgba(128, 199, 43, 1) 100%);
    height: 1px;
    width: 100%;
}

.footer_bottom {
    padding-top:28px;
    padding-bottom: 44px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer_bottom .footer_copyright{
    display:flex;
    align-items:center;
    gap:10px;
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}
.footer_bottom .footer_copyright a {
    transition: var(--transition);
}
.footer_bottom .footer_copyright a:hover {
    color: var(--primary-green);
}

.footer_bottom .footer_tagline {
    color: var(--primary-green);
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}

/* REsponsive */
@media screen and (max-width:1199px){
    .footer_top {
        gap: 124px;
    }
    .footer_top .footer_links {
        gap: 40px;
    }
}
@media screen and (max-width:991px){
    .footer_top {
        grid-template-columns: 260px auto;
        gap: 40px;
    }
    .footer_top .footer_links {
        gap: 16px;
    }
}
@media screen and (max-width:767px){
    .footer_top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer_top .footer_links {
        gap: 40px;
        flex-wrap: wrap;
    }
    .footer_bottom {
        padding-top: 28px;
        padding-bottom: 28px;
        gap: 8px;
        flex-wrap: wrap;
    }
    .footer_bottom .footer_copyright {
        gap: 4px;
        flex-wrap: wrap;
    }
}

/* Hero Section */

.hero_section {
    border-radius:0px 0px 30px 30px;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    bottom: 0;
    padding-top: 0;
    padding-bottom: 78px;
    margin-block: 0;
}
.hero_section::before {
    content: "";
    background: linear-gradient(0deg, rgba(16, 22, 4, 0) 0%, rgba(16, 22, 4, 1) 100%);
    min-height: 121px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero_section .figure {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    
}
.hero_section .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero_section .hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(230deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 1) 84%);
}

.hero_section .hero_content {
    position: relative;
    z-index: 2;

    max-width: calc(var(--container) + 40px);
    padding-inline: 20px;
    width: 100%;
    margin: 0 auto;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--white);
}
.hero_section .hero_content .content_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}
.hero_section .content_left {
    max-width: 540px;
    width: 100%;
}
.hero_section .hero_content .tagline {
    color: var(--white);
}
.hero_section .hero_content .title {
    color: var(--white);
}
.hero_section .hero_content .description {
    color: var(--white);
}
.hero_section .hero_content .btn-group {
    margin-top: 40px;
}

.scroll_down {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);

    width: 56px;
    height: 56px;

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

    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(4px);
    text-decoration: none;

    z-index: 2;
}

.scroll_down img{
    animation:scrollArrow 1.8s ease infinite;
}

@keyframes scrollArrow{
    0%{
        transform:translateY(0);
        opacity:1;
    }

    40%{
        transform:translateY(10px);
        opacity:0;
    }

    41%{
        transform:translateY(-10px);
        opacity:0;
    }

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

/* Intro */
.intro_header .tagline {
    margin-bottom: 14px;
    color: var(--aviation-deep);
}
.intro_header .title {
    margin-bottom: 20px;
    color: var(--steel-blue);
}
.intro_header .description {
    color: var(--aviation-deep);

}


/* Default PAge */
.main {
    min-height: 50vh;
}
.page-template-default .main {
    margin-top: 100px;
}
.aero_page_section {
    padding-block: 72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
} 
.aero_page_section .container {
    max-width: calc(var(--container-sm) + 40px);
}
.aero_page_section h1 {
    margin-bottom: 44px;
    color: var(--main-text);
}
.aero_page_section .wp-block-heading {
    margin-bottom: 16px;
    color: var(--main-text);
}
.aero_page_section .wp-block-paragraph {
    margin-bottom: 34px;
    color: var(--secondary);
}
.aero_page_section .wp-block-paragraph:last-child {
    margin-bottom: 0px;
}
.aero_page_section .wp-block-paragraph a {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Select 2 */
.select2-container .select2-selection--single {
    height: 52px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
    line-height: 18px;
    color: #5A6478;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}
.select2-container--default .select2-selection--single {
    border: 1px solid rgba(244, 246, 248, 14%);
    border-radius: 30px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 26px;
    padding-right: 26px;
    padding-block: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    width: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "";
    background: url(../images/green-arrow-down.svg) no-repeat;
    background-position: left center;
    background-size: 16px;
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 17px;
    width: 16px;
    height: 16px;
}
.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    transform: rotate(180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-results__option {
    padding: 6px 26px;
    color: #5A6478;
}
.select2-dropdown {
    font-size: 13px;
    line-height: 18px;
    border: 1px solid rgba(244, 246, 248, 14%);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 236, 242, 1) 100%);
    border-radius: 0px 0px 30px 30px;
    padding-bottom: 16px;
    overflow: hidden;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-green);
}
.select2-container--default .select2-results__option--selected {
    background-color: var(--bone-white);
}


/* Responsive */

@media screen and (min-width:768px){
    .only_for_mobile {
        display: none;
    }
}
@media screen and (max-width:1199px){
    /* Privacy Policy */
    .aero_page_section {
        padding-block: 60px;
    }
}
@media screen and (max-width:991px){
    .hero_section .hero_content .tagline {
        margin-bottom: 16px;
    }
.hero_section .hero_content .content_row {
    gap: 16px;
    flex-direction: column;
}
.hero_section .content_left,
.hero_section .content_right {
    max-width: 100%;
}
}

@media screen and (max-width:767px){
    /* Hero */
    .hero_section {
        padding-bottom: 90px;
    }

    /* Typo */
    .body_2_caps {
        letter-spacing: 1px;
    }
    .only_for_desktop {
        display: none;
    }
    .scroll_down {
        bottom: 16px;
    }

    /* Privacy Policy */
    .page-template-default .main {
        margin-top: 80px;
    }
    .aero_page_section {
        padding-block: 40px;
    }
    .aero_page_section h1 {
        margin-bottom: 30px;
    }

    
}