/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --font_family: "Nunito", sans-serif;
    --font_family2: "neutronic", serif;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


body
{
    color: #212121;
    font: 16px var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    background: #ffffff;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: clip;
    flex-direction: column;

    min-height: 100%;
}

.main
{
    flex: 1 0 auto;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}


._flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}


.lazyload{
    opacity: 0;
    transition: opacity .5s linear;
}

.loaded{
    opacity: 1;
}

/*------------
    Header
------------*/
.header
{
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;

    top: 0;
    width: 100%;
    z-index: 90;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: padding-top .2s linear, padding-bottom .2s linear, background .2s linear;
}

.header.scrolled{
    padding-top: 12px;
    padding-bottom: 12px;
    position: fixed;
    background: #3F3F3F;
}

.header._inner{
    background: #3F3F3F;
}

.header .cont{
    justify-content: space-between;
    align-items: center;
    align-content: center;
    position: static;
}

.header__logo img{
    display: block;
    max-width: 100%;
}

.header__menu-item + .header__menu-item{
    margin-left: 32px;
}

.header__menu-link{
    color: #FFF;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    position: relative;
}

.header__menu-link::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    transform: scaleX(0);
    transition: transform .2s linear;
}

@media (any-hover: hover){
    .header__menu-link:hover::before{
        transform: scaleX(1);
    }
}

.mob_menu_link
{
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -16px;
    display: none;

    width: 32px;
    height: 32px;
    margin-left: auto;
    padding: 4px 7px;

    cursor: pointer;
    transition: .2s linear;

    border: none;
    background: none;
    margin-right: -7px;
}

.mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #fff;
    border-radius: 4px;
}


.mob_menu_link span + span
{
    margin-top: 3px;
}

.mob_menu_link._active span:nth-child(2)
{
    opacity: 0;
}

.mob_menu_link._active span:nth-child(1)
{
    top: 5px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.mob_menu_link._active span:nth-child(3)
{
    top: -5px;

    width: 100%;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}


.wrap-btn{
    margin-top: 40px;
}

.wrap-btn_center{
    text-align: center;
}

.btn-green{
    border-radius: 50px;
    background: #B8FF03;

    color: #212121;
    font-family: var(--font_family2);
    font-size: 22px;
    line-height: 70px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background .2s linear, color .2s linear;
    padding: 0 73px;
    display: inline-block;
    border: 1px solid #B8FF03;
}

.btn-green_small{
    line-height: 46px;
    font-weight: 400;
    font-size: 18px;
    font-family: var(--font_family);
}

.btn-green span{
    display: block;
    position: relative;
    padding-right: 32px;
}

.btn-green svg{
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}

@media (any-hover: hover){
    .btn-green:hover{
        background: #212121;
        color: #B8FF03;
    }
}


._pad{
    padding-top: 140px;
    padding-bottom: 80px;
}


.global-title{
    font-weight: 500;
    line-height: 28px;
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
}

.global-title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #007A49;
    margin-top: -1px;
}

.main-title{
    color: #212121;

    font-family: var(--font_family2);
    font-size: 52px;
    font-weight: 700;
}

.main-title + .main-title{
    margin-top: 26px;
}

.main-title_big{
    font-size: 61px;
}

.main-title_white{
    color: #FEFEFE;
}

.main-title_center{
    text-align: center;
}

.main-title__wrap{
    position: relative;
    display: inline-block;
    color: #212121;
    padding: 0 26px;
}

.main-title__wrap::before{
    content: '';
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
    height: calc(100% + 22px);
    background: #B8FF03;
    border-radius: 50px;
}

.main-title__wrap span{
    position: relative;
}

.main-subtitle{
    font-size: 22px;
    margin-top: 47px;
}

.main-subtitle_white{
    color: #fff;
}

.main-title_icon{
    position: relative;
    padding-left: 154px;
}

.main-title__green{
    color: #B8FF03;
}

.main-title__icon{
    position: absolute;
    left: 0;
    top: 50%;
    width: 93px;
    height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-top: -46px;
}

.main-title__icon img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.main-subtitle_center{
    text-align: center;
    max-width: 874px;
    margin-left: auto;
    margin-right: auto;
}

.text-block{
    line-height: 1.37;
}

.text-block > :last-child{
    margin-bottom: 0 !important;
}

.text-block h1{
    font-size: 32px;
    font-family: var(--font_family2);
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
}

.text-block h2{
    font-size: 24px;
    font-family: var(--font_family2);
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
}

.text-block h3{
    font-size: 20px;
    font-family: var(--font_family2);
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
}

.text-block hr{
    margin-bottom: 20px;
}

.text-block p{
    margin-bottom: 22px;
}

.text-block ul{
    margin-left: 20px;
    margin-bottom: 20px;
}

.text-block a{
    color: #B8FF03;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: border .2s linear;
}

@media (any-hover: hover){
    .text-block a:hover{
        border-bottom-color: transparent;
    }
}

.text-block .link-mail{
    border: none;
    color: #212121;
}

.text-block__cols{
    gap: 20px;
    justify-content: space-between;
}

.text-block__col{
    width: calc(50% - 10px);
}

.text-block__col > :last-child{
    margin-bottom: 0 !important;
}


.main-info{
    position: relative;
    padding: 162px 0 80px;
    min-height: 820px;
}

.main-info__title{
    color: #ffffff;
    text-align: center;
    font-family: var(--font_family2);
    font-size: 83px;
    font-weight: 700;
    line-height: 1.05;
}

.main-info__title-wrap{
    position: relative;
    top: -5px;
    right: -3px;
    transform: rotate(-4.598deg);
    display: inline-block;
    color: #212121;
}

.main-info__title-wrap::before{
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: calc(100% + 80px);
    height: calc(100% + 3px);
    background: #B8FF03;
    box-shadow: 0 0 14px #B8FF03;
    border-radius: 50px;
}

.main-info__title-wrap span{
    position: relative;
}

.main-info__desc{
    max-width: 635px;
    margin: 74px auto 0;

    font-size: 22px;
    color: #fff;
    text-align: center;
}

.main-info__btn{
    text-align: center;
    margin-top: 59px;
}


.information{
    padding: 56px 0 79px;
}

.information__flex{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.information__coll{
    width: 46.743%;
    margin-right: 30px;
    flex-shrink: 0;
}

.information__img{
    margin-left: -76px;
    position: relative;
}

.information__img img{
    display: block;
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1;
}

.information__info{
    position: absolute;
    width: 167px;
    padding: 24px 15px 24px 21px;
    background: #212121;
    border: 1px solid #fff;
    border-radius: 12px;
}

.information__info-title{
    color: #B8FF03;
    font-family: var(--font_family2);
    font-size: 23px;
    line-height: 1;

    font-weight: 700;
}

.information__info-desc{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 15px;

    font-weight: 700;
}

.information__info1{
    top: 7%;
    right: 7%;
    transform: rotate(11.862deg);
}

.information__info2{
    bottom: 3.3%;
    left: 13.6%;
    transform: rotate(-5.898deg);
}

.information__colr{
    width: 100%;
    max-width: 650px;
    padding-bottom: 20px;
}

.information__text-block{
    margin-top: 48px;
}

.results{
    padding: 64px 0 102px;
    background: rgba(184, 255, 3, 0.20);
}

.results .main-subtitle{
    max-width: 650px;
}

.results__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    margin-top: 59px;
}

.results__item{
    border-radius: 22px;
    background: #212121;
    padding: 45px 42px 30px;
}

.results__number{
    color: #B8FF03;

    font-family: var(--font_family2);
    font-size: 42px;
    font-weight: 700;

    line-height: 1;
}

.results__title{
    color: #FFF;
    font-family: var(--font_family2);
    font-size: 27px;
    font-weight: 700;
    margin-top: 2px;
}

.results__divider{
    position: relative;
    padding: 0 56px;
    height: 19px;
    margin-top: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.results__divider::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 19px;
}

.results__divider::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 19px;
}

.results__divider span{
    width: 100%;
    display: block;
    height: 1px;
}

.results__desc{
    color: #FFF;
    font-size: 18px;
    line-height: normal;
    margin-top: 33px;
}

.about{
    padding: 78px 0 84px;
}

.about .main-subtitle{
    font-size: 18px;
    margin-top: 55px;
}

.about__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
    margin-top: 62px;
}

.about__item{
    background: #F1FFCD;
    border-radius: 22px;
    padding: 40px 54px 51px;
    position: relative;
    text-align: left;
    transition: background .2s linear;
}

@media (any-hover: hover){
    .about__item:hover{
        background: #B8FF03;
    }
}

.about__item::before{
    content: '';
    position: absolute;
    right: 23px;
    top: 22px;
    width: 42px;
    height: 44px;
}

.about__icon{
    height: 67px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.about__icon img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.about__name{
    margin-top: 26px;

    color: #000;
    font-family: var(--font_family2);
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    display: block;
}

.about__desc{
    color: #000;
    font-size: 21px;
    max-width: 450px;
    margin-top: 30px;
    display: block;
}


.comments{
    padding: 64px 0 70px;
    background: #212121;
}

.comments .main-title{
    line-height: 1;
}

.comment{
    border-radius: 18px;
    background: #2C2C2C;
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.comment__stars{
    flex-wrap: nowrap;
}

.comment__star{
    width: 21px;
    height: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.comment__star + .comment__star{
    margin-left: 4px;
}

.comment__star img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.comment__text{
    color: rgba(255, 255, 255, 0.70);
    font-size: 21px;
    margin-bottom: 12px;
    flex-grow: 1;
}

.comment__user{
    color: #FFF;
    font-size: 18px;
    text-align: right;
}

.slider {
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
    margin: 64px -10px 0;
}

.slider.dragging { cursor: grabbing; }

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

.slide {
    width: 558px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.slider-btn{
    position: absolute;
    top: -142px;
    width: 55px;
    height: 55px;
    color: #B8FF03;
    transition: color .2s linear;
}

@media (any-hover: hover){
    .slider-btn:hover{
        color: rgba(184, 255, 3, 0.55);
    }
}

.slider-btn.prev{
    right: 100px;
    transform: rotate(180deg);
}

.slider-btn.next{
    right: 10px;
}

.slider-btn._hide{
    opacity: .2;
    cursor: default;
}

.slider-btn svg{
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}


.contact-us{
    padding: 21px 0 90px;
    background: #212121;
    position: relative;
}

.contact-us__pattern1{
    position: absolute;
    top: 0;
    left: 50%;
    pointer-events: none;
    margin-left: 513px;
    display: block;
}

.contact-us__pattern2{
    position: absolute;
    bottom: 86px;
    right: 50%;
    pointer-events: none;
    margin-right: 252px;
    display: block;
}

.contact-us .main-subtitle{
    margin-top: 56px;
    max-width: 600px;
}


::-webkit-input-placeholder
{
    color: #fff;

    opacity: .35;
}

::-moz-placeholder
{
    color: #fff;

    opacity: .35;
}

:-moz-placeholder
{
    color: #fff;

    opacity: .35;
}

:-ms-input-placeholder
{
    color: #fff;

    opacity: .35;
}

.form_marg{
    margin: 54px auto 0;
    max-width: 873px;
}

.form__bg{
    padding: 35px;
    border-radius: 26px;
    background: #000;
}

.form__title{
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: 20px;
}

.form__subtitle{
    margin-bottom: 20px;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.form__line{
    margin-bottom: 20px;
}

.form__flex{
    justify-content: space-between;
}

.form__flex .form__line{
    width: calc(50% - 7px);
}

.form .form__input{
    display: block;
    width: 100%;
    resize: none;
    height: 71px;
    border-radius: 12px;
    background: #212121;
    border: 1px solid transparent;
    padding: 0 30px;
    font: 16px var(--font_family);
    color: #B8FF03;
}

.form .form__textarea{
    display: block;
    width: 100%;
    resize: none;
    height: 152px;
    border-radius: 12px;
    background: #212121;
    border: 1px solid transparent;
    padding: 15px;
    font: 16px var(--font_family);
    color: #B8FF03;
}

.form .form__input:focus,
.form .form__textarea:focus{
	border-color: #B8FF03;
}

/* .form select {
    display: block;
    width: 100%;
    padding: 0 60px 0 30px;
    background: #212121;
    height: 71px;
    border: 1px solid transparent;
    border-radius: 12px;

    color: #B8FF03;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: normal;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
} */

.error-text{
    font-size: 12px;
    margin-top: 4px;
    color: red;
}

.form .form__input.error,
.form .form__textarea.error,
.form .error + .nice-select .current
{
    color: red;

    border-color: red;
}

.form__submit{
    text-align: center;
}

.form__submit-btn{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.select-wrap select{
    display: none;
}

.custom-select {
  position: relative;
  user-select: none;
}

.custom-select .select {
    line-height: 69px;
    background: #212121;
    border-radius: 12px;
    color: #B8FF03;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid transparent;
    padding: 0 80px 0 30px;
    position: relative;
    transition: border .2s linear;
    cursor: pointer;
}

.custom-select .select::before{
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 35px;
    height: 20px;
    margin-top: -10px;
}

@media (any-hover: hover){
    .custom-select .select:hover{
        border-color: currentColor;
    }
}

.custom-select .select._active{
    border-color: currentColor;
}

.custom-select .select._active::before{
    transform: rotate(180deg);
}

.custom-select .options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #212121;
    border-radius: 12px;
    border: 1px solid transparent;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    overflow-y: auto;
    max-height: 260px;
    box-shadow: 0 4px 8px rgba(0,0,0,.5);
    z-index: 20;

    transition: visibility .2s linear, opacity .2s linear;
}

.custom-select .options._show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.custom-select .option {
    padding: 10px 30px;
    color: rgba(255, 255, 255, 0.35);

    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition: background .2s linear, color .2s linear;
}

@media (any-hover: hover){
    .custom-select .option:hover {
        color: #000;
        background: #B8FF03;
    }
}

.custom-select  .option.selected{
    color: #000;
    background: #B8FF03;
}


.footer{
    background: #000;
    padding: 56px 0;
}

.footer__cols{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.footer__coll{
    width: 50%;
    max-width: 340px;
}

.footer__logo img{
    display: block;
}

.footer__info{
    margin-top: 35px;

    color: #FFF;
}

.footer__colr{
    width: 50%;
    max-width: 320px;
}

.footer__link{
    text-align: right;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.footer__link + .footer__link{
    margin-top: 35px;
}

.footer__link a{
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid;
    transition: border .2s linear;
}

@media (any-hover: hover){
    .footer__link a:hover{
        border-bottom-color: transparent;
    }
}

.footer__copy{
    text-align: right;
    margin-top: 35px;

    color: #FFF;
    font-size: 20px;
}

@media (max-width: 1299px)
{
    .results__item{
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1199px)
{
    .main-title{
        font-size: 42px;
    }

    .about__item{
        padding-left: 26px;
        padding-right: 26px;
    }


    .slide{
        width: 490px;
    }


    .results__item{
        padding-left: 26px;
        padding-right: 26px;
    }

    .results__title{
        font-size: 24px;
    }
}

@media (max-width: 1024px)
{
    .header{
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .header._show{
        background: #3F3F3F;
    }

    .header__menu{
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        background: #3F3F3F;
        z-index: 90;
        padding: 22px 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: visibility .2s linear, opacity .2s linear;
    }

    .header__menu._show{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .header__menu-item{
        width: 100%;
        text-align: right;
    }

    .header__menu-item + .header__menu-item{
        margin: 16px 0 0;
    }

    .header__menu-link{
        width: 100%;
        text-align: right;
    }

    .header__logo{
        margin: 0 auto;
    }

    .header__logo img{
        max-width: 125px;
    }

    .mob_menu_link{
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
    }

    ._pad{
        padding-top: 100px;
        padding-bottom: 60px;
    }


    .main-info{
        min-height: 446px;
        padding: 78px 0 60px;
    }

    .main-info__title{
        font-size: 32px;
    }

    .main-info__title-wrap::before {
        left: -16px;
        top: 1px;
        width: calc(100% + 40px);
    }

    .main-info__desc{
        margin-top: 25px;
        font-size: 16px;
        max-width: 350px;
    }

    .main-info__btn{
        margin-top: 25px;
    }

    .btn-green{
        font-size: 16px;
        line-height: 39px;
        padding: 0 27px;
    }


    .information{
        padding: 21px 0 52px;
    }

    .information__flex{
        flex-wrap: wrap;
    }

    .information__coll{
        width: 100%;
        max-width: 335px;
        margin: 0 auto;
    }

    .information__img{
        margin-left: 0;
    }

    .information__colr{
        max-width: none;
        margin: 33px 0 0;
        padding: 0;
    }

    .main-title{
        font-size: 22px;
    }

    .main-title_big {
        font-size: 27px;
    }

    .main-title__wrap{
        padding: 0 22px;
    }

    .main-title__wrap::before {
        top: -2px;
        height: calc(100% + 4px);
    }

    .information__text-block{
        margin-top: 30px;
    }

    .wrap-btn{
        margin-top: 30px;
    }

    .information__info{
        width: 108px;
        padding: 17px 8px 15px 13px;
        border-radius: 7px;
    }

    .information__info-title{
        font-size: 15px;
    }

    .information__info-desc{
        font-size: 10px;
    }

    .information__info1 {
        top: 4%;
        right: 4%;
        transform: rotate(11.862deg);
    }

    .information__info2{
        width: 120px;
        bottom: 2.3%;
        left: 7.6%;
    }


    .results{
        padding: 32px 0;
    }

    .main-subtitle {
        font-size: 16px;
        margin-top: 25px;
    }

    .results .main-subtitle {
        max-width: 350px;
    }

    .results__grid{
        margin-top: 25px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 18px;
    }

    .results__item:last-child {
        grid-column: 1 / -1;
    }

    .results__item{
        padding: 30px 30px 20px;
        border-radius: 16px;
    }

    .results__number{
        font-size: 29px;
    }

    .results__title{
        font-size: 18px;
    }

    .results__divider {
        padding: 0 38px;
        height: 13px;
        margin-top: 23px;
    }

    .results__divider::before{
        width: 25px;
        height: 13px;
        background-size: contain;
    }

    .results__divider::after{
        width: 25px;
        height: 13px;
        background-size: contain;
    }

    .results__desc{
        font-size: 14px;
        margin-top: 23px;
    }


    .about {
        padding: 28px 0 33px;
    }

    .about .main-subtitle {
        font-size: 16px;
        margin-top: 37px;
        max-width: 400px;
    }

    .about__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 15px;
        margin-top: 33px;
    }

    .about__item{
        padding: 21px 28px;
        border-radius: 12px;
    }

    .about__item::before {
        right: 12px;
        top: 12px;
        width: 21px;
        height: 22px;
    }

    .about__icon{
        height: 34px;
    }

    .about__name{
        margin-top: 16px;
        font-size: 18px;
    }

    .about__desc {
        font-size: 16px;
        max-width: 250px;
        margin-top: 16px;
    }

    .main-title_icon{
        padding-left: 68px;
    }

    .main-title__icon {
        width: 48px;
        height: 47px;
        margin-top: -23px;
    }

    .comments{
        padding: 24px 0 38px;
    }


    .slider{
        margin-top: 24px;
    }

    .slider-btn {
        position: absolute;
        top: -55px;
        width: 31px;
        height: 31px;
    }

    .slider-btn.prev {
        right: 51px;
    }

    .slide{
        width: 360px;
    }

    .comment{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .comment__star{
        width: 15px;
        height: 15px;
    }

    .comment__star + .comment__star{
        margin-left: 3px;
    }

    .comment__text{
        font-size: 16px;
    }

    .comment__user{
        font-size: 16px;
    }


    .contact-us{
        padding: 10px 0 42px;
    }

    .contact-us__pattern1{
        display: none;
    }

    .contact-us__pattern2{
        display: none;
    }

    .main-title + .main-title {
        margin-top: 9px;
    }

    .contact-us .main-subtitle {
        margin-top: 20px;
        max-width: 400px;
    }

    .form_marg{
        margin-top: 25px;
    }

    .form__bg {
        padding: 25px 26px;
        border-radius: 21px;
    }

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

    .form__subtitle{
        margin-bottom: 15px;
    }

    .form .form__input {
        height: 58px;
        padding: 0 15px;
    }

    .custom-select .select{
        font-size: 16px;
        padding-left: 15px;
        padding-right: 60px;
        line-height: 56px;
    }

    .custom-select .select::before{
        width: 17px;
        height: 10px;
        margin-top: -5px;
        background-size: contain;
    }

    .btn-green_small {
        line-height: 46px;
        font-size: 18px;
        min-width: 196px;
    }


    .footer{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer__logo img{
        max-width: 145px;
    }

    .footer__link{
        font-size: 16px;
    }

    .footer__link + .footer__link {
        margin-top: 20px;
    }

    .footer__copy {
        margin-top: 20px;
        font-size: 16px;
    }
}


@media (max-width: 767px)
{
    .text-block h1 {
        font-size: 24px;
    }

    .text-block h2{
        font-size: 20px;
    }

    .text-block h3{
        font-size: 18px;
    }

    .text-block__col{
        width: 100%;
    }

    .results__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .slider{
        margin-top: 79px;
    }

    .slider-btn.prev{
        right: auto;
        left: 10px;
    }

    .slider-btn.next{
        right: auto;
        left: 51px;
    }

    .slide{
        width: 100%;
    }


    .form__flex .form__line{
        width: 100%;
    }


    .footer__coll{
        width: 100%;
        max-width: none;
    }

    .footer__colr{
        margin-top: 35px;
        max-width: none;
        width: 100%;
    }

    .footer__link{
        text-align: left;
    }

    .footer__copy{
        text-align: left;
    }

    .footer__copy br{
        display: none;
    }
}


@media (max-width: 374px)
{
    .main-info__title {
        font-size: 28px;
    }


    .results__grid{
        padding: 0;
    }

    .results__item{
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-title {
        font-size: 20px;
    }

    .main-title_big {
        font-size: 23px;
    }

    .main-title__wrap {
        padding: 0 10px;
    }

    .main-title__wrap::before{
        top: -1px;
    }

    .about__item{
        padding-left: 20px;
        padding-right: 20px;
    }

    .comment{
        padding-left: 20px;
        padding-right: 20px;
    }

    .form__bg{
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* CF7 styles */
.wpcf7-response-output{
    color: #FFFFFF;
}

.form__submit-btn{
    cursor: pointer;
}

.wpcf7-spinner{
    display: none;
}