*{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
}

.banner{
    width: 100%;
    height: 100vh;
    background: url(../images/bg-desk.png) no-repeat right;
    background-size: cover;
    box-sizing: border-box;
}

.mockup{
    position: absolute;
    top: 15%;
    right: 10%;
    display: block;
}

.main-container{
    padding: 0 98px;
    max-width: 1366px;
    margin: 0 auto;
}

.content-container{
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    max-width: 480px;
}

.logo-desk{
    padding-top: 40px;
    margin-bottom: 20px;
    display: block;
}
.logo-mobile{
    display: none;
}

.title{
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    color: #385466;
    margin-bottom: 8px;
}

.stores{
    display: flex;
    column-gap: 30px;
}

.text{
    color: #4D6C80;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 103px;
}

.copyright{
    font-weight: normal;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #9CAFBA;
}

@media(max-width: 1280px){
    .mockup{
        top: 15%;
        right: 5%;
        display: block;
    }

    .logo-desk{
        margin-bottom: 0;
        display: block;
    }
    .logo-mobile{
        display: none;
    }

    .content-container{
        row-gap: 15px;
        max-width: 290px;
    }

    .stores{
        flex-direction: column;
        row-gap: 25px;
    }

    .text{
        margin-bottom: 0;
    }
}

@media(max-width: 1020px){
    .mockup{
        display: none;
    }

    .banner{
        background: none;
        height: initial;
    }

    .main-container{
        padding: 0 20px;
        text-align: center;
    }

    .title{
        font-size: 24px;
        line-height: 100%;
    }

    .text{
        font-size: 16px;
        line-height: 22px;
    }

    .content-container{
        row-gap: 40px;
        margin: 0 auto;
    }

    .logo-desk{
        display: none;
    }
    .logo-mobile{
        display: block;
        width: 100%;
    }

    .logo-mobile img{
        object-fit: cover;
        width: 100%;
        height: 100%;
        min-height: 320px;
    }
}