
:root {
  --cgreen: #70BB18;
  --cdarkgreen: #5E8C28;
  --cblack: #373F3C;
  --cred: #DA4F44;
  --clight: #F8F6F2;
}

html{
    /*height: 100%;*/
    min-width: 360px;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  color: var(--cblack);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
  line-height: 1.4;
  background-color: var(--clight);
  box-sizing: border-box;
  /*width: 100vw;*/
}


header {
  flex: 0 0 auto;
  position: relative;
  z-index: 11;
}
main {
  flex: 1 0 auto;
  position: relative;
  z-index: 10;
}
footer {flex: 0 0 auto;}

a {
    color: var(--cgreen);
}
h2 {
    text-transform: uppercase;
    font-size: 52px;
    font-weight: bold;
    margin: 0 0 40px;
}
h2>span {color: var(--cgreen)}
h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 0;
}
main ul {
    list-style-type: none;
    padding-left: 0;
}
main ul>li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
main ul>li:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: var(--cgreen);
    position: absolute;
    left: 0;
    top: 10px;
}
@media (max-width: 767px) {
    body {font-size: 18px;}
    h2 {font-size: 35px;}
}
@media (max-width: 479px) {
    body {font-size: 16px;}
    h2 {font-size: 26px;}
    h3 {font-size: 18px;}
}

.f_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.mt0 {margin-top: 0;}
.mb0 {margin-bottom: 0;}
.center {text-align: center;}
.right {text-align: right;}
.upper {text-transform: uppercase;}
.cblack {color: var(--cblack);}
.mt40 {margin-top: 40px;}
.mt60 {margin-top: 60px;}

.morelink {
    color: var(--cblack);
    text-transform: uppercase;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
    display: inline-block;
}
.morelink:before {
    content: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7279 1.13609C14.7279 0.583807 14.2802 0.136092 13.7279 0.136091L4.72792 0.136092C4.17564 0.136092 3.72792 0.583807 3.72792 1.13609C3.72792 1.68838 4.17564 2.13609 4.72792 2.13609L12.7279 2.13609L12.7279 10.1361C12.7279 10.6884 13.1756 11.1361 13.7279 11.1361C14.2802 11.1361 14.7279 10.6884 14.7279 10.1361L14.7279 1.13609ZM1.70711 14.5711L14.435 1.8432L13.0208 0.428985L0.292893 13.1569L1.70711 14.5711Z' fill='%23373F3C' /%3E%3C/svg%3E");
    position: absolute;
    top: 1px;
    left: 0;
    transition: .4s transform;
}
.morelink:hover:before {
    transform: rotate(45deg);
}

.pagewrapper {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    position: relative;
}
.e1 {
    width: 400px;
    height: 400px;
    background: #FEE218;
    filter: blur(300px);
    position: absolute;
    top: -200px;
    left: -200px;
}
.e2 {
    width: 400px;
    height: 400px;
    background: #6EBC13;
    filter: blur(300px);
    position: absolute;
    top: 580px;
    left: -200px;
}
.e3 {
    width: 400px;
    height: 400px;
    background: #FEE218;
    filter: blur(300px);
    position: absolute;
    top: 690px;
    right: -200px;
}
.top_ball {
    width: 152px;
    height: auto;
    position: absolute;
    left: 0px;
    top: 130px;
    z-index: 2;
}

/*HEADER*/
.header {
    background: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.h_logolink {line-height: 0;}
.h_logo {
    height: 50px;
    width: auto;
}

header nav {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    align-items: center;
}
header nav>a {
    font-size: 16px;
    text-decoration: none;
    color: var(--cblack);
    transition: .4s color;
}
header nav>a:hover {color: var(--cred);}

header .contacts {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}
.roundlinks {display: flex; gap: 20px;}
.roundlink {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--cgreen);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s background-color;
}
.roundlink:hover {background-color: var(--cred);}
.tglink, .walink {position: relative;}
.tglink {left: -2px;}
.walink {top: -1px;}

.phonelink {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    color: var(--cred);
    text-decoration: none;
    transition: .4s color;
}
.phonelink:hover {color: var(--cgreen);}

#nav_open {
    background: var(--cblack);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.navline {
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
}
.navline:before, .navline:after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
}
.navline:before {top: -6px;}
.navline:after {top: 6px;}

@media (max-width: 1279px) {
    .top_ball {display: none;}
    .header {
        padding-bottom: 50px;
        position: relative;
    }
    header nav {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        justify-content: center;
    }
    .roundlink {
        width: 40px;
        height: 40px;
    }
    .roundlink>img {width: 25px;}
}
@media (max-width: 767px) {
    .container {padding: 0 15px;}
}
@media (max-width: 639px) {
    #nav_open {display: flex;}

    .header {padding: 15px;}
    .h_logo {height: 38px;}
    .phonelink {font-size: 18px;}
    .roundlink {
        width: 30px;
        height: 30px;
    }
    .roundlink>img {width: 18px;}
    header .contacts {gap: 10px;}
    .roundlinks {gap: 10px;}

    header nav {
        position: absolute;
        z-index: 9;
        top: 100%;
        background: #fff;
        padding: 20px;
        margin: 0 30px;
        flex-wrap: wrap;
        height: fit-content;
        column-gap: 20px;
        row-gap: 10px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        display: none;
    }
}
@media (max-width: 479px) {
    .header {padding: 10px 15px;}
    header .contacts {
        position: relative;
        flex-grow: 1;
        flex-direction: column;
    }
    .phonelink {order: 1; font-size: 16px;}
    .roundlinks {order: 2;}
}
/**/



.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.hero_img_wrapper {
    position: relative;
    width: 100%;
    height: 680px
}
.hcircle {
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
}
.bigcircle {
    width: 640px;
    height: 640px;
    background: #C9ED9F;
    margin-left: -320px;
    margin-top: -320px;
}
.medcircle {
    width: 490px;
    height: 490px;
    background: #B8E088;
    margin-left: -245px;
    margin-top: -245px;
    animation: animate_pulse_med 1.5s ease-in-out infinite;
}
.smallcircle {
    width: 340px;
    height: 340px;
    margin-left: -170px;
    margin-top: -170px;
    background-image: url('/images/hero.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: animate_pulse 1.5s ease-in-out infinite;
}

@keyframes animate_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0.4);
        transform: scale(1);
    }
    40% {
        box-shadow: 0 0 0 60px rgba(158, 197, 112, 0);
        transform: scale(0.985);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0);
        transform: scale(1);
    }
}

@keyframes animate_pulse_med {
    30% {
        box-shadow: 0 0 0 0 rgba(188, 224, 136, 0.5);
        transform: scale(1);
    }
    80% {
        box-shadow: 0 0 0 60px rgba(188, 224, 136, 0);
        /*transform: scale(1.02);*/
    }
    100% {
        box-shadow: 0 0 0 0 rgba(188, 224, 136, 0);
        transform: scale(1);
    }
}

.icons_set1 {
    width: 490px;
    height: 490px;
    margin-left: -245px;
    margin-top: -245px;
    animation-name: rotation;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.icons_set2 {
    width: 640px;
    height: 640px;
    margin-left: -320px;
    margin-top: -320px;
    animation-name: rotation;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.icon {
    position: absolute;
    width: 80px;
    height: auto;
    animation-name: ccw_rotation;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.icon_sm {width: 60px;}
.wb {top: -30px;left: 140px;}
.av {top: 75px;left: 415px;}
.kz {top: 365px;left: 410px;}
.ok {top: 458px;left: 185px;}
.mm {top: 235px;left: -35px;}

.ym {top: -20px;left: 370px;}
.al {top: 285px;left: 610px;}
.yl {top: 580px;left: 410px;}
.vk {top: 520px;left: 60px;}
.ozon {top: 165px;left: -8px;}


@keyframes rotation {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}
@keyframes ccw_rotation {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(-360deg);
    }
}

@media (max-width: 1279px) {
    .bigcircle {
        width: 50vw;
        height: 50vw;
        margin-left: -25vw;
        margin-top: -25vw;
    }
    .medcircle {
        width: 38vw;
        height: 38vw;
        margin-left: -19vw;
        margin-top: -19vw;
    }
    .smallcircle {
        width: 26vw;
        height: 26vw;
        margin-left: -13vw;
        margin-top: -13vw;
    }
    .icon {width: 6vw}
    .icon_sm {width: 4.7vw}
    .icons_set1 {
        width: 37.6vw;
        height: 37.6vw;
        margin-left: -18.8vw;
        margin-top: -18.8vw;
    }
    .icons_set2 {
        width: 46.6vw;
        height: 46.6vw;
        margin-left: -23.3vw;
        margin-top: -23.3vw;
    }
    .wb {top: -2.36vw;left: 11vw;}
    .av {top: 5.9vw;left: 32.68vw;}
    .kz {top: 26.74vw;left: 32.3vw;}
    .ok {top: 35vw;left: 14.57vw;}
    .mm {top: 18.51vw;left: -2.75vw;}

    .ym {top: -1.57vw;left: 31vw;}
    .al {top: 22.44vw;left: 45.7vw;}
    .yl {top: 43vw;left: 32.28vw;}
    .vk {top: 40vw;left: 4.72vw;}
    .ozon {top: 13vw;left: -3.5vw;}
}

@media (max-width: 767px) {
    .bigcircle {
        width: 90vw;
        height: 90vw;
        margin-left: -45vw;
        margin-top: -45vw;
    }
    .medcircle {
        width: 68.4vw;
        height: 68.4vw;
        margin-left: -34.2vw;
        margin-top: -34.2vw;
    }
    .smallcircle {
        width: 46.8vw;
        height: 46.8vw;
        margin-left: -23.4vw;
        margin-top: -23.4vw;
    }
    .icon {width: 10.8vw}
    .icon_sm {width: 8.46vw}
    .icons_set1 {
        width: 67.7vw;
        height: 67.7vw;
        margin-left: -33.85vw;
        margin-top: -33.85vw;
    }
    .icons_set2 {
        width: 83.88vw;
        height: 83.88vw;
        margin-left: -41.94vw;
        margin-top: -41.94vw;
    }
    .wb {top: -4.25vw;left: 19.8vw;}
    .av {top: 10.62vw;left: 58.8vw;}
    .kz {top: 48.13vw;left: 58.14vw;}
    .ok {top: 63vw;left: 26.226vw;}
    .mm {top: 33.318vw;left: -4.95vw;}

    .ym {top: -2.826vw;left: 55.8vw;}
    .al {top: 40.4vw;left: 82.26vw;}
    .yl {top: 77.4vw;left: 58.1vw;}
    .vk {top: 72vw;left: 8.5vw;}
    .ozon {top: 23.4vw;left: -6.3vw;}
}



h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0;
}
h1>span {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 20px;
    display: inline-block;
}

.btn {
    background: var(--cred);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    padding-right: 55px;
    transition: .4s background;
    display: inline-block;
    text-align: left;
    border: none;
    text-decoration: none;
}
.btn:after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.806 1.69688C14.806 1.1446 14.3583 0.696883 13.806 0.696882L4.80605 0.696883C4.25376 0.696883 3.80605 1.1446 3.80605 1.69688C3.80605 2.24917 4.25376 2.69688 4.80605 2.69688L12.806 2.69688L12.806 10.6969C12.806 11.2492 13.2538 11.6969 13.806 11.6969C14.3583 11.6969 14.806 11.2492 14.806 10.6969L14.806 1.69688ZM1.78523 15.1319L14.5132 2.40399L13.0989 0.989776L0.371018 13.7177L1.78523 15.1319Z' fill='%23B30C0D' /%3E%3C/svg%3E");
    /*content: ' ';*/
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 18px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 10px;
    /*top: 7px;*/
    top: 50%;
    margin-top: -18px;
    transition: .4s transform;
}

.btn:hover {
    background: #b33b31;
}
.btn:hover:after {
    transform: rotate(45deg);
}

.hero_text .btn {
    margin: 50px 0;
}
.hero_text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1023px) {
    .hero {
        display: block;
        height: 60vw;
    }
    .hero_text {
        max-width: 80%;
        position: relative;
        z-index: 1;
    }
    .hero_img_wrapper {
        height: auto;
        width: auto;
        position: absolute;
        right: 23vw;
        top: 500px;
        z-index: 0;
    }
    h1 {font-size: 44px;}
    h1>span {font-size: 22px;}

    .btn {font-size: 15px;}
    .hero_text .btn {margin: 30px 0;}
}

@media (max-width: 767px) {
    .hero {height: auto;}
    .hero_text {
        display: block;
        width: 100%;
        max-width: none;
    }
    .hero_img_wrapper {
        width: 100%;
        height: 90vw;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-top: 40px;
    }
}

@media (max-width: 479px) {
    h1 {font-size: 33px;}
    h1>span {font-size: 18px;}
}

.section_ptb {padding: 150px 0;}
.section_ptb_small {padding: 100px 0;}
.threefourth {width: 75%; position: relative;}
.morehalf {width: 64%; position: relative;}
.righttf {margin-left: auto;}
.bigtext {
    font-size: 52px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
.accented {
    background: #C9ED9F;
    padding: 15px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.infoarrow {
    position: absolute;
    left: -250px;
    top: -20px;
}
#general_desc {
    margin-bottom: 80px;
}

#card_description {
    align-items: stretch;
    gap: 40px;
}
.card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 30px 0;
    border-radius: 30px 30px 40px 40px;
    width: 50%;
    background: #fff;
    padding-bottom: 85px;
    position: relative;
}
.card_header {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.card_header>span {
    font-size: 20px;
    font-weight: 400;
    display: block;
    line-height: 1;
    text-transform: none;
}
.card_header:after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: var(--cgreen);
    margin-top: 20px;
}
.card_content {margin-bottom: 30px;}
.card_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.gbtn {
    display: block;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 300;
    text-decoration: none;
    background-color: var(--cgreen);
    border-radius: 40px;
    padding-right: 80px;
}
.gbtn>span {font-weight: 700;}

.gbtn:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.5966 1.90873C24.5966 1.08031 23.9251 0.408733 23.0966 0.408733L9.59664 0.408732C8.76821 0.408732 8.09664 1.0803 8.09664 1.90873C8.09664 2.73716 8.76821 3.40873 9.59664 3.40873H21.5966V15.4087C21.5966 16.2372 22.2682 16.9087 23.0966 16.9087C23.9251 16.9087 24.5966 16.2372 24.5966 15.4087L24.5966 1.90873ZM2.338 24.7887L24.1573 2.96939L22.036 0.848072L0.216684 22.6674L2.338 24.7887Z' fill='%2370BB18' /%3E%3C/svg%3E");
    /*content: ' ';*/
    display: block;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 30px;
    line-height: 70px;
    text-align: center;
    position: absolute;
    right: 10px;
    /*top: 7px;*/
    top: 50%;
    margin-top: -30px;
    transition: .4s transform;
}

.gbtn:hover {
    background: #5b9d0f;
}

@media (max-width: 1023px) {
    .section_ptb {padding: 100px 0;} 

    #card_description {display: block;}
    .card {
        width: 100%;
        box-sizing: border-box;
    }
    .card:first-child {margin-bottom: 40px;}
}
@media (max-width: 767px) {
    .threefourth {width: 100%;}
    .bigtext {font-size: 44px;}
    .morehalf {width: 85%;}
    .infoarrow {
        position: absolute;
        left: -122px;
        top: 23px;
        width: 162px;
        z-index: 999;
        transform: rotate(45deg);
    }
    .card {padding: 30px 20px 70px;}
    .card_header {font-size: 26px;}
    .gbtn {
        font-size: 15px;
    } 
}

@media (max-width: 479px) {
    .bigtext {font-size: 36px;}
    .infoarrow {left: -110px;}
    .card {padding: 30px 15px 70px;}
    .card_header {font-size: 19px;}
    .card_header>span {font-size: 16px;}
    .gbtn {padding-right: 50px;}
    .gbtn:after {
        transform: scale(0.6);
        top: 0;
        right: 0;
        margin-top: 0;
    }
}

/**/
#amodule {background: #DFECC9; position: relative;}
.mrow {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}
.mcol {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0;
}
.mblock {
    border: 2px solid #70BB18;
    padding: 30px;
    border-radius: 30px;
    height: 100%;
    font-size: 18px;
    position: relative;
}
.mblock_hug {height: auto;}
.mblock:after {
    content: url('/images/ball_small.svg');
    position: absolute;
    top: -28px;
    left: -10px;
}
.mgreenblock {
    border: 1px solid #9A9A9A;
    background: #C9ED9F;
    font-size: 20px;
}
.mgreenblock:after, .mblock_white:after {content: none;}
.mblock p:last-child, .mblock ul:last-child {margin-bottom: 0;}
.mblock p:first-child {margin-top: 0;}

.mblock_white {
    border: none;
    background: #fff;
    box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
}
.places {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.75%;
    row-gap: 20px;
}
.places>img {
    max-width: 17%;
}
.m_e {top: 40%;}

@media (max-width: 767px) {
    .mrow {
        display: block;
        margin-bottom: 0;
    }
    .mblock {margin-bottom: 40px;}
    .mblock_hug {margin-top: 40px;}
    .places>img {max-width: 48%;}
}

@media (max-width: 479px) {
    .mblock {padding: 30px 15px;} 

}
/**/


/**/
#reviews .container {position: relative;}
.reviews {margin-top: 120px;}
.review {
    margin-top: -80px;
    font-size: 16px;
    position: relative;
    border-radius: 30px;
    padding: 30px 30px 70px 30px;
    background: #fff;
    box-shadow: 0 -6px 24px 0 rgba(0, 0, 0, 0.1);
    transition: .4s transform;
}
.review:nth-child(even) {
    background: #C9ED9F;
}
.review:first-child {font-size: 20px;}
.review:last-child {padding-bottom: 30px;}
.review_author {
    font-style: italic;
    text-align: right;
}
.review:hover {
    transform: translateY(-10px);
}

.c_e1 {
    width: 400px;
    height: 400px;
    background: #FEE218;
    filter: blur(300px);
    position: absolute;
    top: 300px;
    left: -300px;
    z-index: -1;
}
.c_e2 {
    width: 400px;
    height: 400px;
    background: #6EBC13;
    filter: blur(300px);
    position: absolute;
    top: 600px;
    right: -300px;
    z-index: -1;
}
@media (max-width: 767px) {
    .review {
        padding: 30px 20px 70px 20px;
        font-size: 14px;
    }
    .review:first-child {font-size: 20px;}
}
@media (max-width: 479px) {
    .review {padding: 30px 15px 70px 15px;}
}
/**/

/**/
.cornerball {
    width: 410px;
    height: 410px;
    background: #81B544;
    position: relative;

    border: 85px solid #6F9F35;
    border-radius: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cbtop, .cbbottom {
    position: absolute;
}
.cbbottom {
    left: -250px;
    bottom: -250px;
    animation: animate_pulse_cbtop 3.5s ease-in-out infinite;
}
.cbtop {
    right: -250px;
    top: -250px;
    animation: animate_pulse_cbbottom 3.3s ease-in-out infinite;
}

@keyframes animate_pulse_cbtop {
    0% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 60px rgba(158, 197, 112, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0);
        transform: scale(1);
    }
}
@keyframes animate_pulse_cbbottom {
    0% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0.4);
        transform: scale(1);
    }
    40% {
        box-shadow: 0 0 0 60px rgba(158, 197, 112, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(158, 197, 112, 0);
        transform: scale(1);
    }
}
/**/

/**/
.greenblock {
    background-image: url(/images/lines.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50vh;
    background-color: #5E8C28;
    position: relative;
    overflow: hidden;
}
#price .container {position: relative;}
#price h2 {
    position: absolute;
    top: 0;
    left: 30px;
    background-color: var(--clight);
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
#price h2:after, #price h2:before {
    content: url('/images/angle.svg');
    position: absolute;
}
#price h2:after {
    right: -29px;
    top: -3px;
}
#price h2:before {
    left: -33px;
    top: -8px;
    transform: rotate(90deg);
}

.prices_wrapper {align-items: flex-start; gap: 40px;}
.prices_wrapper>div {flex: 1 0;}
.mainprice {color: var(--clight);}
.mainprice>span {
    display: inline-block;
    background-color: #6E9F35;
    color: var(--clight);
    padding: 2px 10px;
    text-transform: uppercase;
    border-radius: 10px;
}
.mainprice>h3 {
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
}
.mainprice>.priceval {
    font-size: 64px;
    color: #DDFFB6;
    margin-bottom: 50px;
    margin-top: 0;
}
.mainprice>.btn {margin-top: 50px; text-decoration: none;}

.module_price {
    background-color: var(--clight);
    border-radius: 30px;
    padding: 30px;
}
.module_price:first-child {margin-bottom: 40px;}
.priceblock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.priceval {
    color: #5E8C28;
    font-size: 40px;
    margin: 0;
}
@media (max-width: 1279px) {
    #price h2 {font-size: 26px;}
    .mainprice>h3 {font-size: 36px;}
    .mainprice>.priceval {font-size: 54px; text-align: left;}
    .priceblock {display: block;}
    .priceval {text-align: right;}
}
@media (max-width: 1024px) {
    .prices_wrapper {display: block; margin-top: 40px;}
    .mainprice>h3, .mainprice>.priceval {margin-bottom: 20px;}
    .mainprice>.btn {margin-top: 20px;}
    .mainprice {margin-bottom: 40px;}
}
@media (max-width: 767px) {
    #price h2 {font-size: 22px;}
    .mainprice>h3 {font-size: 32px;}
}
@media (max-width: 479px) {
    #price h2 {
        font-size: 20px;
        padding: 15px 20px;
    }
    .mainprice>h3 {font-size: 25px;}
    .mainprice>.priceval {font-size: 40px;}
    .module_price {padding: 30px 15px;}
    .module_price .priceval {margin-bottom: 20px;}
}
/**/

/**/
.about_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}
.about_wrapper>div {flex: 1 0;}
.about_pict {position: relative;}
.about_photo {max-width: 100%;}
.label {
    position: absolute;
    right: -1px;
    top: -1px;
}
.about_lead {
    font-size: 24px;
    font-weight: 500;
}
.about_desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 65px;
}

.achievees {
    border-top: 2px solid #B6B6B6;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 80px;
}
.a_item {
    flex: 1 0;
    position: relative;
}
.a_item:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--cgreen);
    position: absolute;
    top: -10px;
    left: 0;
}
.a_num {
    font-size: 52px;
    font-weight: bold;
    color: var(--cgreen);
    margin: 15px 0 0 0;
    line-height: 1;
}
.a_desc {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 0 0;
}
@media (max-width: 1023px) {
    .about_desc {padding-top: 0;}
    .about_desc>h2 {
        font-size: 44px;
        margin-bottom: 0;
    }
    .about_lead {
        font-size: 18px;
        font-weight: 600;
    }
}
@media (max-width: 767px) {
    .about_wrapper {display: block;}
    .about_desc {margin-top: 40px;}
    .achievees {
        flex-wrap: wrap;
        border-top: none;
    }
    .a_item {
        flex-basis: 45%;
        border-top: 2px solid #B6B6B6;
    }
}
@media (max-width: 479px) {
    .about_desc>h2 {font-size: 40px;}
}
/**/


/**/
#clients {
    background-image: linear-gradient(229deg, rgba(243, 241, 176, 0.7) 0%, rgba(187, 228, 123, 0.7) 100%), url(/images/lines.svg);
/*    background-image: url(/images/lines.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50vh;*/
}
#clients h2 {margin-bottom: 100px;}
#clients h2>span {
    color: var(--cred);
}
.clients_footer {
    align-items: center;
    margin-top: 100px;
}
.clients_footer>div {
    color: var(--cred);
    text-transform: uppercase;
    font-size: 52px;
    font-weight: bold;
}
.scroll-element>img {
    display: inline-block;
    padding: 0 20px;
}
.scroll-parent {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
}
.rail_top {
    animation: marquee-horizontal 20s linear infinite;
}
.rail_bottom {animation: marquee-horizontal 30s linear infinite;}
.clients_rail {
    height: 60px;
    margin-bottom: 40px;
}

@keyframes marquee-horizontal {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1279px) {
    .clients_footer {display: block; text-align: right;}
    .clients_footer>div {text-align: left; margin-bottom: 40px;}
}

@media (max-width: 767px) {
    #clients h2 {margin-bottom: 50px;}
    .clients_footer {margin-top: 50px; position: relative;}
    .clients_footer>div {font-size: 35px;}
    .clients_footer>img {
        width: 100px;
        position: absolute;
        top: 52px;
        left: 50%;
        transform: rotate(24deg);
    }
    .scroll-element>img {
        padding: 0 10px;
        top: 38px;
        height: 50px;
    }
}
@media (max-width: 479px) {
    .clients_footer>div {font-size: 26px;}
    .clients_footer>img {
        top: 36px;
    }
}
/**/

/**/
#faq>.container {position: relative;}
.faq_block {
    background: #fff;
    border-radius: 30px;
    padding: 50px 30px;
}
.faq_item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
    margin-top: 30px;
}
.faq_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}
.faq_header>h3 {
    margin-bottom: 0;
    width: 100%;
    padding-right: 50px;
    box-sizing: border-box;
    position: relative;
}
.faq_indicator {
    display: inline-block;
    margin-left: 40px;
}
.answer {
    padding-left: 25%;
    font-size: 16px; 
    margin-top: 20px;
    display: none;
}

.faq_header>h3:after {
    content: url('/images/plus.svg');
    position: absolute;
    top: 5px;
    right: 0;
}
.faq_active>.faq_header>h3:after {
    content: url('/images/minus.svg');
}

@media (max-width: 767px) {
    .answer {padding-left: 5%;}
    .faq_block>.f_row {display: block;}
    .faq_block>.f_row>.btn {margin-top: 20px;}
}
@media (max-width: 479px) {
    .faq_block {
        padding: 30px 15px;
    }
    .answer {padding-left: 0;}
    .faq_header>h3 {font-size: 16px;}
}
/**/

/**/
#form {background-position: 0 30vh;}
#form>.container {position: relative;}
#form h2 {
    color: var(--clight);
    font-size: 36px;
    margin-bottom: 50px;
}
#form .f_row {align-items: flex-start;}
#form .f_row>div {
    flex: 1 0;
}
.footer_content {color: var(--clight);}
.footer_content p {margin-top: 0; font-size: 24px;}
.footer_phone {margin-top: 50px;}
.footer_phone>.phonelink {
    display: inline-block;
    padding: 13px 40px;
    background: #81B544;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    border-radius: 30px;
}
.footer_roundlinks {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 50px;
}
.footer_roundlinks .roundlink {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: var(--cred);
}
.footer_roundlinks .roundlink:hover {
    background: var(--cgreen);
}
.form_wrapper {position: relative;}
.footer_form {
    padding: 50px 30px;
    background: #E9F0D9;
    border-radius: 30px;
    box-shadow: 10px 10px var(--cred);
}
.footer_form>input, .footer_form>textarea {
    border: 1px solid #5E8C28;
    font-size: 18px;
    text-transform: uppercase;
    padding: 17px 20px;
    background: #F8F6F2;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}
.footer_form>textarea {
    height: 170px;
}

.footer_form .b24-form-wrapper.b24-form-border-bottom {
    background: transparent;
    border-bottom: none;
}
.footer_form .b24-form-content.b24-form-padding-side {padding: 0;}
.footer_form .b24-form-field {margin-bottom: 30px;}

.footer_form  .b24-form-header-padding,
.footer_form  .b24-form-sign {
    display: none
}

.footer_form .b24-form-control-string .b24-form-control, .footer_form .b24-form-control-list .b24-form-control, .footer_form .b24-form-control-text .b24-form-control, .footer_form .b24-form-control-select .field-item {
    border-radius: 10px;
    background: #F8F6F2;
    border: 1px solid #5E8C28;
    font-size: 18px;
}
.footer_form .b24-form-control-string .b24-form-control:focus:not([readonly]), .footer_form .b24-form-control-list .b24-form-control:focus:not([readonly]), .footer_form .b24-form-control-text .b24-form-control:focus:not([readonly]), .footer_form .b24-form-control-select .field-item:focus:not([readonly]) {
    border-color: #6f9f35;
}
.footer_form .b24-form-control-label {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}
.footer_form .b24-form-btn-block {
    text-align: center;
}
.footer_form .b24-form-btn {
    background: var(--cred);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    padding-right: 55px;
    transition: .4s background;
    display: inline-block;
    text-align: left;
    border: none;
    text-decoration: none;
    width: auto;
}
.footer_form .b24-form-btn:after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.806 1.69688C14.806 1.1446 14.3583 0.696883 13.806 0.696882L4.80605 0.696883C4.25376 0.696883 3.80605 1.1446 3.80605 1.69688C3.80605 2.24917 4.25376 2.69688 4.80605 2.69688L12.806 2.69688L12.806 10.6969C12.806 11.2492 13.2538 11.6969 13.806 11.6969C14.3583 11.6969 14.806 11.2492 14.806 10.6969L14.806 1.69688ZM1.78523 15.1319L14.5132 2.40399L13.0989 0.989776L0.371018 13.7177L1.78523 15.1319Z' fill='%23B30C0D' /%3E%3C/svg%3E");
    /*content: ' ';*/
    display: block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 18px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 10px;
    /*top: 7px;*/
    top: 50%;
    margin-top: -18px;
    transition: .4s transform;
}
.footer_form .b24-form-btn:hover {background: #b33b31;}
.footer_form .b24-form-btn:hover:after {transform: rotate(45deg);}

.footer_form .b24-form-control-alert-message {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 10px 10px 10px;
}

.rocket_wrapper {
    width: 222px;
    height: 210px;
    position: absolute;
    right: 0;
    top: -100px;
}
.rocket_wrapper>img {position: absolute;}
.p_rocket {
    position: absolute;
    right: 0;
    top: -40px;
}
.p_star1 {
    top: 30px;
    left: 10px;
}
.p_star2 {
    width: 26px;
    height: auto;
    top: 20px;
    left: 60px;
    transform: rotate(50deg);
}
@media (max-width: 1023px) {
    #form h2 {width: 75%;}
    .footer_content p {font-size: 18px;}
    .footer_phone>.phonelink {
        padding: 10px 20px;
        font-size: 30px;
    }
    .footer_roundlinks .roundlink {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
}
@media (max-width: 767px) {
    #form h2 {width: 100%;}
    #form .f_row {display: block;}
    .footer_content {margin-bottom: 50px;}
}
@media (max-width: 639px) {
    #form .roundlink>img {width: 28px;}
}
@media (max-width: 479px) {
    #form h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }
    .footer_form {
        padding: 30px 15px;
    }
    .footer_form>input, .footer_form>textarea {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .rocket_wrapper {
        right: -35px;
        top: -120px;
    }
}
/**/

.hero_text>* {opacity: 0;}


/*firefox gradients*/
.bx-firefox .e1,
.bx-firefox .e2, 
.bx-firefox .e3, 
.bx-firefox .c_e1, 
.bx-firefox .c_e2 {
    opacity: 0.5;
}
/**/


/*////////////////////////////////////////////////////////////////*/
#about2 .about_desc {padding-top: 0;}
#about2 .about_desc>h2 {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    align-items: center;

}
#about2 .about_desc>h2>img {width: 98px; height: auto;}

.about_achieves {position: relative;}
.achw_item {
    width: 340px;
    height: 340px;
    border-radius: 190px;
    background-color: #6E9F35;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    border: 1px solid;
    transition: border-width 0.3s;
    transform-origin: center;
    /*position: relative;*/
    /*animation: animate_pulse 1.5s ease-in-out infinite;*/
}
.achw_item:after {
    content: '';
    display: block;
    width: 340px;
    height: 340px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -170px;
    margin-top: -170px;
    border-radius: 170px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.achw_num {
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: bold;
    color: #F6FD95;
    text-align: center;
    margin: 0;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}
.achw_desc {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    z-index: 1;
    padding: 0 30px;
}
.ai1 {
    background-color: #81B544;
    border-color: #81B544;
    right: 0px;
    top: -60px;
}
.ai2 {
    background-color: #5E8C28;
    border-color: #5E8C28;
    left: 30px;
    top: 100px;
}
.ai3 {
    background-color: #6E9F35;
    border-color: #6E9F35;
    right: 70px;
    top: 340px;
}
.ai4 {
    background-color: #81B544;
    border-color: #81B544;
    left: 0px;
    top: 550px;
}
.ai1:after {animation: animate_ach 3.7s ease-in-out infinite;}
.ai2:after {animation: animate_ach 3.5s ease-in-out infinite;}
.ai3:after {animation: animate_ach 3.3s ease-in-out infinite;}
.ai4:after {animation: animate_ach 3.1s ease-in-out infinite;}

.achw_item:hover {border-width: 16px;}
.achw_item:hover .achw_num {color: #effd29;}

@keyframes animate_ach {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    10% {
        transform: scale(1);
        opacity: 1;
    }
    20% {
        transform: scale(1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 1279px) {
    .achw_item {
        width: 280px;
        height: 280px;
        border-radius: 160px;
    }
    .achw_item:after {
        width: 280px;
        height: 280px;
        margin-left: -140px;
        margin-top: -140px;
        border-radius: 140px;
    }
    .ai1 {
        right: 0px;
        top: 0px;
    }
    .ai2 {
        left: 30px;
        top: 160px;
    }
    .ai3 {
        right: 70px;
        top: 400px;
    }
    .ai4 {
        left: 0px;
        top: 610px;
    }
}

@media (max-width: 1023px) {
    #about2 .about_wrapper {flex-direction: column;}
    #about2 .section_ptb {padding-bottom: 0;}
    .about_achieves {
        min-height: 550px;
        display: flex;
        flex-wrap: wrap;
        padding-top: 100px;
        justify-content: flex-start;
    }

    .ai1 {
        left: 0px;
        right: auto;
        top: 50px;
    }
    .ai2 {
        left: 300px;
        top: 70px;
    }
    .ai3 {
        right: auto;
        left: 100px;
        top: 350px;
    }
    .ai4 {
        left: 400px;
        top: 400px;
    }

    .bx-touch .ai2 {
        left: 300px;
        top: 0px;
    }
    .bx-touch .ai3 {
        left: 120px;
        top: 320px;
    }
    .bx-touch .ai4 {
        left: 420px;
        top: 270px;
    }

    /*.achw_item {position: static;}*/
    /*.ai3 {margin-left: 100px;}*/
}

@media (max-width: 767px) {
    .about_achieves {
        min-height: 350px;
        margin-top: 150px;
    }
    .bx-touch .about_achieves {margin-top: 70px;}

    .achw_item {
        width: 220px;
        height: 220px;
        border-radius: 130px;
    }
    .achw_item:after {
        width: 220px;
        height: 220px;
        margin-left: -110px;
        margin-top: -110px;
        border-radius: 110px;
    }
    .ai1 {
        left: 0px;
        top: 0;
    }
    .ai2 {
        left: 230px;
        top: 20px;
    }
    .ai3 {
        left: 50px;
        top: 270px;
    }
    .ai4 {
        left: 300px;
        top: 300px;
    }
    .achw_num {font-size: 40px;}
    .achw_desc {font-size: 14px; padding: 0 20px;}


    .bx-touch .ai2 {
        left: 240px;
        top: -20px;
    }
    .bx-touch .ai3 {
        left: 110px;
        top: 210px;
    }
    .bx-touch .ai4 {
        left: 350px;
        top: 190px;
    }
}
@media (max-width: 590px) {
    #about2 .about_desc>h2 {font-size: 40px;}
    .ai1 {
        left: -10px;
        top: 0;
    }
    .ai2 {
        left: 200px;
        top: 20px;
    }
    .ai3 {
        left: 0px;
        top: 270px;
    }
    .ai4 {
        left: 220px;
        top: 300px;
    }

    .bx-touch .ai2 {
        left: 200px;
        top: -20px;
    }
    .bx-touch .ai3 {
        left: 20px;
        top: 210px;
    }
    .bx-touch .ai4 {
        left: 230px;
        top: 190px;
    }
}

@media (max-width: 479px) {
    #about2 .about_desc>h2 {font-size: 30px;}
    #about2 .about_desc>h2>img {width: 60px;}

    .about_achieves {
        min-height: 220px;
        margin-top: 150px;
    }
    .achw_item {
        width: 170px;
        height: 170px;
        border-radius: 100px;
    }
    .achw_item:after {
        width: 170px;
        height: 170px;
        margin-left: -85px;
        margin-top: -85px;
        border-radius: 85px;
    }
    .ai1 {
        left: -20px;
        top: 0;
    }
    .ai2 {
        left: 150px;
        top: 20px;
    }
    .ai3 {
        left: 0px;
        top: 230px;
    }
    .ai4 {
        left: 160px;
        top: 260px;
    }
    .achw_num {font-size: 24px;}
    .achw_desc {font-size: 12px; font-weight: 500; padding: 0 20px;}

    .bx-touch .ai1 {
        left: -5px;
        top: 0;
    }
    .bx-touch .ai2 {
        left: 150px;
        top: -20px;
    }
    .bx-touch .ai3 {
        left: 10px;
        top: 150px;
    }
    .bx-touch .ai4 {
        left: 165px;
        top: 130px;
    }
    .bx-touch .about_achieves {min-height: 280px;}
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}


.popup-fade {
    display: none;
    position: relative;
    z-index: 9999;
}
.popup-fade:before {
    content: '';
    background: #000;
    position: fixed; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    opacity: 0.7;
    z-index: 9999;
}
.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    padding: 20px;
    width: 410px;
    margin-left: -240px;    
    background: #fff;
    border: 1px solid orange;
    border-radius: 4px; 
    z-index: 99999;
    opacity: 1;
    padding: 50px 30px;
    background: #E9F0D9;
    border-radius: 30px;
    box-shadow: 10px 10px var(--cred);
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup_content {margin-top: 20px;}
.popup_content form .field_wrapper {margin-bottom: 30px;}
.popup_content form input[type="text"] {
    border: 1px solid #5E8C28;
    font-size: 18px;
    text-transform: uppercase;
    padding: 17px 20px;
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    border-radius: 10px;
}
.popup_content form label {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 529px) {
    .popup {
        width: 85%;
        padding: 50px 15px;
        margin-left: -46.5%;
        top: 10%;
    }
}