.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #fff;
    gap: 16px;
    position: relative
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: row;
        padding: 16px 0;
        gap: 16px;
        align-items: center;
        justify-content: space-between
    }
}

.nav-wrapper ul, .nav-wrapper li {
    padding: 0;
    list-style: none;
    margin: 0
}

.nav-wrapper .logo {
    width: 290px;
    height: 125px;
    z-index: 1001
}

    .nav-wrapper .logo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

@media (max-width: 768px) {
    .nav-wrapper .logo {
        width: 180px;
        height: 80px
    }
}

.nav-wrapper .nav-links {
    display: flex;
    gap: 1rem
}

@media (max-width: 768px) {
    .nav-wrapper .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 120px 20px 20px;
        transition: right .3s ease;
        z-index: 1000
    }

        .nav-wrapper .nav-links.active {
            right: 0
        }
}

.list-dropdown {
    position: relative
}

    .list-dropdown .dropdown {
        position: absolute;
        left: 0;
        top: 40px;
        width: 100%;
        display: none;
        flex-direction: column;
        z-index: 4;
        background: #f0f0f0;
        min-width: 200px
    }

        .list-dropdown .dropdown.open {
            display: flex
        }

        .list-dropdown .dropdown .link--secondary {
            text-decoration: none;
            color: #000;
            font-size: .875rem;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: .175px;
            width: 100%;
            background-color: #f0f0f0;
            display: block;
            padding: 12px
        }

            .list-dropdown .dropdown .link--secondary:hover {
                text-decoration: none;
                background-color: #e9e7e7
            }

@media (max-width: 768px) {
    .list-dropdown .dropdown {
        position: absolute;
        top: 100%;
        width: fit-content;
        box-shadow: 0 5px 10px #0000001a
    }

        .list-dropdown .dropdown.open {
            display: flex
        }
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
        margin-right: 15px
    }
}

.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px,6px)
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px,-6px)
}

.burger-menu .burger-bar {
    width: 30px;
    height: 3px;
    background-color: var(--visa-blue);
    margin: 6px 0;
    transition: .4s
}

.link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 12px
}

    .link:hover {
        text-decoration: underline
    }

.link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px
}

.button {
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 2px #00000024;
    color: var(--visa-dark-blue);
    text-decoration: none;
    padding: 8px 12px;
    text-align: center;
    transition: all .3s
}

    .button:hover {
        text-decoration: none;
        background-color: var(--visa-yellow)
    }

.link-button {
    color: var(--visa-dark-blue);
    text-decoration: none;
    text-align: center;
    transition: all .3s;
    display: flex;
    align-items: center
}

    .link-button:after {
        content: "";
        display: block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_981_1859)'%3E%3Cpath d='M9.5 7L14.5 12L9.5 17' stroke='%232B94F5' stroke-width='2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_981_1859'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
        background-size: contain;
        width: 24px;
        height: 24px;
        position: relative;
        top: 1px;
        transition: all .3s
    }

    .link-button:hover:after {
        transform: translate(2px)
    }

.link {
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    padding: 8px 12px;
    text-align: center;
    background-color: var(--visa-blue);
    box-shadow: 0 2px 2px #00000024;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: fit-content;
    transition: all .3s
}

    .link i {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M10.59 0.589966L6 5.16997L1.41 0.589966L0 1.99997L6 7.99997L12 1.99997L10.59 0.589966Z' fill='white'/%3E%3C/svg%3E");
        width: 12px;
        height: 8px;
        background-repeat: no-repeat
    }

    .link:hover {
        text-decoration: none;
        background-color: var(--visa-dark-blue)
    }

.media-wrapper {
    position: relative;
    overflow: hidden
}

    .media-wrapper .media-aspect {
        display: flex;
        justify-content: center;
        flex-direction: column;
        aspect-ratio: 16/9
    }

@media (max-width: 768px) {
    .media-wrapper .media-aspect {
        aspect-ratio: 4/3
    }
}

.media {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0)
}

    .media img, .media iframe, .media video, .media > * {
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block
    }

.media--background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    aspect-ratio: unset;
    z-index: -1
}

    .media--background img, .media--background iframe, .media--background video, .media--background > * {
        object-fit: cover;
        display: block;
        width: 100%;
        height: 100%
    }

.heading {
    color: #fff
}

.heading__title {
    font-size: 3.125rem;
    font-weight: 400;
    line-height: 4rem;
    letter-spacing: .2px
}

.heading__paragraph {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .2px
}

@media (max-width: 768px) {
    .heading__title {
        font-size: 2.2rem;
        line-height: 60px
    }

    .heading__paragraph {
        font-size: 1rem;
        line-height: 24px
    }
}

.icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: var(--text-main)
}

    .icon-text .icon {
        width: 78px;
        height: 78px
    }

    .icon-text .text-container {
        text-align: center
    }

        .icon-text .text-container .title {
            font-size: 1.375rem;
            font-style: normal;
            font-weight: 700;
            line-height: 28px;
            letter-spacing: .2px
        }

        .icon-text .text-container .paragraph {
            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            letter-spacing: .2px
        }

.resources-container {
    border-radius: 30px;
    background-color: var(--visa-blue);
    overflow: hidden
}

.resources-container--light {
    background-color: var(--visa-light-blue)
}

.resources-container--dark {
    background-color: var(--visa-dark-blue)
}

.resources-container .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.resources-container .text-container {
    height: 100%
}

    .resources-container .text-container .resources-text {
        color: #fff;
        padding: 24px 64px
    }

@media (max-width: 768px) {
    .resources-container .text-container .resources-text {
        padding: 24px
    }
}

.resources-container .text-container .resources-text .title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: .2px
}

.resources-container .text-container .resources-text .paragraph {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .2px
}

.stay-in-touch-container {
    position: relative;
    background: linear-gradient(98deg,#1434cb 6.12%,#021e4c);
    width: 100%;
    height: 100%
}

    .stay-in-touch-container .bg-overlay {
        position: absolute;
        top: 0;
        right: 0;
        background: url(../assets/overlay.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 50%;
        height: 100%
    }

    .stay-in-touch-container .container {
        z-index: 2;
        position: relative
    }

    .stay-in-touch-container .stay-in-touch__text {
        padding: 64px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    .stay-in-touch-container .stay-in-touch__text--reduced-padding {
        padding: 48px
    }

    .stay-in-touch-container .stay-in-touch__text--white {
        background: #fff
    }

    .stay-in-touch-container .stay-in-touch__text--blue {
        background: var(--visa-blue)
    }

    .stay-in-touch-container .stay-in-touch__text--border-left {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px
    }

    .stay-in-touch-container .stay-in-touch__text--border-right {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px
    }

@media screen and (max-width: 992px) {
    .stay-in-touch-container .stay-in-touch__text {
        padding: 24px
    }

    .stay-in-touch-container .stay-in-touch__text--border-right, .stay-in-touch-container .stay-in-touch__text--border-left {
        border-radius: 0
    }
}

.stay-in-touch-container .stay-in-touch__text .quote-symbol {
    width: 160px;
    height: 113px;
    background-image: url("data:image/svg+xml,%3csvg%20width='133'%20height='104'%20viewBox='0%200%20133%20104'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M48.5811%20103.977H0.558594V69.626C0.558594%2055.7262%201.75488%2044.7887%204.14746%2036.8135C6.65397%2028.7243%2011.2113%2021.4896%2017.8193%2015.1094C24.4274%208.72917%2032.8584%203.71615%2043.1123%200.0703125L52.5117%2019.8945C42.9414%2023.0846%2036.0485%2027.528%2031.833%2033.2246C27.7314%2038.9212%2025.5667%2046.4977%2025.3389%2055.9541H48.5811V103.977ZM128.732%20103.977H80.71V69.626C80.71%2055.6123%2081.9062%2044.6178%2084.2988%2036.6426C86.8053%2028.6673%2091.3626%2021.4896%2097.9707%2015.1094C104.693%208.72917%20113.124%203.71615%20123.264%200.0703125L132.663%2019.8945C123.093%2023.0846%20116.2%2027.528%20111.984%2033.2246C107.883%2038.9212%20105.718%2046.4977%20105.49%2055.9541H128.732V103.977Z'%20fill='%23FFC015'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px
}

@media screen and (max-width: 768px) {
    .stay-in-touch-container .stay-in-touch__text .quote-symbol {
        width: 80px;
        height: 56px
    }
}

.stay-in-touch-container .stay-in-touch__text .paragraph {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .2px;
    color: #fff;
    position: relative
}

.stay-in-touch-container .stay-in-touch__text .author {
    color: var(--visa-yellow-light);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

.link-button i {
    background-image: url(../assets/linkedIn-icon.svg);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-right: 4px
}

footer {
    background-color: var(--visa-dark)
}

    footer .upper-container {
        display: flex;
        justify-content: space-between
    }

@media (max-width: 768px) {
    footer .upper-container {
        flex-direction: column;
        padding: 16px 0;
        gap: 16px
    }
}

footer .upper-container .logo-container .logo {
    width: 266px
}

    footer .upper-container .logo-container .logo a img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

footer .upper-container .footer-links .nav-links {
    list-style: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media (max-width: 768px) {
    footer .upper-container .footer-links .nav-links {
        padding-left: 0
    }
}

footer .upper-container .footer-links .nav-links .footer-link {
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: .2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

    footer .upper-container .footer-links .nav-links .footer-link:hover {
        text-decoration: underline
    }

    footer .upper-container .footer-links .nav-links .footer-link i {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='18' viewBox='0 0 19 18' fill='none'%3E%3Cmask id='path-1-inside-1_981_1878' fill='white'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.0833 2.53791H0.791667V16.447H16.625V7.947H17.4167V17.2197H0V1.76518H11.0833V2.53791ZM19 6.40154H18.2083V1.53877L8.98858 10.5387L8.42808 9.99164L17.6486 0.992454H12.6667V0.219727H19V6.40154Z'/%3E%3C/mask%3E%3Cpath d='M11.0833 2.53791V3.53791H12.0833V2.53791H11.0833ZM0.791667 2.53791V1.53791H-0.208333V2.53791H0.791667ZM0.791667 16.447H-0.208333V17.447H0.791667V16.447ZM16.625 16.447V17.447H17.625V16.447H16.625ZM16.625 7.947V6.947H15.625V7.947H16.625ZM17.4167 7.947H18.4167V6.947H17.4167V7.947ZM17.4167 17.2197V18.2197H18.4167V17.2197H17.4167ZM0 17.2197H-1V18.2197H0V17.2197ZM0 1.76518V0.765181H-1V1.76518H0ZM11.0833 1.76518H12.0833V0.765181H11.0833V1.76518ZM19 6.40154V7.40154H20V6.40154H19ZM18.2083 6.40154H17.2083V7.40154H18.2083V6.40154ZM18.2083 1.53877H19.2083V-0.834846L17.5098 0.823187L18.2083 1.53877ZM8.98858 10.5387L8.29009 11.2543L8.98861 11.9362L9.68711 11.2543L8.98858 10.5387ZM8.42808 9.99164L7.72962 9.27599L6.9964 9.9916L7.72959 10.7073L8.42808 9.99164ZM17.6486 0.992454L18.3471 1.7081L20.1049 -0.00754619H17.6486V0.992454ZM12.6667 0.992454H11.6667V1.99245H12.6667V0.992454ZM12.6667 0.219727V-0.780273H11.6667V0.219727H12.6667ZM19 0.219727H20V-0.780273H19V0.219727ZM11.0833 1.53791H0.791667V3.53791H11.0833V1.53791ZM-0.208333 2.53791V16.447H1.79167V2.53791H-0.208333ZM0.791667 17.447H16.625V15.447H0.791667V17.447ZM17.625 16.447V7.947H15.625V16.447H17.625ZM16.625 8.947H17.4167V6.947H16.625V8.947ZM16.4167 7.947V17.2197H18.4167V7.947H16.4167ZM17.4167 16.2197H0V18.2197H17.4167V16.2197ZM1 17.2197V1.76518H-1V17.2197H1ZM0 2.76518H11.0833V0.765181H0V2.76518ZM10.0833 1.76518V2.53791H12.0833V1.76518H10.0833ZM19 5.40154H18.2083V7.40154H19V5.40154ZM19.2083 6.40154V1.53877H17.2083V6.40154H19.2083ZM17.5098 0.823187L8.29006 9.82314L9.68711 11.2543L18.9069 2.25436L17.5098 0.823187ZM9.68708 9.82311L9.12658 9.27602L7.72959 10.7073L8.29009 11.2543L9.68708 9.82311ZM9.12655 10.7073L18.3471 1.7081L16.9502 0.276809L7.72962 9.27599L9.12655 10.7073ZM17.6486 -0.00754619H12.6667V1.99245H17.6486V-0.00754619ZM13.6667 0.992454V0.219727H11.6667V0.992454H13.6667ZM12.6667 1.21973H19V-0.780273H12.6667V1.21973ZM18 0.219727V6.40154H20V0.219727H18Z' fill='%232B94F5' mask='url(%23path-1-inside-1_981_1878)'/%3E%3C/svg%3E");
        width: 19px;
        height: 18px
    }

footer .lower-container {
    display: flex;
    width: 100%
}

    footer .lower-container .copyright {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        text-align: center;
        color: #cbd5e1
    }

.swiper {
    width: 100%
}

.swiper-slide {
    width: 600px
}

    .swiper-slide .swiper-slide-container {
        position: relative
    }

        .swiper-slide .swiper-slide-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px
        }

        .swiper-slide .swiper-slide-container .text-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 34px;
            color: #fff;
            text-align: center
        }

            .swiper-slide .swiper-slide-container .text-container .title {
                font-size: 1.375rem;
                font-weight: 700;
                line-height: 34px;
                letter-spacing: .2px
            }

            .swiper-slide .swiper-slide-container .text-container .paragraph {
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
                margin-bottom: 0
            }

@media (max-width: 768px) {
    .swiper-slide .swiper-slide-container .text-container {
        padding: 16px
    }

        .swiper-slide .swiper-slide-container .text-container .title {
            font-size: 1.125rem;
            line-height: 24px
        }

        .swiper-slide .swiper-slide-container .text-container .paragraph {
            font-size: .875rem;
            line-height: 22px
        }
}

@media (max-width: 375px) {
    .swiper-slide .swiper-slide-container .text-container {
        padding: 10px
    }

        .swiper-slide .swiper-slide-container .text-container .title {
            font-size: 1rem;
            line-height: 22px
        }

        .swiper-slide .swiper-slide-container .text-container .paragraph {
            font-size: .875rem;
            line-height: 22px
        }
}

.controls-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 25px
}

    .controls-container .swiper-pagination {
        position: relative;
        width: fit-content !important;
        top: 0 !important
    }

        .controls-container .swiper-pagination .swiper-pagination-bullet {
            opacity: 1;
            box-shadow: 0 4px 4px #00000040 inset;
            background-color: #fff;
            width: 12px;
            height: 12px
        }

        .controls-container .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--visa-blue)
        }

    .controls-container .button-prev {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.1213 10.5001H21V13.5001H8.1213L13.0606 18.4395L10.9393 20.5608L2.37866 12.0001L10.9393 3.43945L13.0606 5.56077L8.1213 10.5001Z' fill='%231434CB'/%3E%3C/svg%3E");
        width: 24px;
        height: 24px
    }

    .controls-container .button-next {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.478 13.5568H2.92432V10.4428H15.478L10.6633 5.31571L12.7311 3.11377L21.0757 11.9998L12.7311 20.8858L10.6633 18.6838L15.478 13.5568Z' fill='%231434CB'/%3E%3C/svg%3E");
        width: 24px;
        height: 24px
    }

    .controls-container .swiper-button-disabled {
        opacity: .3;
        pointer-events: none
    }

.bg-image-container {
    background-image: url(../assets/carousel-section-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center
}

    .bg-image-container .card-container {
        background-color: var(--visa-blue);
        padding: 42px 48px;
        border-radius: 38px
    }

@media (max-width: 768px) {
    .bg-image-container .card-container {
        border-radius: 0
    }
}

.bg-image-container .slide-content h4, .bg-image-container .slide-content p {
    color: #fff;
    text-align: left
}

.bg-image-container .slide-content-secondary {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0,opacity 1.2s;
    display: flex;
    align-items: center
}

    .bg-image-container .slide-content-secondary.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 1.2s;
        height: fit-content
    }

    .bg-image-container .slide-content-secondary.slide-content-secondary.active {
        min-height: 145px
    }

    .bg-image-container .slide-content-secondary h4, .bg-image-container .slide-content-secondary p {
        color: #fff;
        text-align: left
    }

.bg-image-container .bottom-card-container {
    border-radius: 60px;
    background-color: var(--visa-dark-blue)
}

@media (max-width: 768px) {
    .bg-image-container .bottom-card-container {
        border-radius: 0
    }
}

.bg-image-container .bottom-card-container .content {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 16px 40px
}

.bg-image-container .bottom-card-container .text-content p {
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    line-height: 24px;
    letter-spacing: .2px;
    text-align: left;
    margin-bottom: 8px
}

.bg-image-container .controls-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 25px
}

    .bg-image-container .controls-container .line {
        width: 100%;
        height: 2px;
        background-color: #ffffff80;
        position: relative
    }

        .bg-image-container .controls-container .line:after {
            content: "";
            display: block;
            width: var(--progress-width);
            height: 2px;
            background-color: #fff;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            transition: width .7s ease
        }

    .bg-image-container .controls-container .prev-button, .bg-image-container .controls-container .next-button {
        background-color: transparent;
        border: none
    }

        .bg-image-container .controls-container .prev-button.disabled, .bg-image-container .controls-container .next-button.disabled {
            pointer-events: none
        }

            .bg-image-container .controls-container .prev-button.disabled i, .bg-image-container .controls-container .next-button.disabled i {
                opacity: .3
            }

        .bg-image-container .controls-container .prev-button i {
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Ccircle cx='16.2184' cy='16.4372' r='15.7184' stroke='white'/%3E%3Cpath d='M8.29289 16.5116C7.90237 16.9022 7.90237 17.5353 8.29289 17.9259L14.6569 24.2898C15.0474 24.6803 15.6805 24.6803 16.0711 24.2898C16.4616 23.8993 16.4616 23.2661 16.0711 22.8756L10.4142 17.2188L16.0711 11.5619C16.4616 11.1714 16.4616 10.5382 16.0711 10.1477C15.6805 9.75716 15.0474 9.75716 14.6569 10.1477L8.29289 16.5116ZM27 16.2188L9 16.2188L9 18.2188L27 18.2188L27 16.2188Z' fill='white'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Ccircle cx='16.2184' cy='16.4372' r='15.7184' stroke='white'/%3E%3Cpath d='M8.29289 16.5116C7.90237 16.9022 7.90237 17.5353 8.29289 17.9259L14.6569 24.2898C15.0474 24.6803 15.6805 24.6803 16.0711 24.2898C16.4616 23.8993 16.4616 23.2661 16.0711 22.8756L10.4142 17.2188L16.0711 11.5619C16.4616 11.1714 16.4616 10.5382 16.0711 10.1477C15.6805 9.75716 15.0474 9.75716 14.6569 10.1477L8.29289 16.5116ZM27 16.2188L9 16.2188L9 18.2188L27 18.2188L27 16.2188Z' fill='white'/%3E%3C/svg%3E");
            -webkit-mask-size: cover;
            mask-size: cover;
            width: 36px;
            height: 36px;
            display: block;
            background: #fff
        }

        .bg-image-container .controls-container .next-button i {
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Ccircle cx='16.2184' cy='16.4372' r='15.7184' stroke='white'/%3E%3Cpath d='M8.29289 16.5116C7.90237 16.9022 7.90237 17.5353 8.29289 17.9259L14.6569 24.2898C15.0474 24.6803 15.6805 24.6803 16.0711 24.2898C16.4616 23.8993 16.4616 23.2661 16.0711 22.8756L10.4142 17.2188L16.0711 11.5619C16.4616 11.1714 16.4616 10.5382 16.0711 10.1477C15.6805 9.75716 15.0474 9.75716 14.6569 10.1477L8.29289 16.5116ZM27 16.2188L9 16.2188L9 18.2188L27 18.2188L27 16.2188Z' fill='white'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Ccircle cx='16.2184' cy='16.4372' r='15.7184' stroke='white'/%3E%3Cpath d='M8.29289 16.5116C7.90237 16.9022 7.90237 17.5353 8.29289 17.9259L14.6569 24.2898C15.0474 24.6803 15.6805 24.6803 16.0711 24.2898C16.4616 23.8993 16.4616 23.2661 16.0711 22.8756L10.4142 17.2188L16.0711 11.5619C16.4616 11.1714 16.4616 10.5382 16.0711 10.1477C15.6805 9.75716 15.0474 9.75716 14.6569 10.1477L8.29289 16.5116ZM27 16.2188L9 16.2188L9 18.2188L27 18.2188L27 16.2188Z' fill='white'/%3E%3C/svg%3E");
            -webkit-mask-size: cover;
            mask-size: cover;
            transform: rotate(180deg);
            width: 36px;
            height: 36px;
            display: block;
            background: #fff
        }

.bg-gray {
    background: #f0f0f0
}

.left-bg {
    background: url(../assets/dispute-resolution-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.left-bg--dark {
    background-color: var(--visa-blue)
}

.left-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

    .left-container .heading {
        width: 375px;
        text-align: center
    }

    .left-container .heading--left {
        text-align: left
    }

        .left-container .heading--left .paragraph-1 {
            text-align: left;
            margin-top: 50px
        }

@media screen and (max-width: 765px) {
    .left-container .heading--left .paragraph-1 {
        margin-top: 24px;
        line-height: 22px
    }
}

.left-container .heading .title {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: .2px
}

.slider-container {
    width: 100%;
    height: 100%;
    padding: 80px
}

@media screen and (max-width: 1200px) {
    .slider-container {
        padding: 40px 10px
    }
}

.slider-container .slides .intro-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    height: fit-content;
    transition: all .8s ease-in-out;
    position: absolute;
    right: 10000px
}

    .slider-container .slides .intro-slide .text-content {
        min-height: 310px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

        .slider-container .slides .intro-slide .text-content .list {
            padding-left: 0;
            margin-bottom: 0
        }

    .slider-container .slides .intro-slide img {
        margin-bottom: 12px
    }

    .slider-container .slides .intro-slide .title {
        font-size: 1.375rem;
        font-style: normal;
        font-weight: 700;
        line-height: 26.6px;
        letter-spacing: .2px;
        margin-bottom: 12px
    }

    .slider-container .slides .intro-slide.active {
        opacity: 1;
        position: static
    }

.slider-container .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 16px
}

    .slider-container .slider-controls .rect {
        width: 45px;
        height: 8px;
        cursor: pointer;
        background: #bcbcbc;
        box-shadow: 0 4px 4px #0000000d inset;
        transition: all .5s ease-in-out
    }

        .slider-container .slider-controls .rect.active {
            background: var(--visa-blue)
        }

.right-container .icon-title {
    display: flex;
    align-items: flex-start;
    gap: 40px
}

@media screen and (max-width: 768px) {
    .right-container .icon-title {
        gap: 12px
    }
}

.right-container .icon-title .titles {
    display: flex;
    gap: 16px
}

    .right-container .icon-title .titles .title-detail {
        text-decoration: none;
        color: var(--text-main);
        font-size: 1rem;
        transition: all .3s ease-in-out;
        font-weight: 700;
        cursor: default;
        pointer-events: none
    }

@media screen and (max-width: 768px) {
    .right-container .icon-title .titles .title-detail {
        font-size: .875rem
    }
}

.right-container .icon-title .titles .title-detail.active {
    color: var(--visa-blue)
}

.right-container.padding {
    padding: 80px
}

@media screen and (max-width: 768px) {
    .right-container.padding {
        padding: 10px
    }
}

.scroll-section {
    height: 500px;
    position: relative;
    overflow: hidden
}

.progress-container {
    position: absolute;
    left: 29px;
    top: 0;
    height: 100%;
    width: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none
}

    .progress-container .progress-track {
        width: 2px;
        height: calc(100% - 40px);
        background-color: #1434cb1a;
        position: relative;
        margin-top: 20px
    }

        .progress-container .progress-track .progress-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5%;
            background: repeating-linear-gradient(to bottom,transparent,transparent 5px,var(--visa-blue) 5px,var(--visa-blue) 10px);
            transition: height .1s
        }

    .progress-container .checkmark {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        border: 2px solid var(--visa-blue);
        background-color: #f0f0f0;
        transition: all .3s ease;
        opacity: .1
    }

        .progress-container .checkmark svg {
            width: 16px;
            height: 16px
        }

            .progress-container .checkmark svg path {
                fill: var(--visa-blue);
                transition: fill .3s ease
            }

        .progress-container .checkmark.completed {
            border-color: var(--visa-blue);
            opacity: 1
        }

            .progress-container .checkmark.completed svg path {
                fill: var(--visa-blue)
            }

.cards-section {
    height: 100%;
    overflow-y: auto;
    padding: 20px 20px 20px 80px;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .cards-section::-webkit-scrollbar {
        display: none
    }

    .cards-section::-webkit-scrollbar-track {
        background: #f5f5f5
    }

    .cards-section::-webkit-scrollbar-thumb {
        display: none
    }

    .cards-section .course {
        display: flex;
        flex-direction: column;
        gap: 24px
    }

        .cards-section .course:not(:last-child) {
            margin-bottom: 40px
        }

        .cards-section .course .course-content {
            width: 100%;
            max-width: 450px;
            padding-left: 25px
        }

@media (max-width: 768px) {
    .cards-section .course .course-content {
        padding-left: 0
    }
}

.cards-section .course .card-scroll {
    display: flex;
    gap: 38px;
    align-items: center;
    width: 100%;
    max-width: 450px;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    background: var(--visa-dark-blue);
    box-shadow: 0 4px 4px #0000000d
}

.cards-section .course .card-scroll--gradient {
    background: linear-gradient(180deg,#1434cb 7.15%,#021e4c 95.77%)
}

.cards-section .course .card-scroll img {
    width: 121px;
    height: 121px;
    display: block
}

@media (max-width: 1200px) {
    .cards-section .course .card-scroll {
        gap: 12px;
        max-width: fit-content;
        padding: 16px 18px;
        flex-direction: column-reverse
    }
}

@media (max-width: 768px) {
    .cards-section .course .card-scroll {
        width: 100%
    }
}

.cards-section .course .card-scroll .text-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center
}

    .cards-section .course .card-scroll .text-content .top-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='28' viewaBox='0 0 57 28' fill='none'%3E%3Cpath d='M2 11L17 26' stroke='%23FFC015' stroke-width='3'/%3E%3Cpath d='M55 11L40 26' stroke='%23FFC015' stroke-width='3'/%3E%3Cpath d='M29 0V21' stroke='%23FFC015' stroke-width='3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: cover;
        width: 56px;
        height: 28px
    }

    .cards-section .course .card-scroll .text-content .bottom-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28' viewBox='0 0 56 28' fill='none'%3E%3Cpath d='M54 16.75L40 1.75' stroke='white' stroke-width='3'/%3E%3Cpath d='M2 16.75L16 1.75' stroke='white' stroke-width='3'/%3E%3Cpath d='M27 27.75L27 6.75' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: cover;
        width: 56px;
        height: 28px
    }

    .cards-section .course .card-scroll .text-content .title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: .2px
    }

    .cards-section .course .card-scroll .text-content .paragraph-1 {
        text-align: center
    }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

[data-anim] {
    animation-duration: .8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

[data-anim-short] {
    animation-duration: .6s;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

[data-anim-vshort] {
    animation-duration: .4s;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

[data-anim=fadeInUp].animated, [data-anim-short=fadeInUp].animated, [data-anim-vshort=fadeInUp].animated {
    animation-name: fadeInUp
}

@media only screen and (min-width: 768px) {
    html [data-anim], html [data-anim-short], html [data-anim-vshort] {
        opacity: 0
    }
}

:root {
    --visa-blue: #1434cb;
    --text-main: #2c2c2c;
    --visa-dark-blue: #021e4c;
    --visa-light-blue: #2b94f5;
    --visa-yellow: #f7b600;
    --visa-yellow-light: #ffc015;
    --visa-dark: #0f172a
}

@font-face {
    font-family: Visa dialect;
    src: url(../assets/VisaDialect-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Visa dialect;
    src: url(../assets/VisaDialect-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Visa dialect;
    src: url(../assets/VisaDialect-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Visa dialect;
    src: url(../assets/VisaDialect-Semibold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Visa dialect;
    src: url(../assets/VisaDialect-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal
}

body, * {
    font-family: Visa dialect,Open Sans,sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.heading-1 {
    color: var(--gray-900, #18181b);
    font-size: 4.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: .2px;
    color: #fff
}

.heading-2 {
    color: var(--text-main);
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: .2px
}

.heading-3 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: .2px
}

.paragraph-1 {
    color: var(--text-main);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .2px
}

.paragraph-1--white {
    color: #fff
}

.paragraph-1--text-left {
    text-align: left
}

.paragraph-2 {
    color: var(--text-main);
    text-align: center;
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .2px
}

.paragraph-2--white {
    color: #fff
}

.paragraph-2--text-left {
    text-align: left
}

@media (max-width: 768px) {
    .heading-1 {
        font-size: 2.5rem;
        line-height: 60px
    }

    .heading-2 {
        font-size: 2rem;
        line-height: 40px
    }

    .heading-3 {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .paragraph-1 {
        font-size: .875rem;
        line-height: 22px
    }

    .paragraph-2 {
        font-size: .75rem;
        line-height: 20px
    }
}

@media (max-width: 480px) {
    .heading-1 {
        font-size: 2rem;
        line-height: 50px
    }

    .heading-2 {
        font-size: 1.75rem;
        line-height: 35px
    }

    .heading-3 {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.py-default {
    padding-top: 75px;
    padding-bottom: 75px
}

@media (max-width: 768px) {
    .py-default {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

li {
    list-style: none
}

.list-style-dotted {
    list-style: disc
}

.sub-heading {
    color: var(--visa-yellow);
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: .2px
}

.horizontal-line {
    border-top: 1px solid #e8e8e8;
    width: 100%
}

.horizontal-line--yellow {
    border-top: 2px solid var(--visa-yellow)
}

.bg-yellow {
    background: var(--visa-yellow)
}

.color-white {
    color: #fff
}

.color-yellow {
    color: var(--visa-yellow)
}

.color-blue {
    color: var(--visa-blue)
}

.text-center {
    text-align: center
}

.underline-none {
    text-decoration: none
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

    .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform,height
    }

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

    .swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
        transform-style: preserve-3d
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: none
    }

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,#00000080,#0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,#00000080,#0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

    .swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

    .swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none
    }

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg, .swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg, .swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: "next"
    }

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

    .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
        display: none !important
    }

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0,-50%,0)
}

    .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
        display: block
    }

    .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: .2s transform,.2s top
        }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: .2s transform,.2s left
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color, var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

    .swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
        width: var(--swiper-pagination-progressbar-size, 4px);
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

    .swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important
    }

    .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: var(--swiper-scrollbar-sides-offset, 1%);
        bottom: var(--swiper-scrollbar-bottom, 4px);
        top: var(--swiper-scrollbar-top, auto);
        z-index: 50;
        height: var(--swiper-scrollbar-size, 4px);
        width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
    }

    .swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
        position: absolute;
        left: var(--swiper-scrollbar-left, auto);
        right: var(--swiper-scrollbar-right, 4px);
        top: var(--swiper-scrollbar-sides-offset, 1%);
        z-index: 50;
        width: var(--swiper-scrollbar-size, 4px);
        height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

    .swiper-cube .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

    .swiper-cube .swiper-cube-shadow:before {
        content: "";
        background: #000;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        filter: blur(50px)
    }

.swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

    .swiper-flip .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}
