.item {
    position: relative;
    width: 99vw;
    height: 100vh;
}

.item picture,
.item video {
    display: block;
    position: relative;
}

.item picture::before,
.item .video::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    inset: 0;
    z-index: 1;
}

.item picture img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.item video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parent-text {
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-text h2 {
    text-transform: uppercase;
    font-size: 3.9rem;
    font-weight: 300;
}

.info-text p {
    font-size: 2.1rem;
    font-weight: 300;
}

.info-text a {
    width: 100%;
    max-width: 17.2rem;
    height: 5.5rem;
    font-size: 1.4rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    text-decoration: none;
    color: black;
}

.info-text a:hover {
    background: #ebebeb;
    color: #4c4c4c;
}

.swiper-pagination {
    width: 100%;
    bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    padding-inline: 4rem;
    position: absolute;
    z-index: 5;
}

.svg-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.svg-icon path {
    fill: white;
}

.swiper-pagination-bullet {
    color: white;
    opacity: 1;
    width: initial;
    height: initial;
    background: transparent;
}

.swiper-pagination-bullet 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: #e5910a;
    --color13: #e5910a;
    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), #e5910a, #e5910a, #e5910a, var(--colorf3)),
        conic-gradient(transparent, transparent 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage.show {
    opacity: 1;
}

.percentage .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);
}