/* -- -- -- -- -- GLOBAL -- -- -- -- -- */

/* -- -- -- -- -- ALL PAGES -- -- -- -- -- */

body > *{
    padding-inline: 20px;
}

h1, h2, h3, h4, h5, h6, p {
    color: var(--white);
}

@media (width > 991px) {
    body > * {
        padding-inline: 35px;
        max-width: 1440px;
        margin-inline: auto;
    }
}

@media (width > 1479px) {
    body > * {
        padding-inline: unset;
    }
}

/* -- -- -- -- -- SPECIFIC CLASSES -- -- -- -- -- */

.subtitle {
    font-family: var(--ffMMe);
    font-size: 1.25rem;
    line-height: 1.6875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.subtitle + .title {
    margin-top: 4px;
}

.title {
    font-family: var(--ffMXBo);
    font-size: 1.5rem;
    line-height: 1.75rem;
    text-transform: uppercase;
}

.category {
    font-family: var(--ffMMe);
    font-size: .75rem;
    line-height: 1.0625rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content,
.content * {
    font-weight: inherit!important;
    font-family: var(--ffMMe);
    font-size: 1rem;
    line-height: 1.5625rem;
}

.content strong {
    font-family: var(--ffMBo);
}

.content li {
    position: relative;
    padding-left: 15px;
    color: var(--white);
}

.content li::before {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 0px;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
}

.link {
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 17px;
    font-family: var(--ffMXBo);
    font-size: 1rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    width: fit-content;
    position: relative;
}

.link::after {
    content: '';
    display: block;
    background-image: url('../img/icons/arrow.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    height: 12px;
    width: 21px;
    transition: all 0.3s ease;
}

.hoverSpawn {
    display: none;
}

@media (width > 1199px) {
    .title {
        font-size: 2.1875rem;
        line-height: 3rem;
    }

    .subtitle {
        font-size: 1.25rem;
        line-height: 1.6875rem;
        letter-spacing: 5.628px;
    }
}

@media (width > 1479px) {
    .hoverSpawn {
        position: absolute;
        left: 0;
        z-index: -1;
        width: auto;
        white-space: nowrap;
        transition: all 0.3s ease;
        color: var(--white);
        padding-inline: 18px;
        height: 56px;
        display: flex;
        align-items: center;
    }
    /* .video-controls:hover .hoverSpawn {
        transition: all 0.3s ease;
        z-index: 0;
        left: -250%;
        background-color: #0B0B0B;
    } */
}

@media (width > 1844px) {
    .video-controls:hover .hoverSpawn {
        transition: all 0.3s ease;
        z-index: 0;
        left: -250%;
        background-color: #0B0B0B;
    }
}

@media (pointer: fine) {
    .link:not(.miniature .link):not(.cHeader.cHeader--welcome .link):hover::after {
        width: 29px;
        margin-left: -4px;
        transition: all 0.3s ease;
    }
}

/* -- -- -- -- -- BTN - SPECIALS -- -- -- -- -- */

.btn-asset {
    border: 2px solid var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    width: fit-content;
}

.btn-asset.active {
    background-color: var(--white);
    color: var(--black);
}

.btn-asset.active > .number {
    border-color: var(--black);
}

.btn-asset > .number {
    font-family: var(--ffMXBo);
    font-size: 1.25rem;
    line-height: 1.6875rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    aspect-ratio: 1 / 1;
    width: auto;
    height: 40px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.btn--woRadius {
    border-radius: unset!important;
}

/* -- -- -- -- -- VIDEO -- -- -- -- -- */

.video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* aspect-ratio: 1364 / 679; */
}

/* -- -- -- -- -- SWIPER -- -- -- -- -- */
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after {
    content: "";
    background-image: url('../img/icons/arrowSwiper.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 23/13;
    width: 23px;
    height: auto;
    rotate: 180deg;
}

.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after {
    content: "";
    background-image: url('../img/icons/arrowSwiper.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 23/13;
    width: 23px;
    height: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
    top: unset;
    bottom: 0;
    left: calc(50% - 57px);
    right: unset;
    height: 37px;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev{
    top: unset;
    bottom: 0;
    right: calc(50% - 57px);
    left: unset;
    height: 37px;
}