@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Inter:wght@400;600&family=Londrina+Outline&family=Montserrat:wght@300;400;700&display=swap');

@font-face {
    font-family: "Proxy";
    src: local("ProximaNova-Bold"), local("ProximaNova-Bold"),
    url("../font/ProximaNova-Bold.woff");
    font-weight: bold;
}
@font-face {
    font-family: "PBlack";
    src: local("ProximaNova-Black"), local("ProximaNova-Black"),
    url("../font/ProximaNova-Black.ttf");
    font-weight: bold;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    max-width: 100%;
}

body{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /*background: #E6E6E6;*/
    position: relative;
}
body:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/noise.gif") center repeat;
    opacity: .5;
    z-index: -1;
}
body:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E6E6E6;
    opacity: .9;
    z-index: 0;
}
.tip-top{
    position: relative;
    z-index: 1;
}

.container{
    max-width: 480px;
    margin: auto;
}
.yellow{
    background: #FDFF8B;
}
.blue{
    background: #9CDBFF;
}
.red{
    background: #FF9B9B;
}

.foot{
    background: #000000;

}
.foot__container{
    display: flex;
    flex-direction: row;
}
.foot__part{
    padding-left: 30px;
    padding-bottom: 40px;
    padding-top: 25px;
    width: 50%;
}
.foot--logo{
    margin-bottom: 20px;
    max-width: 156px;
    margin-right: 25px;

}
.foot__privacy{
    display: flex;
    flex-direction: column;
}
.foot__privacy a{
    margin-bottom: 21px;
    color: #ffffff;
    text-decoration: none;
}
.foot__social {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #2A2A2A;
    padding-left: 30px;
    padding-top: 25px;
}
.foot__col{
    display: flex;
    flex-direction: row;
}
.foot__social a{
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-left: 30px;
    font-weight: 600;
    text-decoration: none;
}
.foot__social a:hover{
    text-decoration: none;
}
.foot__social a:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    background-size: contain;
}
.foot__social a.in:before{
    background: url("../img/in.svg") 0 0 no-repeat;
    width: 20px;
    height: 20px;
}
.foot__social a.link:before{
    background: url("../img/link.svg") 0 0 no-repeat;
    width: 20px;
    height: 20px;
}
.foot__social a.tg:before{
    background: url("../img/tg.svg") 0 0 no-repeat;
    width: 20px;
    height: 20px;
}
.foot__copyright{
    color: #ffffff;
    border-top: 1px solid #2A2A2A;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.foot__link:hover{
    text-decoration: underline;
}
.foot__copyright p{
    max-width: 260px;
    color: #808080;
}
.foot__copyright span{
    font-weight: 600;
}
.foot .mobile-menu__list{
    display: none;
}
.foot .mobile-menu__item{
    color: #ffffff;font-size: 20px;
}
.foot .mobile-menu__item span, .foot__social a span {
    transition: .5s;
    position: relative;
}

.foot .mobile-menu__item span:before , .foot__social a span:before{
    content: '';
    width: 0%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: .5s;
}
.foot .mobile-menu__item span:hover:before , .foot__social a:hover span:before {
    width: 100%;
}
.foot .mobile-menu__item:after{
    background: url("../img/arr3.svg") center no-repeat;
    transition: .5s;

}
.foot .mobile-menu__item:hover:after{
    transform: rotateZ(45deg);
}



.review{
    padding-top: 100px;
    padding-bottom: 60px;
    background: #fff;
}
.review__container{
    max-width: 320px;

}
.review__title {
    margin-bottom: 80px;
    text-align: center;
}
.review__title span{
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-family: "Proxy", sans-serif;
}
.review__slider{

}
.review__item{
    display: flex;
    flex-direction: column;
    width: 320px;
    /*width: 100%;*/
    margin: 0 auto 100px;
}
.review__head{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.review__logo{
    width: 64px;
    height: 64px;
    border: 2px solid rgba(0,0,0,.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.review__company{
    margin-left: 30px;

}
.review__company-name{
    font-size: 24px;
    font-family: "Proxy", sans-serif;
}
.review__company-type{
    font-size: 16px;
    font-family: "Proxy", sans-serif;
    color: #cb333b;
}
.review__content{
    position: relative;
    padding-top: 35px;
    line-height: 36px;
    font-size: 16px;
}
.review__content:before{
    content: '';
    background: url("../img/quotes.svg") 0 0 no-repeat;
    width: 31px;
    height: 23px;
    position: absolute;
    top: 0;
    left: 0;
}

.contact{
    background: url("../img/grid.png") center top repeat-y;
    padding: 100px 0;
    background-size: 1400px;
}
.contact__container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.contact__title{

    margin-bottom: 33px;
}
.star-title span{
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-family: "Proxy", sans-serif;
}
.star-title span:before, .star-title span:after{
    content: '';
    position: absolute;
    top: 8px;
    background: url("../img/star.svg") 0 0 no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
}
.star-title span:before{
    left: -23px;
}
.star-title span:after{
    right: -23px;
}
.contact__list{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.contact__item{
    border-radius: 25px;
    border: 2px dashed #333;
    background: #ffffff;
    max-width: 225px;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px;
    cursor: pointer;
}
.contact__item:last-child{
    margin-bottom: 0;
}
.contact__avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.contact__avatar img{

}
.contact__name{
    font-family: "Proxy", sans-serif;
    font-size: 26px;
    margin-bottom: 10px;
}
.contact__position{
    color: #cb333b;
    margin-bottom: 20px;
    font-weight: 600;
}
.contact__separator{
    position: relative;
    width: 20px;
    height: 2px;
    background: #000;
    margin-bottom: 15px;
}
.contact__separator:before, .contact__separator:after{
    content: '';
    position: absolute;
    top: -7px;
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 50%;
}
.contact__separator:before{
    left: -16px;
}
.contact__separator:after{
    right: -16px;
}
.contact__social{
    display: flex;
    flex-direction: column;
}
.contact__link{
    margin-bottom: 10px;
    color: #000000;
    text-decoration: none;
}
.contact__link span{
    font-size: 13px;
}
.contact__link:hover span{
    text-decoration: underline;
}
.contact__link:nth-child(1):hover span{
    border-bottom: 1px dashed #000;
    text-decoration: none;
}
.contact__link img{
    position: relative;
    top: 2px;
}

.promotion{
    padding: 100px 0 50px;
}
.promotion__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
}
.promotion__article{
    width: 100%;
    padding: 25px;
    box-shadow: 6px 6px 0px 0px #000;
    border: 2px solid #000;
    border-radius: 25px;
    background: #ffffff;
}
.promotion__title{
    font-family: "Proxy", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}
.promotion__info{
    font-size: 18px;
    line-height: 39px;
}
.promotion__img{
    margin: 30px 0;
    width: 130px;
}

.about{
    padding: 50px 0 0;
}
.about__container{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about__title{
    margin-bottom: 21px;
}
.about__info{
    line-height: 32px;
    color: #222222;
    width: 100%;
    margin-bottom: 35px;
}
.about__info:last-child{
    margin-bottom: 0;
}
.head{
    padding: 29px 0;
}
.head__container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    padding: 0 20px;
}
.head__logo{
    cursor: pointer;
}
.head__logo img{

}
.head__right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.head__menu{
    /*display: none;*/
    max-width: 512px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.head__link{
    text-transform: uppercase;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    position: relative;
    transition: .2s;
}
.head__link:before{
    content: '';
    width: 0%;
    height: 2px;
    background: #000000;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: .5s;
}

.head__link:hover{
    transform: scale(1.1);
}
.head__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    display: none;
}
.head__menu{
    display: none;
}
.head__btn>a, .mobile-menu__btn>a{
    text-decoration: none;
    border-radius: 8px;
    padding: 15px 17px;
    /*line-height: 56px;*/
    box-shadow: 2px 2px 0px 0px #000;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .5s;
}
.head__login{
    background: #ffffff;
    color: #000;
}
.head__sign-up, .head__login{
    box-shadow: 2px 2px 0px #000;
    /*filter: drop-shadow(2px 2px 0px #000);*/
}
.head__sign-up:hover{
    background: #000;
    color: #fff;
}
.head__sign-up:focus, .head__sign-up:active{
    /*filter: drop-shadow(0px 0px 0px #000);*/
    box-shadow: none;
    background: #222222;
}

.head__sign-up, .mobile-menu__sign-up{
    background: #222222;
    color: #ffffff;

}
.head__login:hover{
    background: #ebebeb;
}
.head__login:focus, .head__login:active {
    box-shadow: none;
    background: #ffffff;
}

.head__sign-up img, .mobile-menu__sign-up img{
    max-width: 18px;
    margin-left: 27px;
    /*color: #fff;*/
    /*background: #000000;*/
}
.head__login, .mobile-menu__login{
    text-transform: uppercase;
    margin-right: 16px;
}
.head__login img, .mobile-menu__login img{
    max-width: 18px;
    margin-right: 10px;
}
.head__mobile-btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 2px 2px 2px #000;
    background: #fff;
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    cursor: pointer;
}
.head__mobile-btn span{
    content: '';
    width: 10px;
    height: 2px;
    background: #000000;
    margin: 0 auto 2px;
}
.head__mobile-btn span:last-child{
    margin-bottom: 0;
}



.mobile-menu.active{
    bottom: 0;
}
body.scroll-stop{
    overflow: hidden;
}
.mobile-menu{
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 35px 20px;
    bottom: 100%;
    transition: .5s;
}
.mobile-menu .mobile-menu__btn{
    display: none;
}
.mobile-menu.active .mobile-menu__btn{
    display: flex;
}
.mobile-menu__container{
    /*width: 90%;*/
    max-width: 480px;
    /*padding: 0 20px;*/
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
}
.mobile-menu__close{
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 2px 2px 2px #000;
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    font-size: 55px;
    background: url("../img/close.svg") center no-repeat;
    border-radius: 8px;
    cursor: pointer;
}
.mobile-menu__components{
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
}
.mobile-menu__list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 24px;
}
.mobile-menu__item{
    margin-bottom: 44px;
    width: 100%;
    position: relative;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}
.mobile-menu__item__footer {
    margin-bottom: 25px !important;
}
.mobile-menu__item:hover:after{
    transform: rotateZ(45deg);
}
.mobile-menu__item:after{
    background: url("../img/arr2.svg");
    background-repeat: no-repeat;
    width: 21px;
    height: 18px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    transition: .5s;
    margin-right: 12px;
}
.mobile-menu__btn{
    display: flex;
    flex-direction: row;
}
.mobile-menu__login{
    text-decoration: none;
    color: #000;
}
.mobile-menu__sign-up{
    text-decoration: none;
    color: #fff;
}

.main{
    /*padding: 100px 0;*/
    padding-bottom: 30px;
}
.main__second{
    position: relative;
    /*height: 80px;*/
}
.main__second svg:last-child{
    /*background: url(../img/mark.png) 0 0 no-repeat;*/
    background: url(../img/t_bg1.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: -1px;
    left: 2px;
    z-index: -1;
    /*min-height: 200px;*/
}
.main__second svg:last-child path{
    fill: transparent;
}

.main__title{
    display: flex;
    flex-direction: column;
}
.main__one{
    position: relative;
    /*margin-bottom: -23px;*/

}
.main__one>img{
    width: 72%;
}
.main__figure{
    display: none;
    background: url("../img/figure.svg") center no-repeat;
    position: absolute;
    top: -60px;
    right: 100px;
    width: 196px;
    height: 214px;
}
.main__three{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}
.main__three .main__stars {
    /*width: 66%;*/
    margin-left: auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.main__three .main__stars img{
    width: 66%;
}
.main__btn-container{
    display: flex;

    align-items: center;
    justify-content: center;
    position: relative;

}
.main__stars:after{
    content: '';
    position: absolute;
    top: 0;
    left: 70px;
    background: url("../img/stars 1.svg") center no-repeat;
    width: 26px;
    height: 28px;
}
.main__stars:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    background: url("../img/stars 2.svg") center no-repeat;
    height: 27px;
    width: 40px;
}
.main__btn{
    border-radius: 51px;
    border: 2px solid #000;
    background: #2AA855;
    box-shadow: 2px 2px 0px 0px #111;
    color: #FFF;
    text-align: center;
    font-weight: 800;
    padding: 18px 25px;
    cursor: pointer;
    width: 200px;
    transition: .5s;
    text-decoration: none;
}
.main__btn:hover{
    background: #218242;
}
.main__btn:focus,.main__btn:active{
    box-shadow: none;
}
.main__btn img{
    width: 15px;
    margin-left: 10px;
}

.main__container{
    padding: 0 20px;
    position: relative;
}
h1 {
    position: relative;
    /*text-align: center;*/
    font-family: "PBlack", sans-serif;
    font-style: italic;
    font-size: 46px;

}

h1 div {
    background-image: url("../img/bg2.jpg");
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
h1:after {
    text-shadow: 1px 1px 2px #000;
    color: transparent;
    -webkit-text-stroke: 1px black;
}

#hello:after {
    content: 'MARKETING';
}
.mobile-menu__top .lang{
    position: absolute;
    top: 10px;
    left: 0;
}
.lang{
    display: flex;
    flex-direction: column;
    position: relative;
    border: none!important;
    box-shadow: none!important;
    padding: 0!important;
    margin-right: 43px;
}
.lang:hover .lang__icon{
    transform: rotateZ(180deg);
}
.lang:hover .lang__list{
    opacity: 1;
}
.lang__cont{
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    position: relative;
    font-weight: bold;
}
.lang__icon{
    width: 17px;
    /*height: 8px;*/
    margin-left: 7px;
    transition: .5s;
}
.lang__list{
    opacity: 0;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    transition: .5s;

}
.lang__item{
    margin-bottom: 10px;
    color: #000000;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.lang__item.active, .lang__item.active:hover{
    text-decoration: underline;
    cursor: pointer;
}
.lang__item{
    position: relative;
}
.lang__item.active:hover:before{
    content: none;
}
.lang__item:hover:before{
    width: 100%;
}
.lang__item:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: .5s;
}
.scroll.hide{
    opacity: 0;
    transform: translateY(-100%);
}
.scroll{
    opacity: 1;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transform: translateY(0);
}
.scroll__item{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000000;
    text-decoration: none;
}
.scroll span{
    font-size: 14px;
    margin-left: 12px;
}
@media screen and (min-width: 360px) {
    h1{
        font-size: 53px;
    }
}@media screen and (min-width: 390px) {
    h1{
        font-size: 57px;
    }
}
@media screen and (min-width: 412px) {
    h1{
        font-size: 61px;
    }
}

@media screen and (min-width: 430px) {
    h1{
        font-size: 64px;
    }
}
@media screen and (min-width: 768px) {
    .container{
        max-width: 1200px;
        width: 100%;
        padding: 0 20px;
    }
    h1{
        font-size: 121px;
    }
    .main__three .main__stars img{
        width: 100%;
    }
    .main__three .main__stars:before, .main__three .main__stars:after{
        content: none;
    }
    .main__three{
        flex-direction: row;
    }
    .main__btn-container:after{
        content: '';
        position: absolute;
        top: 70px;
        left: 0;
        background: url("../img/stars 2.svg") center no-repeat;
        width: 36px;
        height: 28px;
    }
    .main__btn-container:before{
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        background: url("../img/stars 1.svg") center no-repeat;
        height: 27px;
        width: 40px;
    }
    .contact__list{
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .contact__item{
        margin: 0 18px;
        transition: .1s;
    }
    .contact__item{
        margin-bottom: 0;
        padding-bottom: 17px;
        min-height: 431px;
    }
    .contact__separator, .contact__position{
        margin-bottom: 24px;
    }
    .contact__separator:before, .contact__separator:after{
        top: -4px;
        width: 11px;
        height: 11px;
    }
    .contact__separator:before {
        left: -9px;
    }
    .contact__separator:after {
        right: -9px;
    }
    .contact__link img {
        position: relative;
        top: 5px;
        left: -2px;
        width: 22px;
    }
    .contact__link span {
        font-size: 16px;
    }
    .h-aff .contact__avatar img{
        width: 87px;
    }
    .h-pr .contact__avatar img{
        width: 80px;
        position: relative;
        left: 10px;
    }
    .h-pr{
        padding-top: 0;
    }
    .mobile-menu__item:after{
        width: 22px;
        height: 30px;
    }
    .foot__social a.in:before, .foot__social a.link:before,.foot__social a.tg:before{
        width: 24px;
    }
    .review__container{
        width: 640px;
    }
    .review__content{
        padding: 0 0 0 94px;
    }
    .review__head{
        margin-bottom: 41px;
    }
    .review__content:before{
        width: 58px;
        height: 44px;
        background-size: contain;
    }
    .slick-active{
        /*background: green;*/
        position: relative;
    }
    .slick-active:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(280deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 60%);
        z-index: 4;
    }

    .slick-center+.slick-active:before{
        transform: scaleX(-1);
    }
    .review__container{
        position: relative;
    }
    .slick-active .review__content, .slick-active .review__head{
        filter: blur(3px);
    }
    .slick-center .review__content, .slick-center .review__head{
        filter: none;
    }
    .slick-center:before, .slick-dots .slick-active:before{
        content: none;
    }
    .review__content{
        font-size: 18px;
        line-height: 40px;
    }

}
@media screen and (min-width: 820px) {
    h1{
        font-size: 129px;
    }
    .head__btn{
        display: flex;
    }
    .head__mobile-btn{
        height: 55px;
        width: 55px;
    }
    .head__mobile-btn span{
        width: 20px;
        margin-bottom: 3px;
    }
    .mobile-menu__components{
        position: relative;
    }
    .mobile-menu__btn{
        display: none;
    }
    .head__container{
        align-items: center;
    }
    .foot .mobile-menu__list{
        display: flex;
        padding-right: 30px;
    }
    .foot__privacy a{
        margin-bottom: 0;
    }
    .foot__privacy{
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 11;
        padding: 25px 20px;
        width: 100%;
        border-top: 1px solid #2A2A2A;
        display: flex;
        flex-direction: row;
    }
    .foot__link:first-child{
        margin-right: 20px;
    }
    .foot__container{
        position: relative;
        padding-bottom: 69px;
    }
    .foot--logo{
        max-width: 203px;
        margin-bottom: 50px;
        width: 100%;
    }
    .foot__part{
        padding-top: 50px;
    }
    .foot__social{
        padding-top: 137px;
    }
    .foot__social a{
        font-size: 24px;

    }
    .foot__social a:before{
        height: 100% !important;
        background-position: center center !important;
    }
    .foot__social a.tg:before{
        background-size: 24px;
    }
    .foot__social a.link:before{
        background-size: 28px;
    }
    .foot__social a.in:before{
        background-size: 28px;
    }
    .foot__copyright p{
        max-width: 560px;
    }

    .promotion__title{
        font-size: 60px;
    }
    .about__info{
        font-size: 28px;
        line-height: 49px;
        margin-bottom: 50px;
    }
    .promotion__article{
        padding: 60px 46px;
    }
    .promotion__img{
        width: 140px;
        margin: 50px auto;
    }
    .main{
        padding-top: 50px;
    }
}

@media screen and (min-width: 1024px) {
    .scroll{
        display: flex;
    }
    h1{
        font-size: 163px;
    }
    .foot__part{
        flex-direction: row;
        display: flex;
        align-items: flex-start;
    }
    .foot__privacy a{
        font-size: 16px;
        margin-bottom: 24px;
    }
    .foot__privacy{
        position: static;
        flex-direction: column;
        order: 3;
        padding-top: 100px;
        padding-left: 32px;
    }
    .foot--logo{
        height: 100%;
        align-items: flex-start;
        margin: 0;
        max-width: 320px;
        padding: 100px 50px 0;
        border-left: 1px solid #2A2A2A;
        border-right: 1px solid #2A2A2A;
        justify-content: center;
    }
    .foot--logo img{
        width: 203px;
    }
    .foot__part{
        padding: 0;
        width: 100%;
    }
    .foot__container{
        padding-bottom: 0;
    }
    .foot .mobile-menu__list{
        max-width: 392px;
        width: 100%;
        padding-top: 100px;
        order: 1;
        padding-left: 32px;
        padding-right: 32px;
        border-right: 1px solid #2A2A2A;
        padding-bottom: 100px;
    }
    .foot__social{
        padding-top: 100px;
        padding-left: 32px;
        width: 304px;
        border-right: 1px solid #2A2A2A;
    }
    .foot__copyright{
        max-width: 1460px;
        width: 100%;
        margin: auto;
        border-left: 1px solid #2A2A2A;
        border-right: 1px solid #2A2A2A;
        padding: 42px 50px;
    }
    .contact__item{
        max-width: 288px;
        width: 100%;
        padding-top: 33px;
    }
    .contact__avatar{
        margin-bottom: 26px;
        width: 130px;
        height: 130px;
    }
    .contact__avatar img{
        width: 70px;
    }
    .contact__name{
        font-size: 34px;
    }
    .contact__position{
        font-size: 18px;
    }
    .promotion__container, .about__container{
        max-width: 1204px;
    }
    .promotion__img{
        margin: 64px auto;
    }
    .about__title{
        margin-bottom: 60px;
    }
    .main__btn-container{
        width: 370px;
        padding-left: 50px;
    }
    .main__btn{
        padding: 30px 25px;
        cursor: pointer;
        width: 260px;
        letter-spacing: 2px;
        text-indent: 10px;
    }
    .main__btn img {
        width: 25px;
        margin-left: 11px;
    }
    .main__btn-container:after {
        top: 58px;
        left: 0px;
        width: 60px;
        height: 43px;
        background-size: contain;

    }
    .main__btn-container:before {
        /*bottom: -15px;*/
        /*left: 50px;*/
        height: 42px;
        width: 72px;
        background-size: contain;
        top: -50px;
        right: -33px;

    }
    .head__right{
        /*margin-right: 30px;*/
    }
    .main__three .main__stars{
        width: 65%;
    }
    .foot__container.container {
        padding: 0!important;
    }
    .about{
        padding-top: 120px;
    }
    .head__sign-up img{
        margin-left: 10px;

    }
    .review__container{
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .review__item{
        width: 700px;
        padding: 0 50px;
    }
    .review__item.slick-active:first-child{
        background: green;
    }
    .slick-center{
        background: none;
    }
    .review{
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .review__title{
        margin-bottom: 110px;
    }
    .review__item{
        width: 826px;
        padding: 0 0px;
    }
    .review__head {
        margin-bottom: 25px;
    }
    .review__content{
        padding-bottom: 50px;
    }
    .slick-dots{
        bottom: 78px!important;
    }
    .slick-prev, .slick-next{
        bottom: 71px!important;
    }
    .review__content:before{
        top: 5px;
    }
    .slick-active .review__content{
        padding-right: 50px;
    }
    .slick-track{
        min-height: 590px;
    }
}

@media screen and (min-width: 1280px) {
    h1{
        font-size: 192px;
        margin-top: -40px;
    }
    .head__menu{
        display: flex;
    }
    .head__mobile-btn{
        display: none;
    }
    .main__three .main__stars{
        margin-top: -40px;
    }
    .head__btn{
        margin-right: 0;
    }
}

@media screen and (min-width: 1440px) {
    h1{
        font-size: 193px;
        margin-top: -40px;
    }
    h1 div{
        top: -2px;

    }
    .head__container{
        max-width: 1200px;
        /*padding: 0;*/
    }
    .head__right{
        margin-right: 0;
        align-items: flex-end;
    }
    .head__btn{
        margin-right: 0;
    }
    .head__sign-up{
        /*padding: 19px 33px !important;*/
        padding: 19px 15px !important;
        letter-spacing: -1.3px;
        position: relative;
        top: -6px;
        text-decoration: none !important;
    }
    .head__login{
        /*padding: 19px 33px 19px!important;*/
        padding: 19px 15px 19px!important;
        position: relative;
        top: -6px;
        text-decoration: none !important;
    }
    .head__menu{
        /*margin: -12px 0 0 -120px;*/
        margin: -10px 0 0 -20px;

        width: 495px;
    }
    .head__logo{
        margin-top: -7px;
    }
    .main{
        padding-top: 65px;
    }
    .main__one>img {
        width: 76%;
        left: -2px;
        position: relative;
    }
    .main__three .main__stars {
        width: 69%;
        margin-top: -50px;
        right: -6px;
    }
    .main__btn{
        padding: 35px 25px;
        width: 290px;
        margin-top: -28px;
    }
    .main{
        padding-bottom: 96px;
    }
    .about{
        padding: 107px 0 0;
    }
    .about__info{
        position: relative;
        left: -7px;
        width: 101%;
    }
    .promotion{
        padding: 113px 0 80px;
    }
    .promotion__container{
        max-width: 1244px;
    }
    .promotion__article {
        padding: 48px 46px;
    }
    .promotion__info{
        margin-left: 5px;
    }
    .contact{
        padding: 92px 0 180px;
    }
    .foot .mobile-menu__item span{
        font-size: 24px;
    }
    .foot .mobile-menu__list{
        max-width: 456px;
    }
    .foot .mobile-menu__list{
        padding-bottom: 72px;
    }
    .foot__copyright{
        padding: 42px 62px 42px 50px;
    }
    .main__container:before{
        content: '';
        position: absolute;
        /*top: -60px;*/
        top: -80px;
        right: 60px;
        background: url("../img/plitka.svg") 0 0 no-repeat;
        width: 196px;
        height: 215px;
    }
    .main__btn-container{
        padding-left: 0;
    }
}

@media screen and (min-width: 1600px) {
    h1{
        font-size: 251px;
        margin-top: -50px;
        margin-left: -35px;
    }
    .main__container, .head__container{
        max-width: 1500px;
    }
    .main__container:before{
        top: -60px;
        right: 85px;
    }
    .head__login, .head__sign-up{
        padding: 19px 33px 19px!important;
    }
    h1 div{
        background-position: 7px 40px;
        width: 102%;
    }
    .foot__copyright{
        max-width: 1536px;
    }
    .foot__container{
        max-width: 1536px;
    }
    .foot--logo{
        padding: 100px 50px 0 30px;

    }
    .main__one>img {
        width: 76%;
        left: -22px;
        position: relative;
    }
}

@media screen and (min-width: 1921px) {
    .review__item{
        width: 950px;
    }
}

.outline-parent{
    font-family: "PBlack", sans-serif;
    font-style: italic;
    font-size: 140px;
}
.outline{
    /*font-family: 'Londrina Outline', sans-serif;*/
    /*font-family: 'Bowlby One SC', sans-serif;*/
    /*color: transparent;*/
    background-image: url("../img/backgrou nd.jpg");
    /*background-clip: text;*/
    background-position: 0% 0%;
    background-color: #2AA5A0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.outline-parent:after{
    content: 'MARKETING';
    color: transparent;
    text-shadow: 1px 1px 1px #000;
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../img/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../font/slick.eot');
    src: url('../font/slick.eot?#iefix') format('embedded-opentype'), url('../font/slick.woff') format('woff'), url('../font/slick.ttf') format('truetype'), url('../font/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 30px;
    display: block;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: transparent;
    width: 55px;
    height: 40px;
    border-radius: 45%;
    border: 2px solid #000;
    box-shadow: 2px 2px 1px 1px #000;
    background: url("../img/arrow.svg") center no-repeat;
    z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    /*background: transparent;*/
}


.slick-prev
{
    left: calc(50% - 175px);
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: calc(50% - 175px);
    transform: scaleX(-1);
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}

/* Dots */
.slick-dotted.slick-slider
{
    /*margin-bottom: 30px;*/
}

.slick-dots
{
    position: absolute;
    bottom: 38px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 24px;
    height: 24px;
    margin: 0 5px;
    padding: 0;
    border: 2px solid #000;
    border-radius: 50%;
    box-shadow: 2px 2px 1px 1px #000;
    cursor: pointer;
    /*display: none;*/
}

.slick-dots li.slick-active{
    display: inline-block;
    background: #2AA855;
}
.slick-active + li{
    display: inline-block;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}

