/*Hero Screen*/
.hero-screen {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../assets/img/home/bg-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 90px 0;
}

.hero-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6.53%, #000000 100%);
    z-index: 0;
}

.hero-screen .text-block {
    max-width: 817px;
    width: 100%;
    margin-bottom: 80px;
}

.hero-screen h1 {
    font-family: 'Play', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-screen .text-block p {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
}

#block-for-slider {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

#viewport {
    width: 100%;
    height: 312px;
    position: relative;
    left: calc((100% - 1270px)/2);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    text-align: center;
}

#slidewrapper {
    position: absolute;
    height: 312px;
    display: flex;
    align-items: center;
    transition: all 500ms ease 0s;
}

.slide {
    width: 312px;
    height: 312px;
    list-style: none;
    display: inline;
    float: left;
    transition: all 500ms ease 0s;
    margin-right: 30px;
}

.slide-wrap {
    display: block;
    width: 499px;
    height: 100%;
    color: #FFFFFF;
    transition: all 500ms ease 0s;
    transform: scale(0.627) translateX(-30%);
    overflow: hidden;
    border-radius: 20px;
    pointer-events: none;
}

.slide.active {
    width: 499px;
}

.slide.active .slide-wrap {
    transform: scale(1);
    transition: all 500ms ease 0s;
    pointer-events: auto;
}

.slide .slide-block {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.slide .slide-block .icon {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 120%;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px 10px;
    margin-bottom: 17px;
}

.slide .slide-block .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide .slide-block .text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.slide .slide-block .text span {
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    text-align: left;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide .slide-block .link {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.slide .slide-block .link span {
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.slide .slide-block .link span.read-more {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.slide .slide-block .link span.read-more::before {
    content: '';
    position: absolute;
    right: 0;
    width: 7px;
    height: 11px;
    background-image: url('../assets/img/common/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.slide .slide-block .link a.join {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
    padding: 5px 12px;
    border-radius: 999px;
}

.slide .slide-block .link a.watch-video {
    display: flex;
    align-items: center;
    padding-right: 21px;
}

.slide .slide-block .link a.watch-video::before {
    content: '';
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('../assets/img/home/icons/icon-play.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.slide .bg-cover {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide .bg-cover img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#prev-next-btns {
    position: relative;
    max-width: 104px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#prev-btn, #next-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#prev-btn {
    left: 0;
}

#next-btn {
    right: 0;
}

#prev-btn::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../assets/img/common/arrow-left.svg') no-repeat 0 0;
    background-size: contain;
}

#next-btn::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../assets/img/common/arrow-right.svg') no-repeat 0 0;
    background-size: contain;
}

#prev-btn:hover, #next-btn:hover {
    opacity: 1;
}

.slider-info {
    display: flex;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 46px;
}

.slider-info .current-slide {
    font-weight: 300;
}

.slider-info .total-slide {
    font-weight: 300;
    opacity: .5;
}
/*endsection*/

/*Step Commited*/
.step-commited {
    margin-top: 50px;
    margin-bottom: 150px;
}

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

.step-commited h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.step-commited h3 {
    font-weight: 200;
    font-size: 36px;
    line-height: 130%;
    text-transform: uppercase;
    color: #ACAFB9;
    margin-bottom: 50px;
}

.step-commited .text-block {
    max-width: 817px;
    width: 100%;
}

.step-commited .list {
    display: flex;
    justify-content: space-between;
}

.step-commited .item {
    max-width: 232px;
    width: 100%;
}

.step-commited .item:nth-child(2) {
    max-width: 292px;
    margin: 0 30px;
    padding: 0 30px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.step-commited .item img {
    display: flex;
    width: 52px;
    margin-bottom: 20px;
}

.step-commited .item p {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 10px;
}

.step-commited .item span {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: #ACAFB9;
}

.step-commited .illustration {
    max-width: 393px;
    width: 100%;
}

.step-commited .illustration img {
    width: 100%;
}
/*endsection*/

/*imetaStar*/
.imetaStar .container {
    align-items: flex-end;
}

.imetaStar span {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 90%;
    display: flex;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: #ACAFB9;
    margin-bottom: 20px;
}
/*endsection*/

/*free-roaming*/
.section-video.free-roaming .text-block {
    max-width: 460px;
    width: 100%;
}

.section-video.free-roaming .text-block p {
    max-width: 400px;
    width: 100%;
}
/*endsection*/

/*Gif List*/
.gif-list {
    margin-top: 100px;
    margin-bottom: 150px;
}

.gif-list .list {
    display: flex;
    justify-content: space-between;
}

.gif-list .list .item {
    position: relative;
    width: 393.33px;
    height: 535px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px 40px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.gif-list .list .item .video-block {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    z-index: -1;
}

.gif-list .list .item:hover .video-block {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

.gif-list .list .item p {
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    margin-bottom: 20px;
}

.gif-list .list .item span {
    display: flex;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    min-height: 68px;
}
/*endsection*/

/*Proven Market*/
.proven-market {
    margin-bottom: 150px;
}

.proven-market .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.proven-market .list .item {
    position: relative;
    width: 605px;
    height: 335px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.proven-market .list .item:last-child {
    width: 100%;
    margin-top: 30px;
}

.proven-market .list .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    z-index: -1;
}

.proven-market .list .item:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

.proven-market .list .item p {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.proven-market .list .item span {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
}
/*endsection*/

@media (max-width: 1440px) {
    .hero-screen {
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    /*Hero Screen*/
    .hero-screen {
        background-image: url('../assets/img/home/bg-banner-mobile-2x.jpg');
        background-repeat: no-repeat;
        background-position: bottom center;
        padding-top: 131px;
        padding-bottom: 40px;
        margin-bottom: 0;
        overflow: hidden;
    }

    .hero-screen .text-block {
        margin-bottom: 70px;
    }

    .hero-screen .text-block p {
        font-size: 16px;
        line-height: 150%;
    }

    .hero-screen .text-block h1 {
        font-weight: 700;
        font-size: 33px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    #viewport {
        height: 300px;
        left: 0;
    }

    #slidewrapper {
        width: calc(100%*8);
        height: 300px;
    }

    .slide-wrap {
        width: 100%;
        transform: scale(1);
    }

    .slide {
        width: 100%;
        height: 300px;
        transform: scale(1);
        margin: 0 20px;
    }

    .slide.active {
        width: 100%;
        margin: 0 20px;
    }

    .slide .slide-block .text p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .slide .bg-cover {
        width: 480px;
        height: auto;
        left: calc((100% - 480px)/2);
    }
    /*endsection*/

    /*Step Commited*/
    .step-commited {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .step-commited h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .step-commited h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .step-commited h2 br {
        display: none;
    }

    .step-commited .illustration {
        display: none;
    }

    .step-commited .list {
        flex-direction: column;
    }

    .step-commited .item {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .step-commited .item:nth-child(2) {
        max-width: 100%;
        border: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .step-commited .item img {
        width: 40px;
        margin-bottom: 0;
        margin-right: 20px;
    }

    .step-commited .item .text {
        width: calc(100% - 60px);
    }

    .step-commited .item p {
        font-size: 16px;
    }
    /*endsection*/

    /*imetaStar*/
    .imetaStar .container {
        align-items: flex-start;
    }
    /*endsection*/

    /*Gif List*/
    .gif-list {
        margin-bottom: 100px;
    }

    .gif-list .list {
        flex-direction: column;
    }

    .gif-list .list .item {
        width: 100%;
        height: 300px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .gif-list .list .item:last-child {
        margin-bottom: 0;
    }

    .gif-list .list .item .video-block {
        left: calc((100% - 440px)/2);
        width: 440px;
        height: 100%;
    }

    .gif-list .list .item:hover .video-block {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .gif-list .list .item p {
        font-size: 24px;
        line-height: 26px;
    }

    .gif-list .list .item p br {
        display: none;
    }

    .gif-list .list .item span {
        font-size: 14px;
        line-height: 17px;
        
    }

    .gif-list .list .item span br {
        display: none;
    }
    /*endsection*/

    /*Proven Market*/
    .proven-market {
        margin-bottom: 60px;
    }

    .proven-market .list .item {
        height: 231px;
        margin-bottom: 20px;
        padding: 20px;
    }

    .proven-market .list .item:last-child {
        margin: 20px 0 0;
    }

    .proven-market .list .item p {
        font-size: 56px;
        line-height: 120%;
    }

    .proven-market .list .item span {
        font-size: 24px;
        line-height: 120%;
    }

    .proven-market .list .item img {
        width: 440px;
    }
    /*endsection*/
}
