@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/*general*/
html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-feature-settings: 'salt' on, 'liga' off;
    color: #18191F;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, *:after, *:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
main, header, footer, aside{
    display: block;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #F5F7FF;
}
::-webkit-scrollbar-thumb {
    background: #0637A3;
}
::-webkit-scrollbar-thumb:hover {
    background: #66CFFA;
}
.ovh{
    overflow: hidden;
}
.container{
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_wrap {
    margin: auto;
}
.logo {
    height: 40px;
    margin-bottom: 20px;
}
.main_cols {
    gap: 7%;
}
.service_text {
    min-height: 72px;
}
.items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}
img, svg{
    display: block;
    max-width: 100%;
    height: auto;
}
input, button, select{
    padding: 0;
    border: none;
    outline: none;
}
a, button, svg{
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
a{
    outline: none;
    text-decoration: none;
}
ul,ol{
    margin: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
h1{
    font-weight: 800;
    font-size: 72px;
    line-height: 82px;
}
h2, .h2{
    font-weight: 800;
    font-size: 48px;
    line-height: 64px;
    text-align: center;
}
h5{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}
.text-1{
    font-size: 16px;
    line-height: 26px;
}
.text-2{
    font-size: 14px;
    line-height: 24px;
}
.blue{
    color: #0637A3;
}
.green{
    color: #B8E56B;
}
.btn{
    display: inline-block;
    padding: 12px 32px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.btn-small{
    display: inline-block;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.btn-green{
    background-color: #B8E56B;
    color: #0A1179;
}
.btn-green:hover{
    background-color: rgba(184, 229, 107, 0.8);
}
.btn-white{
    background-color: #F4F5F7;
    color: #0A1179;
}
.btn-white:hover{
    background-color: #FFFFFF;
}
.btn-blue{
    background-color: #0637A3;
    color: #FFFFFF;
}
.btn-blue:hover{
    background-color: #0A1179;
}
.tab{
    display: none;
}
.tab_active{
    display: block;
}
/*header*/
.header{
    padding: 16px 0;
    background-color: #fff;
    box-shadow: 0 1px 0 #E5E9F2;
}
.header__inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.menu{
    display: flex;
    margin: 0 auto;
}
.menu__item{
    margin: 0 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #18191F;
}
.menu__item:hover{
    color: #0637A3;
}
.lang{
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.lang-top{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lang-top:hover{
    color: #0637A3;
}
.lang-top span{
    margin-left: 10px;
}
.lang-dd{
    display: none;
    position: absolute;
    top: 100%;
    right: -10px;
    margin-top: 5px;
    padding-bottom: 2px;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.07);
    overflow: hidden;
}
.lang-dd__item{
    display: block;
    padding: 6px 12px;
    color: #0637A3;
}
.lang-dd__item.active{
    font-weight: 600;
}
.lang-dd__item:hover,
.lang-dd__item.active{
    color: #18191F;
}
.lang-dd__item:hover{
    background-color: #F4F5F7;
}
.header__btns{
    display: flex;
    margin-left: 16px;
}
.header__btns .btn-small:not(:first-child){
    margin-left: 14px;
}
/*top*/
.top{
    padding: 160px 0 197px 0;
}
.top h1{
    color: #0A1179;
}
.top h1 span{
    color: #B8E56B;
}
.top__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top__content{
    width: 100%;
    max-width: 540px;
}
.top__text{
    margin: 16px 0 32px 0;
    font-size: 18px;
    line-height: 32px;
}
/*engage*/
.engage{
    padding: 127px 0 150px 0;
    background-color: #0637A3;
}
.engage h2{
    max-width: 856px;
    margin: 0 auto;
    color: #FFFFFF;
}
.engage__inner{
    margin-top: 45px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.07);
    background-color: #fff;
    overflow: hidden;
}
.engage__controls{
    display: flex;
    justify-content: space-between;
}
.engage__control{
    width: 100%;
    max-width: 368px;
    padding: 12px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #0A1179;
    background-color: #F4F5F7;
}
.engage__control:hover,
.engage__control.active{
    background-color: #66CFFA;
}
.engage-tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    min-height: 412px;
    padding: 62px 98px 42px 82px;
}
.engage-tab__content{
    width: 100%;
    max-width: 540px;
}
.engage-tab__title{
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}
.engage-tab__text{
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 32px;
}
/*services*/
.services{
    padding: 127px 0 52px 0;
}
.services h2{
    max-width: 670px;
    margin: 0 auto;
}
.services__items{
    margin-top: 48px;
}
.services-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 350px;
    margin: 0 15px 28px 15px;
    padding: 40px 32px;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.14);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #fff;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
}
.services-item__desctiption{
    margin-top: 12px;
    margin-bottom: 40px;
}
.services-item__link{
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
}
.services-item__link span,
.services-item__link svg{
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.services-item__link span{
    margin-right: 8px;
}
.services-item__link svg{
    fill: #0637A3;
}
.services-item__link:hover span{
    margin-right: 11px;
}
.services-item:hover .blue{
    color: #FFFFFF;
}
.services-item:nth-child(1):hover{
    background-color: #66CFFA;
}
.services-item:nth-child(2):hover{
    background-color: #7360F2;
}
.services-item:nth-child(3):hover{
    background-color: #0A1179;
    color: #FFFFFF;
}
.services-item:nth-child(4):hover{
    background-color: #B8E56B;
}
.services-item:nth-child(5):hover{
    background-color: #0637A3;
    color: #FFFFFF;
}
.services-item:nth-child(6):hover{
    background-color: #66CFFA;
    color: #0A1179;
}
.services-item:hover .services-item__link svg{
    fill: #FFFFFF;
}
.services__btn{
    margin-top: 32px;
    text-align: center;
}
/*benefits*/
.benefits{
    padding: 125px 0 80px 0;
}
.benefits__items{
    margin-top: 80px;
}
.benefits-item{
    display: flex;
    width: 100%;
    max-width: 540px;
    margin: 0 15px 40px 15px;
}
.benefits-item__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    background-color: #F4F5F7;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.benefits-item__content{
    margin-left: 40px;
}
.benefits-item__list{
    margin-top: 8px;
    padding-left: 26px;
    font-size: 16px;
    line-height: 30px;
}
/*pay*/
.pay{
    padding: 22px 0 150px 0;
}
.pay h2{
    max-width: 600px;
    margin: 0 auto;
}
.pay-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 350px;
    margin: 45px 15px 0 15px;
    padding: 62px 78px;
}
.pay-item:nth-child(1){
    background-color: #66CFFA;
    -webkit-border-radius: 100% 100% 100% 0;
    -moz-border-radius: 100% 100% 100% 0;
    border-radius: 100% 100% 100% 0;
}
.pay-item:nth-child(2){
    background-color: #7360F2;
    -webkit-border-radius: 0 100% 100% 100%;
    -moz-border-radius: 0 100% 100% 100%;
    border-radius: 0 100% 100% 100%;
}
.pay-item:nth-child(3){
    background-color: #B8E56B;
    -webkit-border-radius: 100% 100% 100% 0;
    -moz-border-radius: 100% 100% 100% 0;
    border-radius: 100% 100% 100% 0;
}
.pay-item__title{
    margin-bottom: 9px;
    color: #FFFFFF;
}
.pay-item__text{
    font-size: 16px;
    line-height: 19px;
    color: #0A1179;
}
.pay-item__price{
    font-weight: 500;
    font-size: 48px;
    line-height: 64px;
    color: #0A1179;
}
.pay-item__link{
    display: inline-flex;
    align-items: center;
    margin-top: 26px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.pay-item__link span{
    margin-right: 8px;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.pay-item__link:hover span{
    margin-right: 11px;
}
/*cta*/
.cta{
    padding: 71px 0 194px 0;
    background-color: #0637A3;
}
.cta__inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.cta h2{
    margin-bottom: 32px;
    color: #FFFFFF;
    text-align: left;
}
.cta__content{
    width: 100%;
    max-width: 530px;
}
.cta__form{
    display: flex;
}
.cta-inp{
    width: 100%;
    max-width: 248px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #474A57;
    background-color: #F4F5F7;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}
.cta-btn{
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0A1179;
    background-color: #B8E56B;
    cursor: pointer;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}
/*integration*/
.integration{
    padding: 200px 0 108px 0;
    background-color: #F4F5F7;
}
.integration__stats{
    position: absolute;
    bottom: 100%;
    left: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
    padding: 32px 0;
    background-color: #FFFFFF;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.07)
}
.integration__stats-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 255px;
    padding: 40px 0;
}
.integration__stats-text{
    font-size: 18px;
    line-height: 32px;
}
.integration__items{
    align-items: center;
}
.integration__half{
    width: 100%;
    max-width: 540px;
    margin: 0 15px;
}
.integration h2{
    margin-bottom: 32px;
    text-align: left;
}
.integration-item{
    display: flex;
}
.integration-item:not(:last-child){
    margin-bottom: 48px;
}
.integration-item__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    background-color: #fff;
    -webkit-border-radius: 100% 100% 0 100%;
    -moz-border-radius: 100% 100% 0 100%;
    border-radius: 100% 100% 0 100%;
}
.integration-item__content{
    margin-left: 40px;
}
.integration-item__content .text-1{
    margin-top: 8px;
}
/*customers*/
.customers{
    padding: 62px 0 120px 0;
    background-color: #F4F5F7;
}
.customers__items{
    margin-top: 47px;
    overflow: hidden;
}
.customers-row{
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    width: -moz-fit-content;
    margin-bottom: 30px;
    transform: translate3d(0px, 0px, 0px);
}
.customers-feedback{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 445px;
    min-width: 445px;
    padding: 30px 76px 36px 80px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.07);
}
.customers-img{
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 200px;
    overflow: hidden;
}
.customers-feedback:not(:last-child),
.customers-img:not(:last-child){
    margin-right: 30px;
}
.customers-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: initial;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.customers-b-r{
    -webkit-border-radius: 300px 300px 0 300px;
    -moz-border-radius: 300px 300px 0 300px;
    border-radius: 300px 300px 0 300px;
}
.customers-b-l{
    -webkit-border-radius: 300px 300px 300px 0;
    -moz-border-radius: 300px 300px 300px 0;
    border-radius: 300px 300px 300px 0;
}
.customers-t-l{
    -webkit-border-radius: 0 300px 300px 300px;
    -moz-border-radius: 0 300px 300px 300px;
    border-radius: 0 300px 300px 300px;
}
.customers-t-r{
    -webkit-border-radius: 300px 0 300px 300px;
    -moz-border-radius: 300px 0 300px 300px;
    border-radius: 300px 0 300px 300px;
}
.customers-feedback__info{
    margin-top: 13px;
}
/*use*/
.use{
    padding: 128px 0 55px 0;
}
.use__tabs{
    margin-top: 46px;
}
.use-tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.use-tab__content{
    width: 100%;
    max-width: 492px;
    padding: 40px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(41, 41, 42, 0.07);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.use-tab__title{
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1C2C40;
}
.use-tab__text{
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 32px;
}
.use__controls{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.use__btn{
    margin: 60px 15px 0 15px;
    color: #0A1179;
    border: 1px solid #0637A3;
}
.use__btn:hover,
.use__btn.active{
    background-color: #F4F5F7;
    border: 1px solid #F4F5F7;
}
/*how*/
.how{
    padding: 121px 0 177px 0;
}
.how h2{
    max-width: 666px;
    margin: 0 auto;
}
.how__items{
    margin-top: 56px;
}
.how-item{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 255px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 50px;
}
.how-item__top{
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
}
.how-item__top > img{
    margin-left: auto;
    margin-bottom: 10px;
}
.how-item:nth-child(2) .how-item__top > img{
    margin-top: 10px;
    margin-bottom: auto;
    -webkit-transform: scaleX(-1) rotate(180deg);
    -moz-transform: scaleX(-1) rotate(180deg);
    -ms-transform: scaleX(-1) rotate(180deg);
    -o-transform: scaleX(-1) rotate(180deg);
    transform: scaleX(-1) rotate(180deg);
}
.how-item__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    background-color: #F4F5F7;
    -webkit-border-radius: 100% 100% 100% 0;
    -moz-border-radius: 100% 100% 100% 0;
    border-radius: 100% 100% 100% 0;
}
.how-item__title{
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}
.how-item a{
    font-weight: 500;
    color: #0637A3;
}
.how__btn{
    text-align: center;
}
/*contacts*/
.contacts{
    padding-bottom: 144px;
}
.contacts h2 span{
    color: #66CFFA;
}
.contacts__items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 38px;
}
.contacts-item{
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 64px;
    color: #0637A3;
}
.contacts-item img{
    margin-right: 15px;
}
/*footer*/
.footer{
    margin-top: auto;
    padding: 45px 0 32px;
    background-color: #1062AA;
}
.footer__inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer__menu{
    display: flex;
    margin-left: 34px;
}
.footer__menu-link:not(:last-child){
    margin-right: 24px;
}
.footer__menu-link{
    color: #FFFFFF;
}
.footer-socials{
    display: flex;
    margin: 0 auto;
}
.footer-socials__item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 8px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(255,255,255,0.1);
}
.footer__btns{
    display: flex;
}
.footer__btns .btn:not(:first-child){
    margin-left: 24px;
}
.to-top{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: 24px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 3px solid #66CFFA;
    cursor: pointer;
}
.footer-contacts {
    margin-top: 26px;
}
.footer__logo + .footer__logo .footer-contacts {
    margin-top: 45px;
}
.footer-contacts__title {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #E5E5E5;
}
.footer-contacts__tel, .footer-contacts__tel:hover {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-decoration: none;
    color: #F7B916;
}
.footer__logo + .footer__logo {
    text-align: right;
}
.footer__logo + .footer__logo img {
    margin-left: auto;
}
.copyrights{
    margin-top: 46px;
    padding-top: 37px;
    border-top: 1px solid #F7B916;
    color: #E5E5E5;
    font-size: 12px;
    line-height: 14px;    
}

@media all and (max-width: 1024px){
    .main_cols {
        gap: 30px;
    }
}
@media all and (max-width: 767px){
    h2, .h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h1{
        font-size: 48px;
        line-height: 54px;
    }
    .header{
        position: static;
        padding: 20px 0;
    }
    .header__logo{
        margin: 0 auto;
    }
    .lang{
        margin-left: auto;
    }
    .header__btns{
        margin-left: auto;
        margin-right: auto;
    }
    .menu{
        margin: 20px auto;
    }
    .lang-dd{
        left: 0;
        right: auto;
        z-index: 99;
    }
    .top{
        padding: 30px 0 60px 0;
    }
    .top__inner{
        flex-wrap: wrap;
    }
    .top__media{
        margin-top: 30px;
    }
    .engage{
        padding: 60px 0;
    }
    .engage-tab{
        padding: 30px;
    }
    .engage-tab__media{
        margin-bottom: 30px;
    }
    .engage__controls{
        flex-wrap: wrap;
    }
    .services{
        padding: 60px 0 0 0;
    }
    .benefits{
        padding: 60px 0;
    }
    .benefits__items {
        margin-top: 40px;
    }
    .benefits-item__content{
        margin-left: 30px;
    }
    .benefits-item:last-child{
        margin-bottom: 0;
    }
    .pay{
        padding: 0 0 60px 0;
    }
    .cta{
        padding: 60px 0;
    }
    .cta-btn{
        min-width: 175px;
        padding: 10px;
    }
    .integration{
        padding: 60px 0;
    }
    .integration__stats{
        position: static;
        margin-bottom: 40px;
        padding: 10px 0;
    }
    .integration__stats-item{
        width: 50%;
        padding: 20px 0;
    }
    .integration__stats-text{
        font-size: 14px;
        line-height: 24px;
    }
    .integration h2{
        text-align: center;
    }
    .integration__half{
        text-align: center;
    }
    .integration__half:first-child{
        margin-bottom: 45px;
    }
    .integration-item{
        flex-direction: column;
        align-items: center;
    }
    .integration-item:not(:last-child){
        margin-bottom: 30px;
    }
    .integration-item__icon{
        margin-bottom: 15px;
    }
    .integration-item__content{
        margin-left: 0;
    }
    .use{
        padding: 60px 0;
    }
    .use__btn{
        padding: 10px 20px;
    }
    .use-tab__content{
        margin-top: 15px;
        padding: 15px;
    }
    .use__controls{
        margin-top: 15px;
    }
    .use-tab__text{
        margin-bottom: 32px;
    }
    .use__btn{
        margin: 30px 15px 0 15px;
    }
    .how{
        padding: 60px 0;
    }
    .how-item{
        align-items: center;
        margin-bottom: 40px;
        text-align: center;
    }
    .how-item__top > img{
        display: none;
    }
    .contacts{
        padding-bottom: 60px;
    }
    .contacts-item{
        margin-bottom: 20px;
        line-height: 24px;
    }
    .footer{
        padding: 45px 0;
    }
    .footer__menu{
        margin-left: 0;
        margin-top: 30px;
    }
    .footer-socials{
        margin: 30px auto;
    }
    .to-top{
        margin-left: 18px;
    }
    .copyrights{
        margin-top: 30px;
    }
}
@media all and (max-width: 374px){
    .btn{
        padding: 6px 20px;
    }
    .btn-small{
        display: flex;
        align-items: center;        
        padding: 6px 12px;
    }
    .menu__item{
        margin: 0 8px;
    }
    .contacts-item{
        font-size: 20px;
    }
    .footer__inner{
        flex-direction: column;
    }
    .footer-contacts {
        margin-top: 20px!important;
    }
    .footer__logo, .footer__logo + .footer__logo {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .footer__logo + .footer__logo {
        padding-top: 30px;
    }
    .footer__logo img, .footer__logo + .footer__logo img {
        margin: 0 auto;
    }
}