@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --main-text-color: #333430;
    --main-dark-bg: #181818;
}

*{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--main-text-color);
    line-height: 1.5;
}

.container{
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.logo img{
    height: 25px;
}

header{
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section{
    padding: 60px 20px;
}

.languages ul{
    display: flex;
    gap: 10px;
}

.languages img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
}

.hero{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.hero__left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__title{
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero__subtitle{
    font-size: 24px;
    margin-bottom: 35px;
}

.hero__right{
    flex: 1;
}

.hero__right img{
    max-width: 100%;
    border-radius: 10px;
}

.storeButton__wrap{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 6px;
}

.features{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featuresElement__wrap{
    display: flex;
    gap: 30px;
}

.featuresElement__icon{
    font-size: 35px;
    /* font-weight: bold; */
}

.featuresElement__title{
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}

.featuresElement__title span{
    position: absolute;
    font-size: 12px;
    background: #B8ED55;
    padding: 2px 8px;
    border-radius: 10px;
    top: -20px;
    right: 0;
}

.featuresElement__subtitle{
    font-size: 18px;
}

footer{
    background: var(--main-dark-bg);
    padding: 40px 0;
}

footer *{
    color: #fff;
}

footer section{
    padding: 20px 20px;
}

.slogan{
    
}

.slogan__wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.sloganWrap__right{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 50px;
}

.slogan img{
    height: 30px;
}

.slogan__text{
    margin-top: 20px;
    font-size: 18px;
    /* font-weight: bold; */
}

.contactInfo__wrap{
    display: flex;
    /* align-items: flex-start;
    justify-content: flex-end; */
    flex-direction: column;
    gap: 10px;
}

ul{
    list-style: none;
    padding-left: 0px;
}

ul li{
    margin-bottom: 10px;
}

.footerLink__wrap{
    display: flex;
    gap: 10px;
    align-items: center;
}

.footerLink{
    font-size: 18px;
}

.footerLink__icon{
    font-size: 18px;
}

.contactInfo__title{
    font-size: 22px;
    font-weight: bold;
}

.developedBy{
    text-align: center;
}

.developedBy i{
    padding: 0 2px;
}



.hero2{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.hero2__left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero2__title{
    font-size: 35px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero2__subtitle{
    font-size: 24px;
    margin-bottom: 35px;
}

.hero2__right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero2__right img{
    max-width: 450px;
}

@media(max-width: 1600px) {
    
}

@media(max-width: 1500px) {

}

@media(max-width: 1200px) {

}

@media(max-width: 1024px) {

}

@media(max-width: 768px) {

    .container{
        width: calc(100% - 20px);
    }

    .hero{
        gap: 10px;
        flex-direction: column;
    }

    .hero__title{
        font-size: 30px;
    }

    .hero__subtitle{
        font-size: 18px;
    }

    .storeButton__wrap{
        justify-content: center;
    }

    .features{
        grid-template-columns: 1fr;
    }

    .hero2{
        gap: 10px;
        flex-direction: column;
    }

    .hero2__title{
        font-size: 24px;
    }

    .hero2__subtitle{
        font-size: 18px;
    }

    .hero2__right img{
        max-width: 320px;
    }

    .hero2.hero2-leftImage{
        flex-direction: column-reverse;
    }

    .slogan__wrap{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section, header{
        padding: 40px 10px;
    }

    .featuresElement__wrap{
        gap: 15px;
    }

    .sloganWrap__right{
        flex-direction: column;
        gap: 15px;
    }
}

@media(max-width: 576px) {

}