* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Flex', sans-serif;
    color: #fff;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Mohave', sans-serif;
}

html {
    background-color: #060608;
    font-size: 62.5%;
}

.container {
    width: 100%;
    max-width: 124.6rem;
    margin: 0 auto;
    padding: 0 15;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 7.2rem;
    display: flex;
    background-color: rgba(0, 4, 7, 0.90);
    backdrop-filter: blur(4px);
    z-index: 9999999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    gap: 4.7rem;
}

header nav a {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%;
    transition: color .3s ease;
}

header nav a:hover {
    color: #f55827;
}

header button {
    border-radius: 3.2rem;
    border: 2px solid #2F2F3B;
    padding: 0.95rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%;
    transition: all .3s ease;
}

header button:hover {
    background-color: #fff;
    color: #101014;
    box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.30);
}

.s-hero {
    position: relative;
    width: 100%;
    background-image: url('../img/bg-hero.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 80rem;
    padding-top: 11.2rem;
    padding-bottom: 14.3rem;
}

.s-hero:after {
    content: "";
    width: 100%;
    height: 21.6rem;
    background: linear-gradient(180deg, #060608 0%, rgba(0, 4, 7, 0.00) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: rotate(180deg);
}

.s-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.s-hero .left {
    position: relative;
    width: 100%;
    max-width: 62.2rem;
    animation: fadeLeft 1s forwards;
    z-index: 5;
}

.s-hero .left {
    width: 100%;
    max-width: 62.2rem;
}

.s-hero .left .platform {
    display: flex;
    margin-bottom: 2.4rem;
}

.s-hero .left .platform span {
    color: #C0C0CC;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%;

    background-color: #1b1b1b;
    padding: 0.6rem 1.2rem;
    border-radius: 4px 0px 0px 4px;
}

.s-hero .left .platform strong {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 150%;

    border-radius: 0px 4px 4px 0px;
    background-color: #252525;
    padding: 0.6rem 1rem;
}

.s-hero .left .heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 2.4rem;
}

.s-hero .left .heading h1 {
    font-family: Mohave;
    font-size: 5.6rem;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.s-hero .left .heading p {
    font-family: Roboto Flex;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
}

.s-hero .left .value h3 {
    font-family: Mohave;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.s-hero .left .value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;

    margin-top: 4.8rem;
}

.s-hero .left .value .btns {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
}

.s-hero .left .value .btn-card {
    display: flex;
    height: 5.6rem;
    padding: 0rem 4rem;
    justify-content: center;
    align-items: center;

    border-radius: 3.2rem;
    background: #F55827;

    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: all .3s ease;
}

.s-hero .left .value .btn-card:hover {
    background-color: #cf3302;
    box-shadow: 0px 0px 0px 3px rgba(245, 88, 39, 0.30);

}

.s-hero .left .value .btn-favorite {
    width: 56px;
    height: 56px;
    border: 2px solid #2f2f3b;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
}

.s-hero .left .value .btn-favorite:hover {
    background-color: #fff;
    color: #101014;
    box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.30);
}

.s-hero .left .value .btn-favorite:hover img {
    filter: invert(1);
}

.s-hero .left ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;

    font-size: 1.6rem;
    font-weight: 500;
    line-height: 150%;
}

.s-hero .left ul li {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.s-hero .left .information {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;

    margin-top: 7.2rem;
}

.s-hero .right {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.6rem;

    width: 100%;
    max-width: 9.5rem;

    margin-top: 4.2rem;

    animation: fadeRight 1s forwards;
}

.s-hero .right span {
    display: flex;
    width: 3.2rem;
    height: 3.2rem;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    border-radius: 0.6rem;
    background: #F09104;

    font-size: 1.2rem;
    font-weight: 700;
    line-height: 150%;
}

.s-hero .right p {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 150%;
}

.s-videos {
    position: relative;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 6.4rem;
    overflow: hidden;
}

.s-videos:before {
    content: "";
    width: 334px;
    height: 334px;
    background: linear-gradient(270deg, #060608 20.29%, rgba(6, 6, 8, 0.00) 100.25%);
    position: absolute;
    top: 8.9rem;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.s-videos .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.2rem;
}

.s-videos .top .swiper-pagination {
    position: relative;
    width: auto;
    bottom: 0;
}

.s-videos .top .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background-color: #2f2f2f;
    opacity: 1;
}

.s-videos .top .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

.s-videos .container {
    position: relative;
}

.s-videos .container h2 {
    font-family: Mohave;
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.s-videos .swiper-slide {
    width: 100%;
    max-width: 39.1rem;
}

.s-videos .card-video {
    position: block;
    width: 100%;
    max-width: 38.3rem;
}

.s-videos .card-video .thumbnail {
    position: relative;
    width: 100%;
    height: 21.6rem;
    margin-bottom: 2.2rem;
}

.s-videos .card-video .thumbnail .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-videos .card-video .thumbnail:before {
    content: "";
    background: url('../img/mask-hover.svg') no-repeat center center;
    width: 100%;
    max-width: 39.1rem;
    height: 22.2rem;
    position: absolute;
    top: -2px;
    opacity: 0;
    transition: opacity .3s ease;
}

.s-videos .card-video:hover .thumbnail:before {
    opacity: 1;
}

.s-videos .card-video .thumbnail .icon {
    position: absolute;
    border-radius: 50%;
    top: 39%;
    left: 43%;
    opacity: 0;
    transition: opacity .3s ease;
}

.s-videos .card-video:hover .thumbnail .icon {
    opacity: 1;
}

.s-videos .card-video span {
    color: #C0C0CC;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%;
}


.s-videos .box-video {
    width: 100%;
    max-width: 1572px;
    margin: 3.2rem 0 0 auto;
}

.s-videos .btn {
    position: absolute;
    top: 15rem;
    width: 4rem;
    height: 4rem;
    background-color: #2f2f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity .3s ease;
}

.s-videos .btn.swiper-button-disabled {
    opacity: 0;
}

.s-videos .btn-prev {
    left: -20px;
    transform: rotate(180deg);
}

.s-videos .btn-next {
    right: -5px;
}

.s-vilao {
    position: relative;
    width: 100%;
    height: 80rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    animation:  changeBG 10s infinite linear;
}

.s-vilao::before {
    content: "";
    width: 100%;
    height: 21.6rem;
    background: linear-gradient(180deg, #060608 0%, rgba(0, 4, 7, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.s-vilao:after {
    content: "";
    width: 100%;
    height: 21.6rem;
    background: linear-gradient(180deg, #060608 0%, rgba(0, 4, 7, 0.00) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: rotate(180deg);
}

.s-vilao h2 {
    font-size: 4.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.s-vilao p {
    color: #ceced9;
    text-align: center;
    font-size: 1.8rem;
    line-height: 150%;
    margin-bottom: 7.2rem;
}

footer {
    position: relative;
    width: 100%;
    max-width: 124.6rem;
    display: flex;
    margin: 0 auto;
    padding: 7.2rem 0;
    justify-content: space-between;
    align-items: flex-end;
}

footer::before {
    content: "";
    width: 100%;
    height: 1.6rem;
    background: url(../img/line.svg) no-repeat center center;
    position: absolute;
    top: 0;
}

footer .boxFooter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;

    max-width: 66.8rem;
    width: 100%;
}

footer .boxFooter strong {
    font-family: Mohave;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

footer .boxFooter p {
    color: #CECED9;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
}

footer .design {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

footer .design span {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 150%;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes changeBG {
    0% {
        background-image: url("../img/vilao/01.jpg");
    }
    5% {
        background-image: url("../img/vilao/02.jpg");
    }
    10% {
        background-image: url("../img/vilao/03.jpg");
    }
    15% {
        background-image: url("../img/vilao/04.jpg");
    }
    20% {
        background-image: url("../img/vilao/05.jpg");
    }
    25% {
        background-image: url("../img/vilao/06.jpg");
    }
    30% {
        background-image: url("../img/vilao/07.jpg");
    }
    35% {
        background-image: url("../img/vilao/08.jpg");
    }
    40% {
        background-image: url("../img/vilao/09.jpg");
    }
    45% {
        background-image: url("../img/vilao/10.jpg");
    }
    50% {
        background-image: url("../img/vilao/11.jpg");
    }
    55% {
        background-image: url("../img/vilao/12.jpg");
    }
    60% {
        background-image: url("../img/vilao/13.jpg");
    }
    65% {
        background-image: url("../img/vilao/14.jpg");
    }
    70% {
        background-image: url("../img/vilao/15.jpg");
    }
    75% {
        background-image: url("../img/vilao/16.jpg");
    }
    80% {
        background-image: url("../img/vilao/17.jpg");
    }
    85% {
        background-image: url("../img/vilao/18.jpg");
    }
    90% {
        background-image: url("../img/vilao/19.jpg");
    }
    95% {
        background-image: url("../img/vilao/20.jpg");
    }
    100% {
        background-image: url("../img/vilao/20.jpg");
    }     
}

@media(max-width: 1200px) {
    header {
        padding-inline: 5%;
    }

    .s-hero {
        height: auto;
        padding-top: 7rem;
        padding-bottom: 7rem;
        padding-inline: 5%;
    }

    .s-videos {
        padding-top: 6rem;
        padding-bottom: 6rem;
        padding-inline: 5%;
    }

    .s-videos .btn {
        display: none;
    }

    .s-vilao {
        padding-inline: 5%;
        height: 55rem;
    }

    footer {
        padding-inline: 5%;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    footer:before {
        width: 90%;
    }
}

@media(max-width: 991px) {
    header nav {
        display: none;
    }


    .s-hero .left {
        max-width: 100%;
    }

    .s-hero .right {
        display: none;
    }

    .s-vilao:before,
    .s-vilao:after {
        height: 10rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 4rem
    }
}

@media(max-width: 560px) {
    header .logo {
        max-width: 12.6rem;
    }

    header button {
        display: none;
    }

    .s-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
        background-size: 1140px;
        background-position-x: 65%;
    }

    .s-hero .left h1 {
        font-size: 4.2rem;
        max-width:84%;
        line-height: 120%;
    }
    .s-hero .left .description {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }

    .s-hero .left .value h3 {
        margin-bottom: 1rem;
    }

    .s-hero .left .value {
        margin-bottom: 4rem;
    }

    .s-hero .left ul p {
        font-size: 1.4rem;
    }

    .s-hero .left ul:nth-child(2) {
        flex-direction: column;
        align-items: flex-start;
    }

    .s-hero .left ul li {
        gap: 1rem;
    }
    .s-hero .left ul {
        gap: 1rem;
    }

    .s-vilao {
        height: auto;
        padding: 6rem 0;
        background-size: 900px;
    }

    .s-vilao h2 {
        font-size: 3.2rem;
    }

    .s-vilao p {
        font-size: 1.6rem;
        max-width: 30rem;
        margin-bottom: 4rem;
    }

    footer {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    footer:before {
        background-size: 120%;
    }
}