/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;

@layer theme {

    :root,
    :host {
        --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
            "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
            "Courier New", monospace;
        --color-white: #fff;
        --spacing: 0.25rem;
        --font-weight-bold: 700;
        --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
        --default-transition-duration: 150ms;
        --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        --default-font-family: var(--font-sans);
        --default-mono-font-family: var(--font-mono);
    }
}

@layer base {

    *,
    ::after,
    ::before,
    ::backdrop,
    ::file-selector-button {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        border: 0 solid;
    }

    html,
    :host {
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        tab-size: 4;
        font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
        font-feature-settings: var(--default-font-feature-settings, normal);
        font-variation-settings: var(--default-font-variation-settings, normal);
        -webkit-tap-highlight-color: transparent;
    }

    hr {
        height: 0;
        color: inherit;
        border-top-width: 1px;
    }

    abbr:where([title]) {
        -webkit-text-decoration: underline dotted;
        text-decoration: underline dotted;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: inherit;
        font-weight: inherit;
    }

    a {
        color: inherit;
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
    }

    b,
    strong {
        font-weight: bolder;
    }

    code,
    kbd,
    samp,
    pre {
        font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
        font-feature-settings: var(--default-mono-font-feature-settings, normal);
        font-variation-settings: var(--default-mono-font-variation-settings, normal);
        font-size: 1em;
    }

    small {
        font-size: 80%;
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sub {
        bottom: -0.25em;
    }

    sup {
        top: -0.5em;
    }

    table {
        text-indent: 0;
        border-color: inherit;
        border-collapse: collapse;
    }

    :-moz-focusring {
        outline: auto;
    }

    progress {
        vertical-align: baseline;
    }

    summary {
        display: list-item;
    }

    ol,
    ul,
    menu {
        list-style: none;
    }

    img,
    svg,
    video,
    canvas,
    audio,
    iframe,
    embed,
    object {
        display: block;
        vertical-align: middle;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button,
    input,
    select,
    optgroup,
    textarea,
    ::file-selector-button {
        font: inherit;
        font-feature-settings: inherit;
        font-variation-settings: inherit;
        letter-spacing: inherit;
        color: inherit;
        border-radius: 0;
        background-color: transparent;
        opacity: 1;
    }

    :where(select:is([multiple], [size])) optgroup {
        font-weight: bolder;
    }

    :where(select:is([multiple], [size])) optgroup option {
        padding-inline-start: 20px;
    }

    ::file-selector-button {
        margin-inline-end: 4px;
    }

    ::placeholder {
        opacity: 1;
    }

    @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
        ::placeholder {
            color: currentcolor;

            @supports (color: color-mix(in lab, red, red)) {
                color: color-mix(in oklab, currentcolor 50%, transparent);
            }
        }
    }

    textarea {
        resize: vertical;
    }

    ::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    ::-webkit-date-and-time-value {
        min-height: 1lh;
        text-align: inherit;
    }

    ::-webkit-datetime-edit {
        display: inline-flex;
    }

    ::-webkit-datetime-edit-fields-wrapper {
        padding: 0;
    }

    ::-webkit-datetime-edit,
    ::-webkit-datetime-edit-year-field,
    ::-webkit-datetime-edit-month-field,
    ::-webkit-datetime-edit-day-field,
    ::-webkit-datetime-edit-hour-field,
    ::-webkit-datetime-edit-minute-field,
    ::-webkit-datetime-edit-second-field,
    ::-webkit-datetime-edit-millisecond-field,
    ::-webkit-datetime-edit-meridiem-field {
        padding-block: 0;
    }

    ::-webkit-calendar-picker-indicator {
        line-height: 1;
    }

    :-moz-ui-invalid {
        box-shadow: none;
    }

    button,
    input:where([type="button"], [type="reset"], [type="submit"]),
    ::file-selector-button {
        appearance: button;
    }

    ::-webkit-inner-spin-button,
    ::-webkit-outer-spin-button {
        height: auto;
    }

    [hidden]:where(:not([hidden="until-found"])) {
        display: none !important;
    }
}

@layer utilities {
    .visible {
        visibility: visible;
    }

    .absolute {
        position: absolute;
    }

    .relative {
        position: relative;
    }

    .top-0 {
        top: calc(var(--spacing) * 0);
    }

    .left-0 {
        left: calc(var(--spacing) * 0);
    }

    .left-\[50\%\] {
        left: 50%;
    }

    .z-10 {
        z-index: 10;
    }

    .z-20 {
        z-index: 20;
    }

    .z-30 {
        z-index: 30;
    }

    .z-50 {
        z-index: 50;
    }

    .my-\[1\.875rem\] {
        margin-block: 1.875rem;
    }

    .mt-\[2\.5rem\] {
        margin-top: 2.5rem;
    }

    .mt-\[2\.25rem\] {
        margin-top: 2.25rem;
    }

    .mt-\[3rem\] {
        margin-top: 3rem;
    }

    .mb-\[1rem\] {
        margin-bottom: 1rem;
    }

    .mb-\[2\.5rem\] {
        margin-bottom: 2.5rem;
    }

    .mb-\[2\.6rem\] {
        margin-bottom: 2.6rem;
    }

    .mb-\[2rem\] {
        margin-bottom: 2rem;
    }

    .mb-\[3\.125rem\] {
        margin-bottom: 3.125rem;
    }

    .mb-\[3rem\] {
        margin-bottom: 3rem;
    }

    .flex {
        display: flex;
    }

    .hidden {
        display: none;
    }

    .inline-flex {
        display: inline-flex;
    }

    .\!h-full {
        height: 100% !important;
    }

    .h-full {
        height: 100%;
    }

    .h-screen {
        height: 100vh;
    }

    .\!w-full {
        width: 100% !important;
    }

    .w-auto {
        width: auto;
    }

    .w-full {
        width: 100%;
    }

    .max-w-\[60\%\] {
        max-width: 60%;
    }

    .flex-1 {
        flex: 1;
    }

    .grow {
        flex-grow: 1;
    }

    .translate-x-\[-50\%\] {
        --tw-translate-x: -50%;
        translate: var(--tw-translate-x) var(--tw-translate-y);
    }

    .transform {
        transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
    }

    .cursor-pointer {
        cursor: pointer;
    }

    .flex-col {
        flex-direction: column;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

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

    .items-end {
        align-items: flex-end;
    }

    .justify-between {
        justify-content: space-between;
    }

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

    .justify-end {
        justify-content: flex-end;
    }

    .gap-5 {
        gap: calc(var(--spacing) * 5);
    }

    .gap-8 {
        gap: calc(var(--spacing) * 8);
    }

    .gap-\[\.5rem\] {
        gap: .5rem;
    }

    .gap-\[\.6rem\] {
        gap: .6rem;
    }

    .gap-\[\.75rem\] {
        gap: .75rem;
    }

    .gap-\[1\.5rem\] {
        gap: 1.5rem;
    }

    .gap-\[1rem\] {
        gap: 1rem;
    }

    .gap-\[2\%\] {
        gap: 2%;
    }

    .gap-\[2rem\] {
        gap: 2rem;
    }

    .gap-\[3rem\] {
        gap: 3rem;
    }

    .gap-\[4rem\] {
        gap: 4rem;
    }

    .gap-\[7px\] {
        gap: 7px;
    }

    .gap-\[50px\] {
        gap: 50px;
    }

    .gap-y-\[1rem\] {
        row-gap: 1rem;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .object-cover {
        object-fit: cover;
    }

    .p-\[1\.5rem\] {
        padding: 1.5rem;
    }

    .px-\[15px\] {
        padding-inline: 15px;
    }

    .py-\[1\.625rem\] {
        padding-block: 1.625rem;
    }

    .py-\[2rem\] {
        padding-block: 2rem;
    }

    .py-\[3\.125rem\] {
        padding-block: 3.125rem;
    }

    .py-\[4rem\] {
        padding-block: 4rem;
    }

    .pt-\[4rem\] {
        padding-top: 4rem;
    }

    .pt-\[6\.25rem\] {
        padding-top: 6.25rem;
    }

    .pt-\[12rem\] {
        padding-top: 12rem;
    }

    .pb-\[1\.875rem\] {
        padding-bottom: 1.875rem;
    }

    .pb-\[5rem\] {
        padding-bottom: 5rem;
    }

    .pb-\[6\.25rem\] {
        padding-bottom: 6.25rem;
    }

    .pl-\[20px\] {
        padding-left: 20px;
    }

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

    .text-\[\.9rem\] {
        font-size: .9rem;
    }

    .text-\[1rem\] {
        font-size: 1rem;
    }

    .font-bold {
        --tw-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold);
    }

    .text-white {
        color: var(--color-white);
    }

    .transition {
        transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
        transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
        transition-duration: var(--tw-duration, var(--default-transition-duration));
    }

    .ease-in-out {
        --tw-ease: var(--ease-in-out);
        transition-timing-function: var(--ease-in-out);
    }

    .md\:mt-\[4\.5rem\] {
        @media (width >=48rem) {
            margin-top: 4.5rem;
        }
    }

    .md\:mb-\[4rem\] {
        @media (width >=48rem) {
            margin-bottom: 4rem;
        }
    }

    .md\:w-\[32\%\] {
        @media (width >=48rem) {
            width: 32%;
        }
    }

    .md\:w-\[57\.3\%\] {
        @media (width >=48rem) {
            width: 57.3%;
        }
    }

    .md\:flex-nowrap {
        @media (width >=48rem) {
            flex-wrap: nowrap;
        }
    }

    .md\:gap-8 {
        @media (width >=48rem) {
            gap: calc(var(--spacing) * 8);
        }
    }

    .md\:gap-\[2\.5rem\] {
        @media (width >=48rem) {
            gap: 2.5rem;
        }
    }

    .md\:p-\[3rem\] {
        @media (width >=48rem) {
            padding: 3rem;
        }
    }

    .md\:px-\[1\.25rem\] {
        @media (width >=48rem) {
            padding-inline: 1.25rem;
        }
    }

    .md\:px-\[4rem\] {
        @media (width >=48rem) {
            padding-inline: 4rem;
        }
    }

    .md\:py-\[6\.25rem\] {
        @media (width >=48rem) {
            padding-block: 6.25rem;
        }
    }

    .md\:py-\[6rem\] {
        @media (width >=48rem) {
            padding-block: 6rem;
        }
    }

    .md\:pt-\[5\.3rem\] {
        @media (width >=48rem) {
            padding-top: 5.3rem;
        }
    }

    .md\:pt-\[6\.3rem\] {
        @media (width >=48rem) {
            padding-top: 6.3rem;
        }
    }

    .md\:pt-\[16rem\] {
        @media (width >=48rem) {
            padding-top: 16rem;
        }
    }

    .md\:pr-\[3rem\] {
        @media (width >=48rem) {
            padding-right: 3rem;
        }
    }

    .md\:pb-\[7rem\] {
        @media (width >=48rem) {
            padding-bottom: 7rem;
        }
    }

    .lg\:block {
        @media (width >=64rem) {
            display: block;
        }
    }

    .lg\:hidden {
        @media (width >=64rem) {
            display: none;
        }
    }

    .lg\:max-w-\[50\%\] {
        @media (width >=64rem) {
            max-width: 50%;
        }
    }

    .lg\:max-w-\[55\%\] {
        @media (width >=64rem) {
            max-width: 55%;
        }
    }

    .lg\:gap-\[1\%\] {
        @media (width >=64rem) {
            gap: 1%;
        }
    }

    .lg\:gap-\[3\.75rem\] {
        @media (width >=64rem) {
            gap: 3.75rem;
        }
    }

    .lg\:gap-\[7\%\] {
        @media (width >=64rem) {
            gap: 7%;
        }
    }

    .lg\:py-\[6\.3rem\] {
        @media (width >=64rem) {
            padding-block: 6.3rem;
        }
    }

    .lg\:pl-\[7rem\] {
        @media (width >=64rem) {
            padding-left: 7rem;
        }
    }

    .xl\:px-\[4\.5rem\] {
        @media (width >=80rem) {
            padding-inline: 4.5rem;
        }
    }

    .xl\:px-\[7rem\] {
        @media (width >=80rem) {
            padding-inline: 7rem;
        }
    }

    .xl\:pr-\[7rem\] {
        @media (width >=80rem) {
            padding-right: 7rem;
        }
    }

    .xl\:pl-\[5\.7rem\] {
        @media (width >=80rem) {
            padding-left: 5.7rem;
        }
    }
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/noto-sans-v42-latin-500.eot');
    src: url('../fonts/noto-sans-v42-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-500.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-500.woff') format('woff'), url('../fonts/noto-sans-v42-latin-500.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-500.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/noto-sans-v42-latin-600.eot');
    src: url('../fonts/noto-sans-v42-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-600.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-600.woff') format('woff'), url('../fonts/noto-sans-v42-latin-600.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-600.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-700.woff') format('woff'), url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}

:root {
    --site-primary-color: #094787;
    --site-secondary-color: #2A7C62;
    --site-white-color: #ffffff;
    --site-ash-color: #8E97A8;
    --site-secondary-bg: #F1F6F2;
    --site-radius: 2.5rem;
    --primary-font: 'Noto Sans', serif;
}

/* window loading — initial clipped state set by CSS so there's no flash before JS */
body.home .home-banner {
    clip-path: inset(45% 45% 45% 45% round 120px);
    -webkit-clip-path: inset(45% 45% 45% 45% round 120px);
}

.home-banner {
    will-change: clip-path, -webkit-clip-path;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
}

body.elementor-editor-active .home-banner {
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

/* Scroll-gate wrapper: provides the extra scroll space so the sticky banner
   has room to animate its clip-path. No overflow clipping — sticky needs it. */
.home-banner-gate {
    position: relative;
    overflow: visible;
    /* required for position:sticky children */
}

/* When inside the gate, the banner sticks to top while gate scrolls */
.home-banner-gate .home-banner {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
}

body.home .site-header {
    position: fixed;
}


@media (max-width: 768px) {
    :root {
        --site-radius: 1.5rem;
    }
}

/* temp hidingin scroll bar */
::-webkit-scrollbar {
    display: none;
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, #3B5B40, #3B5B40), linear-gradient(360deg, #217258 -23.24%, rgba(73, 154, 128, 0.8) 123.22%);
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: var(--primary-font);
    font-weight: 400;
    color: var(--site-primary-color);
}

html {
    font-size: 100%;
}

.base-container {
    width: 100%;
    padding-left: 7rem;
    padding-right: 7rem;
}

.char {
    display: inline-block;
}

.tl-height-screen {
    height: 100vh;
    height: 100svh;
}

.bmaan-icon-img {
    width: 4.58rem;
    height: 4.58rem;
    max-width: inherit !important;
}



.banner-headline {
    font-weight: 700;
    font-style: normal;
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}


.section-headline {
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-sub-headline {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -2%;
}

.sub-headline {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
}

.section-description {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5;
}

.section-btn a,
.section-btn button {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: var(--site-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--site-primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 1.2rem;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.btn-two a {
    background-color: var(--site-secondary-color);
}

.section-btn.btn-liquid a,
.section-btn.btn-liquid button {
    position: relative;
    overflow: hidden;
    z-index: 2;
    isolation: isolate;
    transition: background-color 0.4s ease;
}

.section-btn.btn-liquid a::before,
.section-btn.btn-liquid button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    top: 105%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 100%;
    transition: top 0.5s ease, transform 0.5s ease;
    z-index: -1;
}

.section-btn.btn-liquid a:hover,
.section-btn.btn-liquid button:hover {
    animation: none;
    background-color: #1d4ed8;
}

.section-btn.btn-liquid a:hover::before,
.section-btn.btn-liquid button:hover::before {
    top: -50%;
}

.btn-two.btn-liquid a:hover,
.btn-two.btn-liquid button:hover {
    background-color: var(--site-secondary-color);
}

@media (min-width: 120.0625rem) {
    html {
        font-size: 120%;
    }
}

@media (min-width: 156.25rem) {
    html {
        font-size: 130%;
    }
}

@media (min-width: 218.75rem) {
    html {
        font-size: 140%;
    }
}

@media (max-width: 1366px) {
    .base-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        max-width: 1256px;
        margin: 0 auto;
    }

    .banner-headline {
        font-size: 3.5rem;
    }

    .section-headline {
        font-size: 3rem;
    }

    .section-sub-headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .base-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-headline {
        font-size: 3rem;
    }

    .section-headline {
        font-size: 2.8rem;
    }

    .section-sub-headline {
        font-size: 2.2rem;
    }

    .section-btn a {
        font-size: 16px;
        padding: 15px 1.5rem;
    }

}

@media (max-width: 600px) {
    .banner-headline {
        font-size: 2.5rem;
    }

    .section-headline {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-sub-headline {
        font-size: 1.7rem;
    }

    .bmaan-icon-img {
        width: 3.5rem;
        height: 3.5rem;
    }
}

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



body.home .site-header {
    padding: .625rem;
}

.bubble {
    position: absolute;
    height: 2.375rem;
    width: 5rem;
    left: 0;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border: 2px solid transparent;
    border-radius: 1.125rem;
    background-image: linear-gradient(to right, #1d5d3b, #1d5d3b);
    background-origin: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}


.site-header-outer {
    backdrop-filter: blur(24px);
    border-bottom: 1px solid #E0E7EA;
    border-radius: var(--site-radius);
    background: #FFFFFF0D;
}

.site-logo {
    width: auto;
    height: 6.125rem;
}

.site-nav ul li a {
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: #414B59;
    text-decoration: none;
    position: relative;
    padding: 0.4rem 0.8rem;
    display: block;
    transition: color 0.3s ease;
}

/* .site-nav ul li a::before,
.site-nav ul li a::after {
    content: "";
    position: absolute;
    border: 0px solid transparent;
    width: 0%;
    height: 0%;
    bottom: 0%;
    right: 0%;
    pointer-events: none;
} */

/* .site-nav ul li a::before {
    border-bottom-width: 2px;
    border-left-width: 2px;
} */

/* .site-nav ul li a::after {
    border-top-width: 2px;
    border-right-width: 2px;
} */

header .site-nav ul li a:hover {
    color: var(--site-primary-color);
    transition: .3s ease-in-out;
}

/* .site-nav ul li a:hover::before,
.site-nav ul li a:hover::after {
    border-color: #A6A6A6;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
} */

/* .site-nav ul li a:hover::before {
    transition-delay: 0s, 0s, 0.3s;
} */

/* .site-nav ul li a:hover::after {
    transition-delay: 0s, 0.3s, 0s;
} */

header .current-menu-item .header-menu-link {
    color: var(--site-primary-color);
}

.current-menu-item .header-menu-link {
    font-weight: 700;
}

body.home .header-wrapper .site-nav ul li a {
    color: var(--site-white-color);
}

/* .current-menu-item .header-menu-link::before {
    border-color: #A6A6A6;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
    transition-delay: 0s, 0s, 0.3s;
} */

/* .current-menu-item .header-menu-link::after {
    border-color: #A6A6A6;
    transition: border-color 0s, width 0.3s, height 0.3s;
    width: 100%;
    height: 100%;
    transition-delay: 0s, 0.3s, 0s;
} */

.site-nav ul li {
    position: relative;
    z-index: 20;
}

.mobile-hamburger {
    cursor: pointer;
    position: relative;
    z-index: 50;
}

.mobile-hamburger span {
    display: block;
    width: 32px;
    height: 1.5px;
    background-color: var(--site-primary-color);
}

.mobile-menu-wrapper {
    top: 0px;
    right: 0;
    z-index: 99;
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-wrapper.active {
    background: transparent;
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu {
    height: 100%;
    z-index: 9;
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    background: linear-gradient(90deg, #041f62 0%, #0f61a5 100%);
    transition: all .5s ease-in-out;
}

.mobile-menu.active {
    height: 100%;
    right: 0;
    transition: all .5s ease-in-out;
}

.mobile-menu-outer {
    min-height: 100vh;
    height: 100%;
    width: 100%;
}

.mobile-menu-inner {
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.menu-content {
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-out;
}

.mobile-menu.active .menu-content {
    opacity: 1;
    visibility: visible;
    transition: .8s ease-in-out 1s;
}

.mobile-menu-inner ul {
    padding: 100px 20px 10px;
    width: 100%;
}

.mobile-menu-inner ul li a {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    color: var(--site-bg-color) !important;
}

.mobile-menu .mobile-menu-contact {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translatex(-50%);
    color: #a3a3a3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu .mobile-close {
    background: transparent;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    cursor: pointer;
}

.mobile-close svg {
    width: 45px;
    height: auto;
}

.mobile-nav ul li ul {
    padding: 0 0 30px 0 !important;
    padding: 10px 0;
}

.mobile-nav ul li ul li a {
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0 10px 30px !important;
}

.mobile-nav .sub-menu {
    background-color: transparent !important;
    position: relative !important;
    padding-bottom: 0 !important;
    display: none;
    margin-top: 20px;
}

.mobile-nav li.active-dropdown>.sub-menu {
    display: block;
}

.mobile-menu-wrapper .custom-mega-menu,
.mobile-menu-wrapper .menu-item-type-custom {
    position: relative;
}

.mobile-menu-wrapper .custom-mega-menu:after,
.mobile-menu-wrapper .menu-item-type-custom:after {
    position: absolute;
    content: '';
    background: url("../images/icon/down-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 20px;
    width: 20px;
    height: 20px;
    top: 2px;
    right: 0;
}

.mobile-menu-wrapper .current-menu-item .header-menu-link,
.mobile-menu-wrapper .current-menu-item .header-menu-link:hover {
    color: var(--site-primary-color) !important;
}

.mobile-menu-wrapper .site-logo {
    bottom: 10%;
}

@media (max-width: 1024px) {
    .site-nav ul li>.sub-menu li a:hover {
        color: var(--site-white-color) !important;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 4rem;
    }
}

.site-footer {
    position: relative;
    background-color: var(--site-primary-color);
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
}

.footer-img-star {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-img-bottom {
    position: absolute;
    right: 7rem;
    bottom: 0;
    width: 32%;
    z-index: 10;
}

footer .site-nav ul li a {
    color: var(--site-white-color) !important;
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-menu .site-nav ul {
        flex-direction: column;
    }

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

    .footer-img-bottom {
        width: 50%;
        right: 0;
    }
}

.home-banner {
    background-color: var(--site-secondary-bg);
    padding: .625rem;
}

.home-banner-slider {
    overflow: hidden;
    background-color: var(--site-secondary-bg);
    border-radius: var(--site-radius);
}

.home-banner-slider .swiper-slide {
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

.home-banner-slider .swiper-slide img {
    transform: scale(1.08);
    transition: 2s ease-in-out;
    will-change: transform;
}

.home-banner-slider .swiper-slide.swiper-slide-active img {
    transform: scale(1);
    transition: 4s ease-in-out;
}

.banner-slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.banner-slider-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slider-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0.86%, rgba(0, 0, 0, 0.2) 90.06%), linear-gradient(360deg, rgba(47, 28, 0, 0.6) 0.86%, rgba(47, 28, 0, 0.6) 21.68%, rgba(47, 28, 0, 0.3) 79.18%, rgba(61, 22, 1, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.banner-slider-text {
    position: absolute;
    left: 7rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .6s ease-in;
    z-index: 5;
    pointer-events: none;
    color: var(--site-white-color);
}

.swiper-slide-active .banner-slider-text {
    opacity: 1;
    transition: opacity 1.2s ease-in;
}

.home-banner-slider .swiper-slide {
    will-change: transform;
}

.home-slider-btns {
    position: absolute;
    right: 7.6rem;
    bottom: 2.3rem;
    z-index: 40;
}

.custom-arrow-left,
.custom-arrow-right {
    border: 1px solid var(--neutrals-white-32, #FFFFFF52);
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.curve-design {
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 25rem;
    height: 4rem;
    background-color: var(--site-secondary-bg);
    clip-path: url(#curveClip);
    -webkit-clip-path: url(#curveClip);
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0.8rem;
}

.scroll-icon {
    animation: scroll-up-down 2s infinite ease-in-out;
}

.scroll-icon svg rect,
.scroll-icon svg path {
    stroke: var(--site-secondary-color);
}

@keyframes scroll-up-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .curve-design {
        width: 14rem;
        height: 4rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .home-slider-btns {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        bottom: 7rem;
    }

    .banner-slider-text {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .custom-arrow-left,
    .custom-arrow-right {
        padding: 10px;
    }
}

.bmann-farms {
    background-color: var(--site-secondary-bg);
    border-bottom-left-radius: var(--site-radius);
    border-bottom-right-radius: var(--site-radius);
}

.farms-right-text {
    max-width: 45%;
    flex: 0 0 45%;
}

.farms-left-map {
    max-width: 39.2%;
    flex: 0 0 39.2%;
}

@media (max-width: 1024px) {

    .farms-right-text,
    .farms-left-map {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.single-genetic {
    border-radius: 2rem;
    overflow: hidden;
    max-width: 24%;
    flex: 0 0 24%;
    position: relative;
}

.single-genetic:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0.86%, rgba(0, 0, 0, 0.2) 90.06%), linear-gradient(360deg, rgba(47, 28, 0, 0.6) 0.86%, rgba(47, 28, 0, 0.6) 21.68%, rgba(47, 28, 0, 0.3) 79.18%, rgba(61, 22, 1, 0) 100%);
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in-out;
}

.single-genetic:hover:before {
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.single-genetic:hover .genetic-img img {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.genetic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease-in-out;
}

.genetic-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--site-white-color);
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    z-index: 10;
}

@media (max-width: 1024px) {
    .single-genetic {
        max-width: 48%;
        flex: 0 0 48%;
    }

    .genetic-text {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .genetic-text {
        font-size: 1.2rem;
        left: 10px;
    }
}

/* .hay-section {
    background-color: var(--site-primary-color);
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
    overflow: hidden;
} */

.single-card {
    background-color: var(--site-primary-color);
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
    width: 100%;
    margin: 0 auto;
    will-change: transform, opacity;
}

.scroll-card-outer:not(:last-child) {
    margin-bottom: 3rem;
}

.scroll-card-outer:nth-child(odd) .single-card {
    flex-direction: row-reverse;
}

.scroll-card-outer:nth-child(odd) .single-card .hay-left {
    border-top-left-radius: var(--site-radius);
    overflow: hidden;
}

.scroll-card-outer:nth-child(odd) .single-card .hay-right {
    padding-left: 7rem;
    padding-right: 0;
}


.single-card:not(:last-child) {
    margin-bottom: 3rem;
}

.hay-left {
    border-top-right-radius: var(--site-radius);
    overflow: hidden;
}

.hay-right * {
    color: var(--site-white-color);
}

.hay-right {
    max-width: 40%;
    flex: 0 0 40%;
}

@media (max-width: 768px) {
    .hay-right {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0px 20px 30px;
    }

    .single-card {
        padding-top: 40px !important;
    }

    .scroll-card-outer:nth-child(odd) .single-card .hay-right {
        padding-left: 15px;
    }
}

.properties-section {
    background-color: var(--site-secondary-bg);
    border-bottom-left-radius: var(--site-radius);
    border-bottom-right-radius: var(--site-radius);
}

.properties-slider .swiper-slide {
    width: 36.45% !important;
    height: 30rem;
    border-radius: var(--site-radius);
    overflow: hidden;
}

.properties-slider {
    position: relative;
}

.properties-slider .swiper-wrapper {
    cursor: inherit !important;
}

.properties-slider::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 14.1vw;
    height: 100%;
    background: linear-gradient(270deg, #F1F6F2 0%, rgba(241, 246, 242, 0) 100%);
    z-index: 10;
}

.properties-slider-btns .custom-arrow-left,
.properties-slider-btns .custom-arrow-right {
    border-color: #B8BFC2;
}

@media (min-width: 2500px) {
    .properties-slider .swiper-slide {
        height: 35rem;
    }
}

@media (max-width: 1366px) {
    .properties-slider .swiper-slide {
        height: 25rem;
    }
}

@media (max-width: 1024px) {
    .properties-slider .swiper-slide {
        width: 60% !important;
    }
}

@media (max-width: 768px) {
    .properties-slider .swiper-slide {
        width: 40% !important;
        height: 10rem;
    }
}

.custom-arrow-left:hover,
.custom-arrow-right:hover {
    border-color: var(--site-secondary-color);
    transition: .3s ease-in-out;
}

.custom-arrow-left:hover svg path,
.custom-arrow-right:hover svg path {
    stroke: var(--site-secondary-color);
    transition: .3s ease-in-out;
}

.home-contact-wrapper {
    background-color: var(--site-secondary-bg);
    border-radius: var(--site-radius);
    height: 100%;
    width: 100%;
}

.home-contact-img {
    transform: translate(-2rem, 2rem);
    max-width: 50%;
    flex: 0 0 50%;
}

.home-contact-img img {
    width: 100%;
    height: 100%;
}

.contact-person {
    position: absolute;
    bottom: 0;
    left: 47%;
    width: auto !important;
    transform: translateX(-50%);
    height: 110% !important;
}

@media (max-width: 1366px) {
    .home-contact-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .home-contact-img {
        transform: translate(-2.5rem, 1rem);
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.banner-content {
    max-width: 50rem;
}

.banner-img-right {
    border-top-left-radius: var(--site-radius);
    border-bottom-left-radius: var(--site-radius);
    overflow: hidden;
}

.banner-img-right {
    flex: 1;
}

@media (min-width: 1600px) {
    .banner-img-right {
        flex: 0 0 50%;
    }

    .common-banner-inner {
        justify-content: space-between;
    }
}

@media (max-width: 1280px) {

    .banner-content,
    .banner-img-right {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {

    .banner-content,
    .banner-img-right {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .common-banner-inner {
        gap: 50px;
    }

    .banner-img-right {
        padding-left: 50px;
    }
}

.common-text-content {
    background: url(../images/common-section-bg1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.common-text-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: #00000080;
}

.common-text-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    width: 100%;
}

.common-text-content .section-headline ul {
    padding-left: 9rem;
}

.common-text-content .section-headline li {
    list-style: disc;
    margin-bottom: 1.2rem;
}

.common-text-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: #00000080;
}

.common-text-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    width: 100%;
}

.perspective-top {
    border-radius: var(--site-radius);
    background-color: var(--site-primary-color);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perspective-top-content {
    max-width: 48%;
    flex: 0 0 48%;
}

.perspective-top-img {
    max-width: 48%;
    flex: 0 0 48%;
    border-radius: var(--site-radius);
    overflow: hidden;
}

.perspective-top-content h3,
.perspective-bottom-content h3 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.perspective-top-content p,
.perspective-bottom-content p {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.3;
}

.perspective-bottom-left,
.perspective-bottom-right {
    background-color: var(--site-secondary-bg);
    max-width: 48%;
    flex: 0 0 48%;
    border-radius: var(--site-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.perspective-bottom-left .perspective-bottom-content {
    padding-right: 20px;
}

.perspective-bottom-content {
    max-width: 50%;
    flex: 0 0 50%;
}

.perspective-bottom-img {
    max-width: 50%;
    flex: 0 0 50%;
}

.perspective-bottom {
    display: flex;
    justify-content: space-between;
}

.common-text-content-inner .section-headline.text-center {
    max-width: 60%;
    margin: 0 auto;
}

.ordering-three {
    background: var(--site-secondary-bg) !important;
    margin-top: 2.25rem;
}

.ordering-three * {
    color: var(--site-primary-color);
}

.simple-img-left {
    flex: 1;
    border-top-right-radius: var(--site-radius);
    border-bottom-right-radius: var(--site-radius);
    overflow: hidden;
}

@media (max-width: 1024px) {

    .perspective-top-content h3,
    .perspective-bottom-content h3 {
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .perspective-top-content p,
    .perspective-bottom-content p {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.3;
    }

    .common-text-content .section-headline ul {
        padding-left: 4rem;
    }

    .common-text-content-inner .section-headline.text-center {
        max-width: 900px;
    }

    .simple-img-left {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {

    .perspective-top-content,
    .perspective-top-img,
    .perspective-bottom-left,
    .perspective-bottom-right {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .perspective-top,
    .perspective-bottom {
        gap: 40px;
    }

    .common-text-content .section-headline ul {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {

    .perspective-bottom-img,
    .perspective-bottom-content {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .perspective-bottom-left,
    .perspective-bottom-right {
        gap: 40px;
        flex-wrap: wrap;
    }
}

.common-simgle-text {
    margin-bottom: -1.5rem;
    background-color: var(--site-secondary-bg);
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
}

.common-simgle-text-inner .section-headline {
    color: var(--site-primary-color);
    max-width: 56.5rem;
    font-weight: 700;
}

.availability {
    background-color: var(--site-secondary-bg);
    padding: 6.3rem 0;
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
    margin-bottom: -1.5rem;
}

.breed-tab-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .8rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    cursor: pointer;
}

.breed-tab-btn .breed-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

.breed-tab-btn .breed-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breed-tab-btn .breed-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--site-primary-color);
}

.breed-tab-btn:hover {
    background-color: rgba(9, 71, 135, 0.05);
}

.breed-tab-btn.active {
    background-color: var(--site-primary-color);
}

.breed-tab-btn.active .breed-name {
    color: var(--site-white-color);
}

.breed-img-box {
    aspect-ratio: 4 / 4;
    border-radius: var(--site-radius);
}

.breed-tab-description .section-description {
    font-size: 2rem;
    font-weight: 700;
}

.genetic-breeds-inner {
    max-width: 76rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .breed-tab-btn {
        gap: 1rem;
    }

    .breed-tab-btn .breed-name {
        font-size: 1.25rem;
    }

    .breed-img-box {
        aspect-ratio: 1 / 1;
    }

    .breed-tab-description .section-description {
        font-size: 1rem;
    }
}

.services-details-box {
    background-color: var(--site-secondary-bg);
    padding: 6.3rem 0;
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
}

.single-service {
    border-radius: 2rem;
    background: #fff;
    padding: 1.5rem;
    max-width: 22%;
    flex: 0 0 22%;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .single-service {
        max-width: 48%;
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    .single-service {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.single-service img {
    max-width: 4.68rem !important;
    flex: 0 0 4.68rem;
}

.single-service h3 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.contact-banner .banner-img-right {
    box-shadow: 0 16px 32px -4px rgba(12, 12, 13, 0.1);
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #e0e7ea;
}

.contact-info-wrapper {
    padding: 3rem;
}

.contact-info-item img {
    height: 2rem !important;
    width: auto;
}

.contact-info-item p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.contact-info-item:not(:last-child) {
    border-bottom: 1px solid #C2CFD6;
    padding-bottom: 2.228rem;
}

.contact-info-item:not(:first-child) {
    padding-top: 2.228rem;
}

.get-in-touch {
    border-top-left-radius: var(--site-radius);
    border-top-right-radius: var(--site-radius);
    background: var(--site-secondary-bg);
}

.get-in-touch-content {
    padding: 50px 10.5rem;
}

.get-in-map {
    max-width: 40%;
    flex: 0 0 40%;
}

.get-in-touch-content {
    max-width: 60%;
    flex: 0 0 60%;
}

.contact-form-wrapper {
    max-width: 53rem;
    margin: 0 auto;
}

.form-fields label,
.form-fields input,
.form-fields textarea {
    font-size: 1rem;
    line-height: 1.5;
}

.form-fields {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.form-field {
    flex: 1;
}

.form-field .form-input {
    margin-top: 1rem;
    outline: none;
    border: 1px solid #E0E7EA;
    border-radius: 18px;
    width: 100%;
    padding: 0 1.5rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-field .form-input:focus {
    border-color: var(--site-primary-color);
}

.form-field input.form-input,
.form-field select.form-input {
    height: 3.125rem;
}

.form-field textarea.form-input {
    height: 10.5rem;
    padding: 1rem 1.5rem;
}

.form-select.form-input {
    appearance: none;
    background-image: url("../images/icon/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
}

.form-fields span {
    color: #4B5563;
}

@media (max-width: 1024px) {
    .get-in-touch-content {
        padding: 60px 5rem;
    }

    .contact-banner .banner-img-right {
        margin-left: 30px;
        padding: 0;
    }

    .contact-info-wrapper {
        padding: 2rem;
    }

    .single-service h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .get-in-touch-content {
        padding: 60px 1rem;
        text-align: center;
    }

    .get-in-map,
    .get-in-touch-content {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .get-in-touch-inner {
        flex-direction: column-reverse;
    }

    .form-field {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .form-field textarea.form-input {
        height: 7rem;
    }
}

@property --tw-translate-x {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}

@property --tw-translate-y {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}

@property --tw-translate-z {
    syntax: "*";
    inherits: false;
    initial-value: 0;
}

@property --tw-rotate-x {
    syntax: "*";
    inherits: false;
}

@property --tw-rotate-y {
    syntax: "*";
    inherits: false;
}

@property --tw-rotate-z {
    syntax: "*";
    inherits: false;
}

@property --tw-skew-x {
    syntax: "*";
    inherits: false;
}

@property --tw-skew-y {
    syntax: "*";
    inherits: false;
}

@property --tw-font-weight {
    syntax: "*";
    inherits: false;
}

@property --tw-ease {
    syntax: "*";
    inherits: false;
}

@layer properties {
    @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {

        *,
        ::before,
        ::after,
        ::backdrop {
            --tw-translate-x: 0;
            --tw-translate-y: 0;
            --tw-translate-z: 0;
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial;
            --tw-font-weight: initial;
            --tw-ease: initial;
        }
    }
}