:root {
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gray-950: #0A0A0A;
    --blue-bayou-50: #F5F8FA;
    --blue-bayou-100: #EAEFF4;
    --blue-bayou-200: #D1DDE6;
    --blue-bayou-300: #A9BFD0;
    --blue-bayou-400: #7A9EB6;
    --blue-bayou-500: #5A829D;
    --blue-bayou-600: #43647D;
    --blue-bayou-700: #3A556A;
    --blue-bayou-800: #334959;
    --blue-bayou-900: #2E3E4C;
    --blue-bayou-950: #1E2933;
    --success: #22A24E;
    --error: #DA292E;
    --warning: #D77720;
    --barut-magenta: #E6007E;
    --barut-magenta-dark: #B00460;
    --titleFont: "Brygada 1918", serif;
    --bodyFont: "Poppins", sans-serif;

}

.mt-24 {
    margin-top: 24px;

}

.mt-32 {
    margin-top: 32px;
}

.mt-64 {
    margin-top: 64px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-96 {
    margin-top: 96px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-240 {
    margin-top: 240px;
}

@media (max-width: 767.98px) {
    .mt-240 {
        margin-top: 200px;
    }
}


.mb-240 {
    margin-bottom: 240px;
}

@media (max-width: 767.98px) {
    .mb-240 {
        margin-bottom: 200px;
    }
}

.mb-200 {
    margin-bottom: 200px;
}

@media (max-width: 767.98px) {
    .mb-200 {
        margin-bottom: 120px;
    }
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-64 {
    margin-bottom: 64px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.-mt-48 {
    margin-top: -48px;
}

.-mt-64 {
    margin-top: -64px;
}

.px-m-24 {
    /* No default styles */
}

@media (max-width: 767.98px) {
    .px-m-24 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.custom-page-mb-120 {
    margin-bottom: 120px;
}

@media (max-width: 767.98px) {
    .custom-page-mb-120 {
        margin-bottom: 64px;
    }
}

.custom-my-64 {
    margin: 64px auto !important;
}

.btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: var(--bodyFont);
    padding: 8px 20px;
    text-align: center;
    border-radius: 64px;
    transition: all linear 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-lg {
    padding: 8px 32px;
}

.btn.btn-xl {
    padding: 16px 40px;
}

.btn-primary {
    background-color: var(--blue-bayou-900);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--blue-bayou-600);
    color: #FFF;
    transition: all linear 0.3s;
}

.btn-secondary {
    background-color: var(--blue-bayou-100);
    color: var(--blue-bayou-900);
}

.btn-secondary:hover {
    background-color: var(--blue-bayou-200);
    color: var(--blue-bayou-900);
    transition: all linear 0.3s;
}

.btn-ghost {
    background: #FFF !important;
    color: var(--blue-bayou-900) !important;
    border-radius: 64px;
}

.btn-ghost:hover {
    background: var(--blue-bayou-200) !important;
    color: var(--blue-bayou-900) !important;
    transition: all linear 0.3s;
}

.btn-magenta {
    background-color: var(--barut-magenta);
    color: #FFF;
}

.btn-magenta:hover {
    background: var(--Magenta-Dark, #B00460);
    color: #FFF;
}

.btn-disabled {
    background: var(--Gray-500, #737373);
    color: #FFF;
    opacity: 0.6;
}

.btn-disabled:hover {
    background: var(--Gray-500, #737373);
    color: #FFF;
}

body {
    -webkit-font-smoothing: antialiased;
    font-variant-numeric: lining-nums;
    background-color: #ffffff;
    font-family: var(--bodyFont), serif;
    font-size: 16px !important;
    font-weight: 400;
    margin: auto;
    text-align: left;
    text-shadow: none;
    color: var(--gray-600);
    font-variant-ligatures: no-common-ligatures;
}

body.overflow-hidden {
    overflow: hidden;
}


a, a:hover {
    color: inherit;
    text-decoration: none !important
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

td {
    vertical-align: top;
}

*:focus {
    outline: none;
}

header {
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
}

header .col {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 48px;
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-left: 0;
    padding-right: 0;
}

header .col .logo {
    flex: 2;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

header .col a {
    color: #FFF;

    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

header .languages{
    position: relative;
    cursor: pointer;

    & .others{
        position: absolute;
        top: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: 0;
        overflow: hidden;
        transition: height 0.3s;

        &.open{
            height: auto;
            /* For smooth transition, you may need to set a max-height instead of auto */
            max-height: 200px; /
        }
    }
}

.hero {
    position: relative;
}

.hero .swiper-slide {
    position: relative;
}

.hero .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    z-index: 10;
}

.hero .swiper-slide:has(video)::before {
    height: 99%;
}

.hero .swiper-slide img, .hero .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100vh;
    aspect-ratio: 131 / 93;
}


.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: white;
    border: 2px solid white;
}

.intro {
    margin-top: 56px;
    text-align: center;
    margin-bottom: 64px;
}

.intro article h1 {
    color: #0B243A;
    font-family: var(--titleFont), serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.intro article p {
    color: #0B243A;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
    max-width: 70%;
    margin: auto;
}

.about {
    position: relative;
    margin-bottom: 220px;
}

.about::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 0;
    background: #EFEAD9;
    width: 100%;
    height: 80%;
    z-index: -1;
}

.aboutCard {
    color: #0B243A;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.aboutCard img{
    aspect-ratio: 638 / 399;
    border-radius: 12px;
}

.aboutCard article{
    color: #0B243A;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hive {
}

.hive .col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    padding: 0;
    align-items: center;
    position: relative;
}

.hive .box-blue {
    border-radius: 18px;
    background: #7FC5C6;
    width: 44px;
    height: 103px;
    margin: 0 24px;
}

.hive .line:first-child .photoComb {
    justify-content: flex-end;
}

.hive .box-black {
    border-radius: 18px;
    background: #1E2F28;
    width: 42px;
    height: 59px;
    margin-left: 24px;
}

.photoComb {
    display: flex;
    margin-bottom: 24px;
}

.hive .centerLogo {
    position: absolute;
    z-index: 10;
    display: flex;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    top: 37%;

    & img {
        object-fit: contain;
        width: 200px;
    }
}

.factsheet {
    margin-top: 120px;
    text-align: center;
    margin-bottom: 96px;
}

.factsheet .title {
    color: #0B243A;
    font-family: var(--titleFont), serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.factsheet p {
    color: #0B243A;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    max-width: 60%;
    margin: 0 auto 2rem;

}

.factsheet a {
    color: #0B243A;
    border-radius: 80px;
    border: 1px solid #0B243A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 12px 32px;
    transition: all linear 0.2s;
}

.factsheet a:hover {
    background: #0B243A;
    color: #FFF;
    transition: all linear 0.2s;
}

.cards {
    margin-top: 180px;
    position: relative;
}

.cards::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    background: #EFEAD9;
    width: 100%;
    height: 60%;
    z-index: -1;
}

.info-card {
}

.info-card figure {
}

.info-card figure img {
    aspect-ratio: 417 / 592;
    object-fit: cover;
    border-radius: 12px;
}

.info-card article {
}

.info-card article h2 {
    color: #0B243A;
    font-family: var(--titleFont), serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 163.762%; /* 40.941px */
}

.info-card article p {
    color: #0B243A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}


.contactForm {
    border-radius: 18px;
    background: #F0E9D8;
    padding: 24px;
}

.contactForm input, .contactForm textarea {
    border: none;
    border-bottom: 1px solid #000;
    color: #010101;
    font-variant-numeric: lining-nums proportional-nums;
    margin-bottom: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 8px 12px;
    background: transparent;
}

.checkbox {

}

/* Custom Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--gray-900);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* When the checkbox is checked, add a green background */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--success);
    border-color: var(--success);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contactForm button {
    margin-top: 24px;
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 41.791px;
    border: 1px solid #000;
    padding: 4px 12px;
}

.contactInfo {

}

.contactInfo h2 {
    color: #0B243A;
    font-family: var(--titleFont), serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;

    text-transform: capitalize;
}

.contactInfo .line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.contactInfo .line .icon {

}

.contactInfo .socials {
    display: flex;
    gap: 16px;
    margin-top: 2rem;
}

footer {
    margin-top: 80px;
    padding-top: 1rem;
    background: #14312C;
}

.footerLogo {
    margin: 80px auto 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer {
    color: #F0E9D8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-top: 1px solid #4F6561;
    padding: 24px 0;
    text-align: center;
}


@media screen and (max-width: 767px) {

    header {
        position: absolute;
        width: 100%;
        z-index: 100;
        top: 0;
        left: 0;
    }

    header .col {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding-top: 24px;
        color: #FFF;
        font-size: 22px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        padding-left: 0;
        padding-right: 0;
    }

    header .languages {
        display: none;
    }

    header .col .logo svg {
        width: 150px;
        height: 70px;

    }

    header .col a {
        display: none;
    }

    .hero {
        position: relative;
    }

    .hero .swiper-slide {
        position: relative;
    }

    .hero .swiper-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.25);
        width: 100%;
        height: 100%;
        z-index: 10;
    }

    .hero .swiper-slide:has(video)::before {
        height: 98%;
    }

    .hero .swiper-slide img, .hero .swiper-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: 100vh;

        aspect-ratio: 1/1;
    }


    .intro {
        margin-top: 36px;
        text-align: center;
        margin-bottom: 48px;
    }

    .intro article h1 {
        color: #0B243A;
        font-family: var(--titleFont), serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 1.5rem;
    }

    .intro article p {
        color: #0B243A;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        text-transform: capitalize;
        max-width: 100%;
        margin: auto;
    }


    .about {
        position: relative;
        margin-bottom: 120px;
    }

    .about::before {
        content: "";
        position: absolute;
        top:-2%;
        left: 0;
        background: #EFEAD9;
        width: 100%;
        height: 105%;
        padding: 24px 0;
        z-index: -1;
    }

    .aboutCard {
        color: #0B243A;

        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        margin-bottom: 24px;
    }


    .hive {
    }

    .hive .col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
        padding: 0;
        align-items: center;
        position: relative;
    }

    .hive .box-blue {
       display: none;
    }

    .hive .line:first-child .photoComb {
        justify-content: flex-end;
    }

    .hive .box-black {
       display: none;
    }

    .photoComb {
        display: flex;
        margin-bottom: 12px;
    }

    .hive .centerLogo {
        position: absolute;
        z-index: 10;
        display: flex;
        width: fit-content;
        left: 50%;
        transform: translateX(-50%);
        top: 33%;

        & svg {
            width: 180px;
        }
    }



    .cards {
        margin-top: 180px;
        position: relative;
    }

    .cards::before {
        content: "";
        position: absolute;
        top: 10%;
        left: 0;
        background: #EFEAD9;
        width: 100%;
        height: 70%;
        z-index: -1;
    }

    .info-card {
    }

    .info-card figure {
    }

    .info-card figure img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .info-card article {
    }

    .info-card article h2 {
        color: #0B243A;
        font-family: var(--titleFont), serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 163.762%; /* 40.941px */
    }

    .info-card article p {
        color: #0B243A;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }



    .factsheet {
        margin-top: 80px;
        text-align: center;
        margin-bottom: 76px;
    }

    .factsheet .title {
        color: #0B243A;
        font-family: var(--titleFont), serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        text-transform: capitalize;
        margin-bottom: 1.5rem;
    }

    .factsheet p {
        color: #0B243A;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        text-transform: capitalize;
        max-width: 100%;
        margin: 0 auto 2rem;

    }

    .factsheet a {
        color: #0B243A;
        border-radius: 80px;
        border: 1px solid #0B243A;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 8px 12px;
        transition: all linear 0.2s;
    }

    .factsheet a:hover {
        background: #0B243A;
        color: #FFF;
        transition: all linear 0.2s;
    }

    .contact .row{
        flex-direction: column-reverse;
        gap:24px;
    }

    .contact .col-12{
        padding: 0 24px;
    }

}