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

body::-webkit-scrollbar {
	width: 5px;
	height: 10px;
}
  
body::-webkit-scrollbar-thumb {
	background: #4bb800;
	border-radius: 5px;
}
  
body::-webkit-scrollbar-track {
	background-color: #bebebe;
	border: none;
}

body {
	background: #fff;
	color: #212529;
	font-family: "SUI", sans-serif;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}

body.hidden {
    overflow-y: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: #151515;
}

a {
	position: relative;
	transition: all .5s ease;
}

/* MAIN */

.modal {
    display: none;
}

.burger {
    display: none;
}

nav.menu ul.second__level {
    /* display: none; */
}

header {
    background-color: #eeedee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__wrapper {
    display: flex;
    max-width: 1320px;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

header .section__wrapper {
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.row:first-child {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

a.logo {
    display: flex;
}

button.btn {
    font-weight: 700;
    padding: 10px 50px;
    border-radius: 25px;
    outline: 0;
    cursor: pointer;
    transition: all .5s ease;
    font-family: "SUI", sans-serif;
}

button.btn.border__btn {
    background: none;
    border: 2px solid #4bb800;
    color: #4bb800;
    font-size: 1rem;
}

button.btn.border__btn:hover {
    background: #4bb800;
    color: #fff;
}

.control {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.header__city {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.city__select {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.city__select * {
    transition: all .5s ease;
}

.city__select:hover > span {
    color: #4bb800;
}

.city__select span {
    border-bottom: 1px solid;
    line-height: 1;
}

a.call {
    font-size: 24px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.header__call a.call:nth-child(2) {
    font-size: 18px;
    font-weight: 400;
}

nav.menu ul {
    display: flex;
}

nav.menu ul li {
    list-style: none;
    display: flex;
}

a.main__level {
    text-decoration: none;
    padding: 15px 25px;
    font-size: 18px;
    color: black;
    border-bottom: 2px solid transparent;
}

a.main__level:hover {
    border-color: #4bb800;
}

form.search {
    display: flex;
    position: relative;
    align-items: center;
}

.row:nth-child(2) {
    gap: 20px;
    justify-content: flex-start;
}

input#search {
    width: 400px;
    height: 34px;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 5px;
    transition: all .5s ease;
    font-family: "SUI", sans-serif;
    outline: 0;
}

input.search__btn {
    width: 30px;
    height: 30px;
    border: none;
    background: url(../img/search__icon.webp) no-repeat;
    display: flex;
    background-position: center;
    position: absolute;
    right: 1%;
    cursor: pointer;
}

input#search:hover, input#search:focus {
    border-color: #64c024;
}

a.call:hover {
    color: #4bb800;
}

section.top__screen {
    height: 550px;
}

section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.swiper-slide.top__slide {
    display: flex;
    justify-content: center;
    position: relative;
}

.slide__container {
    max-width: 1320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
}

.top__slider.swiper {
    height: 100%;
}

h1.title {
    color: white;
    line-height: 1.3;
    font-size: 2.5rem;
}

.swiper-slide.top__slide:nth-child(1) {
    background: url(../img/top_1.webp);
    background-size: cover;
    background-position: center;
}

.swiper-slide.top__slide:after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #00000082;
}

.swiper-slide.top__slide * {
    position: relative;
    z-index: 1;
}

.slide__container * {
    max-width: 600px;
}

.top__slide__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

button.btn.more {
    background: #4bb800;
    border: none;
    font-size: 1rem;
    color: #fff;
}

button.btn.more:hover {
    background: #fff;
    color: #4bb800;
}

h2.section__title {
    margin-bottom: 20px;
    font-size: 2rem;
}

.services__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.services__item {
    background: #eeedee;
    padding: 15px 30px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

h3.services__item__title {
    font-size: 21px;
    font-weight: 800;
}

nav.services__item__list ul li {
    list-style: none;
}

nav.services__item__list ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

nav.services__item__list ul li a {
    color: #7a7a7a;
}

nav.services__item__list ul li a:hover {
    color: #4bb800;
}

a.more {
    color: #4bb800;
    text-decoration: none;
    font-weight: 800;
}

a.more:hover {
    opacity: .5;
}

.services__item:after {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    border: 1px solid #4bb800;
    border-radius: 50%;
    background: url(../img/t2.webp) no-repeat center;
    right: 20px;
    top: 15px;
}

.services__item:nth-child(2):after {
    background: url(../img/s2.webp) no-repeat center;
}

.services__item:nth-child(3):after {
    background: url(../img/t3.webp) no-repeat center;
}

.services__item:nth-child(4):after {
    background: url(../img/t4.webp) no-repeat center;
}

.services__item:nth-child(5):after {
    background: url(../img/t5.webp) no-repeat center;
}

.services__item:nth-child(6):after {
    background: url(../img/t5.webp) no-repeat center;
}

nav.services__item__list {
    max-width: 80%;
}

section.license {
    background: #eeedee;
    padding: 30px 0 0;
    margin: 0;
}

section.license .section__wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.license__slider {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 26px;
    background: url(../img/rama.webp) no-repeat center top;
    background-size: 475px 610px;
}

.license__slider__wrapper.swiper {
    width: 410px;
}

.swiper-slide.license__item img {
    width: 100%;
}

.swiper-slide.license__item {
    display: flex;
}

.arrow {
    transition: all .5s ease;
    display: flex;
    cursor: pointer;
}

.arrow:hover {
    opacity: .5;
}

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

ul.license__list li {
    list-style: none;
    position: relative;
}

ul.license__list {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    margin: 20px 0;
}

ul.license__list li:before {
    content: "•";
    padding: 0 10px 0 0;
    color: #4bb800;
}

p.bold {
    font-weight: 800;
}

section.description {
    background: url(../img/cbg.webp) no-repeat center;
    padding: 130px 0;
}

.description__wrapper {
    background: rgba(238,237,238,.9);
    padding: 20px 30px;
}

.description__wrapper h2.section__title {
    display: flex;
    gap: 5px;
}

.citate {
    border-left: 3px solid #4bb800;
    padding-left: 15px;
    font-weight: 600;
}

.description__list {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.description__item {
    max-width: 300px;
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

p.description__item__title {
    max-width: 80%;
    font-weight: 600;
}

.swiper-slide.partner__item {
    display: flex;
    align-items: flex-start;
    height: 100px;
}

.swiper-slide.partner__item img {
    height: 100%;
    width: auto;
}

.partners__slider.swiper {
    margin: 0;
    width: 100%;
}

.reviews__slider.swiper {
    width: 100%;
}

section.banner {
    background: #4bb800;
    padding: 60px 0px;
    color: #fff;
    margin: 0;
}

section.banner .section__wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.banner__left {
    display: flex;
    flex-direction: column;
}

p.bold {
    font-size: 24px;
    opacity: .6;
}

a.banner__call {
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.banner__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.banner__right p {
    max-width: 80%;
}

button.btn.border__btn.white__btn {
    color: #fff;
    border-color: #fff;
}

button.btn.border__btn.white__btn:hover {
    background: #fff;
    color: #4bb800;
}

footer#footer {
    background: #eeedee;
    display: flex;
    justify-content: center;
}

.footer__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0 50px 0;
    border-bottom: 1px solid;
}

nav.footer__nav {
    display: flex;
    flex: 1;
}

nav.footer__nav ul li {
    list-style: none;
    max-width: 80%;
}

nav.footer__nav ul li a {
    color: #151515;
    text-decoration: none;
    border-bottom: 1px solid;
    font-size: 14px;
    max-width: 80%;
}

nav.footer__nav ul li a:hover {
    color: #4bb800;
}

nav.footer__nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.footer__bottom__left {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 10px;
}

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

a.soc__link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

a.soc__link:hover {
    color: #4bb800;
}

.footer__bottom__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer__contacts__item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__contacts__item img {
    width: 16px;
}

.footer__bottom__right a {
    color: #4bb800;
    text-decoration: none;
    border-bottom: 1px solid;
}

.footer__bottom__right a:hover {
    opacity: .6;
}

a.banner__call:hover {
    opacity: .6;
}

li.multilevel.main__level__li {
    position: relative;
    align-items: center;
}

li.multilevel.main__level__li ul {
    background: #4bb800;
    position: absolute;
    top: 100%;
    z-index: 9;
    width: max-content;
    height: max-content;
    padding: 20px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

li.multilevel.main__level__li.active ul.second__level {
    display: grid;
}

ul.second__level li {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 20px;
}

li.multilevel.main__level__li ul li ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    position: inherit;
    gap: 0;
}

ul.second__level li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

ul.second__level li a.parent {
    font-size: 18px;
    font-weight: 800;
}

ul.second__level li a:hover {
    opacity: .5;
}

li.multilevel.main__level__li:after {
    background: url(../img/check.webp) no-repeat;
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: 8px;
}
.btn.more, .btn.btn-fill, .btn.btn-alpha, .form_footer button{
	position: relative;
	overflow: hidden;
}
.btn.more:before, .btn.btn-fill:before, .btn.btn-alpha:before, .form_footer button:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    animation: anim-class 1.5s ease-out infinite;
}
@keyframes anim-class {
    from {
        background: rgba(255, 255, 255, 0.8);
        -o-transition: -webkit-transform 3s;
        -moz-transition: -webkit-transform 3s;
        -webkit-transition: -webkit-transform 3s;
        transition: transform 3s;
        -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, -450%, 0);
        -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, -450%, 0);
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, -450%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, -450%, 0);
    }
    to {
        -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, 450%, 0);
        -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, 450%, 0);
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, 450%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -50deg) translate3d(0, 450%, 0);
    }
}
@media (max-width: 767px){
	nav.menu ul.second__level {
	   	display: none !important;
	}
}
.modal__call .errortext{
    display: block;
    padding-bottom: 10px;
}
.modal__call .errortext{
    color: red;
}
.form_checkbox_td input[type=checkbox] {
    position: absolute;
    opacity: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    z-index: 1;
}
.form_checkbox_td label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}
.form_checkbox_td input[type=checkbox] + label:before{
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #737373;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1;
    color: transparent;
    background: #fff;
}
.form_checkbox_td input[type=checkbox]:checked + label:before{
    border: 1px solid #4bb800;
    color: #4bb800;
}
.modal__call__form-action{
    padding-top: 10px;
}
.modal__call__form-action input[type="submit"]{
    cursor: pointer;
}
.form-table .form_td.form_td_error{
    border: 2px solid #ff0000;
}
.form_checkbox_td.form_td_error input[type=checkbox] + label:before{
    border: 2px solid #ff0000 !important;
}
.form-success {
    text-align: center;
    padding: 30px 20px;
}
.form-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #4bb800;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.form-success__title {
    font-size: 22px;
    font-weight: 800;
    color: #151515;
    margin: 0 0 10px 0;
}
.form-success__text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
