body{
    margin: 0;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    overflow-x: hidden;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
#wrapper{
    display: flex;
    flex-direction: column;
}
header{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 100;
}
.logo{
    font-size: 40px;
    font-weight: 900;
}
@media screen and (min-width: 992px) {
  .logo img{
    max-width: 130px;
  }
}
@media screen and (max-width: 991px) {
  .logo img{
    max-width: 200px;
  }
}
.main-content{
    display: flex;
    align-items: stretch;
}
.main-content .left-col, .main-content .right-col{
    flex: 1 1 50%;
    min-height: 100vh;
    max-width: 50%;
}
.main-content .right-col{
    background: #313133;
}

footer{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fafafa;
    border-top: 1px solid #e0e0e0;
}

footer .footer-links, footer .social-links{
    display: flex;
    gap: 15px;
    font-size: 1rem;
    color: #212121;
}
footer a{    
    color: #212121;
}

.info h1{
    color: #121212;
    font-size: 50px;
    font-weight: bolder;
    line-height: 1;
    white-space: pre-wrap;
    margin: 0;
}
.info h2{
    color: #121212;
    font-size: 25px;
    line-height: 1.3;
    padding-top: 20px;
    white-space: pre-wrap;
    margin: 0;
    font-weight: 400;
}

.store-images{
    display: flex;
    gap: 30px;
}
.store-images img{
    height: 45px;
}

.left-col-content{
    display: flex;
    flex-direction: column;
    height: calc(100% - 60px);
    padding: 30px;
}
.info{
    flex: 1;
    display: flex;
    padding-top: 95px;
    white-space: pre;
    flex-direction: column;
    padding-bottom: 50px;
    justify-content: center;
}

.gallery{
    display: flex;
    padding: 20px;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
.gallery-images{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 1;
}
.gallery-image{
    display: flex;
    align-items: center;
    justify-content: center;  
    z-index: 1; 
    flex-direction: column;
}

.gallery-images.slick-initialized.slick-slider .gallery-image.slick-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.gallery-image.active{
    display: block;
    z-index: 3;
}
.gallery-img{
    margin: 20px;
}
.gallery-img img{
    height: 60vh;
    max-height: 650px;
    min-height: 450px;
}

.gallery h5, .gallery h6{
    color: #9E9E9E;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}
.gallery h5{
    color: #ffffff;
}


.gallery-text{
    display: flex;
    max-width: 310px;
    flex-direction: column;
    justify-content: flex-end;
}

.lang-btn{
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    display: block;
}

.app-screen{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.app-screen img{
    max-width: 60px;
    margin-left: -10px;
    margin-right: 10px;
}
@media (max-width: 991px){
    .main-content{
        flex-direction: column;
    }
    .main-content .left-col, .main-content .right-col{
        flex: 1 1 50%;
        min-height: 70vh;
        width: 100%;
        max-width: 100%;
    }
    .left-col-content{
        padding: 20px;
        height: auto;
    }
    header{
        padding: 20px;
        position: relative;
    }
    .logo{
        font-size: 30px;        
    }
    .logo img{
        max-width: 140px;
    }
    .info{
        padding-top: 0;
    }
    .info h1{        
        font-size: 45px;       
    }
    .info h2{
        font-size: 22px;
    }
    footer{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 540px){
    .info h1{
        font-size: 30px;
    }
}