:root {
    --primary: #014289;
    --secondary: #E21F1D;
    --body: #191919;
    --grey: #E8ECF0;
    --dark-grey: #B8BFC4;
    --navbar-height: 131px;
    --navbar-height-mobile: 115px;
    --navbar-margin: 98px;
    --navbar-margin-mobile: 82px;
}

body {
    font-family: 'Darker Grotesque', sans-serif;
    color: var(--body);
    padding-top: var(--navbar-height);
    font-size: 20px;
}

section {
    overflow: hidden;
}

a {
    color: var(--body);
    transition: all 200ms ease-in-out;
}

a:focus, a:active,
button:focus, button:active,
.btn:focus, .btn:active {
    box-shadow: none;
}

.underline {
    text-decoration: underline;
}

.t-primary {
    color: var(--primary);
}

a:focus,
a:hover {
    color: var(--primary);
    transition: all 200ms ease-in-out;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: 600;
    line-height: 100%;
}

h1 p, .h1 p,
h2 p, .h2 p,
h3 p, .h3 p,
h4 p, .h4 p,
h5 p, .h5 p,
h6 p, .h6 p {
    margin: 0px;
    font-size: inherit;
    font-weight: inherit;
}

h1.xl, .h1.xl {
    font-size: 100px;
}

h1, .h1 {
    font-size: 74px;
}

h2.xl, .h2.xl {
    font-size: 55px;
}

h2, .h2 {
    font-size: 45px;
}

h3.xl, .h3.xl {
    font-size: 40px;
}

h3, .h3 {
    font-size: 32px;
}

h4, .h4 {
    font-size: 26px;
}

.text-big {
    font-size: 20px;
}

.text-medium {
    font-size: 18px;
}

.text-regular {
    font-size: 16px;
}

.text-small {
    font-size: 14px;
}

.bold, b, strong {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.light {
    font-weight: 300;
}

.italic {
    font-style: italic;
}

.bg-primary {
    background-color: var(--primary) !important; 
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.top-bar {
    height: 33px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;line-height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1100;
}

.btn {
    border-radius: 8px;
    gap: 6px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    padding: 12px 32px;
    transition: all 200ms ease-in-out;
}

.btn.primary {
    background-color: var(--primary);
    color: white;
}

.btn.primary:hover {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 200ms ease-in-out;
}

.btn.outline.dark {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn.outline.dark:hover {
    background-color: var(--primary);
    color: white;
    transition: all 200ms ease-in-out;
}

.btn.outline.light {
    color: white;
    border: 1px solid white;
}

.btn.outline.light:hover {
    background-color: white;
    color: var(--secondary);
    transition: all 200ms ease-in-out;
}

.btn.secondary {
    background-color: var(--secondary);
    color: white;
}

.btn.secondary:hover {
    background-color: white;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    transition: all 200ms ease-in-out;
}

.btn.outline.red {
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn.outline.red:hover {
    background-color: var(--secondary);
    color: white;
    transition: all 200ms ease-in-out;
}

.btn.white {
    background-color: white;
    border: 1px solid white;
    color: var(--secondary);
    transition: all 200ms ease-in-out;
}

.btn.white:hover {
    background-color: var(--grey);
    border-color: var(--dark-grey);
    color: var(--secondary);
    transition: all 200ms ease-in-out;
}

.heading {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    line-height: 100%;
    gap: 4px;
    text-transform: uppercase;
}

.arrows-container {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    height: 100%;
    align-items: flex-end;
}

.arrows-container .arrow {
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    background-color: transparent;
    border-radius: 6px;
    padding: 0px;
    transition: all 200ms ease-in-out;
}

.arrows-container .arrow.slick-hidden {
    display: none;
}

.arrows-container .arrow.slick-disabled {
    cursor: not-allowed;
    opacity: 0.3;
    transition: all 200ms ease-in-out;
}

.arrows-container .arrow:not(.slick-disabled):hover {
    background-color: var(--primary);
    transition: all 200ms ease-in-out;
}

.arrows-container .arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 200ms ease-in-out;
}

.arrows-container .arrow:not(.slick-disabled):hover img {
    filter: brightness(0) invert(1);
    transition: all 200ms ease-in-out;
}

.promotion {
    min-height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 24px 0px;
}

.promotion .initial-text,
.promotion .additional-text {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: url('/assets/img/noise.svg') var(--secondary);
    background-blend-mode: soft-light;
    border-radius: 19px;
    transition: all 200ms ease-in-out;
}

.promotion .initial-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
    padding: 50px 50px 55px;
    transition: all 200ms ease-in-out;
}

.promotion .header {
    font-size: 26px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 30px;
}

.promotion .title {
    font-size: 70px;
    font-weight: 600;
    line-height: 80%; 
    margin-bottom: 40px;
}

.promotion .content {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%; 
    margin-bottom: 28px;
}

.promotion .cta {
    background: transparent;
    color: white;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    padding: 12px 32px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 200ms ease-in-out;
}

.promotion .cta:hover {
    border: 1px solid white;
    transition: all 200ms ease-in-out;
}

.promotion .additional-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 0;
    padding: 33px 50px 55px;
    transition: all 200ms ease-in-out;
}

.promotion.show .initial-text {
    opacity: 0;
    z-index: 0;
    transition: all 200ms ease-in-out;
}

.promotion.show .additional-text {
    opacity: 1;
    z-index: 1;
    transition: all 200ms ease-in-out;
}

.promotion .close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    background-color: transparent;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 200ms ease-in-out;
}

.promotion .close-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promotion.show .close-btn {
    opacity: 1;
    pointer-events: all;
    transition: all 200ms ease-in-out;
}

.promotion .close-btn:hover {
    background-color: white;
    transition: all 200ms ease-in-out;
}

.promotion .close-btn:hover img {
    filter: brightness(0) invert(1);
    transition: all 200ms ease-in-out;
}

.section-maps {
    padding: 114px 0px 100px;
}

.section-maps .heading {
    margin-bottom: 32px;
}

.section-maps h2 {
    text-align: center;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 61px;
}

.section-maps h2 b {
    color: var(--primary);
}

.section-maps .map-container {
    height: 404px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 19px;
}

.section-maps .map-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.section-maps .map-container .map-cta {
    background-color: white;
}

.section-maps .map-container .contact-box {
    background-color: white;
    border: 1px solid var(--dark-grey);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    width: 100%;
}

.section-maps .map-container .contact-box p {
    margin: 0px;
    line-height: 100%;
    font-weight: 500;
}

.section-maps .map-container .contact-box .h3 {
    color: var(--secondary);
    font-weight: 700;
}

.section-maps .map-container .contact-box .cta-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.map-modal .modal-content {
    height: 80vh;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin: auto;
}

.map-modal .modal-body {
    padding: 0px;
    height: 100%;
    width: 100%;
}

.map-modal .modal-content .h4 {
    font-weight: 700;
}

.map-modal iframe {
    height: 100%;
    width: 100%;
}

.map-modal .btn-close {
    background: url("/assets/icons/close-red.svg") center center no-repeat;
    background-size: cover;
}

.map-modal .btn-close:focus,
.map-modal .btn-close:active {
    box-shadow: none;
}

.breadcrumb {
    position: absolute;
    width: fit-content;
    top: 23px;
    left: 27px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 90%;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a.active {
    text-decoration: underline;
    font-weight: 700;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.info-button {
    height: 52px;
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    border-radius: 32px 0px 0px 32px;
    cursor: pointer;
    border: 0px;
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 90;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.25)
}

.info-button img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.info-button-modal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: all 200ms ease-in-out;
}

.info-button-modal.show {
    pointer-events: all;
    opacity: 1;
    transition: all 200ms ease-in-out;
}

.info-button-modal .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
    filter: blur(2px);
    cursor: pointer;
}

.info-button-modal .info-chart {
    position: absolute;
    bottom: 53px;
    height: 456px;
    width: 460px;
    right: 0px;
    z-index: 1;
    border-radius: 20px 0px 20px 20px;
    background-color: var(--secondary);
    color: white;
    overflow: hidden;
}

.info-button-modal .info-chart p {
    margin: 0px;
    line-height: 90%;
}

.info-button-modal .info-chart .header {
    height: 67px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.info-button-modal .info-chart .header .title {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: 800;
    line-height: 90%;
    text-transform: uppercase;
}

.info-button-modal .info-chart .header .title img {
    height: 38px;
    width: 38px;
    object-fit: contain;
}

.info-button-modal .info-chart .header .close-btn {
    height: 52px;
    width: 49px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D7DCE0;
    border-radius: 32px 0px 0px 32px;
    cursor: pointer;
    border: 0px;
}

.info-button-modal .info-chart .header .close-btn img {
    height: 24px;
    width: auto;
    object-fit: contain;
    position: relative;
    left: 3px;
}

.info-button-modal .info-chart .office {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.60);
    height: 192px;
    padding: 20px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-button-modal .info-chart .office .h4 {
    font-weight: 700;
    margin-bottom: 16px;
}

.info-button-modal .info-chart .office .address {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.info-button-modal .info-chart .office .address p {
    font-size: 18px;
    font-weight: 600;
}

.info-button-modal .info-chart .office .address a {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%; 
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    text-decoration: underline;
    color: white;
}

.info-button-modal .info-chart .office .address a::before {
    content: url('/assets/icons/white-pin.svg');
    height: 13px;
    width: 10px;
}

.info-button-modal .info-chart .office hr {
    stroke: rgba(255, 255, 255, 0.10);
    height: 1px;
    margin: 0px;
}

.info-button-modal .info-chart .office .cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.info-button-modal .info-chart .office .cta-wrapper a {
    width: fit-content;
    gap: 10px;
}

.info-button-modal .info-chart .office .cta-wrapper .email::before {
    content: url('/assets/icons/white-mail.svg');
    height: 10px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
}

.info-button-modal .info-chart .office .cta-wrapper .email:hover::before {
    content: url('/assets/icons/red-mail.svg');
}

.info-button-modal .info-chart .office .cta-wrapper .tel::before {
    content: url('/assets/icons/phone.svg');
    height: 14px;
    width: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 2px;
}

.loader {
    display: none;
    width: 103%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.414);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.loading {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

    body {
        padding-top: var(--navbar-height-mobile);
        font-size: 16px;
    }

    body:has(.menu-mobile.show) {
        overflow: hidden;
    }

    .top-bar {
        font-size: 11px;
    }

    h1.xl, .h1.xl {
        font-size: 70px;
    }
    
    h1, .h1 {
        font-size: 55px;
    }
    
    h2.xl, .h2.xl {
        font-size: 45px;
    }
    
    h2, .h2 {
        font-size: 40px;
    }
    
    h3.xl, .h3.xl {
        font-size: 32px;
    }
    
    h3, .h3 {
        font-size: 26px;
    }
    
    h4, .h4 {
        font-size: 20px;
    }

    .arrows-container {
        justify-content: center;
        align-items: center;
        margin-top: 40px;
        gap: 12px;
    }

    .promotion {
        min-height: 500px;
    }

    .promotion .initial-text {
        padding: 33px 30px;
    }
    
    .promotion .header {
        font-size: 18px;
        line-height: 100%;
        margin-bottom: 20px;
    }
    
    .promotion .title {
        font-size: 40px;
        line-height: 100%; 
        margin-bottom: 40px;
    }
    
    .promotion .content {
        font-size: 18px;
        line-height: 100%; 
        margin-bottom: 28px;
    }
    
    .promotion .additional-text {
        padding: 33px 30px 55px;
    }

    .section-maps {
        padding: 40px 0px 70px;
    }
    
    .section-maps .map-container {
        margin-bottom: 24px;
    }

    .map-modal .modal-content {
        height: 90vh;
        width: 100%;
        border-radius: 8px;
    }

    .info-button {
        height: 60px;
        width: 60px;
        border-radius: 50%;
        top: auto;
        bottom: 20px;
        right: 10px;
        transform: none;
    }
    
    .info-button-modal .info-chart {
        position: absolute;
        top: auto;
        bottom: -200%;
        height: fit-content;
        width: 100%;
        max-width: 460px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        border-radius: 20px 20px 0px 0px;
        background-color: var(--secondary);
        color: white;
        overflow: hidden;
        transition: all 400ms ease-in-out;
    }

    .info-button-modal.show .info-chart {
        bottom: 0px;
        transition: all 400ms ease-in-out;
    }
    
    .info-button-modal .info-chart p {
        margin: 0px;
        line-height: 90%;
    }
    
    .info-button-modal .info-chart .header {
        height: 67px;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }
    
    .info-button-modal .info-chart .header .title {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 10px 28px;
        font-size: 16px;
        font-weight: 800;
        line-height: 90%;
        text-transform: uppercase;
    }
    
    .info-button-modal .info-chart .header .title img {
        height: 38px;
        width: 38px;
        object-fit: contain;
    }
    
    .info-button-modal .info-chart .header .close-btn {
        height: 52px;
        width: 49px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #D7DCE0;
        border-radius: 32px 0px 0px 32px;
        cursor: pointer;
        border: 0px;
    }
    
    .info-button-modal .info-chart .header .close-btn img {
        height: 24px;
        width: auto;
        object-fit: contain;
        position: relative;
        left: 3px;
    }
    
    .info-button-modal .info-chart .office {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.60);
        height: 192px;
        padding: 20px 26px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .info-button-modal .info-chart .office .h4 {
        font-weight: 700;
        margin-bottom: 16px;
    }
    
    .info-button-modal .info-chart .office .address {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
    
    .info-button-modal .info-chart .office .address p {
        font-size: 18px;
        font-weight: 600;
    }
    
    .info-button-modal .info-chart .office .address a {
        font-size: 16px;
        font-weight: 700;
        line-height: 100%; 
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
        text-decoration: underline;
        color: white;
    }
    
    .info-button-modal .info-chart .office .address a::before {
        content: url('/assets/icons/white-pin.svg');
        height: 13px;
        width: 10px;
    }
    
    .info-button-modal .info-chart .office hr {
        stroke: rgba(255, 255, 255, 0.10);
        height: 1px;
        margin: 0px;
    }
    
    .info-button-modal .info-chart .office .cta-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
    }
    
    .info-button-modal .info-chart .office .cta-wrapper a {
        width: fit-content;
        gap: 10px;
    }
    
    .info-button-modal .info-chart .office .cta-wrapper .email::before {
        content: url('/assets/icons/white-mail.svg');
        height: 10px;
        width: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 1px;
    }
    
    .info-button-modal .info-chart .office .cta-wrapper .email:hover::before {
        content: url('/assets/icons/red-mail.svg');
    }
    
    .info-button-modal .info-chart .office .cta-wrapper .tel::before {
        content: url('/assets/icons/phone.svg');
        height: 14px;
        width: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        top: 2px;
    }

    @media screen and (max-width: 375px) {
        .section-maps .map-container {
            padding: 19px 0px 0px;
            border: 1px solid var(--dark-grey);
        }
    
        .section-maps .map-container .contact-box {
            border-radius: 0px;
            border: 0px;
        }
    
        .section-maps .map-container .map-cta {
            margin-right: 19px;
        }
    }

    @media screen and (min-width: 576px) and (max-width: 991px) {
        .map-modal .modal-dialog {
            max-width: 90vw;
        }
    }

}