html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

body.locked {
    overflow: hidden;
}

header {
    flex: 0 0 auto;
}

main {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

hr {
    width: 100%;
    height: 3px;
    background: #DCDDEB;
}

/* BLOCK scrollTopBtn*/

.scrollTopBtn {
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000000;
    border: 3px solid #b90000;
    border-radius: 5px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: -60px;
    right: 20px;
    z-index: 10;
}

.scrollTopBtn:hover {
    color: rgb(58, 58, 58);
    border: 3px solid #570000;
}

.scrollTopBtn--show {
    opacity: 1;
    transform: translateY(-80px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

@media screen and (max-width: 768px) {
    .scrollTopBtn {
        border: 2px solid #b90000;
        width: 45px;
        height: 45px;
        bottom: -60px;
        right: 15px;
    }

    .scrollTopBtn svg {
        height: 24px;
        width: 24px;
    }

    .scrollTopBtn:hover {
        border: 2px solid #570000;
    }
}

/* BLOCK scrollTopBtn END*/

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 26px 32px;
    background-color: #9AC969;
    border-radius: 14px;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 4px 10px rgba(20, 20, 43, 0.04);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.11;
    text-align: center;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #729954;
}

@media screen and (max-width: 1060px) {
    .btn {
        padding: 18px 24px;
    }
}

/* BUTTONS END*/

/* NAVBAR */
nav {
    overflow: hidden;
}

.navbar {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar__phone {
    margin-left: auto;
}

.logo {
    margin-right: 64px;
    margin-left: -20px;
    max-width: 100px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .logo {
        margin-left: 0;
    }

    .logo__img {
        max-height: 50px;
    }
}

@media screen and (max-width: 1100px) {
    .navbar__phone {
        display: none;
    }
}

.menu {
    display: flex;
}

.menu__item {
    margin-right: 100px;
}

.menu__item:last-child {
    margin-right: 0;
}

.menu__item-link {
    color: #211F54;
    line-height: 1.66;
    transition: color 0.3s ease;
}

.menu__item-link:hover {
    color: #729954;
}

.burger {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    .logo {
        margin-right: 32px;
    }

    .menu__item {
        margin-right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .menu {
        position: fixed;
        background: #131418;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        display: none;
    }

    .menu.active {
        display: flex;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        flex-direction: column;
        pointer-events: all;
        justify-content: center;
        align-items: center;
        z-index: 22;
        animation: fade 0.1s linear;
    }

    .burger {
        display: block;
        position: relative;
        height: 20px;
        width: 30px;
        z-index: 102;
        cursor: pointer;
    }

    .burger.active-burger:before {
        background: red;
        transform: rotate(45deg);
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
        top: 8px;
    }

    .burger.active-burger:after {
        background: red;
        transform: rotate(-45deg);
        bottom: 10px;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    }

    .burger.active-burger span {
        transform: scale(0);
    }

    .burger:before,
    .burger:after {
        content: '';
        position: absolute;
        height: 2px;
        width: 100%;
        background: #729954;
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    }

    .burger:before {
        top: 0;
    }

    .burger::after {
        bottom: 0;
    }

    .burger span {
        position: absolute;
        top: 9px;
        right: 0;
        width: 100%;
        background: #729954;
        height: 2px;
        transform: scale(1);
        transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    }

    .menu__item {
        margin-top: 15px;
        margin-right: 0;
        max-width: 200px;
        width: 100%;
        font-size: 22px;
    }

    .menu__item-link {
        display: block;
        color: white;
        text-align: center;
        padding: 10px 20px;
    }
}

/* NAVBAR END*/

/* SECTION FEEDBACK */
.feedback {
    display: flex;
}

.feedback__left {
    margin-top: 40px;
}

.feedback__right {
    padding-top: 20px;
}

.feedback__left,
.feedback__right {
    width: 49.8%;
}

.feedback__head {
    font-weight: 700;
    font-size: 68px;
    line-height: 1.08;
    color: #211F54;
}

.feedback__text {
    font-size: 21px;
    line-height: 1.428;
    color: #6E7191;
    margin-top: 40px;
    max-width: 555px;
}

.feedback__text + .feedback__text {
    margin-top: 35px;
}

.feedback__btn {
    margin-top: 40px;
}

.feedback__img {
    height: 100%;
    max-width: 720px;
}

@media screen and (max-width: 1440px) {
    .feedback__img {
        width: 100%;
        height: auto;
    }

    .feedback__left {
        margin-top: 20px;
    }

    .feedback__text {
        margin-top: 20px;
    }

    .feedback__btn {
        margin-top: 20px;
    }

    .feedback__phone {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1060px) {
    .feedback__head {
        font-size: 48px;
        line-height: 1;
    }

    .feedback__text {
        font-size: 17px;
    }

    .feedback__phone_text {
        font-size: 22px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 768px) {
    .feedback {
        flex-wrap: wrap;
    }

    .feedback__left,
    .feedback__right {
        width: 99%;
    }

    .feedback__left {
        margin-top: 5px;
    }

    .feedback__text {
        margin-top: 15px;
        max-width: none;
    }

    .feedback__phone_img {
        margin-right: 15px;
    }
}

.feedback__text + .feedback__text {
    margin-top: 10px;
}

/* SECTION FEEDBACK END */

/* SECTION FORM */
.section__form {
    padding-top: 90px;
}

.section__form hr {
    margin-top: 52px;
}

.form {
    display: flex;
    position: relative;
}

.form__bg {
    position: absolute;
    width: 100%;
    height: 90%;
    background: #EFF0F7;
    z-index: -1;
    border-radius: 24px;
    top: 0;
}

.form__left {
    margin-right: 86px;
    width: 100%;
    max-width: 518px;
}

.form__right {
    min-width: 544px;
    margin-right: 70px;
}

.form__img {
    max-width: 100%;
}

.form__head {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.45;
    color: #211F54;
    margin-top: 77px;
}

.form__main {
    padding: 69px 48px 47px 48px;
    background: #FFFFFF;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
    border-radius: 16px;
    margin-top: 26px;
}

.form__fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.form__label {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.form__label:last-child {
    width: 100%;
}

.form__name {
    margin-bottom: 12px;
    line-height: 1.66;
    color: #211F54;
}

.form__input {
    width: 100%;
    height: 72px;
    font-size: 22px;
    outline: none;
    padding: 0 10px;
    background: #FFFFFF;
    border: 2px solid #EFF0F6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 16px;
}

.form__label.error input {
    border-color: #dc3545;
}

.form__label.success input {
    border-color: #28a745;
}

.form__label small {
    margin-top: 10px;
    color: #dc3545;
}

.form__button {
    display: flex;
    margin-top: 44px;
}

.form__phone {
    margin-left: 36px;
}

@media screen and (max-width: 1260px) {
    .form__right {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1060px) {
    .form__head {
        font-size: 27px;
        line-height: 1.33;
        margin-top: 30px;
    }

    .form__main {
        padding: 30px 20px 20px 20px;
        margin-top: 26px;
    }

    .form__label {
        width: 100%;
    }

    .form__right {
        min-width: 344px;
        margin-right: 70px;
    }

    .form__left {
        margin-right: 50px;
    }

    .form__name {
        margin-bottom: 1px;
    }

    .form__input {
        height: 52px;
    }

    .section__form {
        padding-top: 40px;
    }
}

@media screen and (max-width: 928px) {
    .form__head {
        font-size: 25px;
        line-height: 1.2;
    }

    .form__fields {
        justify-content: space-between;
    }

    .form__input {
        height: 50px;
    }

    .form__name {
        margin-bottom: 10px;
        line-height: 1.11;
    }

    .form__btn {
        font-size: 16px;
        padding: 12px 16px;
    }

    .form__phone {
        margin-left: 26px;
    }
}

@media screen and (max-width: 768px) {
    .form {
        flex-direction: column-reverse;
    }

    .form__right {
        margin: 10px auto 0;
        min-width: 312px;
    }

    .form__input {
        width: 100%;
        font-size: 18px;
    }

    .form__head {
        margin-top: 26px;
        font-size: 23px;
        text-align: center;
    }

    .form__fields {
        padding: 30px 0 12px 0;
    }

    .form__left {
        max-width: 100%;
        text-align: center;
    }

    .section__form {
        padding-top: 20px;
    }
}

/* SECTION FORM END */

/* BLOCK product-card */
.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 587px;
    width: 48%;
}

.product-card__head {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.41;
    color: #211F54;
}

.product-card__text {
    font-size: 21px;
    margin-top: 4px;
    line-height: 1.428;
    color: #6E7191;
}

.product-card__left {
    margin-right: 52px;
    min-width: 190px;
    display: flex;
    justify-content: end;
}

.product-card__img {
    max-width: 199px;
    width: 100%;
}

.product-card__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 342px;
    padding: 39px 32px;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 5px 6px rgba(20, 20, 43, 0.25);
    border-radius: 24px;
    height: 100%;
}

.product-card__link {
    display: block;
    position: relative;
    margin-top: 7px;
    padding-top: 14px;
    padding-bottom: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.11;
    color: #211F54;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-card__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background-color: #9AC969;
    border-radius: 0;
    transition: all 0.3s ease;
    background-image: url('../img/icons/arrow-right.svg');
}

.product-card__link-block:hover .product-card__link {
    color: #121133;
}

.product-card__link-block:hover .product-card__link::after {
    background-color: #729954;
    transform: translateX(8px);
}

@media screen and (max-width: 1250px) {
    .product-card__left {
        margin-right: 15px;
    }
}

@media screen and (max-width: 1180px) {
    .product-card {
        max-width: 48%;
    }

    .product-card__left {
        margin-right: 5px;
    }

    .product-card__right {
        width: 100%;
        max-width: 302px;
    }

    .product-card__right {
        padding: 20px 16px;
    }
}

@media screen and (max-width: 1060px) {
    .product-card__head {
        font-size: 20px;
    }

    .product-card__text,
    .product-card__link {
        font-size: 17px;
    }
}

@media screen and (max-width: 928px) {
    .product-card__left {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .product-card {
        flex-direction: column;
        width: 47%;
    }

    .product-card__right {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .product-card {
        width: 100%;
        max-width: none;
    }

    .product-card + .product-card {
        margin-top: 15px;
    }

    .product-card__right {
        text-align: left;
    }
}

.product-card--big .product-card__right {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card--big h4 {
    flex: 0 0 auto;
}

.product-card--big p {
    flex: 1 0 auto;
}

@media screen and (max-width: 1180px) {
    .product-card--big .product-card__left {
        margin-right: 20px;
    }
}

@media screen and (max-width: 928px) {
    .product-card--big .product-card__left {
        margin-right: 0;
    }

    .product-card--big .product-card__right {
        margin-top: 15px;
    }
}

/* BLOCK product-card END */

/* SECTION PRODUCTS */

.section__products {
    padding-top: 75px;
}

.section__products--big {
    padding-top: 35px;
}

.container--products {
    max-width: 1290px;
}

.products__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 50px;
    column-gap: 21px;
    row-gap: 120px;
}

.products__list--big {
    row-gap: 70px;
}

.products__head {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.208;
    text-align: center;
    color: #211F54;
}

.products__actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.products__action {
    padding: 20px 30px;
    width: 241px;
    font-weight: 900;
    font-size: 20px;
    line-height: 0.9;
    background-color: #729954;
    transition: background-color 0.3s ease;
}

.products__action:hover {
    background-color: #57753f;
}

.products__action + .products__action {
    margin-left: 170px;
}

@media screen and (max-width: 928px) {
    .products__list {
        row-gap: 60px;
    }
}

@media screen and (max-width: 740px) {
    .products__action {
        padding: 15px 20px;
        width: 47%;
        max-width: 241px;
        line-height: 1.38;
        font-size: 15px;
    }

    .products__list--big {
        row-gap: 45px;
    }
}

@media screen and (max-width: 640px) {
    .products__action + .products__action {
        margin-left: 0;
    }

    .products__actions {
        justify-content: space-around;
    }

    .products__list {
        padding-top: 25px;
    }
}

@media screen and (max-width: 410px) {
    .products__action {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* SECTION PRODUCTS END */

/* SECTION SURFACES */

.section__surfaces {
    padding-top: 85px;
}

.surfaces {
    display: flex;
}

.surfaces__left {
    min-width: 640px;
}

.surfaces__img {
    max-width: 100%;
}

.surfaces__right {
    margin-top: 60px;
    margin-left: 80px;
    margin-right: 5px;
}

.surfaces__head {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.208;
    color: #211F54;
}

.surfaces__text {
    font-size: 18px;
    line-height: 1.66;
    color: #6E7191;
    margin-top: 19px;
}

.surfaces__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-bottom: 57px;
}

.surfaces__element {
    width: 33%;
    height: 26px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.44;
    color: #211F54;
    margin-bottom: 24px;
    position: relative;
    padding-left: 35px;
}

.surfaces__element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../img/icons/check.svg');
    width: 26px;
    height: 26px;
}

.surfaces__link {
    padding: 26px 29px;
}

.section__surfaces hr {
    margin-top: 116px;
}

@media screen and (max-width: 1260px) {
    .surfaces__head {
        font-size: 36px;
        line-height: 1.25;
    }

    .surfaces__element {
        font-size: 17px;
        padding-left: 32px;
    }

    .surfaces__right {
        margin-left: 50px;
    }
}

@media screen and (max-width: 1160px) {
    .surfaces__head {
        font-size: 29px;
        line-height: 1.38;
    }

    .surfaces__text {
        font-size: 17px;
        line-height: 1.47;
        margin-top: 10px;
    }

    .surfaces__right {
        margin-top: 60px;
        margin-left: 40px;
    }

    .surfaces__left {
        min-width: 55%;
    }
}

@media screen and (max-width: 1060px) {
    .surfaces__head {
        font-size: 27px;
        line-height: 1.33;
    }

    .surfaces__text {
        font-size: 15px;
        line-height: 1.46;
    }

    .surfaces__element {
        width: 50%;
    }

    .surfaces__list {
        padding-bottom: 37px;
    }

    .surfaces__right {
        margin-left: 25px;
    }
}

@media screen and (max-width: 768px) {
    .section__surfaces {
        padding-top: 60px;
    }

    .surfaces {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .surfaces__left,
    .surfaces__right {
        width: 100%;
    }

    .surfaces__left {
        text-align: center;
        margin-top: 20px;
    }

    .surfaces__right {
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
    }

    .surfaces__element {
        width: 33%;
        font-size: 15px;
    }

    .surfaces__link {
        padding: 18px 24px;
    }

    .section__surfaces hr {
        margin-top: 66px;
    }
}

/* SECTION SURFACES END */

/* BLOCK solution-card */

.solution-card {
    display: flex;
    flex-direction: column;
    max-width: 388px;
    height: 494px;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
    border-radius: 16px;
}

.solution-card__img-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 270px;
}

.solution-card__img {
    display: block;
    max-width: 100%;
    margin-bottom: 25px;
}

.solution-card__img--factory {
    margin-bottom: 50px;
}

.solution-card__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.416;
    text-align: center;
    color: #4E6641;
}

.solution-card__text {
    font-size: 21px;
    line-height: 1.428;
    text-align: center;
    color: #6E7191;
    padding: 13px 38px 0;
}

@media screen and (max-width: 1200px) {
    .solution-card {
        width: 33%;
    }
}

@media screen and (max-width: 1000px) {
    .solution-card__name {
        font-size: 20px;
        line-height: 1.5;
    }

    .solution-card__text {
        font-size: 17px;
        line-height: 1.47;
        padding: 8px 25px 0;
    }
}

@media screen and (max-width: 768px) {
    .solution-card {
        width: 49%;
        height: 430px;
        margin-bottom: 20px;
    }

    .solution-card__img--factory {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 640px) {
    .solution-card {
        width: 99%;
    }

    .solution-card__img {
        margin-bottom: 15px;
    }
}

/* BLOCK solution-card END*/

/* SECTION solutions */

.section__solutions {
    padding-top: 98px;
}

.solutions__list {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    gap: 10px;
}

.solutions__head {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.208;
    text-align: center;
    color: #211F54;
    max-width: 1083px;
    margin: 0 auto;
}

.solutions__actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.solutions__action {
    width: 100%;
    max-width: 214px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.11;
    padding: 26px 19px;
}

.solutions__action + .solutions__action {
    margin-left: 126px;
}

.solutions__action--primary {
    background: #6E7191;
}

.solutions__action--primary:hover {
    background: #303242;
}

@media screen and (max-width: 1000px) {
    .solutions__head {
        font-size: 40px;
        line-height: 1.15;
    }
}

@media screen and (max-width: 768px) {
    .solutions__head {
        font-size: 35px;
        line-height: 1.2;
    }

    .solutions__list {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
    }

    .solutions__actions {
        margin-top: 10px;
    }
}

@media screen and (max-width: 640px) {
    .solutions__head {
        font-size: 28px;
        line-height: 1.285;
    }

    .solutions__list {
        margin-top: 0;
    }

    .solutions__action + .solutions__action {
        margin-left: 0;
    }

    .solutions__actions {
        justify-content: space-around;
        margin-top: 40px;
    }

    .solutions__action {
        padding: 15px 20px;
        width: 47%;
        max-width: 241px;
        line-height: 1.384;
        font-size: 13px;
    }
}

/* SECTION solutions END */


/* SECTION video */

.section__video {
    padding-top: 55px;
}

.video {
    max-width: 1150px;
    margin: 0 auto;
    border-radius: 21px;
    overflow: hidden;
}

.video__head {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.208;
    text-align: center;
    color: #211F54;
    max-width: 719px;
    margin: 0 auto;
    padding-bottom: 42px;
}

@media screen and (max-width: 700px) {
    .section__video {
        padding-bottom: 80px;
    }

    .video__head {
        font-size: 40px;
        line-height: 1.3;
    }
}

@media screen and (max-width: 640px) {
    .video__head {
        font-size: 25px;
        line-height: 1.2;
        padding-bottom: 22px;
    }
}

/* SECTION video END */

/* FOOTER */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
}

.footer__box {
    display: flex;
    align-items: end;
    gap: 30px;
}

.footer__head {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #211F54;
}

.footer_head-img {
    max-width: 224px;
    width: 100%;
    margin-top: -50px;
}

.footer__column-left {
    width: 45%;
}

.footer__column-right {
    flex-grow: 1;
}

.footer__text {
    font-size: 18px;
    line-height: 1.66;
    color: #6E7191;
}

.footer__img img {
    width: 100%;
    height: auto;
}


@media screen and (max-width: 1260px) {
    .footer {
        padding-left: 0;
    }
}

@media screen and (max-width: 1000px) {
    .footer__head {
        font-size: 21px;
        line-height: 1.11;
        margin-bottom: 15px;
    }

    .footer__text {
        font-size: 16px;
        line-height: 1.714;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        align-items: stretch;
        flex-direction: column-reverse;
        padding-top: 30px;
    }

    .footer__box {
        flex-direction: column-reverse;
        align-items: start;
        gap: 30px;
    }

    .footer_head-img {
        margin-top: 0;
        align-self: center;
    }

    .footer__column-left {
        width: 100%;
        margin-top: 15px;
    }

    .vjs-theme-forest .vjs-big-play-button {
        width: 200px !important;
        height: 200px !important;
        margin-top: -88px !important;
    }
}

/* FOOTER END */

/* SECTION members */

.section__members {
    padding-top: 28px;
}

.section__members hr {
    margin-top: 57px;
}

.members {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.members__card {
    width: 32%;
    padding: 12px 36px;
    background: #d8e1f0;
    border: 1px solid #EFF0F6;
    box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
    border-radius: 24px;
}

.members__head {
    font-weight: 700;
    font-size: 23px;
    line-height: 1.416;
    margin-bottom: 16px;
    color: #211F54;
}

.members__text {
    font-size: 16px;
    line-height: 1.25;
    color: #6E7191;
}

.members__text + .members__text {
    margin-top: 2px;
}

.members__text b {
    font-weight: 600;
}

@media screen and (max-width: 1080px) {
    .members__head {
        font-size: 20px;
        line-height: 1.5;
    }

    .members__text {
        font-size: 15px;
        line-height: 1;
    }
}

@media screen and (max-width: 950px) {
    .members__head {
        font-size: 18px;
        line-height: 1.5;
    }

    .members__text {
        font-size: 13px;
        line-height: 1.35;
    }

    .members__card {
        padding: 12px 25px;
    }
}

@media screen and (max-width: 768px) {
    .members {
        row-gap: 15px;
        column-gap: 15px;
        justify-content: space-around;
    }

    .members__head {
        font-size: 17px;
        line-height: 1.41;
    }

    .members__text {
        font-size: 15px;
        line-height: 1.33;
    }

    .members__card {
        min-width: 310px;
        width: 48%;
    }
}

/* SECTION members END */

/* SECTION copyright */

.section__copyright {
    padding: 32px 0;
}

.copyright {
    font-size: 21px;
    line-height: 1.428;
    text-align: center;
    color: #6E7191;
}

@media screen and (max-width: 1080px) {
    .section__copyright {
        padding: 24px 0;
    }
}

@media screen and (max-width: 768px) {
    .section__copyright {
        padding: 20px 0;
    }

    .copyright {
        font-size: 19px;
        line-height: 1.57;
    }
}

/* SECTION copyright END*/

/* BLOCK main-head*/

.main-head {
    font-weight: 700;
    font-size: 68px;
    line-height: 1.09;
    color: #9AC969;
}

.main-head span {
    color: #7D7D7D;
}

@media screen and (max-width: 1060px) {
    .main-head {
        font-size: 48px;
        line-height: 1;
    }
}

/* BLOCK main-head END*/

/* SECTION about-us */
.section__about-us hr {
    margin-bottom: 25px;
}

.about-us__main {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.about-us__left {
    max-width: 670px;
    padding-top: 40px;
}

.about-us__right {
    display: flex;
    align-items: center;
    width: 48%;
    z-index: -1;
    margin-left: 14px;
    padding-top: 40px;
}

.about-us__img {
    width: 567px;
    height: auto;
}


.about-us__subtitle {
    font-weight: 400;
    font-size: 25px;
    line-height: 1.08;
    color: #6e7191;
    margin-top: 10px;
}

.about-us__text {
    font-weight: 400;
    font-size: 21px;
    line-height: 1.43;
    color: #6E7191;
    margin-top: 19px;
}

.about-us__top-images {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.about-us__strong {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.08;
    color: #6e7191;
}

.about-us__list {
    margin-top: 18px;
    padding-left: 11px;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.19;
    color: #6e7191;
}

.about-us__elem {
    position: relative;
}

.about-us__elem::before {
    content: "•";
    position: absolute;
    top: 0;
    left: -12px;
}

.about-us__bottom-text {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.11;
    text-align: center;
    color: #6e7191;
}

.about-us__top-img {
    width: 100%;
}

.about-us__top-img--ultra {
    max-width: 328px;
}

.about-us__top-img--no-more {
    max-width: 312px;
}

@media screen and (max-width: 1260px) {
    .about-us__img {
        width: 100%;
        height: auto;
    }

    .about-us__right {
        margin-left: 0;
        display: flex;
        align-items: center;
    }

    .about-us__left,
    .about-us__right {
        width: 50%;
    }
}

@media screen and (max-width: 1060px) {
    .section__about-us {
        padding-top: 30px;
    }

    .about-us__strong {
        font-size: 21px;
    }

    .about-us__subtitle {
        font-size: 19px;
    }

    .about-us__list {
        font-size: 18px;
    }

    .about-us__bottom-text {
        font-size: 21px;
    }

    .about-us__text {
        font-size: 16px;
    }

    .about-us__left {
        width: 55%;
        padding-top: 20px;
    }

    .about-us__right {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .about-us__main {
        flex-wrap: wrap;
    }

    .about-us__left {
        max-width: none;
    }

    .about-us__left,
    .about-us__right {
        width: 99%;
    }

    .about-us__text {
        margin-top: 15px;
        max-width: none;
    }

    .section__about-us {
        padding-top: 15px;
    }
}

/* SECTION about-us END*/

/* SECTION about-desc */

.about-desc {
    font-weight: 400;
    font-size: 21px;
    line-height: 1.19;
    color: #6e7191;
}

@media screen and (max-width: 1060px) {
    .about-desc {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .about-desc {
        font-size: 16px;
    }
}

/* SECTION about-desc END*/


/* BLOCK modal*/

.modal__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
    display: none;
}

.modal__wrapper .modal {
    background: white;
    padding: 25px;
    border-radius: 5px;
    min-height: 350px;
    width: 300px;
}

.modal__wrapper .modal__title {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.08;
    color: #211F54;
    margin: 20px 0;
}

.modal__wrapper .modal__close {
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

.modal__fields {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.modal__name {
    margin-bottom: 12px;
    line-height: 1.66;
    color: #211F54;
}

.modal__label {
    display: flex;
    flex-direction: column;
}

.modal__input {
    width: 100%;
    height: 50px;
    font-size: 20px;
    outline: none;
    padding: 0 10px;
    background: #FFFFFF;
    border: 2px solid #EFF0F6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 2px 12px rgba(20, 20, 43, 0.08);
    border-radius: 16px;
}

.modal__label.error input {
    border-color: #dc3545;
}

.modal__label.success input {
    border-color: #28a745;
}

.modal__label small {
    margin-top: 10px;
    color: #dc3545;
}

.modal__main small.form-result {
    text-align: center;
}

small.form-result {
    margin-top: 10px;
    display: block;
    color: #dc3545;
    font-size: 20px;
}

small.form-result.success {
    color: #28a745;
}

.modal__action {
    width: 100%;
    margin-top: 20px;
}

/* BLOCK modal END*/

/* SECTION 404*/

.not-found__head {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.208;
    text-align: center;
    color: #211F54;
    margin-top: 50px;
}

.not-found__text {
    font-size: 21px;
    line-height: 1.428;
    color: #6E7191;
    margin-top: 40px;
}

@media screen and (max-width: 1260px) {
    .not-found__head {
        font-size: 36px;
        line-height: 1.25;
    }
}

/* SECTION 404 END*/

/* BLOCK youtube*/

.youtube-video {
    position: relative;
    margin-top: 15px;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* BLOCK youtube END*/