@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
}

.wrapper-slider {
    position: relative;
    width: 100%;
    margin: auto;
    color: #262626;
    background: black;
    .item {
        position: relative;
        width: 100vw;
        height: 90vh;
        display: flex;
        align-items: end;
        padding-inline: 2rem;
        padding-bottom: 0px;
        picture {
            display: block;
            border-radius: 8px;
            &:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.4);
                inset: 0;
                z-index: 1;
            }
            img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 8px;
            }
        }
        .video {
            &:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.4);
                inset: 0;
                z-index: 1;
            }
        }
        video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            inset: 0;
        }
    }
    .parent-text {
        padding: 3rem 10rem;
        position: relative;
        z-index: 2;
        color: white;
        .info-text {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }
        h2 {
            text-transform: uppercase;
            font-size: 3.9rem;
            font-weight: 300;
        }
        p {
            font-size: 2.1rem;
            font-weight: 300;
        }
        a {
            width: 100%;
            max-width: 17.2rem;
            height: 5.5rem;
            font-size: 1.4rem;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            text-decoration: none;
            duration: .3s ease;
            &:hover {
                background: #ebebeb;
                color: #4c4c4c;
            }
        }
    }
    .swiper-pagination {
        width: 100%;
        bottom: 5rem;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 1.2rem;
        font-size: 1.4rem;
        font-weight: 500;
        padding-inline: 4rem;
        .svg-icon {
            width: 1.5rem;
            height: 1.5rem;
            path {
                fill: white;
            }
        }
        .swiper-pagination-bullet {
            /* color: white; */
            /* opacity: 1; */
            width: initial;
            height: initial;
            background: transparent;
            button {
                background: transparent;
                border: 0;
                display: flex;
                cursor: pointer;
            }
        }
        .bullet-content {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .icon {
            position: absolute;
            z-index: 1;
        }
    }
}

.percentage {
    --colorf3: #1C69D4;
    --color13: #1C69D4;
    width: 3.4rem;
    aspect-ratio: 1;
    mask: radial-gradient(transparent 55%, black 60% 100%);
    -webkit-mask: radial-gradient(transparent 55%, black 60% 100%);
    transition: opacity 0.6s ease;
    opacity: 0;
    background: conic-gradient( transparent 0, transparent var(--p), #c9d6d7 0), conic-gradient( var(--colorf3), #1C69D4, #1C69D4, #1C69D4, var(--colorf3)), conic-gradient(transparent, transparent 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    &.show {
        opacity: 1;
    }
    .number {
        width: 80%;
        aspect-ratio: 1;
        display: inherit;
        align-items: inherit;
        justify-content: inherit;
        background: white;
        border-radius: inherit;
        font-size: 16px;
        font-style: normal;
        font-weight: 800;
        line-height: 24px;
        color: var(--color13);
    }
}


/* ---------- Premium Dot Pagination ---------- */

.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: transparent;
    opacity: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
}


/* Dot */

.swiper-pagination-bullet .dot {
    width: 7px;
    height: 7px;
    background: #bfbfbf;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.35s ease;
}


/* Hover */

.swiper-pagination-bullet:hover .dot {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.2);
}


/* Active bullet highlight */

.swiper-pagination-bullet-active {
    transform: scale(1.15);
}

.swiper-pagination-bullet-active .dot {
    width: 11px;
    height: 11px;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}


/* Parent must hide overflow */


/* Image zoom animation */

.swiper-slide .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideZoom 18s linear infinite;
    transform-origin: center;
}


/* Continuous slow zoom */

@keyframes slideZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.25);
    }
}