/* Components/button_outline.php */

a.btn.outline.default {
    display: inline-block;
    padding: 13px 35px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 600;
}


/* Components/button_primary.php */

.button-container a {
    display: inline-block;
    padding: 13px 18px;
    color: var(--primary-dark-blue);
    text-decoration: none;
    background-color: var(--light-blue-2);
    font-weight: 600;
    font-family: var(--font-family-primary);
    font-size: 14px;
    transition: background 0.3s ease;
}

.button-container a:hover {
    background: #0056b3;
}


/* Components/button_secondary_outline.php */

a.btn.outline.secondary {
    display: inline-block;
    padding: 13px 35px;
    border: 2px solid var(--secondary-dark-blue);
    color: var(--secondary-dark-blue);
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 600;
    background-color: #fff;
    transition: background 0.3s ease;
}
a.btn.outline.secondary:hover {
    border: 2px solid var(--medium-light-blue);
    color: var(--medium-light-blue);
}



/* Components/centred_content.php */

.centred-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.centred-content > .content-wrapper {
    width: 100%;
    max-width: var(--wide-max-width);
    padding-bottom: 60px;
    padding-top: 60px;
}

.content-wrapper p, .content-wrapper span {
    font-family: var(--font-family-primary);
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 24px;
    color: #D5E9FF;
    line-height: 26px;
}
.centred-content b {
    font-weight: 600;
}

@media (max-width: 1440px) {
    .centred-content {
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px;
    }
    .centred-content > .content-wrapper {
        padding: 0;
    }
}


/* Components/hero.php */

    .hero {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f4f4f4;
        overflow: hidden;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(2, 17, 33, 0.9) 0%, rgba(5, 31, 55, 0.72) 48%, rgba(5, 31, 55, 0.16) 100%);
    }

    .hero-image {
        width: 100%;
        min-height: 400px;
        max-height: 70vh;
        overflow-x: hidden;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: left;
    }

    .hero-container-wrapper {
        position: absolute; /* Position content absolutely */
        top: 70px;
        left: 0;
        z-index: 1;
        display: flex;
        justify-content: center;
        width: 100%;
        height: fit-content;
    }
    
    .hero-container {
        flex-grow: 1;
        max-width: var(--wide-max-width);
    }

    .hero-content {
        text-align: left; /* Align text to the left */
        color: #fff;
        margin-top: 100px;
        max-width: 760px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
    }

    .hero-content h1 {
        font-family: "organetto-variable", "sans-serif";
        font-variation-settings: "wght" 62, "wdth" 78;
        font-size: 48px;
        margin-bottom: 18px;
        line-height: 1.08;
        letter-spacing: -0.02em;
    }

    .hero-content p {
        max-width: 620px;
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 28px;
    }
    @media (max-width: 1440px) {
        .hero-container-wrapper {
            display: block;
            max-width: 100%;
        }

        .hero-container {
            padding: 80px 30px;
        }

        .hero-image {
            height: 460px;
            object-fit: cover;
            object-position: left;
        }

        .hero-content {
            padding: 0;
            margin: 0;
            max-width: 760px;
            margin-right: auto;
            margin-left: auto;
        }
        .hero-content h1 {
            font-size: 38px;
            line-height: 1.1;
            margin-bottom: 16px;
        }
        .hero-content p {
            font-family: var(--font-family-primary);
            font-weight: 400;
            font-size: 17px;
            line-height: 1.5;
        }
    }

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

        .hero-content h1 {
            font-size: 30px;
        }

        .hero-content p {
            font-size: 16px;
        }
    }


/* Components/tiny_hero.php */

    .tiny-hero {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f4f4f4;
    }

    .tiny-hero-image {
        width: 100%;
        min-height: 130px;
        max-height: 240px;
        overflow-x: hidden;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: left;
    }

    .tiny-hero-container-wrapper {
        position: absolute; /* Position content absolutely */
        top: 70px;
        left: 0;
        z-index: 1;
        display: flex;
        justify-content: center;
        width: 100%;
        height: fit-content;
    }

    .tiny-hero-container {
        flex-grow: 1;
        max-width: var(--wide-max-width);
    }

    .tiny-hero-content {
        text-align: left; /* Align text to the left */
        color: #fff;
        margin-top: 90px;
    }

    .tiny-hero-content h1 {
        font-family: "organetto-variable", "sans-serif";
        font-variation-settings: "wght" 80, "wdth" 75;
        font-size: 36px;
        margin-bottom: 27px;
        line-height: 33px;
    }
    @media (max-width: 1440px) {
        .tiny-hero-container-wrapper {
            display: block;
            max-width: 100%;
        }

        .tiny-hero-content {
            margin: 30px;
            top: 40px;
        }
        .tiny-hero-content h1 {
            font-size: 40px;
        }
        .tiny-hero-image {
            min-height: 130px;
            max-height: 200px;
            object-fit: cover;
            object-position: left;
        }
    }


/* Sections/blueprint_info_section.php */

.blueprint-info-section {
    background-color: #fff;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blueprint-info-section-content-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-end;
    max-width: 1050px;
    padding: 32px 40px;
}

.blueprint-info-section-container {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 1440px;
}

.blueprint-info-section-content-container > .content {
    position: relative;
    z-index: 1;
    max-width: 930px;
    padding-top: 24px;
}

.blueprint-info-section-content-container>.content>.title {
    font-size: 14px;
    font-family: 'organetto-variable', sans-serif;
    font-variation-settings: "wght"60, "wdth"1;
    line-height: 28px;
    color: var(--medium-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blueprint-info-section-content-container>.content>.heading {
    font-family: "organetto-variable", sans-serif;
    font-variation-settings: 'wdth'84, 'wght'10;
    color: var(--secondary-dark-blue);
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 16px;
    text-align: start;
}

.blueprint-info-section-content-container>.content>.heading span {
    font-variation-settings: 'wdth'84, 'wght'35;
}

.blueprint-info-section-content-container>.content>.paragraph {
    font-family: var(--font-family-primary);
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
    color: #495057;
    max-width: 800px;
}

.blueprint-copy {
    max-width: 790px;
    margin-bottom: 24px;
}

.blueprint-copy .paragraph:last-child {
    margin-bottom: 0;
}

.company-capabilities {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 900px;
    margin: 28px 0 32px;
    border-top: 1px solid rgba(29, 63, 99, 0.22);
    border-bottom: 1px solid rgba(29, 63, 99, 0.22);
}

.company-capability {
    position: relative;
    padding: 24px 28px 26px;
}

.company-capability + .company-capability {
    border-left: 1px solid rgba(29, 63, 99, 0.22);
}

.company-capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    color: var(--medium-blue);
    border: 1px solid rgba(29, 63, 99, 0.25);
}

.company-capability h3 {
    margin: 0 0 12px;
    color: var(--secondary-dark-blue);
    font-family: 'organetto-variable', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    font-variation-settings: "wght" 55, "wdth" 75;
}

.company-capability p {
    margin: 0;
    color: #495057;
    font-family: var(--font-family-primary);
    font-size: 16px;
    line-height: 1.6;
}

.blueprint-info-section-container> .blueprint-image {
    position: absolute;
    top: -150px;
    right: 0;
    width: 30%;
    z-index: 5;
    opacity: 0.52;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .blueprint-info-section-container>.blueprint-image {
        top: unset;
        bottom: -100px;
    }

    .blueprint-info-section-content-container>.content>.heading {
        font-size: 20px;
    }
    .blueprint-info-section-container {
        max-width: 992px;
        margin-right: auto;
        margin-left: auto;
    }

}

@media (max-width: 768px) {
    .blueprint-info-section-content-container {
        padding: 28px 24px;
    }

    .company-capabilities {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .company-capability {
        padding: 22px 0;
    }

    .company-capability + .company-capability {
        border-left: 0;
        border-top: 1px solid rgba(29, 63, 99, 0.22);
    }
}


/* Sections/client_trust_section.php */

.client-trust-section {
    text-align: center;
    padding: 4rem 32px;
}

.client-trust-section hr {
    width: 250px;
    height: 2px;
    color: #FFF;
    margin: 0 auto;
    margin-bottom: 20px;
}


.client-trust-section h2 {
    font-family: 'organetto-variable';
    font-variation-settings: "wght"80, "wdth"75;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 33px;
    color: var(--light-blue);
    text-align: center;
}

.client-logos {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: clamp(32px, 5vw, 78px);
    row-gap: 36px;
}

.client-logos img.logo {
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logos img.logo.corsair {
    width: 145px;
    height: 52px;
}

.client-logos img.logo.win-ms {
    width: 108px;
    height: 65px;
    max-height: 65px;
}

.client-logos img.logo.sonovision {
    width: 210px;
    height: 47px;
}

.client-logos img.logo.spie {
    height: 41px;
    width: 95px;
}

.client-logos img.logo.ti-fluid-systems {
    height: 30px;
    width: 235px;
}

.client-logos img.logo.jettest {
    height: 41px;
    width: 174px;
}

.client-logos img.logo.sofema {
    height: 42px;
    width: 141px;
}

.client-logos img:hover {
    transform: scale(1.1);
}
@media (max-width: 1440px) {
    .client-logos {
        gap: 30px;
    }
}


/* Sections/contact_section.php */

.contact-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    background-color: var(--dark-grey);
    flex-basis: 50%;
}
.contact-form form {
    width: 100%;
    max-width: 630px;
    padding-right: 90px;
    margin-bottom: 24px;
}

.contact-form h2 {
    text-align: left;
    font-size: 24px;
    font-family: "organetto-variable";
    font-variation-settings: "wght" 80, "wdth" 75;
    line-height: 33px;
    color: var(--light-blue-2);
    margin: 30px 0 24px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 9px;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #fff;
    font-size: 16px;
}
.contact-form input,
.contact-form textarea {
    flex-grow: 1;
    background-color: transparent;
    font-size: 16px;
    border: none;
    height: 26px;
    color: var(--light-blue-2)
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: none;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form textarea {
    height: 72px;
    resize: none;
}
.contact-form button,
.contact-form .g-recaptcha {
    float: right;
    padding: 16px 0;
}

.contact-form button {
    width: 100%;
    background-color: var(--light-blue-2);
    color: var(--primary-dark-blue);
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.contact-form button:disabled {
    background-color: #999999;
    cursor: not-allowed;
}

.contact-status {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #fff;
    border-left: 4px solid var(--light-blue-2);
    background: rgba(7, 31, 56, 0.75);
}

.contact-status.error {
    border-left-color: #ef8f8f;
}

.contact-privacy {
    clear: both;
    color: #c8c8c8;
    font-size: 12px;
    line-height: 18px;
    padding-top: 12px;
}

.contact-privacy a {
    color: var(--light-blue-2);
}

.visually-hidden,
.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.map-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    flex-basis: 50%;
}

.map-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.map-visual>img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.world-city-points {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.map-city circle {
    fill: #fff;
    stroke: #129fd7;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 6px rgba(0, 138, 211, 0.9));
}

.map-city .city-pulse {
    fill: none;
    opacity: 0.85;
    transform-box: fill-box;
    transform-origin: center;
    animation: city-pulse 2.6s ease-out infinite;
}

@keyframes city-pulse {
    0% { opacity: 0.85; transform: scale(0.55); }
    100% { opacity: 0; transform: scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
    .map-city .city-pulse {
        animation: none;
    }
}

@media (max-width: 1440px) {
    .contact-section {
        flex-direction: column;
        padding: 0;
    }

    .contact-form {
        align-items: center;
    }
    .contact-form h2 {
        text-align: center;
    }

    .contact-form form {
        padding: 0;
        width: fit-content;
        margin: 20px 16px;
    }

    .contact-form,
    .map-container {
        max-width: 100%;
        margin-bottom: 32px;
        padding: 0;
    }
    .contact-form button {
        float: none;
        max-width: none;
    }
    .contact-form button,
    .contact-form .g-recaptcha {
        float: none;
    }
    .footer-logo {
        margin: 0;
        margin-bottom: 1rem;
    }

}

/* Sections/dual_feature_left_image_section.php */

.dual-feature-left-image.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 56px;
    padding: 25px
}

.dual-feature-left-image .image-container {
    max-width: 45%;
    text-align: center;
    margin-left: 60px;
}

.dual-feature-left-image .image-container img {
    position: relative;
    top: -75px;
    max-width: 500px;
    width: 100%;
    height: auto;
}

.dual-feature-left-image .content-container {
    flex: 1;
    max-width: 800px;
    padding: 16px;
    padding-right: 100px;
    position: relative;
}

.dual-feature-left-image .content-container h2 {
    padding-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--light-blue-2);
    font-family: 'organetto-variable', sans-serif;
    font-variation-settings: "wght" 80, "wdth" 75;
    font-size: 24px;
    line-height: 33px;
}

.dual-feature-left-image .content-container .first-feature h2 {
    text-align: start;
}

.dual-feature-left-image .content-container .second-feature h2 {
    text-align: end;
}

.dual-feature-left-image .content-container .divider {
    width: 160px;
    height: 2px;
    background: var(--light-blue-2);
}

.dual-feature-left-image .content-container .first-feature .divider {
    position: relative;
    left: -120px;
}

.dual-feature-left-image .content-container .second-feature .divider {
    position: relative;
    float: right;
    right: -100px;
}

.dual-feature-left-image .content-container p {
    font-family: var(--font-family-primary);
    font-size: 16px;
    line-height: 1.65;
    margin-top: 24px;
    margin-bottom: 24px;
    color: #D5E9FF;
}

.dual-feature-left-image .button-container {
    margin-top: 32px;
}

@media (max-width: 1440px) {
    .dual-feature-left-image .image-container {
        display: none;
    }

    .dual-feature-left-image .button-container {
        display: none;
    }

    .dual-feature-left-image.section-container {
        overflow: hidden;
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
    }

    .dual-feature-left-image .content-container {
        max-width: unset;
        padding-right: 0;
    }

    .dual-feature-left-image .content-container h2 {
        padding-top: 12px;
    }

}


/* Sections/dual_feature_section.php */

.dual-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 120px;
}

.dual-section>.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    padding: 90px 0;
    background-color: #1D3F63;
    max-width: 940px;
    width: 100%;
}

.dual-section>.container>.section {
    width: 440px;
}

.dual-section>.container>.section>p {
    font-family: var(--font-family-primary);
    font-size: 14px;
    color: #D5E9FF;
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 28px;
}

.dual-section>.container>.section>.title {
    font-family: "organetto-variable", "sans-serif";
    font-variation-settings: "wght"80, "wdth"75;
    font-size: 24px;
    font-weight: bold;
    line-height: 33px;
    margin-top: 24px;
    text-align: left;
    color: var(--light-blue-2);
}

.dual-section>.container>.section>.title::after {
    content: "";
    position: relative;
    display: block;
    width: 180px;
    height: 2px;
    background-color: var(--light-blue-2);
    margin-top: 8px;
    z-index: 10;
}

.dual-section>.container>.section.first>.title::after {
    left: -120px;
}

.dual-section>.container>.section.second>.title::after {
    float: right;
    right: -120px;
}



.dual-section .image {
    position: absolute;
}

.dual-section .image img {
    display: block;
    max-width: 440px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.dual-section .image.left {
    top: -115px;
    left: -250px;
    height: 720px;
}

.dual-section .image.right {
    top: 320px;
    left: 750px;
    height: 650px;
}

@media (max-width: 1440px) {
    .dual-section .image {
        display: none;
    }

    .dual-section>.container {
        max-width: none;
        width: fit-content;
        padding: 40px 80px;
        margin: 20px auto;
    }

    .dual-section {
        height: auto;
    }

    .dual-section>.container>.section {
        width: auto;
    }
}
@media (max-width: 992px) {
    .dual-section>.container {
        padding: 32px;
    }
    .dual-section {
        padding: 0;
    }
}

/* Sections/info_with_image_section.php */

.info-with-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-with-image-section > .section-container {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 64px 32px;
    gap: 32px;
    max-width: var(--wide-max-width);
}

.info-with-image-section .section-content {
    flex: 1;
    max-width: 600px;
    margin-left: 128px;
}

.info-with-image-section .section-image {
    flex: 1;
    max-width: 600px;
    object-fit: cover;
}
.info-with-image-section .section-image video {
    width: 100%;
    height: auto;
}

.info-with-image-section .section-image.mobile {
        display: none;
}


.info-with-image-section .section-image img {
    width: 100%;
    height: auto;
}

.info-with-image-section  .section-title {
    text-align: left;
    font-size: 32px;
    font-family: "organetto-variable";
    font-variation-settings: "wght" 75, "wdth" 75;
    color: var(--light-blue-2);
}

.info-with-image-section .section-title::after {
    content: "";
    position: relative;
    display: block;
    left: -120px;
    width: 180px;
    height: 2px;
    background-color: var(--light-blue-2);
    margin-top: 8px;
}

.info-with-image-section .section-paragraph {
    font-size: 14px;
    margin-top: 24px;
    line-height: 26px;
    margin-bottom: 32px;
    color: #D5E9FF;
}

.info-with-image-section .button-container {
    margin-top: 16px;
}


@media (max-width: 1440px) {
    .info-with-image-section > .section-container {
        flex-direction: column;
        text-align: left;
        max-width: 600px;
        margin-right: auto;
        margin-left: auto;
    }

    .info-with-image-section .section-content,
    .section-image {
        max-width: 100%;
    }
    .info-with-image-section .section-image {
        order: -1;
    }
    .info-with-image-section .section-content {
        margin-left: 56px;
    }
    .info-with-image-section .section-image.mobile {
        display: block;
        margin-top: 40px;
    }
    .info-with-image-section .section-image.desktop {
        display: none;
    }
}


/* Sections/services_section.php */

.services.section-container {
    margin-top: 64px;
    padding: 64px 32px;
}
.services.section-container>h2 {
    text-align: center;
}

.services.section-container>hr {
    width: 250px;
    height: 2px;
    background-color: #FFF;
    margin: 0 auto;
    margin-bottom: 20px;
}

.services.section-container>p, .services.section-container>a {
    font-family: var(--font-family-primary);
    font-size: 14px;
    color: #D5E9FF;
    margin-bottom: 32px;
    text-align: center;
}

.services.section-container>h2 {
    font-family: 'organetto-variable';
    font-variation-settings: "wght"50, "wdth"75;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.services>.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    justify-content: center;
    overflow-x: auto;
}

.services .service-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-color: #ffffff;
    color: #162d4a;
    min-width: 350px;
    max-width: 350px;
    text-align: left;
    overflow: hidden;
    padding: 20px;
}

.services .service-card p,
.services .service-card a,
.services .service-card h3 {
    text-align: center;
}

.services .service-card>img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.services .service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    margin-top: 20px;
    min-width: 0;
}

.services .service-card-title {
    font-family: 'organetto-variable';
    font-variation-settings: "wght"50, "wdth"75;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 18px;
    color: var(--secondary-dark-blue);
    white-space: normal;
    overflow-wrap: anywhere;
}

.services .service-card-description {
    font-family: var(--font-family-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-grey);
    margin-bottom: 25px;
    overflow-wrap: anywhere;
}

.services .service-card-footer {
    width: 100%;
}

.services .service-card-footer p, .services .service-card-footer a {
    font-size: 10px;
    color: #000;
    font-family: var(--font-family-primary);
    font-weight: 700;
    line-height: 22px;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 8px;
    padding-top: 22px;
    text-decoration: none;
}

.services .service-card-footer p::before, .services .service-card-footer a::before {
    content: '';
    background-image: url('/icons/next-page.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.services .service-card-footer hr {
    height: 1px;
    border: none;
    background-color: var(--light-blue);
}

.services .btn {
    margin-top: 48px;
}

@media (max-width: 992px) {
    .services>.services-grid {
        justify-content: start;
    }

    .services .service-card {
        min-width: 280px;
        max-width: 280px;
    }
    .services .service-card-title {
        white-space: normal;
    }
}
    

/* Sections/tabbed_info_section.php */

.tabbed-info-section {
    position: relative;
    width: 100%;
    padding-bottom: 200px;
}


.tabbed-info-section .image {
    width: 100%;
    height: 750px;
    
    background-size: cover;
    background-position: center;
    transition: all 1s ease-in-out 200ms;
}

.tabbed-info-section .overlay > .tabs {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
}

.tabbed-info-section  .overlay >.tabs > .tab {
    padding-left: 16px;
    border-style: solid;
    border-color: #D9D9D9;
    border-width: 0px 1px 1px 0px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;

    font-family: "organetto-variable", "sans-serif";
    font-variation-settings: "wght"60, "wdth"75;
    font-size: 16px;
    line-height: 55px;
    vertical-align: middle;
    color: var(--secondary-dark-blue)
}

.tabbed-info-section > .container-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tabbed-info-section > .container-wrapper > .container {
    position: relative;
    height: 1px;
    width: 100%;
    max-width: var(--wide-max-width);

}

.tabbed-info-section .container > .overlay {
    position: absolute;
    bottom: -100px;
    right: 0px;
    background: #FFF;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.tabbed-info-section .container> .overlay > .tabs > .tab {
    padding: 8px 16px;
    margin-right: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tabbed-info-section .container> .overlay > .tabs > .tab:hover {
    background-color: var(--light-blue-2);
}

.tabbed-info-section .container> .overlay > .tabs > .tab.active {
    background-color: var(--medium-light-blue);
    color: #ffffff;
}

.tabbed-info-section .container> .overlay > .content {
    display: none;
    width: 480px;
    padding: 20px;
}
.tabbed-info-section .container> .overlay > .content.active {
    display: block;
}

.tabbed-info-section .container> .overlay > .content h2 {
    font-family: "organetto-variable", "sans-serif";
    font-variation-settings: "wght" 50, "wdth" 70;
    font-size: 36px;
    line-height: 54px;
    font-weight: bold;
    text-align: start;
    color: var(--primary-dark-blue);
}

.tabbed-info-section .container> .overlay > .content {
    font-family: var(--font-family-primary);
    font-size: 12px;
    line-height: 22px;
    color: var(--dark-grey);
}

.tabbed-info-section .container> .overlay > .content p {
    margin-bottom: 16px;
}



@media (max-width: 1440px) {
    .tabbed-info-section .container {
        overflow: hidden;
    }
    .tabbed-info-section .container > .image {
        position: relative;
        left: -50px;
        height: 550px;
        width: auto;
    }

    .tabbed-info-section > .container-wrapper > .container {
        position: relative;
        top: -100px;
        height: auto;
    }

    .tabbed-info-section .container > .overlay {
        position: relative;
        top: 0px;
        left: 0px;
        justify-content: start;
        overflow-x: auto;
        background-color: transparent;
    }

    .tabbed-info-section {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0px;
    }

    .tabbed-info-section .container> .overlay > .tabs {
        display: none;
    }
    
    .tabbed-info-section .container> .overlay > .content {
        flex-shrink: 0;
        width: 300px;
        display: block;
        padding: 24px;
        margin: 24px;
        background-color: #FFF;
    }

    .tabbed-info-section .container> .overlay > .content h2 {
        text-align: center;
    }
}
    

/* Sections/two_image_info_section.php */

.two-image-info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 64px 32px;
}

.two-image-info-section>.images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    max-width: 530px;
}

.two-image-info-section>.images>img {
    width: 100%;
    height: auto;
}

.two-image-info-section>.content {
    flex: 2;
    padding: 8px;
    max-width: 710px;
}

.two-image-info-section p {
    font-family: var(--font-family-primary);
    font-size: 14px;
    color: #D5E9FF;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 28px;
}

.two-image-info-section>.content>.title {
    font-family: "organetto-variable", "sans-serif";
    font-variation-settings: "wght"40, "wdth"75;
    font-size: 32px;
    font-weight: bold;
    line-height: 33px;
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: left;
    color: var(--light-blue-2);
}

.two-image-info-section>.content>.title::after {
    content: "";
    position: relative;
    display: block;
    left: -120px;
    width: 180px;
    height: 2px;
    background-color: var(--light-blue-2);
    margin-top: 8px;
}

@media (max-width: 1440px) {
    .two-image-info-section {
        flex-direction: column;
        align-items: center;
        padding: 8px 32px;
    }

    .two-image-info-section>.content {
        max-width: 100%;
    }

    .two-image-info-section>.images {
        display: none;
    }
}
