@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Geologica", sans-serif;
  color: #152614;
  font-size: 25px;
  background-image: url("../images/background.png");
}

a {
  text-decoration: none;
  color: #152614;
  font-size: 20px;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  cursor: pointer;
}
a:hover {
  color: #2c9a09;
}

.container {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 35px;
  width: 100%;
}
@media (max-width: 1800px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 1080px) {
  .container {
    padding: 0 15px;
  }
}
.container--sm {
  max-width: 270px;
}

.title {
  text-align: center;
  position: relative;
  font-size: 52px;
  font-weight: 700;
  color: #152614;
  display: inline-block;
  letter-spacing: -0.06%;
  margin-bottom: 60px;
}
@media (max-width: 431px) {
  .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #2c9a09;
  bottom: -6px;
  left: 0;
}
@media (max-width: 431px) {
  .title::after {
    height: 5px;
  }
}

.no-scroll {
  overflow-y: hidden;
}

.none {
  display: none !important;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b3beb3;
  background-color: #fff;
  border-radius: 15px;
  width: 110px;
  height: 56px;
}

.button-lang {
  width: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  outline: none;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  background-color: transparent;
}

.button-ru {
  border-radius: 15px 0 0 15px;
}
.button-ru.active {
  color: #5b5e5b;
  background-color: #b3beb3;
}

.button-en {
  border-left: 1px solid #b3beb3;
border-radius: 0 15px 15px 0;
}
.button-en.active {
  color: #5b5e5b;
  background-color: #b3beb3;
}

.button-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #2c9a09;
  border: none;
  border-radius: 15px;
  padding: 19px 26px;
  gap: 5px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
@media (max-width: 1133px) {
  .button-cta {
    font-size: 14px;
    padding: 20px 10px;
    max-width: 180px;
  }
}
.button-cta:hover {
  background-color: #152614;
}
.button-cta--ml {
  margin-left: 20px;
}
@media (max-width: 1190px) {
  .button-cta--ml {
    margin-left: 10px;
  }
}
.button-cta--big {
  width: 100%;
  max-width: 740px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1080px) {
  .button-cta--big {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 769px) {
  .button-cta--big {
    font-size: 16px;
  }
}
.button-cta--info {
  max-width: 300px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 769px) {
  .button-cta--info {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    font-size: 20px;
  }
}
@media (max-width: 431px) {
  .button-cta--info {
    font-size: 16px;
    padding: 15px 15px;
  }
}
.button-cta--bissnes {
  background-color: transparent;
  font-size: 27px;
}
@media (max-width: 1390px) {
  .button-cta--bissnes {
    font-size: 20px;
  }
}
.button-cta--bissnes:hover {
  -webkit-text-decoration: 3px solid #f7fff7;
          text-decoration: 3px solid #f7fff7;
}
.button-cta--service {
  font-size: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 431px) {
  .button-cta--service {
    padding: 17px 15px;
    font-size: 16px;
    max-width: 290px;
  }
}
.button-cta--about {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #2c9a09;
  background-color: transparent;
}

.header {
  position: relative;
}

.header__inner {
  margin-top: 80px;
  margin-bottom: 55px;
  background-color: #f7fff7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 28px;
  border: 1px solid #b3beb3;
  padding: 23px 20px;
}
@media (max-width: 1080px) {
  .header__inner {
    margin-top: 20px;
  }
}
@media (max-width: 430px) {
  .header__inner {
    padding: 16px 20px;
  }
  .header__inner .logo svg {
    width: 64px;
    height: 28px;
  }
}
.header__inner.active {
  margin-top: 0;
  position: absolute;
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background-color: #152614;
  border-radius: 0;
  z-index: 100;
}
.header__inner.active .logo {
  position: absolute;
  top: 43px;
  left: 30px;
}
.header__inner.active .header__right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__inner.active .nav {
  display: block;
}
.header__inner.active .nav__list {
  margin-top: 93px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin-bottom: 93px;
  text-align: center;
}
.header__inner.active .nav__list a {
  font-size: 22px;
  font-weight: 700;
  color: #f7fff7;
  text-decoration: underline;
}
.header__inner.active .header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__inner.active .button-cta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  max-width: 260px;
  margin-bottom: 20px;
  font-size: 16px;
}
.header__inner.active .btn-container {
  height: 40px;
  width: 260px;
}
.header__inner.active .button-lang {
  background-color: #152614;
}
.header__inner.active .button-ru {
border-radius: 15px 0 0 15px;
  
}
.header__inner.active .button-ru.active {
  color: #2c9a09;
  background-color: #f7fff7;
}
.header__inner.active .button-en {
  border-left: 1px solid #b3beb3;
  
  border-radius: 0 15px 15px 0;
}
.header__inner.active .button-en.active {
  color: #2c9a09;
  background-color: #f7fff7;
}
@media (max-width: 1800px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }

}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 1800px) {
  .header__right {
    gap: 10px;
  }

}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1080px) {
  .header__buttons {
    display: none;
  }
}



@media (min-width: 1200px) {

	header .button-cta {
	  display: none;
	}

}
.social-icons {
  display: flex; 
  }
  
header .social-icons li{
  padding-left: 15px; 
  }

.telegram-button {
    right: 13px;
    bottom: 90px;

    background: #0088cc; /*цвет кнопки*/
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 57px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}
.telegram-button a {
    color: #fff;
}


@media (max-width : 800px) {  
header .telegram-button {
  margin-top: 20px; }
header .whatsapp-button  {
	margin-top: 20px;
 }
}

.whatsapp-button {
    right: 13px;
    bottom: 90px;
    background: #25D366; /*цвет кнопки*/
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 57px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}
.whatsapp-button a {
    color: #fff;
}

footer .social-icons li:last-child {
	margin-left: 20px;
}

.social-icons .fa-brands {

}

button {
	cursor: pointer;
}

.menu {
  height: 22px;
  width: 30px;
  background-image: url("../images/menu.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  border: none;
  outline: none;
  display: none;
}
@media (max-width: 1080px) {
  .menu {
    display: block;
  }

}
.menu.active {
  background-image: url("../images/menu-close.svg");
  position: absolute;
  width: 50px;
  height: 50px;
  top: 40px;
  right: 30px;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1080px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1800px) {
  .nav__list a {
    font-size: 18px;
  }
}
@media (max-width: 1500px) {
  .nav__list a {
    font-size: 14px;
  }
}
@media (max-width: 1800px) {
  .nav__list {
    gap: 15px;
  }
}

.banner {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .banner {
    margin-bottom: 50px;
  }
}

.banner__inner {
  border-radius: 60px;
  background-color: #f7fff7;
  border: 1px solid #b3beb3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 40px;
}
@media (max-width: 1800px) {
  .banner__inner {
    padding: 30px;
  }
}
@media (max-width: 1080px) {
  .banner__inner {
    gap: 20px;
  }
}
@media (max-width: 769px) {
  .banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 20px;
  }
}
@media (max-width: 431px) {
  .banner__inner {
    border-radius: 20px;
    gap: 0;
  }
}

.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner__text {
  padding-left: 43px;
  position: relative;
  font-size: 52px;
  font-weight: 700;
  line-height: 102%;
  letter-spacing: -0.06;
}
@media (max-width: 1800px) {
  .banner__text {
    font-size: 40px;
  }
}
@media (max-width: 1080px) {
  .banner__text {
    font-size: 25px;
  }
}
@media (max-width: 769px) {
  .banner__text {
    font-size: 25px;
    padding-left: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 431px) {
  .banner__text {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.banner__text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background-color: #2c9a09;
}
@media (max-width: 769px) {
  .banner__text::before {
    width: 5px;
  }
}

@media (max-width: 1800px) {
  .banner__img img {
    max-width: 540px;
  }
}
@media (max-width: 1080px) {
  .banner__img img {
    max-width: 400px;
  }
}
@media (max-width: 769px) {
  .banner__img img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.info {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .info {
    margin-bottom: 50px;
  }
}

.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #152614;
  padding: 80px 40px;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 769px) {
  .info__inner {
    padding: 20px;
  }
}
@media (max-width: 431px) {
  .info__inner {
    border-radius: 20px;
  }
}
.info__inner::before {
  content: "";
  left: 14px;
  top: 0;
  width: 800px;
  height: 800px;
  position: absolute;
  background-image: url("../images/ceil.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1390px) {
  .info__inner::before {
    width: 700px;
    height: 700px;
    top: 14px;
  }
}
@media (max-width: 769px) {
  .info__inner::before {
    background-image: url("../images/info-tablet.svg");
    top: -46px;
  }
}
@media (max-width: 431px) {
  .info__inner::before {
    height: 316px;
    width: 337px;
    top: 0;
  }
}

.info__wrapper {
  position: relative;
}
.info__wrapper::after {
  content: "";
  left: -2px;
  top: -115px;
  width: 713px;
  height: 900px;
  position: absolute;
  background-image: url("../images/arrow-green.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1390px) {
  .info__wrapper::after {
    width: 535px;
    height: 700px;
  }
}
@media (max-width: 1080px) {
  .info__wrapper::after {
    height: 500px;
    width: 400px;
    left: 1px;
    top: -115px;
  }
}
@media (max-width: 769px) {
  .info__wrapper::after {
    top: -46px;
  }
}
@media (max-width: 431px) {
  .info__wrapper::after {
    background-image: url("../images/arrow-green-table.svg");
    width: 292px;
    height: 402px;
    top: -38px;
  }
}

.info__content {
  position: relative;
  width: 100%;
  max-width: 740px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1390px) {
  .info__content {
    max-width: 670px;
  }
}
@media (max-width: 769px) {
  .info__content {
    margin-top: 205px;
    z-index: 20;
  }
}

.info__text {
  font-size: 30px;
  color: #f7fff7;
  line-height: 116%;
  letter-spacing: -0.06;
  margin-bottom: 100px;
}
@media (max-width: 1390px) {
  .info__text {
    font-size: 25px;
  }
}
@media (max-width: 431px) {
  .info__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.info__text:first-child {
  margin-bottom: 30px;
}

.bissnes {
  margin-bottom: 166px;
}
@media (max-width: 431px) {
  .bissnes {
    margin-bottom: 50px;
  }
}

.bissnes__inner {
  text-align: center;
}

.bussnes__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1390px) {
  .bussnes__items {
    gap: 25px;
  }
}
@media (max-width: 769px) {
  .bussnes__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 431px) {
  .bussnes__items {
    gap: 10px;
  }
}

.bussnes__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #f7fff7;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 60px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #b3beb3;
}
.bussnes__item--dark {
  background-color: #152614;
  color: #f7fff7;
}
@media (max-width: 431px) {
  .bussnes__item--dark {
    background-color: #f7fff7;
    border: 1px solid #b3beb3;
    color: #152614;
  }
}
@media (max-width: 769px) {
  .bussnes__item {
    max-width: 500px;
  }
}
@media (max-width: 431px) {
  .bussnes__item {
    max-width: 290px;
    border-radius: 20px;
    padding: 20px;
  }
}

.bussnes__item-icon {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 51px;
}
@media (max-width: 1390px) {
  .bussnes__item-icon {
    margin-bottom: 30px;
  }
  .bussnes__item-icon .bussnes__item-img {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 769px) {
  .bussnes__item-icon {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bussnes__item-icon .button-cta {
    max-width: 250px;
  }
}
@media (max-width: 431px) {
  .bussnes__item-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .bussnes__item-icon .button-cta {
    display: none;
  }
}

.bussnes__item-content {
  width: 100%;
  max-width: 426px;
}

.bussnes__item-title {
  text-align: left;
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 700;
  line-height: 116%;
}
@media (max-width: 1390px) {
  .bussnes__item-title {
    font-size: 22px;
  }
}
@media (max-width: 431px) {
  .bussnes__item-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.bussnes__item-text {
  text-align: left;
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 1390px) {
  .bussnes__item-text {
    font-size: 16px;
  }
}
@media (max-width: 431px) {
  .bussnes__item-text {
    font-size: 16px;
  }
}

.service {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .service {
    margin-bottom: 50px;
  }
}

.service__inner {
  text-align: center;
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 40px 40px;
}
@media (max-width: 1801px) {
  .service__items {
    gap: 35px 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1390px) {
  .service__items {
    gap: 30px 30px;
  }
}
@media (max-width: 431px) {
  .service__items {
    gap: 10px;
    margin-bottom: 20px;
  }
}

.service__item {
  width: 100%;
  max-width: 740px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f7fff7;
  border: 1px solid #b3beb3;
  border-radius: 60px;
}
@media (max-width: 1801px) {
  .service__item {
    max-width: 640px;
  }
}
@media (max-width: 1390px) {
  .service__item {
    padding: 30px;
    max-width: 500px;
  }
}
@media (max-width: 431px) {
  .service__item {
    border-radius: 20px;
    padding: 20px;
    max-width: 290px;
    text-align: left;
  }
}

.service__item-icon {
  margin-bottom: 20px;
}
@media (max-width: 431px) {
  .service__item-icon {
    margin-bottom: 10px;
  }
  .service__item-icon img {
    height: 35px;
    width: 35px;
  }
}

.service__item-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 1390px) {
  .service__item-title {
    font-size: 24px;
  }
}
@media (max-width: 431px) {
  .service__item-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.service-item__list-item {
  text-align: left;
  padding-left: 30px;
  font-weight: 500;
  font-size: 25px;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 1390px) {
  .service-item__list-item {
    font-size: 18px;
  }
}
@media (max-width: 431px) {
  .service-item__list-item {
    font-size: 16px;
    padding-left: 20px;
  }
}
.service-item__list-item::after {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/marker.svg");
  width: 26px;
  height: 26px;
  left: 0;
}
@media (max-width: 1390px) {
  .service-item__list-item::after {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 431px) {
  .service-item__list-item::after {
    width: 14px;
    height: 14px;
    top: 0;
  }
}

.slider {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .slider {
    margin-bottom: 50px;
  }
}

.slider__inner {
  text-align: center;
}

.slider__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  border-radius: 60px;
  border: 1px solid #b3beb3;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 769px) {
  .slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 431px) {
  .slider__item {
    border-radius: 30px;
    gap: 0;
    margin-bottom: 20px;
  }
}

.slider__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
}
@media (max-width: 1801px) {
  .slider__item-right {
    padding: 20px;
  }
}

.slider__item-labels {
  margin-top: 77px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1801px) {
  .slider__item-labels {
    margin-top: 10px;
  }
}
@media (max-width: 431px) {
  .slider__item-labels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.slider__item-label {
  border: 1px solid #b3beb3;
  padding: 20px;
  border-radius: 30px;
}
@media (max-width: 431px) {
  .slider__item-label {
    padding: 15px;
    border-radius: 15px;
  }
}

.slider-item__label-title {
  text-align: left;
  margin-bottom: 5px;
  font-size: 35px;
  font-weight: 700;
}
@media (max-width: 1801px) {
  .slider-item__label-title {
    font-size: 22px;
  }
}
@media (max-width: 431px) {
  .slider-item__label-title {
    font-size: 18px;
  }
}

.slider-item__label-text {
  text-align: left;
  font-size: 20px;
  font-weight: 300;
  color: #5b5e5b;
}
@media (max-width: 1801px) {
  .slider-item__label-text {
    font-size: 16px;
  }
}
@media (max-width: 431px) {
  .slider-item__label-text {
    font-size: 13px;
  }
}

.slick-slide img {
  height: 100%;
  max-width: 790px;
}
@media (max-width: 1700px) {
  .slick-slide img {
    max-width: 700px;
  }
}
@media (max-width: 1240px) {
  .slick-slide img {
    max-width: 570px;
  }
}
@media (max-width: 769px) {
  .slick-slide img {
    max-inline-size: 100%;
    block-size: auto;
  }
}

.slider__item-text {
  text-align: left;
  font-size: 25px;
  line-height: 124%;
  color: #152614;
  font-weight: 500;
}
@media (max-width: 1801px) {
  .slider__item-text {
    font-size: 20px;
  }
}
@media (max-width: 431px) {
  .slider__item-text {
    font-size: 14px;
  }
}

.slick-dots li {
  width: 60px;
}

.slick-dots li button:before {
  border-radius: 5px;
  font-family: "slick";
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 7px;
  content: "";
  text-align: center;
  opacity: 0.25;
  color: black;
  background-color: #b3beb3;
  -webkit-font-smoothing: antialiased;
  color: #b3beb3;
}

.slick-dots li.slick-active button:before {
  background-color: #2c9a09;
}

.slick-next,
.slick-prev {
  top: 43% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px !important;
  height: 80px !important;
  border-radius: 20px;
  position: absolute;
  z-index: 100;
}
.slick-next::before,
.slick-prev::before {
  display: none;
}

.slick-next {
  background-color: #2c9a09;
}
.slick-next:hover {
  background-color: #2c9a09;
}
@media (max-width: 1801px) {
  .slick-next {
    right: -59px;
  }
}
@media (max-width: 1080px) {
  .slick-next {
    display: none !important;
  }
}

.slick-prev {
  background-color: #152614;
}
.slick-prev:hover {
  background-color: #152614;
}
@media (max-width: 1801px) {
  .slick-prev {
    left: -59px;
  }
}
@media (max-width: 1080px) {
  .slick-prev {
    display: none !important;
  }
}

.about {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .about {
    margin-bottom: 50px;
  }
}

.about__inner {
  height: 875px;
  border-radius: 60px;
  background-color: #152614;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1480px) {
  .about__inner {
    height: 785px;
  }
}
@media (max-width: 1080px) {
  .about__inner {
    height: 642px;
  }
}
@media (max-width: 769px) {
  .about__inner {
    height: 972px;
    overflow: hidden;
  }
}
@media (max-width: 431px) {
  .about__inner {
    border-radius: 20px;
    padding: 20px;
    height: 900px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.about__inner::before {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  width: 1271px;
  height: 733px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../images/about/Ellipse.svg");
}
@media (max-width: 1480px) {
  .about__inner::before {
    width: 1100px;
    height: 636px;
  }
}
@media (max-width: 1080px) {
  .about__inner::before {
    width: 824px;
    height: 476px;
  }
}
@media (max-width: 769px) {
  .about__inner::before {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(50deg);
            transform: rotate(50deg);
    top: 247px;
    left: 0;
  }
}
@media (max-width: 431px) {
  .about__inner::before {
    width: 600px;
    height: 346px;
    left: -103px;
  }
}

.about__content {
z-index: 10;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 769px) {
  .about__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
	padding: 20px;
  }
}

.about__title {
  color: #f7fff7;
  margin-bottom: 27px;
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 1328px) {
  .about__title {
    font-size: 45px;
  }
}
@media (max-width: 431px) {
  .about__title {
    font-size: 22px;
    margin-top: 20px;
  }
}

@media (max-width: 769px) {
  .about__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 431px) {
  .about__items {
    position: relative;
  }
}

.about__item {
  background-color: #142613;
  position: absolute;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #f7fff7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 30px;
}
@media (max-width: 1328px) {
  .about__item {
    text-align: center;
    max-width: 260px;
  }
}
@media (max-width: 769px) {
  .about__item {
    position: static;
  }
}
@media (max-width: 431px) {
  .about__item {
    padding: 15px;
    text-align: left;
    border-radius: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about__item:nth-child(even) {
    margin-left: 40px;
  }
}
.about__item:first-child {
  top: 99px;
  left: 165px;
}
@media (max-width: 1080px) {
  .about__item:first-child {
    top: 55px;
  }
}
.about__item:nth-child(2) {
  top: 55px;
  right: 326px;
}
.about__item:nth-child(3) {
  top: 496px;
  right: 44px;
}
@media (max-width: 1080px) {
  .about__item:nth-child(3) {
    top: 430px;
  }
}
.about__item:nth-child(4) {
  bottom: 49px;
  right: 641px;
}
@media (max-width: 1800px) {
  .about__item:nth-child(4) {
    right: 507px;
  }
}
@media (max-width: 1080px) {
  .about__item:nth-child(4) {
    right: 385px;
  }
}
.about__item:nth-child(5) {
  top: 516px;
  left: 144px;
}
@media (max-width: 1250px) {
  .about__item:nth-child(5) {
    top: 437px;
    left: 76px;
  }
}
.about__item-img {
  margin-bottom: 15px;
}
@media (max-width: 431px) {
  .about__item-img {
    width: 35px;
    height: 35px;
  }
}

.about__item-text {
  font-weight: 500;
  font-size: 20px;
  color: #f7fff7;
}
@media (max-width: 1480px) {
  .about__item-text {
    font-size: 14px;
  }
}

.cta {
  margin-bottom: 173px;
}
@media (max-width: 431px) {
  .cta {
    margin-bottom: 50px;
  }
}

.cta__inner {
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  background-color: #152614;
}
@media (max-width: 769px) {
  .cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 431px) {
  .cta__inner {
    border-radius: 20px;
  }
}

.cta__content {
  padding-left: 40px;
  position: relative;
  color: #f7fff7;
}
@media (max-width: 431px) {
  .cta__content {
    padding-left: 20px;
  }
}
.cta__content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #2c9a09;
  height: 100%;
  width: 10px;
}
@media (max-width: 431px) {
  .cta__content::before {
    width: 5px;
  }
}

.cta__title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1390px) {
  .cta__title {
    font-size: 45px;
  }
}
@media (max-width: 431px) {
  .cta__title {
    font-size: 22px;
    margin-bottom: 5px;
  }
}

.cta__text {
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 1390px) {
  .cta__text {
    font-size: 18px;
  }
}
@media (max-width: 431px) {
  .cta__text {
    font-size: 16px;
  }
}

.form {
  width: 100%;
  max-width: 740px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1390px) {
  .form {
    max-width: 560px;
  }
}
@media (max-width: 769px) {
  .form {
    max-width: 100%;
  }
}

.form__wrapper {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 769px) {
  .form__wrapper {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 431px) {
  .form__wrapper {
    gap: 10px;
  }
}

.form__input {
  padding: 27px 20px;
  border-radius: 20px;
  font-size: 25px;
}
@media (max-width: 769px) {
  .form__input {
    padding: 17px 15px;
  }
}
@media (max-width: 431px) {
  .form__input {
    font-size: 16px;
  }
}
.form__input::-webkit-input-placeholder {
  font-size: 25px;
  line-height: 1;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
}
.form__input::-moz-placeholder {
  font-size: 25px;
  line-height: 1;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
}
.form__input:-ms-input-placeholder {
  font-size: 25px;
  line-height: 1;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
}
.form__input::-ms-input-placeholder {
  font-size: 25px;
  line-height: 1;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
}
.form__input::placeholder {
  font-size: 25px;
  line-height: 1;
  color: #b3beb3;
  font-family: "IBM Plex Sans", sans-serif;
}
@media (max-width: 431px) {
  .form__input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form__input::-moz-placeholder {
    font-size: 16px;
  }
  .form__input:-ms-input-placeholder {
    font-size: 16px;
  }
  .form__input::-ms-input-placeholder {
    font-size: 16px;
  }
  .form__input::placeholder {
    font-size: 16px;
  }
}
.form__input:invalid {
  color: #fb1111;
  outline: 1px solid #fb1111;
}

.questions {
  margin-bottom: 110px;
}
@media (max-width: 431px) {
  .questions {
    margin-bottom: 20px;
  }
}

.questions__inner {
  text-align: center;
}

.questions__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.accordion__item {
  text-align: left;
  width: 100%;
  padding: 40px 80px 40px 40px;
  background-color: #f7fff7;
  color: #152614;
  border: 1px solid #b3beb3;
  border-radius: 60px;
}
@media (max-width: 431px) {
  .accordion__item {
    border-radius: 20px;
    padding: 20px 40px 20px 20px;
  }
}
.accordion__item.active .accordion {
  margin-bottom: 20px;
}
.accordion__item.active .accordion::after {
  background-image: url("../images/minus.svg");
}
.accordion__item.active .panel {
  display: block;
}

.accordion {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  font-family: "Geologica", sans-serif;
  position: relative;
}
@media (max-width: 431px) {
  .accordion {
    font-size: 20px;
  }
}
.accordion::after {
  content: "";
  background-image: url("../images/plus.svg");
  background-size: cover;
  position: absolute;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  display: inline-block;
  right: -40px;
}
@media (max-width: 431px) {
  .accordion::after {
    width: 35px;
    height: 35px;
    top: 20px;
    right: -30px;
  }
}

.panel {
  display: none;
  font-size: 25px;
  line-height: 124%;
  text-align: left;
}
@media (max-width: 431px) {
  .panel {
    font-size: 16px;
  }
}

.footer {
  padding: 120px 0;
  background-color: #222;
}
@media (max-width: 430px) {
  .footer {
    padding: 60px 0;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1133px) {
  .footer__inner {
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 430px) {
  .footer__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
  }
}

.footer__col {
  width: 33.333%;
}
@media (max-width: 1133px) {
  .footer__col {
    width: 526px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 430px) {
  .footer__col {
    width: 280px;
  }
  .footer__col:nth-child(1) {
    width: 100%;
  }
  .footer__col:nth-child(2) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__col:nth-child(3) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1133px) {
  .footer__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.footer__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 1133px) {
  .footer__list-item {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 430px) {
  .footer__list-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer__list-item img {
    display: none;
  }
}
.footer__list-item img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.footer__list-item:hover img {
  opacity: 1;
}

.footer__list-link {
  color: #f7fff7;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1133px) {
  .footer__social {
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.footer__social-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1133px) {
  .footer__social-item {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 430px) {
  .footer__social-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer-phone {
  color: #f7fff7;
}

.footer-mail {
  color: #f7fff7;
}

@media (max-width: 1133px) {
  .button-cta {
    text-align: center;
  }
}
@media (max-width: 430px) {
  .button-cta {
    width: 100%;
    max-width: 100%;
  }
}