@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Medium.woff2") format("woff2"), url("fonts/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

button:focus {
    box-shadow: none !important;
}

*:focus {
    outline: none;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    background: #fffffd;
    color: #1e1e1e;
    position: relative;
}

.invent__h3 {
    margin-top: 20px;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: #4f870c;


    margin-bottom: 20px;
}

body.fixed {
    overflow: hidden;
}

a {
    display: inline-block;
    font: inherit;
    color: inherit;
    transition: 300ms;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a img {
    border: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

input,
textarea,
button {
    font-family: inherit;
}

h1 {
    font-weight: 400;
    font-size: 46px;
    line-height: 130%;
    text-transform: uppercase;
    color: #4f870c;
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

h1.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 1300px) {
    h1 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 27px;
    }
}

h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    text-transform: uppercase;
    color: #4f870c;
    border-left: 5px solid #4f870c;
    padding-left: 20px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1300px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    h2 {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        border-left: 4px solid #4f870c;
        padding-left: 15px;
        line-height: 100%;
        font-size: 26px;
    }
}

.button {
    min-width: 195px;
    height: 50px;
    border-radius: 10px;
    padding: 0 30px;
    background: #4f870c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #f8f9f4;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    .button {
        min-height: 45px;
        padding: 0 20px;
        min-width: auto;
        width: 100%;
    }
}

.button:hover {
    background: #d1e5af;
    color: #4f870c;
}

.button:hover svg {
    transform: translateX(5px);
}

.button:hover svg path {
    fill: #4f870c;
}

.button svg {
    transition: 300ms;
}

.button svg path {
    transition: 300ms;
}

.button-green {
    background: #d1e5af;
    color: #4f870c;
}

.button-green:hover {
    background: #4f870c;
    color: #fff;
}

.button-green:hover svg path {
    fill: #ffffff;
}

.button-green svg path {
    fill: #4f870c;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
    .container {
        width: 970px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        width: 750px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 500;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .header {
        background: #d1e5af;
        padding: 15px 0;
    }
}

.header.dop {
    transform: translateY(-110%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 500;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .header.dop {
        background: #d1e5af;
    }
}

.header.fixed {
    transform: none;
    transition: 300ms;
}

.header__top {
    background: #d1e5af;
    padding: 15px 0;
}

@media only screen and (max-width: 991px) {
    .header__top {
        background: none;
        padding: 0;
    }
}

.header__bottom {
    background: #4f870c;
    /* padding: 30px 0; */
}

@media only screen and (max-width: 991px) {
    .header__bottom {
        display: none;
    }
}

.header__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .header__items {
        gap: 20px;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__logo-image {
    display: flex;
    width: 96px;
    min-width: 96px;
    height: auto;
}

@media only screen and (max-width: 1300px) {
    .header__logo-image {
        width: 76px;
        min-width: 76px;
    }
}

@media only screen and (max-width: 767px) {
    .header__logo-image {
        width: 66px;
        min-width: 66px;
    }
}

.header__logo-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #4f870c;
    max-width: 167px;
}

@media only screen and (max-width: 767px) {
    .header__logo-text {
        gap: 5px;
    }
}

@media only screen and (max-width: 375px) {
    .header__logo-text {
        font-size: 12px;
    }
}

.header__drop {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media only screen and (max-width: 1300px) {
    .header__drop {
        gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header__drop {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        position: fixed;
        top: -150vh;
        left: 0;
        width: 100%;
        overflow-y: auto;
        z-index: 40;
        transition: 500ms;
        height: calc(100vh - 89px);
        padding: 50px 15px 100px;
        background: #d1e5af;
    }
}

@media only screen and (max-width: 375px) {
    .header__drop {
        height: calc(100vh - 82px);
    }
}

@media only screen and (max-width: 991px) {
    .header__drop.active {
        top: 89px;
    }
}

@media only screen and (max-width: 375px) {
    .header__drop.active {
        top: 82px;
    }
}

.header__drop .header__nav {
    display: none;
}

@media only screen and (max-width: 991px) {
    .header__drop .header__nav {
        display: flex;
    }
}

.header__search form {
    position: relative;
    background: #fff;
    border-radius: 10px;
    height: 50px;
    width: 222px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 20px;
}

@media only screen and (max-width: 1300px) {
    .header__search {
        width: 198px;
    }
}

@media only screen and (max-width: 991px) {
    .header__search {
        min-height: 50px;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .header__search {
        min-height: 45px;
        height: 45px;
    }
}

.header__search input {
    width: 100%;
    height: 100%;
    border: 0;
    background: none;
    font-size: 14px;
    color: #1e1e1e;
}

.header__search input::-moz-placeholder {
    font-size: 14px;
    color: #a8a8a8;
}

.header__search input::-ms-input-placeholder {
    font-size: 14px;
    color: #a8a8a8;
}

.header__search input::placeholder {
    font-size: 14px;
    color: #a8a8a8;
}

.header__tel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__tel ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header__tel ul li a:hover {
    color: #4f870c;
}

.header__social {
    display: flex;
    gap: 14px;
}

.header__social li a {
    position: relative;
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    border-radius: 100%;
}

.header__social li a:hover img:first-child {
    opacity: 0;
}

.header__social li a:hover img:last-child {
    opacity: 1;
}

.header__social li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 300ms;
    border-radius: 100%;
}

.header__social li a img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.header__social li a img:last-child {
    opacity: 0;
}

.header__btn {
    text-transform: none;
}

@media only screen and (max-width: 1300px) {
    .header__btn {
        min-width: 158px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 991px) {
    .header__btn {
        min-height: 50px;
        min-width: 295px;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px) {
    .header__btn {
        min-height: 45px;
    }
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

@media only screen and (max-width: 991px) {
    .header__nav {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
}

.header__nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__nav li a:hover span {
    color: #d1e5af;
}

.header__nav li a span {
    text-transform: uppercase;
    transition: 300ms;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .header__nav li a span {
        color: #4f870c;
        transition: all .3s ease;
    }

    .header__nav li a span:hover {
        color: #fff;
    }
}

@media only screen and (max-width: 991px) {
    .header__nav li a svg path {
        fill: #4f870c;
    }
}

.header__burger {
    display: none;
}

@media only screen and (max-width: 991px) {
    .header__burger {
        display: block;
        width: 30px;
        position: relative;
        z-index: 100;
    }

    .header__burger a {
        display: block;
        cursor: pointer;
        padding: 12px 0;
    }

    .header__burger a span {
        position: relative;
        display: block;
        width: 30px;
        height: 3px;
        background: #4f870c;
        transition: all 0.2s ease-in-out;
    }

    .header__burger a span:before,
    .header__burger a span:after {
        content: "";
        width: 30px;
        height: 3px;
        position: absolute;
        left: 0;
        background: #4f870c;
        transition: all 0.2s ease-in-out;
    }

    .header__burger a span:before {
        top: -6px;
    }

    .header__burger a span:after {
        top: 6px;
    }

    .header__burger a.active span {
        background: transparent;
    }

    .header__burger a.active span:before {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .header__burger a.active span:after {
        transform: rotate(-45deg) translate(4px, -5px);
    }
}

.showcase {
    position: relative;
    padding: 236px 0 90px;
}

.news-page {
    position: relative;
    padding-top: 190px;
}

@media only screen and (max-width: 1300px) {
    .showcase {
        padding: 160px 0 50px;
    }
}

.showcase__fon {
    position: absolute;
    top: 176px;
    left: 0;
    width: 100%;
    height: calc(100% - 176px);
    display: flex;
}

@media only screen and (max-width: 1300px) {
    .showcase__fon {
        top: 90px;
        height: calc(100% - 90px);
    }
}

@media only screen and (max-width: 375px) {
    .showcase__fon {
        top: 83px;
        height: calc(100% - 83px);
    }
}

.showcase__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.showcase__info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
    max-width: 595px;
}

@media only screen and (max-width: 1300px) {
    .showcase__info {
        max-width: 478px;
    }
}

@media only screen and (max-width: 991px) {
    .showcase__info {
        max-width: 100%;
        margin-bottom: 30px;
        align-items: center;
        justify-content: center;
    }
}

.showcase__inner {
    position: relative;
    z-index: 5;
}

.showcase__title {
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .showcase__title {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .showcase__title br {
        display: none;
    }
}

.showcase__items {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 440px;
}

@media only screen and (max-width: 1300px) {
    .showcase__items {
        max-width: 413px;
    }
}

@media only screen and (max-width: 991px) {
    .showcase__items {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.showcase__item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    font-size: 36px;
    color: #4f870c;
    text-align: center;
    background: #d1e5af;
    min-height: 119px;
    padding: 0 20px;
    opacity: 0;
    transition: 1000ms;
}

.showcase__item.element-show {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .showcase__item {
        font-size: 30px;
        min-height: 110px;
    }
}

.showcase__item span {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #9cbd74;
}

.showcase__btn {
    min-width: 265px;
}

@media only screen and (max-width: 991px) {
    .showcase__btn {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .showcase__btn {
        min-width: auto;
    }
}

.showcase__triangle {
    width: 554px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 1000ms;
}

.showcase__triangle.element-show {
    opacity: 1;
}

@media only screen and (max-width: 1300px) {
    .showcase__triangle {
        transform: scale(0.8);
    }
}

@media only screen and (max-width: 991px) {
    .showcase__triangle {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto;
        transform: scale(1);
    }
}

@media only screen and (max-width: 767px) {
    .showcase__triangle {
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        margin: -80px 0 -140px 0;
    }
}

.showcase__triangle-fon {
    width: 554px;
    height: auto;
    display: flex;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .showcase__triangle-fon {
        transform: scale(0.6);
        min-width: 554px;
    }
}

.showcase__triangle-fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.showcase__triangle-ellipse {
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%;
    height: 537px;
    display: flex;
}

@media only screen and (max-width: 767px) {
    .showcase__triangle-ellipse {
        width: 554px;
        left: 50%;
        top: 10px;
        transform: translate(-50%, 0) scale(0.6);
    }
}

.showcase__triangle-ellipse img {
    width: 100%;
    height: 100%;
}

.showcase__text {
    position: absolute;
    text-align: center;
    font-size: 14px;
    color: #88ac4b;
    line-height: 100%;
}

.showcase__text-first {
    top: 81px;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 67px;
}

.showcase__text-second {
    top: 151px;
    left: 216px;
    max-width: 30px;
}

.showcase__text-third {
    top: 151px;
    right: 223px;
    max-width: 32px;
}

.showcase__text-fourth {
    top: 217px;
    left: 157px;
    max-width: 41px;
}

.showcase__text-fifth {
    top: 207px;
    right: 166px;
    max-width: 176px;
}

.showcase__text-sixth {
    bottom: 177px;
    left: 120px;
    max-width: 105px;
}

.showcase__text-seventh {
    bottom: 169px;
    right: 124px;
    max-width: 196px;
}

.showcase__text-eighth {
    bottom: 107px;
    left: 96px;
    max-width: 180px;
}

.showcase__text-ninth {
    bottom: 107px;
    right: 191px;
    max-width: 62px;
}

.showcase__text-tenth {
    bottom: 107px;
    right: 93px;
    max-width: 68px;
}

.showcase__text-eleventh {
    bottom: 21px;
    left: 44px;
    max-width: 223px;
}

.showcase__text-twelfth {
    bottom: 29px;
    right: 49px;
    max-width: 213px;
}

.projects {
    padding: 80px 0;
}

.projects__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.projects__title.element-show {
    opacity: 1;
    transform: none;
}

.projects__inner {
    display: grid;
    grid-template-columns: 516px 1fr;
    align-items: flex-start;
    gap: 70px;
}

@media only screen and (max-width: 1300px) {
    .projects__inner {
        grid-template-columns: 384px 1fr;
        gap: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .projects__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.projects__info {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .projects__info {
        position: static;
    }
}

@media only screen and (max-width: 767px) {
    .projects__info p {
        font-size: 14px;
    }
}

.projects__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.projects__nav li a {
    border-radius: 10px;
    background: #f8f9f4;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

@media only screen and (max-width: 767px) {
    .projects__nav li a {
        padding: 10px 15px;
    }
}

.projects__nav li a:hover span {
    color: #1e1e1e;
}

.projects__nav li a:hover svg path {
    fill: #1e1e1e;
}

.projects__nav li a span {
    color: #4f870c;
    transition: 300ms;
}

@media only screen and (max-width: 767px) {
    .projects__nav li a span {
        font-size: 14px;
    }
}

.projects__nav li a svg {
    min-width: 8px;
    width: 8px;
    height: auto;
}

.projects__nav li a svg path {
    transition: 300ms;
}

.projects__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects__item {
    border-radius: 10px;
    width: 100%;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr 260px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
}

@media only screen and (max-width: 991px) {
    .projects__item {
        min-height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .projects__item {
        display: block;
        min-height: auto;
    }
}

.projects__left {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .projects__left {
        padding: 20px 15px;
    }
}

.projects__name {
    font-size: 20px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1300px) {
    .projects__name {
        font-size: 18px;
    }
}

.projects__subtitle {
    font-size: 14px;
    color: #a8a8a8;
}

.projects__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100%;
    background: #d1e5af;
}

@media only screen and (max-width: 767px) {
    .projects__arrow {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

.projects__arrow:hover {
    background: #4f870c;
}

.projects__arrow:hover svg path {
    fill: #f5ffe8;
}

@media only screen and (max-width: 767px) {
    .projects__arrow svg {
        width: 9px;
        height: auto;
    }
}

.projects__arrow svg path {
    transition: 300ms;
}

.projects__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9f4;
}

@media only screen and (max-width: 767px) {
    .projects__image {
        min-height: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .projects__image img {
        transform: scale(0.8);
    }
}

.form {
    margin-bottom: 80px;
}

.form__inner {
    border-radius: 10px;
    background: #f8f9f4;
    padding: 60px 30px 30px 40px;
    display: grid;
    grid-template-columns: 545px 1fr;
    gap: 59px;
    align-items: center;
}

@media only screen and (max-width: 1300px) {
    .form__inner {
        grid-template-columns: 450px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .form__inner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
}

.form__title {
    margin-bottom: 20px;
    padding-left: 0;
    border-left: 0;
    max-width: 494px;
}

@media only screen and (max-width: 991px) {
    .form__title {
        max-width: 100%;
    }
}

.form__subtitle {
    margin-bottom: 40px;
    line-height: 130%;
    letter-spacing: -0.01em;
    max-width: 494px;
}

@media only screen and (max-width: 991px) {
    .form__subtitle {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .form__subtitle {
        font-size: 14px;
    }
}

.form__items {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

@media only screen and (max-width: 767px) {
    .form__items {
        gap: 10px;
    }
}

.form__item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

@media only screen and (max-width: 767px) {
    .form__item {
        flex-direction: column;
        gap: 10px;
    }
}

.form__input {
    width: 100%;
    height: 50px;
}

@media only screen and (max-width: 767px) {
    .form__input {
        height: 40px;
    }
}

.form__input input {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 0;
    border-radius: 10px;
    padding: 0 20px;
    color: #1e1e1e;
}

@media only screen and (max-width: 767px) {
    .form__input input {
        font-size: 14px;
    }
}

.form__input input::-moz-placeholder {
    color: #a8a8a8;
}

.form__input input::-ms-input-placeholder {
    color: #a8a8a8;
}

.form__input input::placeholder {
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .form__input input::-moz-placeholder {
        font-size: 14px;
    }

    .form__input input::-ms-input-placeholder {
        font-size: 14px;
    }

    .form__input input::placeholder {
        font-size: 14px;
    }
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    transition: 300ms;
}

.form__checkbox a {
    color: #47870c;
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
    .form__checkbox {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .form__checkbox {
        font-size: 14px;
    }
}

.form__checkbox p {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
}

.form__checkbox p b {
    color: #4f870c;
    font-weight: 400;
}

.form__check {
    position: relative;
    width: 18px;
    min-width: 18px;
    height: 18px;
    transition: 300ms;
}

.form__check__link {
    color: #4f870c;

}

.form__check>input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #4f870c;
    background: #f8f9f4;
    width: 18px;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
    transition: 300ms;
    border-radius: 3px;
}

.form__check>input:checked {
    background: none;
    border: 1px solid transparent;
}

.form__check>input:checked~span {
    opacity: 1;
}

.form__check>span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: 300ms;
}

.form__check>span::after {
    content: "";
    display: block;
    background: url(../images/checkbox.svg) no-repeat;
    width: 18px;
    height: 18px;
    background-size: 18px;
    transition: 300ms;
    border-radius: 3px;
}

.form__submit {
    width: 100%;
    height: 50px;
}

@media only screen and (max-width: 767px) {
    .form__submit {
        height: 40px;
    }
}

.form__submit input {
    width: 100%;
    height: 100%;
    background: #4f870c;
    border: 0;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .form__submit input {
        font-size: 14px;
    }
}

.form__submit input:hover {
    background: #d1e5af;
    color: #4f870c;
}

.form__image {
    display: flex;
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 991px) {
    .form__image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .form__image {
        max-width: 400px;
    }
}

.form__image img {
    width: 100%;
    height: 100%;
}

.about {
    position: relative;
    padding: 60px 0;
}

.about__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.about__title.element-show {
    opacity: 1;
    transform: none;
}

.about__fon {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.about__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}

.about__inner {
    position: relative;
    z-index: 5;
}

.about__items {
    display: grid;
    grid-template-columns: 558px 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media only screen and (max-width: 1300px) {
    .about__items {
        grid-template-columns: 425px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .about__items {
        grid-template-columns: 1fr;
    }
}

.about__image {
    display: flex;
    height: auto;
    width: 100%;
    opacity: 0;
    transition: 1000ms;
}

.about__image.element-show {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .about__image {
        height: 400px;
        grid-row: 2/2;
    }
}

@media only screen and (max-width: 767px) {
    .about__image {
        height: 300px;
    }
}

.about__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}

.about__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__text {
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .about__text {
        margin-bottom: 30px;
    }
}

.about__text p {
    margin-bottom: 10px;
    opacity: 0;
    transition: 1000ms;
}

.about__text p.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .about__text p {
        font-size: 14px;
    }
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__info {
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
    .about__info {
        margin-bottom: 30px;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__info {
        flex-direction: column;
        gap: 20px;
    }
}

.about__info-items {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: #4f870c;
    opacity: 0;
    transition: 1000ms;
}

.about__info-items.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .about__info-items {
        text-align: left;
        font-size: 28px;
    }
}

.about__info-items span {
    font-weight: 400;
    font-size: 14px;
    color: #bdbdbd;
    display: block;
    max-width: 105px;
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .about__info-items span {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .about__info-items span br {
        display: none;
    }
}

.services {
    padding: 80px 0;
    overflow: hidden;
}

.services__block .services__btn {
    display: none;
}

@media only screen and (max-width: 767px) {
    .services__block .services__btn {
        display: flex;
    }
}

.services__header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    opacity: 0;
    transition: 1000ms;
    transform: translateY(-50px);
}

.services__header.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 767px) {
    .services__header {
        display: block;
    }
}

.services__header .services__btn {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .services__header .services__btn {
        display: none;
    }
}

.services__title {
    margin-bottom: 0;
}

.services__inner {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .services__inner {
        margin-bottom: 30px;
    }
}

.services__slider {
    position: static;
    padding: 3px;
}

.services__slider-item {
    height: auto;
}

.services__card {
    height: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 30px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .services__card {
        border-radius: 10px;
    }
}

.services__card-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
    color: #4f870c;
    transition: 300ms;
}

.services__card-btn:hover {
    color: #1e1e1e;
}

.services__card-btn:hover svg {
    transform: translateX(5px);
}

.services__card-btn:hover svg path {
    fill: #1e1e1e;
}

.services__card-btn svg {
    transition: 300ms;
    min-width: 8px;
    width: 8px;
    height: auto;
}

.services__card-btn svg path {
    transition: 300ms;
}

.services__icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1e5af;
    border-radius: 100%;
}

.services__name {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.services__subtitle {
    text-align: center;
    color: #bdbdbd;
}

@media only screen and (max-width: 1300px) {
    .services__arrows {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .services__arrows {
        gap: 15px;
    }
}

.services__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 300ms;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100%;
    background: #4f870c;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

@media only screen and (max-width: 1300px) {
    .services__arrow {
        position: static;
        transform: none;
    }
}

.services__arrow:hover {
    background: #d1e5af;
}

.services__arrow:hover svg path {
    fill: #4f870c;
}

.services__arrow svg path {
    transition: 300ms;
}

.services__arrow-prev {
    left: -70px;
}

.services__arrow-next {
    right: -70px;
}

.advantages {
    padding: 80px 0;
    background: #f8f9f4;
}

.advantages__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.advantages__title.element-show {
    opacity: 1;
    transform: none;
}

.advantages__inner {
    position: relative;
    width: 840px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .advantages__inner {
        transform: translate(-4%) scale(0.8);
    }
}

@media only screen and (max-width: 767px) {
    .advantages__inner {
        transform: none;
        width: 100%;
        height: auto;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.advantages__image {
    width: 405px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .advantages__image {
        display: none;
    }
}

.advantages__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.advantages__icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 100%;
    background: #4f870c;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .advantages__icon {
        margin: 0 0 10px;
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
}

.advantages__icon img {
    width: 36px;
    height: 36px;
    min-width: 36px;
}

@media only screen and (max-width: 767px) {
    .advantages__icon img {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
}

.advantages__text {
    text-align: center;
    line-height: 130%;
}

@media only screen and (max-width: 767px) {
    .advantages__text {
        text-align: left;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .advantages__text br {
        display: none;
    }
}

.advantages__text span {
    font-weight: 500;
}

.advantages__block {
    position: absolute;
    opacity: 0;
    transition: 1000ms;
}

@media only screen and (max-width: 767px) {
    .advantages__block {
        opacity: 1;
    }
}

.advantages__block.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .advantages__block {
        position: static;
    }
}

.advantages__block-first {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 192px;
}

@media only screen and (max-width: 767px) {
    .advantages__block-first {
        transform: none;
    }
}

.advantages__block-second {
    top: 107px;
    right: 74px;
    max-width: 155px;
}

.advantages__block-third {
    bottom: 191px;
    right: 0;
    max-width: 154px;
}

@media only screen and (max-width: 767px) {
    .advantages__block-third {
        max-width: 85px;
    }
}

.advantages__block-fourth {
    bottom: 0;
    right: 85px;
    max-width: 144px;
}

.advantages__block-fifth {
    bottom: 0;
    left: 57px;
    max-width: 139px;
}

.advantages__block-sixth {
    bottom: 191px;
    left: 0;
    max-width: 121px;
}

.advantages__block-seventh {
    top: 107px;
    left: 58px;
    max-width: 138px;
}

.certificate {
    padding: 80px 0;
}

.certificate__title br {
    display: none;
}

@media only screen and (max-width: 420px) {
    .certificate__title br {
        display: block;
    }
}

.certificate__inner {
    display: grid;
    grid-template-columns: 566px 1fr;
    gap: 40px;
}

@media only screen and (max-width: 1300px) {
    .certificate__inner {
        grid-template-columns: 478px 1fr;
        gap: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .certificate__inner {
        grid-template-columns: 1fr;
    }
}

.certificate__image {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.certificate__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.certificate__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .certificate__items p {
        font-size: 14px;
    }
}

.certificate__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certificate__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    background: #f8f9f4;
    padding: 10px 20px;
}

@media only screen and (max-width: 767px) {
    .certificate__list li {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.certificate__list li span {
    line-height: 130%;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .certificate__list li span {
        font-size: 14px;
    }
}

.certificate__list li img {
    width: 35px;
    min-width: 35px;
    height: auto;
}

.certificate__btn {
    min-width: 315px;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .certificate__btn {
        min-width: auto;
    }
}

.client {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.client__fon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.client__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.client__block {
    position: relative;
    z-index: 5;
}

.client__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.client__title.element-show {
    opacity: 1;
    transform: none;
}

.client__inner {
    position: relative;
}

.client__slider {
    position: static;
}

/* .client__slider-item {
    border-radius: 100%;
}

.client__slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
} */

.client .services__arrow {
    background: #d1e5af;
}

.client .services__arrow:hover {
    background: #4f870c;
}

.client .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.client .services__arrow svg path {
    fill: #4f870c;
}

.reviews {
    padding: 80px 0;
    overflow: hidden;
}

.reviews__slider {
    position: static;
    padding: 5px;
}

.reviews__card {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 10px;
    padding: 40px 210px 40px 30px;
    display: grid;
    grid-template-columns: 1fr 235px;
    gap: 119px;
}

@media only screen and (max-width: 1300px) {
    .reviews__card {
        padding: 40px 130px 40px 30px;
        gap: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .reviews__card {
        padding: 30px 50px 30px 20px;
        align-items: center;
    }
}

@media only screen and (max-width: 767px) {
    .reviews__card {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 50px;
    }
}

.reviews__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.reviews__date {
    margin-bottom: 20px;
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .reviews__date {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.reviews__name {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .reviews__name {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .reviews__subtitle {
        font-size: 14px;
    }
}

.reviews__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media only screen and (max-width: 767px) {
    .reviews__text {
        gap: 10px;
    }
}

.reviews__text img {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

@media only screen and (max-width: 767px) {
    .reviews__text img {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

.reviews__text span {
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .reviews__text span {
        font-size: 14px;
    }
}

.reviews__image {
    border: 7px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews .services__arrow {
    background: #d1e5af;
}

.reviews .services__arrow:hover {
    background: #4f870c;
}

.reviews .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.reviews .services__arrow svg path {
    fill: #4f870c;
}

.form-option {
    margin-bottom: 0;
}

.form-option .form__inner {
    padding: 50px 112px 50px 40px;
    gap: 186px;
}

@media only screen and (max-width: 1300px) {
    .form-option .form__inner {
        padding: 50px 80px 50px 40px;
        gap: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .form-option .form__inner {
        gap: 50px;
        padding: 40px 30px;
    }
}

@media only screen and (max-width: 991px) {
    .form-option .form__image {
        max-width: 300px;
    }
}

.news {
    padding-top: 80px;
    overflow: hidden;
}

.news__slider {
    position: static;
    padding: 5px;
}

.news__slider-item {
    height: auto;
}

.news__card {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news__card-items {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    flex-grow: 1;
}

@media only screen and (max-width: 767px) {
    .news__card-items {
        padding: 20px 15px;
    }
}

.news__image {
    display: flex;
    width: 100%;
    height: 230px;
}

@media only screen and (max-width: 767px) {
    .news__image {
        height: 170px;
    }
}

.news__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news__date {
    margin-bottom: 15px;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .news__date {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.news__name {
    font-size: 20px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .news__name {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

.news__text {
    color: #a8a8a8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 767px) {
    .news__text {
        font-size: 14px;
    }
}

.news .services__arrow {
    background: #d1e5af;
}

.news .services__arrow:hover {
    background: #4f870c;
}

.news .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.news .services__arrow svg path {
    fill: #4f870c;
}

.contact {
    padding-top: 80px;
}

.contact .container {
    position: relative;
}

.contact__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.contact__title.element-show {
    opacity: 1;
    transform: none;
}

.contact__map {
    width: 100%;
    height: 616px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .contact__map {
        height: 380px;
        margin-top: -50px;
    }
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact__info {
    background: #fff;
    border-radius: 10px;
    position: absolute;
    z-index: 10;
    top: 80px;
    right: 229px;
    padding: 30px 28px;
    width: 335px;
    height: auto;
}

@media only screen and (max-width: 1300px) {
    .contact__info {
        right: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .contact__info {
        right: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .contact__info {
        padding: 20px 15px;
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    }
}

.contact__list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__list-items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__list-items a:hover {
    color: #4f870c;
}

.contact__list-text {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #d1e5af;
}

.contact__btn {
    text-transform: none;
}

.contact .header__logo {
    margin-bottom: 30px;
}

.contact .header__logo-text p {
    color: #a8a8a8;
}

.footer__top {
    background: #d1e5af;
    padding: 40px 0 60px;
}

@media only screen and (max-width: 991px) {
    .footer__top {
        padding: 40px 0;
    }
}

.footer__bottom {
    background: #4f870c;
    padding: 20px 0;
    color: #fff;
}

.footer__bottom-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .footer__bottom-items {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
}

.footer__bottom-text p {
    font-size: 14px;
}

.footer__bottom-creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__bottom-creator:hover span {
    color: #d1e5af;
}

.footer__bottom-creator span {
    transition: 300ms;
    font-size: 14px;
}

.footer__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .footer__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__btn:hover svg {
    transform: none;
}

.footer__items {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 129px;
}

@media only screen and (max-width: 1300px) {
    .footer__items {
        gap: 37px;
    }
}

@media only screen and (max-width: 991px) {
    .footer__items {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

.footer__right {
    display: flex;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .footer__right {
        order: 1;
    }
}

@media only screen and (max-width: 767px) {
    .footer__right {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 767px) {
    .footer__nav {
        gap: 15px;
    }
}

.footer__nav li a {
    text-transform: uppercase;
}

.footer__nav li a:hover {
    color: #4f870c;
}

.footer__nav-head {
    text-transform: uppercase;
    color: #4f870c;
}

.footer__nav-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer__nav-child li a {
    text-transform: none;
    color: #1e1e1e;
}

.footer__nav-child li a:hover {
    color: #4f870c;
}

.footer__image {
    display: flex;
}

@media only screen and (max-width: 991px) {
    .footer__image {
        order: 2;
    }
}

.footer .contact__list {
    margin-bottom: 0;
    width: 218px;
    min-width: 218px;
}

@media only screen and (max-width: 767px) {
    .footer .contact__list {
        width: 100%;
        min-width: auto;
        max-width: 300px;
    }
}

.footer .contact__icon {
    background: #f8f9f4;
}


/* Dropup Button */
.dropbtn {
    background-color: initial;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropup content */
.dropup {
    position: relative;
    display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
    display: none;
    position: absolute;
    /* bottom: 50px; */
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 0px 4px 0px #A8A8A81A;
    z-index: 1;

}

/* Links inside the dropup */
.dropup-content a {
    text-decoration: none;
    display: block;
}

.dropup .dropup-content {
    transition: 300ms;
}

/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
    display: block;
}

.dropup .dropbtn {
    transition: 300ms;
}

/* Change the background color of the dropup button when the dropup content is shown */
.dropup:hover .dropbtn {
    color: #d1e5af;
}

/**/

.dropup-content {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.dropup-content_blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 1170px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.dropup-content_blocks .dropup-content_block:first-child a:last-child {
    border-bottom-left-radius: 10px;
}

/**/


.drop-menu_li .dropup .dropbtn a {
    padding: 30px 0;
}

.dropup-content_block a {
    padding: 20px 0 20px 60px;
    color: #464646;
    border-bottom: 1px solid #F8F9F4;
    border-right: 1px solid #F8F9F4;
    transition: 300ms;
}

.dropup-content_block a:hover,
.dropup-content_block a:focus {
    background-color: #F8F9F4;
    color: #88AC4B;

}

@media only screen and (max-width: 1300px) {
    .dropup-content_blocks {
        width: 970px;
    }

    .dropup-content_block a {
        padding-left: 20px;
        font-size: 14px;
    }
}

.drop-menu_li__mobile .dropup-content {
    width: 400px;
    z-index: 10;
    left: -140px;
    overflow-y: auto;
    max-height: 450px;
}

.dropbtn-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.drop-menu_li__mobile .dropup .dropbtn {
    padding: 0;
    cursor: pointer;
}

@media only screen and (max-width: 576px) {
    .drop-menu_li__mobile .dropup-content {
        width: 250px;
        left: -70px;
    }

    .drop-menu_li__mobile .dropup-content .dropup-content_block a {
        padding-right: 20px;
    }
}

.drop-menu_li__mobile {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

.projects {
    padding: 80px 0;
}

.projects__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.projects__title.element-show {
    opacity: 1;
    transform: none;
}

.projects__inner {
    display: grid;
    grid-template-columns: 516px 1fr;
    align-items: flex-start;
    gap: 70px;
}

@media only screen and (max-width: 1300px) {
    .projects__inner {
        grid-template-columns: 384px 1fr;
        gap: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .projects__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.projects__info {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .projects__info {
        position: static;
    }
}

@media only screen and (max-width: 767px) {
    .projects__info p {
        font-size: 14px;
    }
}

.projects__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.projects__nav li a {
    border-radius: 10px;
    background: #f8f9f4;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

@media only screen and (max-width: 767px) {
    .projects__nav li a {
        padding: 10px 15px;
    }
}

.projects__nav li a:hover span {
    color: #1e1e1e;
}

.projects__nav li a:hover svg path {
    fill: #1e1e1e;
}

.projects__nav li a span {
    color: #4f870c;
    transition: 300ms;
}

@media only screen and (max-width: 767px) {
    .projects__nav li a span {
        font-size: 14px;
    }
}

.projects__nav li a svg {
    min-width: 8px;
    width: 8px;
    height: auto;
}

.projects__nav li a svg path {
    transition: 300ms;
}

.projects__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects__item {
    border-radius: 10px;
    width: 100%;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr 260px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
}

@media only screen and (max-width: 991px) {
    .projects__item {
        min-height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .projects__item {
        display: block;
        min-height: auto;
    }
}

.projects__left {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .projects__left {
        padding: 20px 15px;
    }
}

.projects__name {
    font-size: 20px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 1300px) {
    .projects__name {
        font-size: 18px;
    }
}

.projects__subtitle {
    font-size: 14px;
    color: #a8a8a8;
}

.projects__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100%;
    background: #d1e5af;
}

@media only screen and (max-width: 767px) {
    .projects__arrow {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

.projects__arrow:hover {
    background: #4f870c;
}

.projects__arrow:hover svg path {
    fill: #f5ffe8;
}

@media only screen and (max-width: 767px) {
    .projects__arrow svg {
        width: 9px;
        height: auto;
    }
}

.projects__arrow svg path {
    transition: 300ms;
}

.projects__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9f4;
}

@media only screen and (max-width: 767px) {
    .projects__image {
        min-height: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .projects__image img {
        transform: scale(0.8);
    }
}

.form {
    margin-bottom: 80px;
}

.form__inner {
    border-radius: 10px;
    background: #f8f9f4;
    padding: 60px 30px 30px 40px;
    display: grid;
    grid-template-columns: 545px 1fr;
    gap: 59px;
    align-items: center;
}


@media only screen and (max-width: 1300px) {
    .form__inner {
        grid-template-columns: 450px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .form__inner {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

.form__title {
    margin-bottom: 20px;
    padding-left: 0;
    border-left: 0;
    max-width: 494px;
}

@media only screen and (max-width: 991px) {
    .form__title {
        max-width: 100%;
    }
}

.form__subtitle {
    margin-bottom: 40px;
    line-height: 130%;
    letter-spacing: -0.01em;
    max-width: 494px;
}

@media only screen and (max-width: 991px) {
    .form__subtitle {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .form__subtitle {
        font-size: 14px;
    }
}

.form__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media only screen and (max-width: 767px) {
    .form__items {
        gap: 10px;
    }
}

.form__item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

@media only screen and (max-width: 991px) {
    .form__item {
        gap: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .form__item {
        flex-direction: column;
        gap: 10px;
    }
}

.form__input {
    width: 100%;
    height: 50px;
}

@media only screen and (max-width: 767px) {
    .form__input {
        height: 40px;
    }
}

.form__input input {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 0;
    border-radius: 10px;
    padding: 0 20px;
    color: #1e1e1e;
}

@media only screen and (max-width: 767px) {
    .form__input input {
        font-size: 14px;
    }
}

.form__input input::-moz-placeholder {
    color: #a8a8a8;
}

.form__input input::-ms-input-placeholder {
    color: #a8a8a8;
}

.form__input input::placeholder {
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .form__input input::-moz-placeholder {
        font-size: 14px;
    }

    .form__input input::-ms-input-placeholder {
        font-size: 14px;
    }

    .form__input input::placeholder {
        font-size: 14px;
    }
}

.form__textarea {
    width: 100%;
    height: 100px;
}

.form__textarea textarea {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    border: 0;
    padding: 10px 20px;
    color: #1e1e1e;
    font-weight: 400;
    resize: none;
}

@media only screen and (max-width: 767px) {
    .form__textarea textarea {
        font-size: 14px;
    }
}

.form__textarea textarea::-moz-placeholder {
    color: #a8a8a8;
    font-weight: 400;
}

.form__textarea textarea::-ms-input-placeholder {
    color: #a8a8a8;
    font-weight: 400;
}

.form__textarea textarea::placeholder {
    color: #a8a8a8;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .form__textarea textarea::-moz-placeholder {
        font-size: 14px;
    }

    .form__textarea textarea::-ms-input-placeholder {
        font-size: 14px;
    }

    .form__textarea textarea::placeholder {
        font-size: 14px;
    }
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    width: 100%;
    transition: 300ms;
}

@media only screen and (max-width: 991px) {
    .form__checkbox {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .form__checkbox {
        font-size: 14px;
    }
}

.form__checkbox p {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
}

.form__checkbox p b {
    color: #4f870c;
    font-weight: 400;
}

.form__check {
    position: relative;
    width: 18px;
    min-width: 18px;
    height: 18px;
    transition: 300ms;
}

.form__check>input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #4f870c;
    background: #f8f9f4;
    width: 18px;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
    transition: 300ms;
    border-radius: 3px;
}

.form__check>input:checked {
    background: none;
    border: 1px solid transparent;
}

.form__check>input:checked~span {
    opacity: 1;
}

.form__check>span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: 300ms;
}

.form__check>span::after {
    content: "";
    display: block;
    background: url(../images/new-design/checkbox.svg) no-repeat;
    width: 18px;
    height: 18px;
    background-size: 18px;
    transition: 300ms;
    border-radius: 3px;
}

.form__submit {
    width: 100%;
    height: 50px;
}

@media only screen and (max-width: 767px) {
    .form__submit {
        height: 40px;
    }
}

.form__submit input {
    width: 100%;
    height: 100%;
    background: #4f870c;
    border: 0;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: 300ms;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .form__submit input {
        font-size: 14px;
    }
}

.form__submit input:hover {
    background: #d1e5af;
    color: #4f870c;
}

.form__image {
    display: flex;
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 991px) {
    .form__image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .form__image {
        max-width: 400px;
    }
}

.form__image img {
    width: 100%;
    height: 100%;
}

.about {
    position: relative;
    padding: 60px 0;
}

.about__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.about__title.element-show {
    opacity: 1;
    transform: none;
}

.about__fon {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.about__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}

.about__inner {
    position: relative;
    z-index: 5;
}

.about__items {
    display: grid;
    grid-template-columns: 558px 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media only screen and (max-width: 1300px) {
    .about__items {
        grid-template-columns: 425px 1fr;
    }
}

@media only screen and (max-width: 991px) {
    .about__items {
        grid-template-columns: 1fr;
    }
}

.about__image {
    display: flex;
    height: auto;
    width: 100%;
    opacity: 0;
    transition: 1000ms;
}

.about__image.element-show {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .about__image {
        height: 400px;
        grid-row: 2/2;
    }
}

@media only screen and (max-width: 767px) {
    .about__image {
        height: 300px;
    }
}

.about__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
}

.about__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about__text {
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .about__text {
        margin-bottom: 30px;
    }
}

.about__text p {
    margin-bottom: 10px;
    opacity: 0;
    transition: 1000ms;
}

.about__text p.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .about__text p {
        font-size: 14px;
    }
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__info {
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
    .about__info {
        margin-bottom: 30px;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about__info {
        flex-direction: column;
        gap: 20px;
    }
}

.about__info-items {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    color: #4f870c;
    opacity: 0;
    transition: 1000ms;
}

.about__info-items.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .about__info-items {
        text-align: left;
        font-size: 28px;
    }
}

.about__info-items span {
    font-weight: 400;
    font-size: 14px;
    color: #bdbdbd;
    display: block;
    max-width: 105px;
    margin-top: 5px;
}

@media only screen and (max-width: 767px) {
    .about__info-items span {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .about__info-items span br {
        display: none;
    }
}

.services {
    padding: 80px 0;
    overflow: hidden;
}

.services__block .services__btn {
    display: none;
}

@media only screen and (max-width: 767px) {
    .services__block .services__btn {
        display: flex;
    }
}

.services__header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    opacity: 0;
    transition: 1000ms;
    transform: translateY(-50px);
}

.services__header.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 767px) {
    .services__header {
        display: block;
    }
}

.services__header .services__btn {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .services__header .services__btn {
        display: none;
    }
}

.services__title {
    margin-bottom: 0;
}

.services__inner {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .services__inner {
        margin-bottom: 30px;
    }
}

.services__slider {
    position: static;
    padding: 3px;
}

.services__slider-item {
    height: auto;
}

.services__card {
    height: 100%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 30px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.swiper-slide {
    height: unset !important;
}

@media only screen and (max-width: 991px) {
    .services__card {
        border-radius: 10px;
    }
}

.services__card-btn {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
    color: #4f870c;
    transition: 300ms;
}

.services__card-btn:hover {
    color: #1e1e1e;
}

.services__card-btn:hover svg {
    transform: translateX(5px);
}

.services__card-btn:hover svg path {
    fill: #1e1e1e;
}

.services__card-btn svg {
    transition: 300ms;
    min-width: 8px;
    width: 8px;
    height: auto;
}

.services__card-btn svg path {
    transition: 300ms;
}

.services__icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1e5af;
    border-radius: 100%;
}

.services__name {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.services__subtitle {
    text-align: center;
    color: #bdbdbd;
}

@media only screen and (max-width: 1300px) {
    .services__arrows {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .services__arrows {
        gap: 15px;
    }
}

.services__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 300ms;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 100%;
    background: #4f870c;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

.services__arrow:hover {
    background: #d1e5af;
}

.services__arrow:hover svg path {
    fill: #4f870c;
}

.services__arrow svg path {
    transition: 300ms;
}

.services__arrow-prev {
    left: -70px;
}

.services__arrow-next {
    right: -70px;
}

.advantages {
    padding: 80px 0;
    background: #f8f9f4;
}

.advantages__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.advantages__title.element-show {
    opacity: 1;
    transform: none;
}

.advantages__inner {
    position: relative;
    width: 840px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .advantages__inner {
        transform: translate(-4%) scale(0.8);
    }
}

@media only screen and (max-width: 767px) {
    .advantages__inner {
        transform: none;
        width: 100%;
        height: auto;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.advantages__image {
    width: 405px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .advantages__image {
        display: none;
    }
}

.advantages__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.advantages__icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 100%;
    background: #4f870c;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .advantages__icon {
        margin: 0 0 10px;
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
}

.advantages__icon img {
    width: 36px;
    height: 36px;
    min-width: 36px;
}

@media only screen and (max-width: 767px) {
    .advantages__icon img {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
}

.advantages__text {
    text-align: center;
    line-height: 130%;
}

@media only screen and (max-width: 767px) {
    .advantages__text {
        text-align: left;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .advantages__text br {
        display: none;
    }
}

.advantages__text span {
    font-weight: 500;
}

.advantages__block {
    position: absolute;
    opacity: 0;
    transition: 1000ms;
}

@media only screen and (max-width: 767px) {
    .advantages__block {
        opacity: 1;
    }
}

.advantages__block.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .advantages__block {
        position: static;
    }
}

.advantages__block-first {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 192px;
}

@media only screen and (max-width: 767px) {
    .advantages__block-first {
        transform: none;
    }
}

.advantages__block-second {
    top: 107px;
    right: 74px;
    max-width: 155px;
}

.advantages__block-third {
    bottom: 191px;
    right: 0;
    max-width: 154px;
}

@media only screen and (max-width: 767px) {
    .advantages__block-third {
        max-width: 85px;
    }
}

.advantages__block-fourth {
    bottom: 0;
    right: 85px;
    max-width: 144px;
}

.advantages__block-fifth {
    bottom: 0;
    left: 57px;
    max-width: 139px;
}

.advantages__block-sixth {
    bottom: 191px;
    left: 0;
    max-width: 121px;
}

.advantages__block-seventh {
    top: 107px;
    left: 58px;
    max-width: 138px;
}

.certificate {
    padding: 80px 0;
}

.certificate__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.certificate__title.element-show {
    opacity: 1;
    transform: none;
}

.certificate__title br {
    display: none;
}

@media only screen and (max-width: 420px) {
    .certificate__title br {
        display: block;
    }
}

.certificate__inner {
    display: grid;
    grid-template-columns: 566px 1fr;
    gap: 40px;
}

@media only screen and (max-width: 1300px) {
    .certificate__inner {
        grid-template-columns: 478px 1fr;
        gap: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .certificate__inner {
        grid-template-columns: 1fr;
    }
}

.certificate__image {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.certificate__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.certificate__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .certificate__items p {
        font-size: 14px;
    }
}

.certificate__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certificate__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    background: #f8f9f4;
    padding: 10px 20px;
}

@media only screen and (max-width: 767px) {
    .certificate__list li {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.certificate__list li span {
    line-height: 130%;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .certificate__list li span {
        font-size: 14px;
    }
}

.certificate__list li img {
    width: 35px;
    min-width: 35px;
    height: auto;
}

.certificate__btn {
    min-width: 315px;
    margin-top: 10px;
}

@media only screen and (max-width: 767px) {
    .certificate__btn {
        min-width: auto;
    }
}

.client {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.client__fon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.client__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.client__block {
    position: relative;
    z-index: 5;
}

.client__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.client__title.element-show {
    opacity: 1;
    transform: none;
}

.client__inner {
    position: relative;
}

.client__slider {
    position: static;
}

.client__slider-item {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    aspect-ratio: 1/1 !important;
}

.client__slider-item img {
    width: 70%;
    height: unset !important;
    max-width: 80px;
    -o-object-fit: cover;
    object-fit: cover;

}

.client .services__arrow {
    background: #d1e5af;
}

.client .services__arrow:hover {
    background: #4f870c;
}

.client .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.client .services__arrow svg path {
    fill: #4f870c;
}

.reviews {
    padding: 80px 0;
    overflow: hidden;
}

.reviews__slider {
    position: static;
    padding: 5px;
}

.reviews__card {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 10px;
    padding: 40px 210px 40px 30px;
    display: grid;
    grid-template-columns: 1fr 235px;
    gap: 119px;
}

@media only screen and (max-width: 1300px) {
    .reviews__card {
        padding: 40px 130px 40px 30px;
        gap: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .reviews__card {
        padding: 30px 50px 30px 20px;
        align-items: center;
    }
}

@media only screen and (max-width: 767px) {
    .reviews__card {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 50px;
    }
}

.reviews__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.reviews__date {
    margin-bottom: 20px;
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .reviews__date {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.reviews__name {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .reviews__name {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .reviews__subtitle {
        font-size: 14px;
    }
}

.reviews__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media only screen and (max-width: 767px) {
    .reviews__text {
        gap: 10px;
    }
}

.reviews__text img {
    width: 24px;
    height: 24px;
    min-width: 24px;
}

@media only screen and (max-width: 767px) {
    .reviews__text img {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

.reviews__text span {
    color: #a8a8a8;
}

@media only screen and (max-width: 767px) {
    .reviews__text span {
        font-size: 14px;
    }
}

.reviews__image {
    border: 7px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews .services__arrow {
    background: #d1e5af;
}

.reviews .services__arrow:hover {
    background: #4f870c;
}

.reviews .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.reviews .services__arrow svg path {
    fill: #4f870c;
}

.form-option {
    margin-bottom: 0;
}

.form-option .form__inner {
    padding: 50px 112px 50px 40px;
    gap: 186px;
}

@media only screen and (max-width: 1300px) {
    .form-option .form__inner {
        padding: 50px 80px 50px 40px;
        gap: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .form-option .form__inner {
        gap: 50px;
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .form-option .form__image {
        max-width: 300px;
    }
}

.news {
    padding-top: 80px;
    overflow: hidden;
}

.news__slider {
    position: static;
    padding: 5px;
}

.news__slider-item {
    height: auto;
}

.news__card {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news__card-items {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    flex-grow: 1;
}

@media only screen and (max-width: 767px) {
    .news__card-items {
        padding: 20px 15px;
    }
}

.news__image {
    display: flex;
    width: 100%;
    height: 230px;
}

@media only screen and (max-width: 767px) {
    .news__image {
        height: 170px;
    }
}

.news__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news__date {
    margin-bottom: 15px;
    color: #4f870c;
}

@media only screen and (max-width: 767px) {
    .news__date {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.news__name {
    font-size: 20px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .news__name {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

.news__text {
    color: #a8a8a8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 767px) {
    .news__text {
        font-size: 14px;
    }
}

.news .services__arrow {
    background: #d1e5af;
}

.news .services__arrow:hover {
    background: #4f870c;
}

.news .services__arrow:hover svg path {
    fill: #f5ffe8;
}

.news .services__arrow svg path {
    fill: #4f870c;
}

.contact {
    padding-top: 80px;
}

.contact .container {
    position: relative;
}

.contact__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.contact__title.element-show {
    opacity: 1;
    transform: none;
}

.contact__map {
    width: 100%;
    height: 616px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .contact__map {
        height: 380px;
        margin-top: -50px;
    }
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact__info {
    background: #fff;
    border-radius: 10px;
    position: absolute;
    z-index: 10;
    top: 80px;
    right: 229px;
    padding: 30px 28px;
    width: 335px;
    height: auto;
}

@media only screen and (max-width: 1300px) {
    .contact__info {
        right: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .contact__info {
        right: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .contact__info {
        padding: 20px 15px;
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    }
}

.contact__list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__list-items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__list-items a:hover {
    color: #4f870c;
}

.contact__list-text {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.contact__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #d1e5af;
}

.contact__btn {
    text-transform: none;
}

.contact .header__logo {
    margin-bottom: 30px;
}

.contact .header__logo-text p {
    color: #a8a8a8;
}

.footer__top {
    background: #d1e5af;
    padding: 40px 0 60px;
}

@media only screen and (max-width: 991px) {
    .footer__top {
        padding: 40px 0;
    }
}

.footer__bottom {
    background: #4f870c;
    padding: 20px 0;
    color: #fff;
}

.footer__bottom-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .footer__bottom-items {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
}

.footer__bottom-text p {
    font-size: 14px;
}

.footer__bottom-creator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__bottom-creator:hover span {
    color: #d1e5af;
}

.footer__bottom-creator span {
    transition: 300ms;
    font-size: 14px;
}

.footer__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .footer__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer__btn:hover svg {
    transform: none;
}

.footer__items {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 129px;
}

@media only screen and (max-width: 1300px) {
    .footer__items {
        gap: 37px;
    }
}

@media only screen and (max-width: 991px) {
    .footer__items {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

.footer__right {
    display: flex;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .footer__right {
        order: 1;
    }
}

@media only screen and (max-width: 767px) {
    .footer__right {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 767px) {
    .footer__nav {
        gap: 15px;
    }
}

.footer__nav li a {
    text-transform: uppercase;
}

.footer__nav li a:hover {
    color: #4f870c;
}

.footer__nav-head {
    text-transform: uppercase;
    color: #4f870c;
}

.footer__nav-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer__nav-child li a {
    text-transform: none;
    color: #1e1e1e;
}

.footer__nav-child li a:hover {
    color: #4f870c;
}

.footer__image {
    display: flex;
}

@media only screen and (max-width: 991px) {
    .footer__image {
        order: 2;
    }
}

.footer .contact__list {
    margin-bottom: 0;
    width: 218px;
    min-width: 218px;
}

@media only screen and (max-width: 767px) {
    .footer .contact__list {
        width: 100%;
        min-width: auto;
        max-width: 300px;
    }
}

.footer .contact__icon {
    background: #f8f9f4;
}

.block {
    padding-top: 80px;
}

.block__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

@media only screen and (max-width: 991px) {
    .block__items {
        grid-template-columns: 1fr;
    }
}

.block__text p {
    margin-bottom: 20px;
    line-height: 130%;
}

@media only screen and (max-width: 767px) {
    .block__text p {
        font-size: 14px;
    }
}

.block__text p:last-child {
    margin-bottom: 0;
}

.block__text p span {
    color: #4f870c;
}

.block .showcase__items {
    max-width: 100%;
    margin-bottom: 0;
}

.blowout {
    padding: 80px 0;
}

.blowout__title {
    max-width: 621px;
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.blowout__title.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 767px) {
    .blowout__title {
        max-width: 100%;
    }
}

.blowout__subtitle {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .blowout__subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.blowout__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media only screen and (max-width: 991px) {
    .blowout__items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blowout__item {
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transition: 1000ms;
}

.blowout__item.element-show {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .blowout__item {
        gap: 20px;
        padding: 20px 15px;
    }
}

.blowout__item img {
    width: 70px;
    min-width: 70px;
    height: 70px;
}

.blowout__item span {
    text-align: center;
}

.ndv {
    padding: 80px 0;
    background: #f8f9f4;
}

.ndv__title {
    max-width: 650px;
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.ndv__title.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 767px) {
    .ndv__title {
        max-width: 100%;
    }
}

.ndv__subtitle {
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .ndv__subtitle {
        margin-bottom: 30px;
        font-size: 14px;
    }
}

.ndv__subtitle span {
    color: #4f870c;
}

.ndv__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

@media only screen and (max-width: 991px) {
    .ndv__items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.ndv__item {
    border-radius: 10px;
    padding: 10px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: 1000ms;
}

.ndv__item.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .ndv__item {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 10px 15px;
    }
}

.ndv__item span {
    line-height: 130%;
}

@media only screen and (max-width: 767px) {
    .ndv__item span {
        font-size: 14px;
    }
}

.ndv__item img {
    width: 35px;
    height: 35px;
    min-width: 35px;
}

@media only screen and (max-width: 767px) {
    .ndv__item img {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }
}

.ndv-price {
    padding: 80px 0;
}

.ndv-price__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.ndv-price__title.element-show {
    opacity: 1;
    transform: none;
}

.ndv-price__subtitle {
    margin-bottom: 40px;
    padding: 30px 0;
    border-radius: 10px;
    text-align: center;
    background: #d1e5af;
}

@media only screen and (max-width: 1300px) {
    .ndv-price__subtitle {
        padding: 30px 185px;
    }
}

@media only screen and (max-width: 991px) {
    .ndv-price__subtitle {
        padding: 30px 116px;
    }
}

@media only screen and (max-width: 767px) {
    .ndv-price__subtitle {
        padding: 20px 15px;
        text-align: left;
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.ndv-price__subtitle span {
    font-weight: 500;
}

.ndv-price .form__image {
    width: 288px;
    height: auto;
}

@media only screen and (max-width: 1300px) {
    .ndv-price .form__image {
        width: 250px;
    }
}

@media only screen and (max-width: 767px) {
    .ndv-price .form__image {
        max-width: 150px;
        width: 100%;
    }
}

.ndv-price .form__inner {
    gap: 157px;
    grid-template-columns: 551px 1fr;
}

@media only screen and (max-width: 1300px) {
    .ndv-price .form__inner {
        grid-template-columns: 491px 1fr;
        gap: 120px;
    }
}

@media only screen and (max-width: 991px) {
    .ndv-price .form__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.ndv-price .form__title {
    max-width: 100%;
}

.ndv-stages {
    position: relative;
    padding: 80px 0;
}

.ndv-stages__fon {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ndv-stages__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.ndv-stages__inner {
    position: relative;
    z-index: 5;
}

.ndv-stages__title {
    max-width: 470px;
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.ndv-stages__title.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 991px) {
    .ndv-stages__title {
        max-width: 100%;
    }
}

.ndv-stages__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 991px) {
    /* .ndv-stages__items {
        gap: 15px;
    } */
}

.ndv-stages__item {
    border-radius: 10px;
    background: #fff;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: 1000ms;
}

.ndv-stages__item.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .ndv-stages__item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
    }
}

.ndv-stages__number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #4f870c;
    position: relative;
    border-radius: 100%;
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.ndv-stages__number::before {
    content: "";
    display: block;
    background: #4f870c;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ndv-stages__number span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: #f8f9f4;
}

.ndv-stages__text {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .ndv-stages__text {
        display: block;
        font-size: 14px;
    }
}

.ndv-stages__text ul {
    padding-left: 17px;
    list-style-type: disc;
}

.ndv-tabl {
    padding-top: 80px;
}

@media only screen and (max-width: 767px) {
    .ndv-tabl .container {
        padding: 0;
    }
}

.ndv-tabl__title {
    max-width: 800px;
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.ndv-tabl__title.element-show {
    opacity: 1;
    transform: none;
}

@media only screen and (max-width: 991px) {
    .ndv-tabl__title {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .ndv-tabl__title {
        margin: 0 15px 30px;
    }
}

.ndv-tabl__inner {
    overflow-x: auto;
}

@media only screen and (max-width: 767px) {
    .ndv-tabl__inner {
        padding: 0 15px;
    }
}

.ndv-tabl__inner::-webkit-scrollbar {
    background: #e2e2e2;
    height: 10px;
    border-radius: 30px;
}

@media only screen and (max-width: 767px) {
    .ndv-tabl__inner::-webkit-scrollbar {
        padding: 0 15px;
    }
}

.ndv-tabl__inner::-webkit-scrollbar-thumb {
    background: #9cbd74;
    border-radius: 30px;
}

.ndv-tabl__inner table {
    width: 100%;
    min-width: none;
    border-collapse: collapse;
    border-spacing: 0;
    height: auto;
    margin-bottom: 15px;
}

.ndv-tabl__inner tr {
    background: #f8f9f4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 20px;
}

.ndv-tabl__inner tr:nth-child(2n) {
    background: #fff;
}

.ndv-tabl__inner tr:first-child td {
    text-align: center;
}

.ndv-tabl__inner td {
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ndv-tabl__inner td:first-child {
    justify-content: flex-start;
}

.ndv-tabl__inner td:nth-child(2) {
    justify-content: flex-start;
}

.ndv-tabl__inner td:nth-last-child(2) {
    justify-content: flex-start;
}

.ndv-tabl__inner td:last-child {
    justify-content: flex-start;
}

.ndv-difference {
    padding-top: 80px;
}

.ndv-difference p {
    opacity: 0;
    transition: 1000ms;
}

.ndv-difference p.element-show {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .ndv-difference p {
        font-size: 14px;
    }
}

.ndv-difference__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.ndv-difference__title.element-show {
    opacity: 1;
    transform: none;
}

.ndv-difference__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .ndv-difference__items {
        margin-bottom: 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.ndv-difference__item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}

.ndv-difference__item ul {
    opacity: 0;
    transition: 1000ms;
}

.ndv-difference__item ul.element-show {
    opacity: 1;
}

.ndv-difference__item ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .ndv-difference__item ul li {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
    }
}

.ndv-difference__item ul li:last-child {
    margin-bottom: 0;
}

.ndv-difference__item ul li span {
    color: #a8a8a8;
}

.ndv-difference__image {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0;
    transition: 1000ms;
}

.ndv-difference__image.element-show {
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .ndv-difference__image {
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .ndv-difference__image {
        border-radius: 10px;
    }
}

.ndv-difference__image img {
    width: 100W;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right;
    object-position: right;
    border-radius: 20px;
}

@media only screen and (max-width: 767px) {
    .ndv-difference__image img {
        border-radius: 10px;
    }
}

.ndv-fine {
    background: none;
}

.ndv-fine .ndv__title {
    max-width: 100%;
}

.ndv-fine .ndv__item {
    background: #f8f9f4;
}

.ndv-fine .ndv__item b {
    font-weight: 400;
    color: #4f870c;
}

.ndv-fine .ndv__item strong {
    font-weight: 400;
    color: #4f870c;
}

.scheme {
    position: relative;
    padding: 80px 0;
}

.scheme__fon {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scheme__fon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.scheme__inner {
    position: relative;
    z-index: 5;
}

.scheme__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.scheme__title.element-show {
    opacity: 1;
    transform: none;
}

.scheme__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 27px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .scheme__items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.scheme__items::before {
    content: "";
    display: block;
    background: #d1e5af;
    height: 1px;
    width: calc(100% - 197px);
    background-size: 100%;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0%);
}

@media only screen and (max-width: 991px) {
    .scheme__items::before {
        height: calc(100% - 50px);
        width: 1px;
        left: 25px;
        top: 50%;
        transform: translate(0%, -50%);
    }
}

.scheme__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 991px) {
    .scheme__item {
        flex-direction: row;
        gap: 20px;
    }
}

.scheme__number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: none;
    border: 1px solid #d1e5af;
    position: relative;
    border-radius: 100%;
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.scheme__number::before {
    content: "";
    display: block;
    background: #d1e5af;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scheme__number span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: #4f870c;
}

.scheme__name {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .scheme__name {
        text-align: left;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .scheme__name {
        font-size: 18px;
    }
}

.scheme__text {
    text-align: center;
    color: #bdbdbd;
}

@media only screen and (max-width: 1300px) {
    .scheme__text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .scheme__text {
        text-align: left;
    }
}

.scheme__text a {
    font-weight: 500;
    color: #4f870c;
}

.scheme__text a:hover {
    color: #d1e5af;
}

.invent__faq {
    margin-bottom: 40px;
}

.faq {
    padding-top: 80px;
}

.faq__title {
    opacity: 0;
    transition: 1000ms;
    transform: translateX(-50px);
}

.faq__title.element-show {
    opacity: 1;
    transform: none;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background: #f8f9f4;
    border-radius: 20px;
}

.faq__item.active .faq__icon {
    background: #d1e5af;
}

.faq__item.active .faq__icon img:first-child {
    display: none;
}

.faq__item.active .faq__icon img:last-child {
    display: block;
}

.faq__head {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
}

@media only screen and (max-width: 767px) {
    .faq__head {
        padding: 20px 15px;
    }
}

.faq__head span {
    font-size: 20px;
    line-height: 110%;
    color: #1a1a1a;
}

@media only screen and (max-width: 767px) {
    .faq__head span {
        font-size: 16px;
    }
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #4f870c;
    transition: 300ms;
}

@media only screen and (max-width: 767px) {
    .faq__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

.faq__icon img {
    transition: 300ms;
}

@media only screen and (max-width: 767px) {
    .faq__icon img {
        width: 15px;
        height: auto;
    }
}

.faq__icon img:last-child {
    display: none;
}

.faq__drop {
    display: none;
    line-height: 130%;
    color: #bdbdbd;
    padding: 0 30px 20px;
}

@media only screen and (max-width: 767px) {
    .faq__drop {
        padding: 0 15px 20px;
        font-size: 14px;
    }
}

.reviews-services {
    padding: 80px 0 0;
}

.form-services {
    padding-top: 80px;
    margin: 0;
}

.popup_cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    font-family: Arial, Helvetica, Verdana, Georgia, Times, serif;
    display: none;
}

.window_cookie {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-bottom: 0;
    color: #8b8b8b;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    border-radius: 0 20px 0 0;
}

.close_pop {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.window_cookie__btn {
    display: block;
    color: white;
    padding: 5px 15px;
    font-size: 13px;
    transition: .5s;
    cursor: pointer;
    background: #47870c;
    border: 0;
}

.window_cookie__btn:hover {
    background: #55a20e;
}

.form_block_popup {
    display: none;
}

.open_form {
    background: #fff;
    color: #000;
    width: 150px;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
}

.form_block_popup .back_form {
    background: #00000059;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form_block_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.form_block {
    position: absolute;
    z-index: 2;
    width: fit-content;
    background: #fff;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 20px;
    max-width: 95%;
    border-radius: 10px;
}

.form_block span.close_form_popup {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.form_block span.close_form_popup+p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.form_block input[type="text"] {
    margin-bottom: 10px;
}

.form_block input[type="text"]+p {
    text-align: center;
    line-height: 18px;
    font-size: 15px;
    margin-bottom: 10px;
}

.form_block input[type="submit"] {
    display: block;
    margin: 0 auto;
    background: #98bd56;
    color: #fff;
    padding: 10px;
    width: 190px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: .2s;
}

.form_block input[type="submit"]:hover {
    background: #fff;
    color: #98bd56;
    box-shadow: 2px 2px 0 #98bd5678;
}

.ep-head .open_form {
    background: #47870c;
    width: 150px;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    padding: 0;
    cursor: pointer;
    color: #fff;
}

.form-success {
    display: none;
    justify-content: center;
    background: #f8f9f4;
    border-radius: 10px;
    padding: 8px;
    font-size: 18px;
}

.form_block .form__inner .form__info p {
    font-size: 14px;
}



.form_block p.form_block_title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.showcase__image {
    display: flex;
    position: absolute;
    right: 60px;
    top: 0;
    width: 399px;
    height: auto;
    opacity: 0;
    transition: 1000ms;
}

.showcase__image.element-show {
    opacity: 1;
}

@media only screen and (max-width: 1300px) {
    .showcase__image {
        right: 40px;
        width: 350px;
    }
}

@media only screen and (max-width: 991px) {
    .showcase__image {
        position: static;
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
    }
}

.showcase__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block__text a {
    transition: 0.2s;
}

.poo-price__subtitle {
    padding: 30px !important;
}

.poo-stages__text {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
}

.block__text a:hover {
    color: #4f870c;
}

.poo-link {
    color: #47870c;
}

.poo__drop ol {
    padding-left: 20px;
}

.poo-stages__parapraph {
    margin-top: 20px;
    color: #000;
}

.poo-stages__text__after-scheme {
    margin-top: 20px;
    font-size: 18px;
}

.poo-stages__text__after-scheme>p>a {
    color: #47870c;
    cursor: pointer;
}

.poo__title {
    max-width: 950px;
}

.poo__section {
    padding-bottom: 0;
}

.ndv-stages__custom-title {
    max-width: 850px;
}




.news-detail__top {
    /* display: flex; */
}

.news-detail__top {
    /* display: flex; */
    /* align-items: center; */
}

.news-detail__top__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    /* flex-wrap: wrap; */
}

.news-detail__top__author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-detail__top__stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-detail__top__stat>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__top__stat>div>span {
    color: #1E1E1E;
    line-height: normal;
}

.news-detail__top__media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-detail__top__media__repost {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__top__media__wrap {
    display: flex;
    align-items: center;
    gap: 13px;
}

.news-detail__top__media__item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #D1E5AF;
}

.news-detail__top {
    border-radius: 10px;
    background: #F8F9F4;
    padding: 20px;
}

.invent-blowout__subtitle {
    margin-top: 20px;
}

@media only screen and (max-width: 1300px) {
    h2 {
        font-size: 32px;
    }

    .invent__h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    h2 {
        margin-bottom: 30px;
    }

    .invent__h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        border-left: 4px solid #4f870c;
        padding-left: 15px;
        line-height: 100%;
        font-size: 26px;
    }

    .invent__h3 {
        font-size: 14px;
    }
}

.invent__items {
    margin-bottom: 40px;

}

.invent__text {
    margin: auto 0;
}

.invent__subtitle-text {
    color: #4f870c;
    margin-bottom: 20px;
}

.invent__block {
    margin-bottom: 40px;
}

.invent__subtitle {
    color: #4f870c;
    margin-bottom: 40px;
}

.invent {
    padding-bottom: 30px;
}

.invent-price__subtitle {
    margin-top: 70px;
    padding: 30px;
}

.invent-stages-text {
    margin: 20px 0;
}

.invent__ndv-subtitle {
    margin-bottom: 0;
}

.invent__blowout {
    padding-bottom: 0;
}

.invent__showcase,
.invent__uslug,
.invent__block,
.invent,
.invent__stages,
.invent__blowout,
.invent-price,
.invent__faq {
    padding: 30px 0;
}

.invent__showcase {
    padding-top: 236px;
}

.invent__elem-text {
    margin-bottom: 10px;
}

.invent__list {
    row-gap: 10px;
}

.invent__stages .ndv-stages__item {
    padding-left: 0;
}

.invent__stages-h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: #4f870c;
}

/* Style the list */
.breadcrumb_box {
    list-style: none;
}

/* Display list items side by side */
.breadcrumb_box li {
    display: inline;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #4F870C;
}

/* Add a slash symbol (/) before/behind each list item */
.breadcrumb_box li+li:before {
    padding: 8px;
    content: "";
    background-image: url('/images/new-design/bred_str.svg');
    background-repeat: no-repeat;
    background-position: center;
}

/* Add a color to all links inside the list */
.breadcrumb_box li a {
    color: #4F870C;
    text-decoration: none;
    transition: all .3s ease;
}

/* Add a color on mouse-over */
.breadcrumb_box li a:hover {
    color: #1e1e1e;
}

.breadcrumb_eco {
    margin-bottom: 41px;
    padding-top: 200px;
}

@media only screen and (max-width: 991px) {
    .breadcrumb_eco {
        padding-top: 111px;
    }
}

.news_title {
    max-width: 613px;
    color: #4F870C;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    /* 46.8px */
    text-transform: uppercase;
    border-left: 5px solid #4f870c;
    padding-left: 20px;
    opacity: 1;
    transform: none;
    margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .news_title {
        border-left: 4px solid #4f870c;
        padding-left: 15px;
        font-size: 26px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    section.news_top-line {
        margin-bottom: 10px;
    }

    /* .breadcrumb_eco {
        margin-bottom: 20px;
    } */
}

.news_top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    background: #F8F9F4;
    padding: 20px;
    margin-bottom: 30px;
    gap: 30px;
}

@media only screen and (max-width: 650px) {
    .news_top-line {
        flex-direction: column;
    }
}

.news_top-line_items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news_top-line_soc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news_top-line_soc a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news_top-line_soc a svg path {
    transition: .3s ease;
}

.news_top-line_soc a:hover svg path:first-child {
    fill: #4F870C;
}

.news_top-line_soc a:hover svg path:last-child {
    fill: #fff;
}

.news_soc-share {
    cursor: pointer;
}

.news_top-line_soc a.news_soc-share:hover {
    color: #4F870C;
}

.news_top-line_soc a.news_soc-share:hover svg path {
    fill: #4F870C;
}

.news_top-line_item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.news_contant-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news_contant-bg {
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 370px;
}

.news_contant-tags {
    display: flex;
    gap: 10px;
}

.news_contant-tag {
    border-radius: 10px;
    background: #F8F9F4;
    padding: 10px 20px;
    color: #4F870C;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.news_contant-tag::before {
    content: '#';
}

.news_contant {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .news_contant {
        display: flex;
        flex-direction: column-reverse;
    }

    .news_contant .news_contant-menu {
        min-height: fit-content;
        position: relative;
    }
}

.news_contant p {
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
}

@media only screen and (max-width: 767px) {

    section.news_contant p,
    .news_contant .news_contant-menu ul li a,
    .news_top-line_item,
    .news_soc-share,
    .news_contant-tag,
    h3.news_h3,
    ol.news_contant-number li,
    ol.news_contant-number li::before,
    ul.news_contant-check li {
        font-size: 14px;
    }

    .news_contant .news_contant-menu p {
        font-size: 18px;
    }

    h2.news_contant-title {
        font-size: 18px;
        border-left: 4px solid #4f870c;
        padding-left: 15px;
    }

    div.news_contant-items_text,
    ul.news_contant-check {
        gap: 10px;
    }

    .news_contant-items {
        gap: 20px;
    }

}

.news_contant-menu {
    min-height: 370px;
    height: fit-content;
    padding: 30px 20px 30px 30px;
    border-radius: 10px;
    background: #F8F9F4;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 0;
    right: 0;
}

.news_contant-menu p {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.news_contant-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news_contant-menu ul li {
    display: flex;
    gap: 5px;
}

.news_contant-menu ul li::before {
    content: '-';
    color: #4F870C;

}

.news_contant-menu ul li a {
    color: #4F870C;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    transition: all.3s ease;
}

.news_contant-menu ul li a:hover {
    color: #1e1e1e;
}

.news_contant-title {
    color: #4F870C;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
    text-transform: uppercase;
    border-left: 5px solid #4f870c;
    padding-left: 20px;
    margin-bottom: 0;
}

.news_contant-items_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news_contant-items_text p {
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    padding-top: 3px;
}

.news_h3 {
    color: #4F870C;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}

.news_contant-text_item {
    display: flex;
    flex-direction: column;
}

.news_important {
    border-radius: 10px;
    background-color: #F8F9F4;
    padding: 20px;
    display: grid;
    grid-template-columns: 20px auto;
    gap: 10px;
}

.news_clarif {
    color: var(--green, #4F870C);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.news_contant-number {
    list-style-type: none;
    counter-reset: my-counter;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news_contant-number li {
    padding-left: 54px;
    position: relative;
    color: var(--green, #4F870C);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.news_contant-number li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    width: 28px;
    height: 28px;
    border-radius: 27.2px;
    background-color: #4F870C;
    position: absolute;
    left: 4px;
    top: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
}

.news_contant-number li::after {
    content: '';
    width: 34px;
    height: 34px;
    border-radius: 27.2px;
    border: 0.68px solid #4F870C;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.news_contant-check {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news_contant-check li {
    position: relative;
    padding-left: 55px;
    border-radius: 10px;
    background: #F8F9F4;
    padding: 20px 20px 20px 75px;
    color: var(--green, #4F870C);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
}

.news_contant-check li::before {
    content: '';
    background-image: url('/images/new-design/icon_check.svg');
    position: absolute;
    width: 35px;
    height: 35px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.literature {
    padding-top: 80px;
}

.literature_title {
    font-weight: 400;
    font-size: 36px;
    line-height: 130%;
    text-transform: uppercase;
    color: #4f870c;
    border-left: 5px solid #4f870c;
    padding-left: 20px;
    margin-bottom: 40px;
}

.news_contant-number_liter li {
    color: #1e1e1e;
}

.news_contant-number_liter li a {
    color: #4f870c;
    transition: all .3s ease;
}

.news_contant-number_liter li a:hover {
    text-decoration: underline;
}

.news_form {
    margin-top: 40px;
}

.news_form .form__inner {
    grid-template-columns: 627px 1fr;
    gap: 138px;
}

@media only screen and (max-width: 1300px) {
    .news_form .form__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }

    .news_form .form__image {
        align-items: center;
        width: 100%;
    }

    .news_form .form__image img {
        width: fit-content;
    }

    .news_form .button {
        width: fit-content;
    }
}

@media only screen and (max-width: 767px) {
    section.news_form .button {
        width: 100%;
        font-size: 14px;
    }

    .news_form .form__title {
        font-size: 20px;
    }
}

.news_form .form__title {
    max-width: 100%;
}

.news_form .form__checkbox {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
}

.news_form .form__item p {
    font-size: 14px;
}

.news_form .form__item p a {
    color: #4F870C;
    transition: all .3s ease;
}

.news_form .form__item p a:hover {
    text-decoration: underline;
}

.news_form .form__image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 40px;
}

.news_form .form__image img {
    height: auto;
}

.news_form .button {
    font-size: 16px;
    font-weight: 500;
}

.form__label {
    display: flex;
    gap: 5px;
}

.footer-privacy {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-privacy a {
    border-bottom: 1px solid transparent;
    transition: all .3s;
}

.footer-privacy a:hover {
    border-bottom: 1px solid #000;
}

.form__check__paragraph {
    font-size: 12px !important;
}

.form__check__paragraph a {
    color: #4f870c;
    font-size: 12px;
}

.form__item-col {
    flex-direction: column;
    gap: 15px;
}
.dvos__section
{
    padding: 80px 0;
}

.dvos__subtitle-list .ndv-stages__item
{
        background-color: transparent;
        
}
.dvos__subtitle-list .ndv-stages__item p
{
    text-indent: 0;
}
.dvos__paragraph-gray
{
    color:#464646;
}
.dvos-scheme__items
{
    margin-top: 20px;
    grid-template-columns: repeat(6, 1fr);
}
.dvos__subtitle
{
    margin-top: 20px;
}
.dvos-stages__items
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}
.dvos-penalty__section
{
    padding-top: 30px;
    margin-bottom: 30px;
}
.dvos__faq
{
    margin-bottom: 40px;
}
.dvos-price__subtitle
{
    position: relative;
}
.dvos-showcase__title
{
    font-size: 34px;
}
.dvos-showcase
{
    padding-bottom: 20px;
}
.dvos
{
    padding-bottom: 0px;
}
.section__kadastr
{
    padding-bottom: 0;
}