* {
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
}

html{
    overflow-x: hidden;
    overflow-y: scroll;
}

.wrapper{
    font-family: 'Roboto';
    line-height: 160%;
}

a{
    text-decoration: none;
    color: #000;
}

.container{
    width: calc(100% - 380px);
    padding: 0 190px;
    margin: 0 auto;
}

/* Ink Cursor */
.goo {
    position: absolute;
    top: 0;
}


.ink-cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    mix-blend-mode: difference;
    top: 0;
    left: 0;
    z-index: 9999999;
    -webkit-filter: url("#goo");
    filter: url("#goo");
}

.ink-cursor span {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 20px;
    background-color: #BD00FF;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {

    .ink-cursor,
    .ink-cursor span {
        display: none
    }
}

/* Header */

.header{
    position: fixed;
    width: 100%;
    padding: 40px 0;
    z-index: 99;
    transition: .5s all;
    display: flex;
}

.header__scrolled{
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #dfdacb;
    padding: 20px 0;
}

.header__scrolled .button__white{
    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);
    color: #fff;
    transition: .3s all;
}

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

.logo{
    width: 160px;
    height: 85px;
}

.button__white{
    background: #FFFFFF;
    border-radius: 36px;
    padding: 10px 40px;
    color: #000;
    font-size: 18px;
    font-family: 'Rubik Mono One';
    display: flex;
    justify-content: center;
    align-items: center;
}

.button{
    transition: .6s;
}

.button:hover{
    animation: button-active .6s infinite linear;
    transform: scale(.9);
}

@keyframes button-active {
    0% {
        -webkit-box-shadow: 0 0 6px 0 #cecece, 0 0 6px 0 #c3c3c3;
        box-shadow: 0 0 6px 0 #cecece, 0 0 6px 0 #c3c3c3;
    }
    100% {
        -webkit-box-shadow: 0 0 12px 4px rgba(255,48,26,0), 0 0 4px 30px rgba(255,48,26,0);
        box-shadow: 0 0 12px 4px rgba(255,48,26,0), 0 0 4px 30px rgba(255,48,26,0);
    }
}

/* First */

.first{
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);

    display: flex;
    align-items: flex-end;

    position: relative;
    z-index: 51;

    -webkit-box-shadow: 0px 19px 80px -32px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 19px 80px -32px rgba(0,0,0,0.75);
    box-shadow: 0px 19px 80px -32px rgba(0,0,0,0.75);
}

.first:before{
    content: '';
    background: radial-gradient(50% 50% at 50% 50%, #BA02A8 0%, rgba(196, 196, 196, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.first__items-container{
    display: flex;
    justify-content: space-between;
}

.first__items-wrapper{
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.first__item{
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.first__item-title--container {
    min-height: 70px;
    margin-bottom: 35px;
}

.first__item-title{
    font-family: 'Rubik Mono One';
    color: #fff;
    font-size: 21px;
    line-height: 160%;
    padding: 10px 0;
}

.first__item-title-colored {
    background: #fff;
    color: #f3070a;
    border-radius: 30px;
    padding: 10px 30px;
}

.first__item-text{
    color: #fff;
    width: 355px;
    font-size: 18px;
    text-align: center;
}

.first__center{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    right: 0;
    /*transform: translate(0, -50%);*/
    z-index: 3;
}

.line{
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    display: flex;
    opacity: 1;
    animation: marquee 120s linear infinite;
}

.line__loaded{
    animation: marquee 120s linear infinite !important;
    opacity: 1 !important;
    transition: opacity .3s !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.line__text{
    color: #FFFFFF;
    font-size: 120px;
    font-family: 'Rubik Mono One';

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes imageScaler {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

.first__center-img{
    position: absolute;
    width: 445px;
    animation: imageScaler 3s linear infinite;
}

.first__center-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-12.58deg);
}

/* Main */

.main{
    display: flex;
}

.main__left{
    width: 1210px;
    position: relative;
}

.section{
    padding: 100px 150px 100px 190px;
}

.title{
    font-family: 'Rubik Mono One';
    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    line-height: 145.9%;
    margin-bottom: 65px;
}

.desc{
    font-size: 18px;
    max-width: 560px;
}

.big__desc{
    font-size: 18px;
    line-height: 145.9%;
    font-family: 'Rubik Mono One';
    margin-top: 150px;
}

.brands__container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.brand{
    width: 27%;
    height: 100%;
    margin-bottom: 100px;
}


.brand:nth-child(2){
    width: 24%;
    margin-bottom: 125px;
}

.brand__more{
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand__more-number{
    font-size: 49px;
    line-height: 145.9%;

    font-family: 'Rubik Mono One';
    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand__more-text{
    font-size: 21px;
    line-height: 159.9%;
}

/* Price */

.price{
    background: #F7F7F7;
    padding-bottom: 70px;
}

.about__item-wrapper{
    margin-top: 65px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about__item{
    width: 40%;
    margin-bottom: 100px;
}

.about__item-text{
    line-height: 24px;
    margin-top: 20px;
    font-size: 18px;
}

/* Ask */

.ask{
    background: #F7F7F7;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.color__button{
    background: linear-gradient(156.48deg, #308ABC 5.99%, #BD00FF 98.72%);
    border-radius: 36px;
    padding: 20px 40px;

    font-family: 'Rubik Mono One';
    font-size: 24px;
    line-height: 159.9%;
    color: #fff;
}

.color__button-little{
    font-size: 16px;
}

.color__button-big{
    margin: 70px 0 100px 0;
}

.ask__little-text{
    font-size: 18px;
    line-height: 145.9%;
    margin-bottom: 15px;
}

.ask__call-item{
    font-size: 31px;
    line-height: 145.9%;
    font-family: 'Rubik Mono One';
}

.underline{
    position: relative !important;
}

.underline:after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: .9s cubic-bezier(.86,0,.07,1);
}

.underline:hover:after{
    transition: .9s cubic-bezier(.86,0,.07,1);
    transform: scaleX(1);
}

.ask__call-item-mob:nth-child(3){
    margin-left: 100px;
}

.ask__write{
    margin-top: 60px;
}

.ask__write-buttons{
    margin-top: 50px;
    display: flex;
}

.color__button-little:nth-child(2){
    margin: 0 20px;
}

.color__button-little:nth-child(3){
    margin-right: 20px;
}

.map__info{
    margin: 100px 0 75px 0;
}

.map__info-item:nth-child(1){
    margin-bottom: 70px;
}

.map__gotous{
    display: flex;
    align-items: center;
}

.map__gotous:hover{
    text-decoration: underline;
}

.map__gotous > img{
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

/* Map */

.google__map{
    width: 100%;
    height: 620px;
}

/* Footer */

.footer{
    padding: 50px 150px 50px 190px;
}

.bigly{
    font-size: 16px;
    line-height: 145.9%;
    font-family: 'Rubik Mono One';
}

.bigly span {
    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shop */

.main__right{
    flex-grow: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;

    width: calc(100vh - 1210px);

    z-index: 50;
}

.shop{
    position: fixed;
    bottom: -15px;
    z-index: 50;

    width: 525px;
}

.textoid{
    position: fixed;
    top: 50%;
    transform: translate(0, -80%);

    z-index: 10;

    flex-direction: column;
    align-items: center;

    display: none;
}

.textoid > img{
    width: 343px;
}

.textoid > p{
    font-family: 'Rubik Mono One';

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    width: 340px;

    margin-top: 50px;

}

.textoid  span{
    font-size: 40px;
    margin-bottom: 15px;
}

.projector{
    position: fixed;
    top: 0;
    height: 100vh;

    align-items: flex-end;

    display: none;
}

.projector__img{
    height: 60%;
    position: absolute;
    transform: translate(-50%, 0);
}

.projector__1{
    animation: lightShop1 10s ease infinite;
}

.projector__2{
    animation: lightShop2 10s infinite;
    margin-right: 50px;
}

@keyframes lightShop1 {
    0% {
        -webkit-transform: rotate(-30deg) translate(-50%, 0);
        transform: rotate(-30deg) translate(-50%, 0);
    }

    50% {
        -webkit-transform: rotate(15deg) scale(.8) translate(-50%, 0);
        transform: rotate(15deg) scale(.8) translate(-50%, 0);
    }
    100% {
        -webkit-transform: rotate(-30deg) translate(-50%, 0);
        transform: rotate(-30deg) translate(-50%, 0);
    }
}

@keyframes lightShop2 {
    0% {
        -webkit-transform: rotate(40deg) translate(-50%, 0);
        transform: rotate(40deg) translate(-50%, 0);
    }

    50% {
        -webkit-transform: rotate(-30deg) scale(2) translate(-50%, 0);
        transform: rotate(-30deg) scale(2) translate(-50%, 0);
    }
    100% {
        -webkit-transform: rotate(40deg) translate(-50%, 0);
        transform: rotate(40deg) translate(-50%, 0);
    }
}

/* Modal */

.modal{
    font-family: 'Roboto';

    position: fixed;

    z-index: 999;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    display: none;
}

.form__wrapper-used{
    opacity: 0;
    transition: .3s all;
}

.form__success{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: absolute;

    display: none;
}

.modal__desc-success{
    width: 80%;
    margin: 0 auto;
}

.modal__active{
    display: flex;
}

.modal__bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;
    z-index: 5;

    background: rgba(0, 0, 0, 0.85);
}

.modal__container{
    position: relative;
    z-index: 10;
    padding: 60px 120px;

    background: linear-gradient(151.6deg, #308ABC 5.99%, #BD00FF 98.72%);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal__close{
    position: absolute;
    width: 30px;
    height: 30px;
    background: url("../img/close.svg") 50% 50% no-repeat;
    right: 40px;
    top: 40px;
    z-index: 6;
    cursor: pointer;
    transition: .3s all;
}

.modal__close:hover{
    transform: scale(.8);
}

.modal__title{
    color: #FFFFFF;
    font-size: 42px;
    line-height: 145.9%;
    margin-bottom: 30px;
    font-family: 'Rubik Mono One';
    text-align: center;
}

.modal__desc{
    color: #fff;
    font-size: 18px;
    line-height: 145.9%;
    margin-bottom: 45px;
    text-align: center;
}

.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.send-form-button{
    background: #FFFFFF;
    border-radius: 36px;
    padding: 20px 40px;
    color: #000;
    font-size: 18px;
    font-family: 'Rubik Mono One';

    border: unset;
}

.input{
    border-radius: 36px;
    border: 3px solid #3603C5;
    width: 100%;
    outline: 0;
    padding: 20px 80px 20px 30px;
}

.input__item:after{
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
    background-size: cover !important;
}

.f-name:after{
    background: url("../img/user-icon.svg") 50% 50% no-repeat;
}

.f-phone:after{
    background: url("../img/phone-icon.svg") 50% 50% no-repeat;
}

.f-phone{
    margin: 20px 0 35px;
}

.input__item{
    width: 90%;
    display: flex;
    position: relative;
}

/* Slider */

.slider {
    background: #F7F7F7;
}

.big__desc-gallery {
    margin-top: unset;
    margin-bottom: 30px;
}


.slider__wrapper{
    width: 100%;
    height: 455px;
    background: #F7F7F7;
}

.slider__wrapper-1 {
    margin-bottom: 140px;
}

.owl-nav {
    margin-top: 30px;
}

.arrow {
    width: 30px;
    transition: .6s ease all;
}

.arrow:hover {
    opacity: .4;
    scale: 1.2;
}

.arrow-left {
    transform: rotate(180deg);
    margin-right: 15px;
}

.slider__item{
    width: 575px;
    height: 455px;
    background-size: cover !important;
    display: flex;
    position: relative;
    transition: .6s ease-in-out;
    overflow: hidden;
}

.slider__item-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto !important;
}

.slider__item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125.54deg, #308ABC 5.99%, #BD00FF 98.72%);
    opacity: .3;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.slider__item:hover{
    transform: scale(.85) rotate(1.5deg);
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
}

.slider__item:hover:after{
    opacity: 0;
    transition: .6s ease-in;
}

.slider .owl-stage-outer, .slider .owl-stage, .slider .owl-item{
    height: 100%;
}

.mfp-counter{
    display: none;
}

.slider__item-video{
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider__item-video:after{
    opacity: .5;
}

.slider__item-video-content{
    position: relative;
    z-index: 6;
    width: 90%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider__item-video-icon{
    width: 117px;
    height: 117px;
    background: url("../img/play-button.svg") 50% 50% no-repeat;
    background-size: cover !important;
    margin-bottom: 50px;
}

.slider__item-video-time{
    color: #fff;
    font-size: 21px;
    line-height: 145.9%;
    margin-bottom: 5px;

    font-family: 'Rubik Mono One';
}

.slider__item-video-text{
    color: #fff;
    font-size: 16px;
    line-height: 145.9%;
    text-align: center;
}

.preloader{
    height: 100%;
    width: 100%;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #fff;

    display: flex;
    align-items: flex-end;
}

.preloader__timer{
    color: #000;
    font-family: 'Rubik Mono One';
    padding: 5%;
    font-size: 120px;
}

/* New Addons form 06.04.2023 */

.video .desc {
    margin-top: 30px;
}

.video-iframe {
    position: relative;
    width: 100%;
    margin-top: 50px;
    display: flex;
    transition: .6s ease-in-out;
}

.video-iframe-1 {
    margin-bottom: 80px;
}

.video-iframe:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125.54deg, #308ABC 5.99%, #BD00FF 98.72%);
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: .5;
    transition: .6s ease-in;
}

.video-iframe:hover {
    transform: scale(.85) rotate(1.5deg);
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.75);
}

.video-iframe:hover:after {
    opacity: 0;
}

.video-iframe .slider__item-img {
    position: static;
    height: unset;
    transform: unset;
    width: 100% !important;
}

.video-iframe .slider__item-video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Media */

@media (max-width: 1900px) {
    .section {
        padding: 100px 100px 100px 120px;
    }

    .footer{
        padding: 50px 100px 50px 120px;
    }

    .main__left{
        width: 1060px;
    }

    .container{
        width: calc(100% - 240px);
        padding: 0px 90px;
    }

    .first__item{
        width: 260px;
    }
}

@media (max-width: 1600px) {
    .shop{
        width: 310px;
        bottom: -18px;
    }

    .textoid > img{
        width: 300px;
    }

    @keyframes lightShop1 {
        0% {
            -webkit-transform: rotate(-10deg) translate(-50%, 0);
            transform: rotate(-10deg) translate(-50%, 0);
        }

        50% {
            -webkit-transform: rotate(15deg) scale(.8) translate(-50%, 0);
            transform: rotate(15deg) scale(.8) translate(-50%, 0);
        }
        100% {
            -webkit-transform: rotate(-10deg) translate(-50%, 0);
            transform: rotate(-10deg) translate(-50%, 0);
        }
    }

    @keyframes lightShop2 {
        0% {
            -webkit-transform: rotate(20deg) translate(-50%, 0);
            transform: rotate(20deg) translate(-50%, 0);
        }

        50% {
            -webkit-transform: rotate(-20deg) scale(2) translate(-50%, 0);
            transform: rotate(-20deg) scale(2) translate(-50%, 0);
        }
        100% {
            -webkit-transform: rotate(20deg) translate(-50%, 0);
            transform: rotate(20deg) translate(-50%, 0);
        }
    }

    .textoid > p{
        width: 100%;
    }

    .textoid{
        width: 300px;
    }

    .textoid > img{
        width: 240px;
    }

    .first__center{
        top: 40%;
    }
}

@media (max-width: 1400px) {
    .section {
        padding: 100px 50px 100px 60px;
    }

    .main__left {
        width: 800px;
    }

    .first__item-text{
        font-size: 16px;
        width: 100%;
    }

    .first__item-title--container {
        min-height: 60px;
    }

    .first__item-title{
        font-size: 18px;
    }

    .line__text{
        font-size: 100px;
    }

    .first__center-img{
        width: 350px;
    }

    .title{
        font-size: 28px;
    }

    .textoid > p{
        font-size: 14px;
    }

    .textoid span{
        font-size: 32px;
    }

    .brand{
        margin-bottom: 60px;
    }

    .brand:nth-child(2){
        margin-bottom: 85px;
    }

    .button__white{
        padding: 10px 35px;
        font-size: 16px;
    }

    .slider__item{
        width: 475px;
        height: 355px;
    }

    .slider__wrapper{
        height: auto;
    }

    .about__item-text{
        font-size: 16px;
    }

    .ask__call{
        display: flex;
        flex-direction: column;
    }

    .ask__call-item-mob:nth-child(3){
        margin-left: unset;
    }

    .ask__call-item-mob:nth-child(2){
        margin: 30px 0;
    }

    .first__items-wrapper{
        margin-bottom: 75px;
    }

    .ask__write-buttons{
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .color__button-little{
        margin-top: 25px;
    }

    .color__button-little:nth-child(2){
        margin-top: 25px;
    }
}

@media (max-width: 1200px) {
    .shop__anim{
        display: none !important;
    }

    .line{
        opacity: 0;
        animation: unset;
    }

    .main__right{
        width: 100%;
        position: unset;
    }

    .main__right:before{
        content: '';
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
        width: 100%;
        position: fixed;
        bottom: 0;
        height: 150px;
        left: 0;
        right: 0;
        z-index: 49;
    }

    .shop{
        width: 250px;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: -6px;
    }

    .slider__wrapper-1 {
        margin-bottom: 60px;
    }

    .main__left{
        width: 100%;
    }

    .footer{
        margin-bottom: 150px;
    }

    .first__items-container{
        flex-direction: column;
        align-items: center;
    }

    .first__item:nth-child(1){
        order: 2;
    }

    .first__item:nth-child(2){
        margin: 100px 0;
        order: 1;
    }

    .first__item:nth-child(3){
        margin: 100px 0;
        order: 3;
    }

    .first__center{
        top: 350px;
    }

    .first__items-container{
        margin-top: 450px;
    }

    .first__item{
        width: 320px;
    }

    .first__item-title--container {
        min-height: unset;
    }

    .color__button-little:nth-child(2){
        margin: 0 30px;
        margin-top: 25px;
    }

    .line__text{
        font-size: 72px;
    }

    .container{
        width: calc(100% - 110px);
        padding: 0 50px 0 60px;
    }

    .footer{
        width: calc(100% - 110px);
        padding: 50px 50px 50px 60px;
    }

    .modal__title{
        font-size: 32px;
    }

    .modal__container{
        padding: 30px 60px;
    }

    .modal__desc{
        font-size: 16px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .title{
        font-size: 24px;
        width: 90%;
    }

    .slider__item-video-icon{
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .video-iframe-1 {
        margin-bottom: 90px;
    }

    .slider__item-video-time{
        font-size: 16px;
    }

    .slider__item-video-text{
        font-size: 12px;
    }

    .desc{
        font-size: 16px;
        width: 80%;
    }

    .brand{
        width: 40%;
    }

    .brand:nth-child(2){
        width: 40%;
    }

    .slider__item{
        width: 375px;
        height: 325px;
    }

    .about__item-text{
        font-size: 14px;
    }

    .about__item:nth-child(3){
        width: 80%;
    }

    .ask__write-buttons{
        flex-direction: column;
    }

    .color__button{
        width: 230px;
        text-align: center;
    }

    .color__button-little:nth-child(2){
        margin: 25px 0 0 0;
    }

    .ask__call-item{
        font-size: 24px;
    }

    .ask__call .ask__call-item{
        font-size: 28px;
    }

    .color__button{
        font-size: 15px;
    }

    .color__button-big{
        margin-top: 0;
    }

    .brand__more-text{
        font-size: 16px;
    }

    .brand__more-number{
        font-size: 36px;
    }

    .brand__more{
        margin-bottom: 65px;
    }

    .modal__close{
        width: 20px;
        height: 20px;

        right: 10px;
        top: 10px;
    }
}

@media (max-width: 600px) {
    .logo{
        width: 100px;
        height: 53px;
    }

    .button__white{
        font-size: 12px;
        padding: 5px 20px;
    }

    .line__text {
        font-size: 50px;
    }

    .first__center-img {
        width: 240px;
    }

    .first__center-img-mob{
        width: 240px;
        height: 150px;
        background: url("../img/first-pic.png") 50% 50% no-repeat;
        background-size: cover;
    }

    .first__center {
        top: 250px;
    }

    .first__items-container {
        margin-top: 350px;
    }

    .first__item-text{
        font-size: 15px;
    }

    .first__item-title--container {
        margin-bottom: 15px;
    }

    .first__item:nth-child(2) {
        margin: 80px 0;
    }

    .slider__item{
        width: 325px;
        height: 275px;
    }

    .big__desc{
        font-size: 16px;
        line-height: 175%;
        margin-top: 60px;
    }

    .title{
        font-size: 21px;
        width: 100%;
    }

    .about__item{
        width: 80%;
    }

    .bigly{
        font-size: 12px;
    }

    .send-form-button{
        font-size: 14px;
    }

    .modal__container {
        padding: 20px 30px;
    }

    .modal__title {
        font-size: 28px;
    }

    .input__item:after{
        width: 16px;
        height: 16px;
    }

    .form{
        width: 100%;
    }

    .input{
        padding: 20px 56px 20px 20px;
    }

    .shop{
        display: none;
    }

    .shop__mob{
        width: 250px;
        height: 182px;
        /*background: url("../img/Shop-Photo.png") ;*/
        background-size: cover !important;
        position: fixed;
        left: 50%;
        transform: translate(-50%, 0);
        bottom: -6px;
        z-index: 50;
    }
}

@media (max-width: 480px) {
    .shop__mob{
        width: 220px;
        height: 160px;
    }

    .desc{
        width: 100%;
        font-size: 14px;
    }

    .section {
        padding: 100px 15px 100px 25px;
    }

    .container {
        width: calc(100% - 40px);
        padding: 0 15px 0 25px;
    }

    .footer{
        width: calc(100% - 40px);
        padding: 30px 15px 30px 25px;
        margin-bottom: 140px;
    }

    .bigly {
        font-size: 10px;
    }

    .header{
        padding: 25px 0;
    }

    .header__scrolled{
        padding: 12px 0;
    }

    .first__item-title{
        font-size: 16px;
    }

    .first__item:nth-child(2) {
        margin: 60px 0;
    }

    .brand, .brand:nth-child(2){
        width: 70%;
        margin-bottom: 80px;
    }

    .brands__container{
        justify-content: center;
    }

    .brand__more-number{
        font-size: 48px;
    }

    .brand__more-text {
        font-size: 21px;
    }

    .ask__call-item{
        font-size: 18px;
    }

    .shop {
        width: 220px;
    }

    .main__right:before{
        height: 100px;
    }

    .line__text{
        font-size: 42px;
    }

    .line{
        /*animation: marquee 80s linear infinite;*/
    }

    .line__loaded{
        animation: marquee 80s linear infinite;
    }

    .modal__title {
        font-size: 21px;
    }

    .modal__desc {
        font-size: 12px;
    }

    .send-form-button {
        font-size: 12px;
    }

    .modal__container {
        width: calc(90% - 60px);
    }

    .ask__call .ask__call-item{
        font-size: 26px;
    }
}


@media (max-width: 340px) {
    .button__white{
        font-size: 10px;
        padding: 5px 16px;
    }

    .first__center {
        top: 210px;
    }

    .first__items-container{
        margin-top: 300px;
    }

    .first__item{
        width: 90%;
    }

    .shop {
        width: 180px;
        bottom: -5px;
    }

    .color__button{
        width: 200px;
    }

    .ask__call .ask__call-item{
        font-size: 24px;
    }

    .bigly {
        font-size: 9px;
    }

    .modal__container {
        padding: 10px 20px;
        width: calc(95% - 40px);
    }
}