@charset "UTF-8";

/* COLORS ------------------------------------- */
:root {
    --bs-primary: #182957;
    --bs-primary-900: #0D152D;
    --bs-gray: #BEC6CB;
    --bs-dark-gray: #33435C;
    --bs-body: #404040;
    --bs-body-light: #4A5565;
    --bs-light: #F7F8FA;
    --bs-dark: #000000;
    --bs-white: #fff;
    --bs-input: #FFFFFF33;
    --bs-red: #C22032;
    --bs-transparent: transparent;
}

/* TYPOGRAPHY ------------------------------------- */
body {
    overflow-x: unset !important;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: max(14px, 0.729vw);
    color: var(--bs-body);
    background: var(--bs-white);
}

body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none !important;
}

    a:hover {
        text-decoration: none !important;
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.fw-extra {
    font-weight: 800 !important;
}

.fw-extrabold {
    font-weight: 900 !important;
}

/* typographi style */
p,
.p {
    font-weight: 300;
    font-size: max(16px, 0.833vw);
    line-height: 140%;
    margin-top: max(24px, 1.25vw);
    margin-bottom: 10px;
}

.p1 {
    font-size: max(16px, 0.833vw);
    line-height: max(24px, 1.25vw);
}

h1,
.h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 115.99999999999999%;
}

h2,
.h2 {
    font-size: 26px;
    font-weight: 400;
    line-height: 118%;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 32px;
}

h4,
.h4 {
    font-size: 22px;
    line-height: 118%;
    font-weight: 400;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 28px;
}

h6,
.h6 {
    font-size: 18px;
    line-height: 118%;
}

.display-1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 115.99999999999999%;
}

.display-2 {
    font-size: 64px;
    line-height: 115.99999999999999%;
}

@media (min-width:992px) {
    .display-1 {
        font-size: 52px;
    }

    .display-2 {
        font-size: 96px;
    }

    h1,
    .h1 {
        font-size: 35px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 36px;
        line-height: 46px;
    }

    h5,
    .h5 {
        font-size: 26px;
        line-height: 32px;
    }

    .p1 {
        font-size: max(18px, 0.833vw);
        line-height: max(26px, 1.353vw);
    }

    section::after,
    section::before,
    .section::after,
    .section::before,
    header::after,
    header::before,
    footer::after,
    footer::before {
        content: "";
        background: var(--bs-gray);
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    section::before,
    .section::before,
    header::before,
    footer::before {
        left: 10px;
    }

    section::after,
    .section::after,
    header::after,
    footer::after {
        right: 10px;
    }
}

@media (min-width:1200px) {
    .display-1 {
        font-size: max(60px, 3.123vw);
    }

    .display-2 {
        font-size: max(120px, 6.247vw);
    }

    h1,
    .h1 {
        font-size: max(50px, 2.604vw);
    }

    h2,
    .h2 {
        font-size: max(38px, 1.978vw);
    }

    h3,
    .h3 {
        font-size: max(44px, 2.29vw);
        line-height: max(55px, 2.863vw);
    }

    h4,
    .h4 {
        font-size: max(29px, 1.51vw);
    }

    h6,
    .h6 {
        font-size: max(19px, 0.989vw);
    }

    section::before,
    .section::before,
    header::before,
    footer::before {
        left: 16px;
    }

    section::after,
    .section::after,
    header::after,
    footer::after {
        right: 16px;
    }
}

@media (min-width:1800px) {

    section::before,
    .section::before,
    header::before,
    footer::before {
        left: max(120px, 6.247vw);
    }

    section::after,
    .section::after,
    header::after,
    footer::after {
        right: max(120px, 6.247vw);
    }
}

/* Section Spacing */
.sectionpt,
.sectionpy {
    padding-top: 60px;
}

.sectionpb,
.sectionpy {
    padding-bottom: 60px;
}

.section-sm-pt,
.section-sm-py {
    padding-top: 32px;
}

.section-sm-pb,
.section-sm-py {
    padding-bottom: 32px;
}

.section-md-pt,
.section-md-py {
    padding-top: 38px;
}

.section-md-pb,
.section-md-py {
    padding-bottom: 38px;
}

@media (min-width:1200px) {

    .sectionpt,
    .sectionpy {
        padding-top: 90px;
    }

    .sectionpb,
    .sectionpy {
        padding-bottom: 90px;
    }

    .section-sm-pt,
    .section-sm-py {
        padding-top: 50px;
    }

    .section-sm-pb,
    .section-sm-py {
        padding-bottom: 50px;
    }

    .section-md-pt,
    .section-md-py {
        padding-top: 60px;
    }

    .section-md-pb,
    .section-md-py {
        padding-bottom: 60px;
    }
}

@media (min-width:1400px) {

    .sectionpt,
    .sectionpy {
        padding-top: max(137px, 7.132vw);
    }

    .sectionpb,
    .sectionpy {
        padding-bottom: max(137px, 7.132vw);
    }

    .section-sm-pt,
    .section-sm-py {
        padding-top: max(65px, 3.384vw);
    }

    .section-sm-pb,
    .section-sm-py {
        padding-bottom: max(65px, 3.384vw);
    }

    .section-md-pt,
    .section-md-py {
        padding-top: max(78px, 4.06vw);
    }

    .section-md-pb,
    .section-md-py {
        padding-bottom: max(78px, 4.06vw);
    }
}

/* BACKGROUNDS ------------------------------------- */
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-primary-900 {
    background-color: var(--bs-primary-900) !important;
}

.bg-white {
    background-color: var(--bs-white) !important;
}

.bg-body-light {
    background-color: var(--bs-body-light) !important;
}

.bg-body {
    background-color: var(--bs-body) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

.bg-transparent {
    background-color: var(--bs-transparent) !important;
}

/* Text Colors */
.text-primary {
    color: var(--bs-primary) !important;
}

.text-primary-900 {
    color: var(--bs-primary-900) !important;
}

.text-dark {
    color: var(--bs-dark) !important;
}

.text-red {
    color: var(--bs-red) !important;
}

.text-body {
    color: var(--bs-body) !important;
}

.text-white {
    color: var(--bs-white) !important;
}

.text-gray {
    color: var(--bs-gray) !important;
}

.text-dark-gray {
    color: var(--bs-dark-gray) !important;
}

/* Border colors */
.border-gray {
    border-color: var(--bs-gray) !important;
}

.font-italic-none h2 {
    font-style: normal !important;
}

/* GLOBAL ------------------------------------- */
.JumpNav {
    position: absolute;
    top: max(-200px, -10.417vw);
    z-index: 500;
    color: var(--bs-white);
    background: #666666;
    padding: 5px;
}

    .JumpNav:focus {
        top: 0;
        left: 0;
        color: var(--bs-white);
    }

/* buttons */
.btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 118%;
    padding: 6px 15px;
    transition: all .4s;
    border-radius: 0;
    color: var(--bs-primary);
    border: 1px solid var(--bs-transparent);
    position: relative;
}

.btn-text {
    display: flex;
    padding: 0;
    border: none;
    transition: all .4s;
    font-weight: 500;
    text-align: left;
    white-space: unset;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: max(12px, 0.625vw);
    font-weight: 600;
    color: var(--bs-primary);
    text-decoration: none;
}

.slashes {
    display: inline-flex;
    gap: max(4px, 0.208vw);
}

    .slashes i {
        width: max(4px, 0.208vw);
        height: max(12px, 0.625vw);
        background-color: var(--bs-red);
        display: inline-block;
        transform: skewX(0deg);
        transition: transform 0.3s ease;
    }

.learn-more:hover,
.text-white.learn-more:hover {
    color: var(--bs-red) !important;
    transition: transform 0.3s ease;
}

    .learn-more:hover .slashes i {
        transition: transform 0.3s ease;
        transform: skewX(-20deg);
        background-color: var(--bs-primary);
    }

    .text-white.learn-more:hover .slashes i {
        background-color: var(--bs-white);
    }

.btn-text img {
    width: max(16px, 0.833vw);
    margin-right: max(8px, 0.416vw) !important;
}

.btn-text:hover,
.btn-text:focus,
.btn-text:active {
    transition: all .4s;
}

.text-primary-900 {
    color: var(--bs-primary-900) !important;
}

    .text-primary-900 img {
        filter: brightness(0) saturate(100%) invert(8%) sepia(12%) saturate(5053%) hue-rotate(196deg) brightness(89%) contrast(99%);
    }

.text-red {
    color: var(--bs-red) !important;
}

    .text-red img {
        filter: brightness(0) saturate(100%) invert(16%) sepia(38%) saturate(6454%) hue-rotate(341deg) brightness(101%) contrast(92%);
    }

.btn-text.text-red:hover img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(12%) saturate(5053%) hue-rotate(196deg) brightness(89%) contrast(99%);
    animation: bounceHover 1.5s infinite;
}

@keyframes bounceHover {
    0%, 20%, 50% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-2px);
    }
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: var(--bs-transparent);
    transition: all .4s;
}

.btn-primary-light {
    background-color: var(--bs-red);
    border-color: var(--bs-red);
    color: var(--bs-white);
    transition: all .4s;
}

    .btn-primary-light:hover,
    .btn-primary-light:focus,
    .btn-primary-light.active,
    .btn-primary-light:active {
        background-color: var(--bs-white) !important;
        border-color: var(--bs-white) !important;
        color: var(--bs-primary) !important;
        transition: all .4s;
        clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    }

.btn-primary-dark {
    background-color: var(--bs-red);
    border-color: var(--bs-red);
    color: var(--bs-white);
    transition: all .4s;
}

    .btn-primary-dark:hover,
    .btn-primary-dark:focus,
    .btn-primary-dark.active,
    .btn-primary-dark:active {
        background-color: var(--bs-primary) !important;
        border-color: var(--bs-primary) !important;
        color: var(--bs-white) !important;
        transition: all .4s;
        clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    }

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
    transition: all .4s;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.active,
    .btn-primary:active {
        background-color: var(--bs-red) !important;
        border-color: var(--bs-red) !important;
        color: var(--bs-white) !important;
        transition: all .4s;
        clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    }

@media (min-width:576px) {
    .btn {
        white-space: nowrap;
    }
}

    @media (min-width:992px) {
        .btn {
            padding: max(9px, 0.417vw) max(34px, 1.77vw);
            font-size: max(15px, 0.781vw);
        }

        .btn-text {
            padding: 0 !important;
        }
    }

    /* footer */
    #footer .logo {
        max-width: max(200px, 7.031vw);
        width: 100%;
        height: max(33px, 1.718vw);
    }

    .footer--nav .nav-item {
        margin-bottom: max(14px, 0.729vw);
    }

        .footer--nav .nav-item:last-child {
            margin-bottom: 0;
        }

    .footer--nav .nav-link {
        font-size: max(14px, 0.729vw);
        line-height: 118%;
        font-weight: 700;
        color: var(--bs-dark-gray);
        padding: 0;
    }

    .copy--right.footer--nav .nav-link, .copy--right {
        font-weight: 600;
        font-size: max(11px, 0.572vw);
        color: var(--bs-primary);
        padding-right: 27px;
        margin-top: 0;
        margin-bottom: 0;
    }

        .copy--right.footer--nav .nav-item {
            margin-bottom: 0;
        }

            .copy--right.footer--nav .nav-item:last-child .nav-link {
                padding-right: 0;
            }

    .footer--nav .nav-link:hover,
    .footer--nav .nav-link.active {
        color: var(--bs-red);
        font-style: italic;
    }

    .footer--nav ul, .footer--nav ul .nav-item ul {
        list-style: none;
        margin-top: max(8px, 0.417vw);
        padding-left: max(12px, 0.625vw);
    }

        .footer--nav ul .nav-item, .footer--nav ul .nav-item ul .nav-item {
            margin-bottom: max(10px, 0.521vw);
        }

            .footer--nav ul .nav-item .nav-link, .footer--nav ul .nav-item ul .nav-item .nav-link {
                transition: all 0.3s ease-in-out;
                color: var(--bs-red);
                font-weight: 500;
            }

            .footer--nav ul .nav-item ul .nav-item .nav-link {
                color: var(--bs-dark-gray);
                font-weight: 400;
            }

                .footer--nav ul .nav-item .nav-link:hover,
                .footer--nav ul .nav-item .nav-link.active,
                .footer--nav ul .nav-item ul .nav-item .nav-link:hover,
                .footer--nav ul .nav-item ul .nav-item .nav-link.active {
                    color: var(--bs-red);
                    transition: all 0.3s ease-in-out;
                }

    /* social icons */
    .social__icon {
        width: max(14px, 0.729vw);
    }

    .social .nav-link {
        background-color: var(--bs-primary);
        min-width: max(28px, 1.458vw);
        width: max(28px, 1.458vw);
        height: max(28px, 1.458vw);
    }

        .social .nav-link:hover {
            background-color: var(--bs-primary-900);
        }

    /* Site map */
    .sitemap-group.footer--nav .nav-link {
        font-size: max(16px, 0.833vw);
        line-height: max(21px, 1.093vw);
    }

    .sitemap-group.footer--nav .footer--nav {
        margin-top: 10px;
    }

    /* breadcrumb */
    .breadcrumb {
        margin-bottom: 22px;
    }

    .breadcrumb-item {
        font-size: max(12px, 0.625vw);
        line-height: 111.00000000000001%;
        font-weight: 500;
        color: var(--bs-white);
    }

        .breadcrumb-item:hover {
            color: var(--bs-white);
        }

        .breadcrumb-item + .breadcrumb-item {
            padding-left: max(0.5rem, 0.416vw);
        }

            .breadcrumb-item + .breadcrumb-item::before {
                padding-right: 0;
                color: var(--bs-white);
                content: "|";
                text-align: center;
                margin-right: max(0.5rem, 0.416vw);
                font-weight: 300;
            }

        .breadcrumb-item.active {
            font-weight: 700;
            color: var(--bs-white);
        }

    .text-body .breadcrumb-item + .breadcrumb-item::before,
    .text-body .breadcrumb-item a, .text-body .breadcrumb-item.active {
        color: var(--bs-primary);
    }

    @media (min-width:1200px) {
        .breadcrumb {
            margin-bottom: max(28px, 1.458vw);
        }
    }

    @media (min-width:1400px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: max(1320px, 61.765vw) !important;
        }
    }
