@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root {
    --primary: #213269;
    --footer: #212d45;
    --yellow: #f8b526;
    --neutral-1: #7A7A7A;
    --neutral-2: #54595f;
    --neutral-4: #F6F6F6;
}

body, html {
  font-family: "Manrope", sans-serif;
}
.text-primary {
    color: var(--primary);
}
.bg-primary {
    background-color: var(--primary);
}
.text-footer {
    color: var(--footer);
}
.bg-footer {
    background-color: var(--footer);
}
.text-yellow {
    color: var(--yellow);
}
.bg-yellow {
    background-color: var(--yellow);
}
.text-neutral-1 {
    color: var(--neutral-1);
}
.border-neutral-1 {
    border-color: var(--neutral-1);
}
.border-neutral-2 {
    border-color: var(--neutral-2);
}
.border-neutral-4 {
    border-color: var(--neutral-4);
}
.bg-neutral-1 {
    background-color: var(--neutral-1);
}
.text-neutral-2 {
    color: var(--neutral-2);
}
.text-neutral-4 {
    color: var(--neutral-4);
}
.bg-neutral-2 {
    background-color: var(--neutral-2);
}
.bg-neutral-4 {
    background-color: var(--neutral-4);
}

.bg-home::before {
    background-color: #fff0;
    --background-overlay: "";
    background-image: linear-gradient(90deg, #212D45C7 100%, #fff 100%);
}
.custom-container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
}
.custom-container.custom-mobile {
    width: 100%;
    padding: 0;
}
.custom-container.video {
    max-width: 685px;
}
@media (min-width: 767px) {
    .custom-container {
        padding-right: 40px;
        padding-left: 40px;
    }
}
@media (min-width: 1024px) {
    .custom-container {
        padding-right: 50px;
        padding-left: 50px;
    }
}
@media (min-width: 1200px) {
    .custom-container {
        /* max-width: 1360px; */
        padding-right: 160px;
        padding-left: 160px;
    }
}
.bt-outline-white {
    background-color: #fff0;
    font-size: 24px;
    font-weight: 500;
    fill: #fff;
    color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    padding: 12px 24px;
    border-radius: 3px;
}
.bt-primary {
    background-color: var(--primary);
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
}
.bt-white {
    background-color: white;
    font-size: 25px;
    padding: 12px 24px;
    border-radius: 3px;
    color: var(--primary);
    font-weight: 500;
}
.bg-image-1 {
    max-height: 470px;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-image-1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff0;
    --background-overlay: '';
    background-image: linear-gradient(0deg, var(--primary) 0%, #FFFFFF00 49%);
}
.bt-white-menu {
    padding: 12px 45px;
    background: #ffffff;
    color: var(--footer);
    text-transform: uppercase;
    font-size: 15px;
}
.bg-custom-section {
    position: relative;
}
.bg-custom-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(90deg, #212D45C7 100%, #fff 100%);
    opacity: 87%;
}
.bg-custom-section-yellow::before {
    background: #ffc03d;
}

.clip-octagon {
    clip-path: polygon(
        14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px),
        calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px
    );
}
@media (min-width: 767px) {
    .clip-octagon {
        clip-path: polygon(
            30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px),
            calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px
        );
    }
}
@media (min-width: 1024px) {
    .clip-octagon {
        clip-path: polygon(
            45px 0, calc(100% - 45px) 0, 100% 45px, 100% calc(100% - 45px),
            calc(100% - 45px) 100%, 45px 100%, 0 calc(100% - 45px), 0 45px
        );
    }
}
@media (min-width: 1200px) {
    .clip-octagon {
        clip-path: polygon(
            45px 0, calc(100% - 45px) 0, 100% 45px, 100% calc(100% - 45px),
            calc(100% - 45px) 100%, 45px 100%, 0 calc(100% - 45px), 0 45px
        );
    }
}


.seen {
    background:#E5E5E5 !important;
}

.custom-nav-btn {
    opacity: 0.01;
    font-size: 1px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    transition: background 0.2s;
    width: 25%;
}
.swiper-button-prev.custom-nav-btn {
    left: 0px;
    opacity: 0.01;
}
.swiper-button-next.custom-nav-btn {
    right: 0px;
    opacity: 0.01;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: none !important;
}