@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root{
    font-size: 18px;
}

/* #4c004c */
/* #4c004c */

/*  GLOBAL STYLES */

*{
    box-sizing: border-box;
}

p{
    margin:0;
    line-height:1.4em;
}

h1,h2,h3{
    font-weight: 700;
}

body{
    margin:0;
    background-color: #4c004c;
    font-family: 'Roboto', sans-serif;
}

.page-wrapper{
    overflow-x: hidden;
}

.content-container{
    max-width: 480px;
    padding:20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.content-container--full-width{
max-width: 100%;
}

.btn{
    text-transform: uppercase;
    border-radius: 20px;
    border:2px solid #fff;
    background-color: #0000008a;
    text-decoration: none;
    color:white;
    font-weight: 700;
    padding: 5px 16px;
    display: inline-block;
    letter-spacing: 0.7px;
}

img{
    width:100%;
    height: auto;
}

/* HEADER */

header{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    z-index: 9;
}

.header__row{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
}

.header__logo a{
    display: block;
}

.header__logo img{
    max-width: 120px;
}

.header__menu{
    display: flex;
    justify-content: flex-end;
    cursor:pointer;
}

.header__menu-button{
    cursor: pointer;
    z-index: 3;
}

.header__menu-button span{
    width:35px;
    display: block;
    border-bottom: 4px solid white;
    transition-duration:0.35s;
    opacity: 1;
}

.header__menu-button span:nth-child(2){
    margin-top:4px;
    margin-bottom: 4px;
    width:25px;
}

body.show-dropdown .header__menu-button span:nth-child(2){
    opacity: 0;
}

body.show-dropdown .header__menu-button span:nth-child(1){
    transform: rotate(45deg) translate(10px, 8px);
}

body.show-dropdown .header__menu-button span:nth-child(3){
    transform: rotate(-45deg) translate(3px, -2px);
}

.header__menu-dropdown-logo{
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 0;
}

.header__menu-dropdown-logo img{
    max-width: 60px;
}

.header__menu-dropdown{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.3s;
}

body.show-dropdown .header__menu-dropdown{
    opacity: 1;
    visibility: visible;
}

.list-unstyled{
    list-style-type: none;
    padding:0;
    margin:0;
}

.header-main-nav{
    display: none;
}

.header-main-nav a,
.header__menu-dropdown a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.header__menu-dropdown a{
    padding: 10px;
    display: inline-block;
}

.header__menu-dropdown .footer__social{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* main content */

.main-content{
    background: #4c004c url('../img/bg-mb.jpg') no-repeat center center;
    background-size: cover !important;
    color:white;
    text-align: center;
    position: relative;
    padding-top: 70px;
}

.main-content:after{
    content:'';
    display: block;
    height: 200px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom,transparent 10%, #4c004cb0 60% ,#4c004c 100%);
    z-index: 0;
}

.main-contetn__logo{
    max-width: 520px;
    width:100%;
    display: block;
    margin-left: AUTO;
    margin-right: auto;
}

.main-content__download-buttons{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto; 
    margin:30px auto 20px; 
}

.main-content h1{
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 0;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow:0 0 20px black;
}

.main-content .btn{
    font-size: 12px;
    margin-top: 20px;
}

/* banner content */

.banner-content{
    margin-top: -2px;
    position: relative;
    text-align: center;
    background-color: #4c004c;
}

.banner-content:after{
    content: '';
    display: block;
    height: 40%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom,transparent 20%, #4c004c 50% ,#4c004c 90%);
    z-index: 0;
}

/* description content */
.description-content{
    color: #fff;
    text-align: center;
    font-size: 16px;
}

.description-content .content-container p{
    margin-top: -15%;
}

/* slider */
.slider-wrapper .content-container{
    padding-left: 0;
    padding-right: 0;
}

.slider{
    margin-top:10px;
}

.slick-track{
    display: flex !important;
}

.slick-list{
    margin-left: -10px;
    margin-right: -10px;
}

.slick-slide{
    margin-left: 10px;
    margin-right: 10px;
    height: inherit !important;
}

.slider__single-slide{
    background-color: #fff;
}

.slider__single-slide-content{
    padding:20px;  
}

.slider__single-slide h2{
    margin: 0 0 10px 0;
}

/* footer */

footer{
    color:#fff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer__social{
    margin-bottom: 20px;
}

.footer__social a{
    background-color: #fff;
    border-radius: 4px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    display: inline-block;
    margin: 0 5px;
    padding: 9.5px 9px;
}

.footer__social img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}


.video-modal{
    width: 100%;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #000000c9;
    z-index: 9;
    transition-duration: 0.3s;
}

body.show-video .video-modal{
    opacity: 1;
    visibility: visible;
}

#open-video{
    appearance: none;
    cursor: pointer;
}


#video-modal__close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    cursor: pointer;
    height: 20px;
}

#video-modal__close span{
    display: block;
    width: 20px;
    border-bottom: 3px solid white;
}

#video-modal__close span:nth-child(1){
    transform:rotate(45deg) translate(10px, 8px);
}

#video-modal__close span:nth-child(2){
    transform:rotate(-45deg) translate(-6px, 8px);
}

@media(min-width:768px){

    .btn{
        padding: 9px 25px;
        font-size: 20px;
        border-radius: 30px;
    }

    p{
        font-size: 22px;
    }

    .content-container {
        max-width: 780px;
    }

    .content-container--full-width{
        max-width: 100%;
    }

    .main-content{
        background: #4c004c url('../img/1920px.jpg') no-repeat center center;
        padding-top: 130px;
    }   

    .main-content .btn{
        font-size: 16px;
    }

    .banner-content img{
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-content h1{
        font-size: 38px;
    }

    .main-content__download-buttons{
        max-width: 390px;
    }

}

@media(min-width:1100px){

    .header__menu-button,
    .header__menu-dropdown{
        display: none;
    }

    .header-main-nav{
        display: flex;
    }

    .header-main-nav ul{
        display: flex;
    }

    .header-main-nav a{
        padding: 10px 15px;
    }

    .content-container{
        max-width: 1100px;
    }

    .content-container--full-width{
        max-width: 1200px;
    }
    
    .main-content{
        background:#4c004c url('../img/1920px.jpg') no-repeat center center
    }

    .main-content h1 br{
        display: none;
    }

    .banner-content img {
        max-width: 990px;
    }

}

@media(min-width:1300px){
    
    .slider-wrapper .content-container--full-width{
        max-width: 100%;
    }
}