@import 'reset.css';

.a-body, html {
    font-family: 'Avenir Next Cyr Regular', sans-serif;
    font-size: 14px;
    color: #0e0e0f;
    overflow-x: hidden;
    max-width: 100vw;
}
.a-button {
    width: 200px;
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 48px;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
    color: white;
    background: #8fae38;
    border: 0;
    height: 48px;
    padding: 0 15px;
    border-radius: 24px;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    transition: 300ms;
    cursor: pointer;
    text-align: center;
}
.a-button:hover {
    background: #acd244;
}
.a-button--gradient {
    background: linear-gradient(to left, #c0df4b, #8fae38 );
}
.a-button--gradient:hover {
    background: linear-gradient(to left, #c0df4b, #acd244 );
}
.a-button--arrow::before, .a-button--arrow::after {
    content: '';
    background: rgba(143,174,56, 0.35);
    background-size: auto 12px;
    width: 38px;
    height: 38px;
    position: absolute;
    border-radius: 20px;
    right: 5px;
    top:5px;
    z-index: 1;
}
.a-button--light {
    background: #acd244;
}
.a-button--light:hover {
    background: #c0df4b;
}
.a-button--arrow::after {
    background: none;
    border-top:3px solid #fff;
    border-right: 3px solid #fff;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translateY(-50%);
    top:48%;
    right: 23px;
    z-index: 2;
    border-radius: 0;
}
.a-button--arrow {
    padding-left: 0;
}
.a-highlight--green {
    color: #8fae38;
}
.a-section {
    position: relative;
    z-index: 3;
    padding: 42px 0;
}
.s-section-title {
    font-size: 34px;
    font-family: 'Avenir Next Cyr Heavy', sans-serif;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 23px;
}
.s-section-title span {
    display: block;
}
.s-section-title--small {
    font-family: 'Avenir Next Cyr Demi', sans-serif;
    line-height: 1.5;
    font-weight: normal;
    font-size: 22px;
    text-transform: uppercase;
}
.a-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}
.a-main {
    position: relative;
    z-index: 2;
}
.a-header {
    width: 100%;
    background: #fff;
    box-shadow: 4px 0 10px rgba(52,52,52,0.15);
    position: fixed;
    top:0;
    left: 0;
    z-index: 3;
}
.a-header-container {
    display: flex;
    height: 90px;
    justify-content: space-between;
    align-items: center;
}
.a-header__burger-menu {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 300ms;
    cursor: pointer;
}
.a-header__menu-overlay {
    display: none;
}
.a-header__burger-menu--open .a-header-burger-menu__icon-bar:nth-child(1) {
    transform: rotate(45deg);
    top: -2px;
    left: 5px;
}
.a-header__burger-menu--open .a-header-burger-menu__icon-bar:nth-child(2) {
    width: 0;
    opacity: 0;
}
.a-header__burger-menu--open .a-header-burger-menu__icon-bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
    left: 5px;
}
.a-header-burger-menu__icon-bar {
    display: block;
    position: absolute;
    height: 3px;
    border-radius: 3px;
    width: 30px;
    background: #8fae38;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s;
}
.a-header-burger-menu__icon-bar:nth-child(1) {
     top: 0px;
     -webkit-transform-origin: left center;
     transform-origin: left center;
 }
.a-header-burger-menu__icon-bar:nth-child(2) {
     top: 9px;
     -webkit-transform-origin: left center;
     transform-origin: left center;
 }
.a-header-burger-menu__icon-bar:nth-child(3) {
     top: 17px;
     -webkit-transform-origin: left center;
     transform-origin: left center;
 }
.a-header__logo-image {
    width: 241px;
}
.a-header__menu-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.a-header__menu-item {
    margin: 0 11px;
}
.a-header__menu-link {
    font-family: 'Avenir Next Cyr Demi', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.005em;
    color: #0e0e0f;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.a-header__menu-link::after {
    content: '';
    width: 0;
    height: 4px;
    background: #c0df4b;
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    transition: 200ms;
}
.a-header__menu-link--active::after {
    width: 100%;
}
.a-header__login {
    font-family: 'Avenir Next Cyr Demi', sans-serif;
    color: #000;
    font-size: 13px;
    line-height: 22px;
    text-decoration: none;
    text-transform: uppercase;
}
.a-header__login-link {
    color: #000;
    font-size: 12px;
    line-height: 22px;
    text-decoration: none;
    text-transform: uppercase;
}
.a-header__login-link:hover {
    color: #8fae38;
}

/* Main */
.s-main-section {
    background: #f5f5f5;
    padding: 0;
}
.s-main-container {
    padding-top: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 650px;
    box-sizing: border-box;
    background: url("img/clouds/cloud_1.svg") 58% 21% / 90px auto no-repeat,
                url("img/clouds/cloud_2.svg") 99% 11%/ 125px no-repeat,
                url("img/clouds/cloud_3.svg") 52.5% 94%/ 135px no-repeat,
                url("img/clouds/cloud_4.svg") 100% 100.5%/ 220px no-repeat;

}
.s-main__content {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.s-title-main {
    font-size: 32px;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: 'Avenir Next Cyr Heavy', sans-serif;
    margin: 0 0 10px;
    max-width: 600px;
}
.s-main__subtitle {
    font-size: 17px;
    max-width: 510px;
    line-height: 1.4;
    margin-bottom: 40px;
}
.s-main__compliance {
    width: 520px;
    height: 520px;
    margin: 0 25px 15px 0;
    background: url("img/main_bg.svg") center / cover  no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
    font-size: 23px;
    line-height: 1.3;
    text-align: center;
    color: #7f7f7f;
}
.s-main__compliance-item--news {
    margin-bottom: 25px;
}

/*who-we-are*/
.s-who-we-are-section {
    padding: 42px 0 57px;
}
.s-who-we-are__description {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 35px;
}
.s-who-we-are__description p {
    margin: 0 0 15px;
}
.s-who-we-are__blocks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}
.s-who-we-are__blocks-item {
    width: 370px;
    padding-left: 38px;
    box-sizing: border-box;
    background: url("img/check.svg") top left / 30px auto no-repeat;
}
.s-who-we-are__blocks-title {
    font-size: 17px;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
    color: #8fae38;
    line-height: 1.3;
    margin-bottom: 10px;
    padding-top: 3px;
}
.s-who-we-are__blocks-description {
    font-size: 16px;
    line-height: 1.35;
    color: #000;
    margin-bottom: 15px;
}
.s-who-we-are__slider {
    padding: 0 100px;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.s-who-we-are__slide-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.s-who-we-are__slide-description {
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    max-width: 770px;
    margin: 0 auto;
}
.s-who-we-are__slider .slick-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 20px;
    top:36%;
    background: #fff;
    border: 2px solid #8fae38;
    border-radius: 20px;
    font-size: 0;
    color: #fff;
    transition: 200ms;
    cursor: pointer;
    z-index: 1;
}
.s-who-we-are__slider .slick-arrow:hover {
    background: #8fae38;
}
.s-who-we-are__slider .slick-arrow::before {
    content: '';
    background: none;
    display: block;
    border-top:2px solid #000;
    border-left: 2px solid #000;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg);
    position: absolute;
    top:35%;
    left: 43%;
    z-index: 1;
}
.s-who-we-are__slider .slick-next {
    left: auto;
    right: 20px;
}
.s-who-we-are__slider .slick-next::before {
    transform: rotate(135deg);
    left: 31%;
}
.s-who-we-are__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.s-who-we-are__button {
    width: 220px;
    margin: 10px 15px;
}

/* s-how-in-works-section */

.s-how-in-works-section {
    background: #f5f5f5;
    padding: 33px 0 67px;
    overflow: hidden;
}
.s-how-in-works-section::before, .s-how-in-works-section::after {
    content: '';
    width: 765px;
    height: 287px;
    background: url("img/how-in-works_bg.png")  center / cover no-repeat;
    position: absolute;
    top:-30px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 1;
}
.s-how-in-works-section::after {
    top: auto;
    bottom: -37px;
    left: auto;
    right: 19%;
    transform: rotate(180deg) translateX(-50%);
}
.s-how-in-works-container {
    position: relative;
    z-index: 2;
}
.s-how-in-works__blocks {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 40px 0 0;
}
.s-how-in-works__block {
    border-top: 7px solid #8fae38;
    border-radius: 5px 5px 0 0;
    width: 270px;
    box-shadow: 4px 6px 8px rgba(0,0,0,0.1);
    padding: 26px 20px 30px;
    background: #fff;
    box-sizing: border-box;
}

.s-how-in-works__block-title {
    font-size: 20px;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
    line-height: 1.4;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}
.s-how-in-works__block-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 1px;
    width: 60px;
    background: #d9dad6;
    z-index: 1;
}
.s-how-in-works__block-descroption {
    font-size: 15px;
    line-height: 1.5;
}

/*covered-industries-section*/

.s-covered-industries-section {
    padding: 51px 0 20px;
}
.s-covered-industries__blocks {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 33px;
}
.s-covered-industries__block {
    width: 270px;
    height: 140px;
    background: #f5f5f5;
    border-radius: 5px;
    margin:0 30px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.s-covered-industries__block:nth-child(4n+4) {
    margin-right: 0;
}
.s-covered-industries__block-icon {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}
.s-covered-industries__block-name {
    font-family: 'Avenir Next Cyr Demi', sans-serif;
    font-size: 20px;
}

/* Reviews */

.s-reviews-section {
    padding: 11px 0 60px;
}
.s-reviews__slider {
    padding: 0 50px 40px;
}
.s-reviews__slider .slick-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    top:37.5%;
    background: none;
    border: 0;
    padding: 0;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(-45deg);
    font-size: 0;
    color: #fff;
    transition: 200ms;
    cursor: pointer;
    z-index: 1;
}
.s-reviews__slider .slick-arrow:hover {
    border-color: #8fae38;
}
.s-reviews__slider .slick-next {
    left: auto;
    right: 20px;
    transform: rotate(135deg);
}
.s-reviews__slider  .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.s-reviews__slider  .slick-dots li button{
  margin: 0 7px;
    border: 0;
    background: #cfcfcf;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    transition: 200ms;
    font-size: 0;
    color: #cfcfcf;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
}
.s-reviews__slider  .slick-dots li:hover button{
    background: #acd244;
}
.s-reviews__slider  .slick-dots li.slick-active button{
 background: #8fae38;
}
.s-reviews__slide, .s-reviews__slider .slick-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
.s-reviews__slide-user {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 250px;
    min-width: 250px;
}
.s-reviews__slide-use-photo {
    width: 120px;
    height: auto;
    border-radius: 120px;
    display: block;
    margin: 0 20px 0 0;
}
.s-reviews__slide-user-name {
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
}
.s-reviews__slide-user-profession {
    font-size: 16px;
    color: #8fae38;
    font-family: 'Avenir Next Cyr Medium', sans-serif;
    line-height: 1.5;
}
.s-reviews__review {
    max-width: 730px;
    border-top: 7px solid #8fae38;
    border-radius: 5px;
    box-shadow: 7px 7px 12px rgba(0,0,0,0.15);
    padding: 87px 28px 55px;
    background: #fff;
    box-sizing: border-box;
    font-size: 17px;
    font-family: 'Avenir Next Cyr Medium', sans-serif;
    font-style: italic;
    line-height: 1.5;
    position: relative;
}
.s-reviews__review::before {
    content: '"';
    font-size: 54px;
    position: absolute;
    top:20px;
    left: 20px;
}

/* s-stay-informed-section */

.s-stay-informed-section {
    background: #8fae38;
    padding: 28px 0 67px;
}
.s-stay-informed-title {
    color: #fff;
}
.s-stay-informed-title .a-highlight--green {
    color: #fff;
}
.s-stay-informed__info {
    background: #fff;
    padding: 15px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;
    border-radius: 250px;
    margin-top: 44px;
    box-sizing: border-box;
}
.s-stay-informed__info-description {
    max-width: 800px;
    font-family: 'Avenir Next Cyr Bold', sans-serif;
    font-size: 22px;
    line-height: 1.6;
}

/* Footer */

.a-footer {
     padding: 25px 0 25px;
     text-align: center;
 }
.a-section.a-footer {
    position: relative;
    z-index: 1;
}
.a-footer__logo {
    margin-bottom: 22px;
    display: inline-block;
}
.a-footer__logo__logo-image {
    width: 330px;
}
.a-footer-copyright, .a-footer-copyright a{
    font-size: 14px;
    color: #9c9b9b;
}
.a-footer-copyright a:hover {
    text-decoration: none;
}

@media (max-width: 1200px) {
    .a-section {
        position: relative;
        z-index: 3;
        padding: 33px 0;
    }
    .a-container {
        max-width: 993px;
    }
    .s-section-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
    .s-section-title--small {
        font-size: 20px;
    }
    .a-header {
        padding: 15px 0 25px;
    }
    .a-header-container {
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        height: auto;
    }
    .a-header__logo {
        margin-bottom: 15px;
    }
    .a-header__login {
        position: absolute;
        right: 15px;
        top: 0;
    }
    .s-main-section {
        padding: 0;
    }
    .s-main-container {
        padding-top: 155px;
        background: url("img/clouds/cloud_1.svg") 48% 30% / 90px auto no-repeat,
        url("img/clouds/cloud_2.svg") 99% 22%/ 125px no-repeat,
        url("img/clouds/cloud_3.svg") 41.5% 96%/ 135px no-repeat,
        url("img/clouds/cloud_4.svg") 106% 100%/ 220px no-repeat;
    }
    .s-main__compliance {
        min-width: 460px;
        width: 460px;
        height: 460px;
        background-size: 100% auto;
        margin-right: 35px;
        font-size: 21px;
    }
    .s-title-main {
        font-size: 30px;

    }
    .s-main__subtitle {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .s-who-we-are-section {
        padding: 33px 0 49px;
    }
    .s-who-we-are__description {
        margin-bottom: 29px;
    }
    .s-who-we-are__blocks-item {
        padding: 34px 0 0;
        width: 300px;
    }
    .s-who-we-are__blocks {
        margin-bottom: 20px;
    }
    .s-who-we-are__slider {
        padding: 0 60px;
        margin-bottom: 25px;
    }
    .s-who-we-are__slider .slick-arrow {
        left: 0;
        top:35%;
    }
    .s-who-we-are__slider .slick-next {
        left: auto;
        right: 0px;
    }
    .s-who-we-are__slide-image {
        margin-bottom: 29px;
    }

    .s-how-in-works-section {
        padding-bottom: 28px;
    }
    .s-how-in-works__blocks {
        margin-top: 33px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .s-how-in-works__block {
        width: 370px;
        margin: 0 15px 32px;
        min-height: 266px;
    }
    .s-covered-industries-section {
        padding-bottom: 0;
    }
    .s-covered-industries__block:nth-child(4n+4) {
        margin: 0 30px 20px 0;
    }
    .s-covered-industries__block:nth-child(3n+3) {
        margin-right: 0;
    }

    .s-reviews-section {
        padding-bottom: 49px;
    }
    .s-reviews__slider {
        padding: 0 45px 33px;
    }
    .s-reviews__slide-user {
        max-width: 120px;
        min-width: 100px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .s-reviews__slide-use-photo {
        width: 100px;
        margin: 0 0 5px;
    }
    .s-reviews__slide-user-name {
        font-size: 18px;
    }
    .s-reviews__slide-user-profession {
        font-size: 15px;
    }
    .s-reviews__review {
        max-width: 680px;
        font-size: 16px;
        padding: 75px 21px 55px;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
    }

    .s-stay-informed-section {
        padding: 28px 0 66px;
    }
    .s-stay-informed__info {
        margin-top: 30px;
        min-height: 230px;
        border-radius: 230px;
        padding: 15px 65px;
    }
    .s-stay-informed__info-description {
        font-size: 20px;
        max-width: 600px;
    }
    .a-footer {
        padding: 30px 0 30px;
    }
    .a-footer__logo__logo-image {
        width: 275px;
    }
    .footer__logo {
        margin-bottom: 24px;
    }
}

@media (max-width: 992px) {
    .a-section {
        position: relative;
        z-index: 3;
        padding: 33px 0;
    }
    .a-container {
        max-width: 768px;
    }
    .s-section-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .s-section-title--small {
        font-size: 18px;
    }
    .a-header-container {
        max-width: 100%;
    }
    .a-header__logo-image {
        width: 220px;
    }
    .s-main-section {
        padding: 0;
    }
    .s-main-container {
        height: 575px;
        background:
                url(img/clouds/cloud_1.svg) 52% 32% / 80px auto no-repeat,
                url(img/clouds/cloud_2.svg) 100% 22%/ 110px no-repeat,
                url(img/clouds/cloud_3.svg) 44% 97%/ 120px no-repeat,
                url(img/clouds/cloud_4.svg) 110% 100%/ 170px no-repeat;
    }
    .s-main__compliance {
        min-width: 380px;
        width: 380px;
        height: 380px;
        margin-right: 0px;
        font-size: 20px;
    }
    .s-main__compliance-item--news {
        margin-bottom: 10px;
    }
    .s-title-main {
        font-size: 26px;
    }
    .s-main__subtitle {
        margin-bottom: 25px;
    }

    .s-who-we-are-section {
        padding: 33px 0 40px;
    }
    .s-who-we-are__description {
        margin-bottom: 29px;
        font-size: 15px;
    }
    .s-who-we-are__description p {
        margin-bottom: 20px;
    }
    .s-who-we-are__blocks-item {
        padding: 0 0 0 45px;
        width: auto;
        max-width: 570px;
        margin-bottom: 10px;
    }
    .s-who-we-are__blocks-description {
        font-size: 15px;
    }
    .s-who-we-are__blocks {
        margin-bottom: 15px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .s-who-we-are__slider {
        padding: 0;
        margin-bottom: 25px;
    }
    .s-who-we-are__slider .slick-arrow {
        left: 0;
        top:auto;
        bottom: 12%;
    }
    .s-who-we-are__slider .slick-next {
        left: auto;
        right: 0px;
    }
    .s-who-we-are__slide-image {
        margin-bottom: 20px;
    }
    .s-who-we-are__slide-description {
        font-size: 14px;
        max-width: 570px;
        text-align: left;
        line-height: 1.45;
    }

    .s-how-in-works-section {
        padding-bottom: 23px;
    }
    .s-how-in-works__blocks {
        margin-top: 29px;
    }
    .s-how-in-works__block {
        width: 320px;
        margin: 0 15px 32px;
        min-height: 245px;
        padding: 26px 30px 15px;
    }
    .s-how-in-works__block-title {
        font-size: 19px;
        padding-bottom: 16px;
    }
    .s-how-in-works__block-descroption {
        font-size: 14px;
        line-height: 1.45;
    }
    .s-covered-industries-section {
        padding: 44px 0 0;
    }
    .s-covered-industries__blocks {
        margin-top: 28px;
    }
    .s-covered-industries__block:nth-child(4n+4) {
        margin: 0 30px 20px 0;
    }
    .s-covered-industries__block:nth-child(3n+3) {
        margin: 0 30px 20px 0;
    }
    .s-covered-industries__block:nth-child(2n+2) {
        margin-right: 0;
    }
    .s-covered-industries__block {
        height: 130px;
    }
    .s-covered-industries__block-icon {
        height: 35px;
    }
    .s-covered-industries__block-name {
        font-size: 18px;
    }

    .s-reviews-section {
        padding:25px 0 50px;
    }
    .s-reviews__slider {
        padding: 0 0 40px;
    }
    .s-reviews__slide-user {
        max-width: 250px;
        min-width: 230px;
        flex-direction: row;
        margin-bottom: 30px;
    }
    .s-reviews__slide-use-photo {
        width: 100px;
        margin: 0 18px 0 0;
    }
    .s-reviews__review {
        max-width: 100%;
        padding: 75px 26px 55px;
        box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
    }
    .s-reviews__slide, .s-reviews__slider .slick-slide {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 10px 10px 0;
    }
    .s-reviews__slider .slick-arrow {
        top: 10%;
        left: 120px;
        width: 22px;
        height: 22px;
    }
    .s-reviews__slider .slick-next {
        left: auto;
        right: 120px;
    }
    .s-stay-informed-section {
        padding: 28px 0 66px;
    }
    .s-stay-informed__info {
        margin-top: 40px;
        min-height: 230px;
        border-radius: 230px;
        padding: 15px 50px;
    }
    .s-stay-informed__info-description {
        font-size: 18px;
        max-width: 400px;
    }
    .a-footer {
        padding: 22px 0 30px;
    }
    .a-footer__logo__logo-image {
        width: 250px;
    }
    .footer__logo {
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .a-button {
        font-size: 14px;
    }
    .a-container {
        max-width: 575px;
    }
    .s-section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .s-section-title--small {
        font-size: 16px;
    }
    .a-header {
        padding: 0;
        height: 85px;
    }
    .a-header-container {
        max-width: 100%;
        height: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .a-header__burger-menu {
        display: block;
        position: relative;
        z-index: 3;
    }
    .a-header__menu-name {
        display: none;
    }
    .a-header__menu {
        padding-top: 85px;
        position: absolute;
        top:0;
        left: -100%;
        z-index: 2;
        transition: 300ms;
    }
    .a-header__menu--open {
        left: 0;
    }
    .a-header__menu-list {
        flex-direction: column;
        background: #8fae38;
        height: calc(100vh - 85px);
    }
    .a-header__menu-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 300ms;
    }
    .a-header__menu-overlay--open {
        opacity: 1;
        visibility: visible;
        top: 85px;
        position: absolute;
        left: 0;
        z-index: 1;
        background: rgba(0,0,0,0.2);
        height: calc(100vh - 85px);
        width: 100%;
    }
    .a-header__menu-item {
        margin: 0;
        width: 100%;
    }
    .a-header__menu-link {
        font-family: 'Avenir Next Cyr Demi',sans-serif;
        text-transform: uppercase;
        color: #fff;
        font-size: 16px;
        line-height: 56px;
        padding: 0 0 0 39px;
        text-align: left;
        width: 270px;
        box-sizing: border-box;
        display: block;
        border-bottom: 1px solid #a5be60;
        border-top: 1px solid #8fae38;
    }
    .a-header__menu-link--active {
        background: #fff;
        color: #8fae38;
    }
    .a-header__menu-link::after {
        display: none;
    }
    .a-header__logo {
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .a-header__login {
        position: static;
    }
    .a-header__logo-image {
        width: 210px;
    }
    .s-main-section {
        padding: 0;
    }
    .s-main-container {
        padding-top: 110px;
        height: 730px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        background: url(img/clouds/cloud_1.svg) 10% 38% / 80px auto no-repeat,
        url(img/clouds/cloud_2.svg) 104% 8%/ 110px no-repeat,
        url(img/clouds/cloud_3.svg) -5% 96%/ 120px no-repeat,
        url(img/clouds/cloud_4.svg) 100% 100%/ 170px no-repeat
    }
    .s-main__compliance {
        min-width: 370px;
        width: 370px;
        height: 370px;
        min-height: 370px;
        margin-right: 0px;
        font-size: 19px;
    }
    .s-main__compliance-item--news {
        margin-bottom: 10px;
    }
    .s-title-main {
        font-size: 24px;
    }
    .s-main__content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        max-width: 430px;
        height: auto;
        margin-bottom: 20px;
    }
    .s-main__subtitle {
        font-size: 15px;
        margin: 0;
    }
    .s-main-container .a-button {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
    }
    .s-who-we-are-section {
        padding: 33px 0 20px;
    }
    .s-who-we-are__description {
        margin-bottom: 10px;
        font-size: 15px;
    }
    .s-who-we-are__blocks-item {
        margin-bottom: 7px;
    }
    .s-who-we-are__blocks-title {
        font-size: 16px;
    }
    .s-who-we-are__blocks-description {
        font-size: 15px;
    }
    .s-who-we-are__blocks {
        margin-bottom: 8px;
    }
    .s-who-we-are__slider .slick-arrow {
        bottom: 14%;
    }
    .s-who-we-are__slide-image {
        margin-bottom: 18px;
    }
    .s-who-we-are__slide-description {
        max-width: 435px;
    }
    .s-who-we-are__buttons {
        flex-direction: column;
    }
    .s-who-we-are__slider {
        margin-bottom: 32px;
    }
    .s-who-we-are__button {
        margin: 0 auto 20px;
        width: 200px;
    }
    .s-how-in-works-section {
        padding:22px 0 18px;
    }
    .s-how-in-works__blocks {
        margin-top: 24px;
        justify-content: space-between;
    }
    .s-how-in-works__block {
        width: 260px;
        margin: 0 0px 30px;
        min-height: 255px;
        padding: 25px 15px 15px;
    }
    .s-how-in-works__block-title {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .s-covered-industries-section {
        padding: 34px 0 0;
    }
    .s-covered-industries__blocks {
        margin-top: 28px;
    }
    .s-covered-industries__block:nth-child(4n+4) {
        margin: 0 25px 20px 0;
    }
    .s-covered-industries__block:nth-child(3n+3) {
        margin: 0 25px 20px 0;
    }
    .s-covered-industries__block:nth-child(2n+2) {
        margin-right: 0;
    }
    .s-covered-industries__block {
        width: 250px;
        height: 120px;
        margin: 0 25px 20px 0;
    }
    .s-covered-industries__block-icon {
        margin-bottom: 15px;
    }
    .s-covered-industries__block-name {
        font-size: 17px;
    }

    .s-reviews-section {
        padding:17px 0 40px;
    }
    .s-reviews__slider {
        padding: 0 0 32px;
    }
    .s-reviews__slide-user {
        margin-bottom: 35px;
        margin-left: 32px;
    }
    .s-reviews__review {
        max-width: 100%;
        padding: 62px 26px 30px;
        box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
        font-size: 15px;
        line-height: 1.55;
    }
    .s-reviews__review::before {
        top: 6px;
    }
    .s-reviews__slider .slick-arrow {
        top: 12%;
        left: 23px;
    }
    .s-reviews__slider .slick-next {
        left: auto;
        right: 23px;
    }
    .s-stay-informed-section {
        padding: 28px 0 50px;
    }
    .s-stay-informed__info {
        margin-top: 28px;
        min-height: 220px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .s-stay-informed__info-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .a-footer {
        padding: 22px 0 30px;
    }
    .a-footer__logo__logo-image {
        width: 230px;
    }
    .footer__logo {
        margin-bottom: 22px;
    }
}

@media (max-width: 575px) {
    .a-button {
        height: 46px;
    }
    .a-container {
        padding: 0 10px;
    }
    .s-section-title {
        font-size: 22px;
        margin-bottom: 11px;
    }
    .s-section-title--small {
        font-size: 15px;
    }
    .a-header {
        height: 110px;
    }
    .a-header-container {
        align-items: flex-end;
        justify-content: space-between;
        padding:0 8px 18px;
    }
    .a-header__burger-menu {
        display: block;
        position: relative;
        z-index: 3;
        width: 85px;
        text-align: right;
    }
    .a-header__menu {
        padding-top: 110px;
        width: 100%;
    }
    .a-header__menu-name {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        color: #A4A4A4;
        font-family: 'Avenir Next Cyr Medium', sans-serif;
        line-height: 20px;
    }
    .a-header__menu-list {
        height: calc(100vh - 110px);
    }
    .a-header__menu-overlay--open {
        top: 110px;
        height: calc(100vh - 110px);
    }
    .a-header__menu-item {
        margin: 0;
        width: 100%;
    }
    .a-header__menu-link {
        font-size: 16px;
        padding: 0;
        text-align: center;
        width: 100%;
        line-height: 54px;
    }
    .a-header__menu-link--active {
        background: #fff;
        color: #8fae38;
    }
    .a-header__logo {
        top: 10px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .a-header__login {
        position: static;
    }
    .a-header__logo-image {
        width: 175px;
    }
    .s-main-container {
        padding-top: 129px;
        height: 665px;
        background: url(img/clouds/cloud_1.svg) -15% 42% / 80px auto no-repeat,
        url(img/clouds/cloud_3.svg) -29% 87%/ 120px no-repeat,
        url(img/clouds/cloud_4.svg) 152% 100%/ 170px no-repeat
    }
    .s-main__compliance {
        min-width: 280px;
        width: 280px;
        height: 280px;
        min-height: 280px;
        font-size: 15px;
    }
    .s-main__compliance-item--news {
        margin-bottom: 8px;
    }
    .s-title-main {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    .s-main__subtitle {
        font-size: 14px;
    }
    .s-main-container .a-button {
        bottom: 38px;
    }
    .s-who-we-are-section {
        padding: 24px 0 23px;
    }
    .s-who-we-are__description {
        font-size: 14px;
        line-height: 20px;
    }
    .s-who-we-are__description p {
        margin-bottom: 16px;
    }
    .s-who-we-are__blocks-item {
        margin-bottom: 2px;
        padding: 27px 0 0 0;
        background-size: 25px auto;
    }
    .s-who-we-are__blocks-title {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .s-who-we-are__blocks-description {
        font-size: 14px;
        line-height: 20px;
    }
    .s-who-we-are__slider .slick-arrow {
        bottom: 0%;
        left: 24%;
    }
    .slick-next.slick-arrow {
        left: auto;
        right: 24%;
    }
    .s-who-we-are__slide-image {
        margin-bottom: 14px;
    }
    .s-who-we-are__slider {
        margin-bottom: 20px;
        padding-bottom: 50px;
    }
    .s-who-we-are__button {
        margin: 0 auto 20px;
        width: 200px;
    }
    .s-how-in-works-section {
        padding:26px 0 20px;
    }
    .s-how-in-works__blocks {
        margin-top: 19px;
        justify-content: center;
    }
    .s-how-in-works__block {
        min-height: 257px;
        padding: 25px 20px 15px;
    }
    .s-how-in-works__block-title {
        font-size: 18px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .s-covered-industries-section {
        padding: 36px 0 0;
    }
    .s-covered-industries__blocks {
        margin-top: 25px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .s-covered-industries__block {
        height: 110px;
        margin: 0 0 20px !important;
    }

    .s-reviews-section {
        padding:15px 0 40px;
    }
    .s-reviews-container {
        padding-right: 0;
    }
    .s-reviews__slider {
        padding: 0 0 34px;
    }
    .s-reviews__slide-user {
        margin-bottom: 29px;
        max-width: 200px;
        min-width: 180px;
        margin-left: 34px;
    }
    .s-reviews__slide-use-photo {
        width: 80px;
        margin-right: 10px;
    }
    .s-reviews__slide-user-name {
        font-size: 16px;
    }
    .s-reviews__slide-user-profession {
        font-size: 14px;
    }
    .s-reviews__review {
        padding: 58px 29px 35px;
        box-shadow: 3px 3px 5px rgba(0,0,0,0.15);
        font-size: 14px;
        line-height: 21px;
    }
    .s-reviews__review::before {
        top: 36px;
    }
    .s-reviews__slider .slick-arrow {
        top: 7%;
        left: 5px;
    }
    .s-reviews__slider .slick-next {
        left: auto;
        right: 15px;
    }
    .s-stay-informed-section {
        padding: 30px 0 47px;
    }
    .s-stay-informed__info {
        margin-top: 24px;
        border-radius: 10px;
        padding: 28px 20px;
    }
    .s-stay-informed__info-description {
        font-size: 15px;
        line-height: 21px;
        margin-bottom: 24px;
    }
    .a-footer {
        padding: 20px 0 20px;
    }
    .a-footer__logo__logo-image {
        width: 205px;
    }
    .footer__logo {
        margin-bottom: 14px;
    }
    .a-footer-copyright {
        font-size: 13px;
        line-height: 21px;
    }
}
