@import url("../css/nullstyle.css");
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/gilroy-bold.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-bold.woff2") format("woff2"), url("../fonts/gilroy-bold.woff") format("woff"), url("../fonts/gilroy-bold.ttf") format("truetype"), url("../fonts/gilroy-bold.svg#gilroy-bold") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/gilroy-medium.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-medium.woff2") format("woff2"), url("../fonts/gilroy-medium.woff") format("woff"), url("../fonts/gilroy-medium.ttf") format("truetype"), url("../fonts/gilroy-medium.svg#gilroy-medium") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/gilroy-regular.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-regular.woff2") format("woff2"), url("../fonts/gilroy-regular.woff") format("woff"), url("../fonts/gilroy-regular.ttf") format("truetype"), url("../fonts/gilroy-regular.svg#gilroy-regular") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 400;
  font-display: swap;
}
:root {
  --clr1: #0079c1;
  --clr2: #66a038;
  --clr3: #222222;
  --clr4: #ffffff;
  --clr5: #dfeef5;
  --clr6: #00928e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  padding: 17px 20px;
  background-color: var(--clr2);
  color: var(--clr4);
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  min-width: 220px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0 0 8px 0;
}
.btn:hover {
  background-color: var(--clr1);
}
.btn:disabled {
  opacity: 0.15;
}

.img {
  max-width: 100%;
}

.header {
  padding: 10px 0;
  width: 100%;
  z-index: 50;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr4);
  z-index: 6;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.048);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  position: relative;
  z-index: 6;
  max-width: 200px;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  .header__logo {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
  }
}
.header__button {
  display: flex;
  align-items: center;
  z-index: 6;
  gap: 20px;
  transition: all 0.3s ease-in-out;
  margin-left: 20px;
}
.header__button span {
  display: block;
  text-align: right;
  font-size: 16px;
  color: var(--clr1);
}
@media (max-width: 1000px) {
  .header__button {
    margin-left: auto;
    margin-right: 20px;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .header__button {
    position: fixed;
    bottom: -100%;
    right: 0;
    padding: 10px;
    width: 100%;
    color: var(--clr4);
    background-color: var(--clr2);
    text-align: center;
    justify-content: center;
    margin-right: 0;
  }
  .header__button.active {
    bottom: 0;
  }
}
.header__lang {
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}
.header__lang:hover {
  transform: scale(1.1);
}
.header__lang--img {
  width: 32px;
  height: 32px;
}
@media (max-width: 560px) {
  .header__lang--img {
    width: 40px;
    height: 40px;
  }
}
.header__top-info {
  position: relative;
  z-index: 6;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .header__top-info span {
    display: none;
  }
}
.header__phone {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  color: var(--clr3);
  display: block;
  text-align: right;
  transition: all 0.3s ease-in-out;
  font-family: "Gilroy-Medium", sans-serif;
}
.header__phone:hover {
  color: var(--clr2);
}
@media (max-width: 560px) {
  .header__phone {
    color: var(--clr4);
    padding-left: 30px;
    font-size: 26px;
  }
  .header__phone:hover {
    color: var(--clr4);
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1000px) {
  .header__burger {
    display: block;
    position: relative;
    height: 25px;
    width: 50px;
    z-index: 50;
    transition: all 0.3s ease;
  }
  .header__burger::before, .header__burger::after, .header__burger span {
    content: "";
    position: absolute;
    height: 4px;
    background: var(--clr3);
    margin: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .header__burger::before {
    top: 0px;
    right: 0;
    width: 100%;
    transform-origin: right;
  }
  .header__burger span {
    top: 10px;
    right: 0;
    width: 75%;
  }
  .header__burger::after {
    bottom: 0px;
    right: 0;
    width: 50%;
    transform-origin: right;
  }
  .header__burger.active::before {
    width: 50%;
  }
  .header__burger.active::after {
    width: 100%;
  }
}

.menu {
  position: relative;
  z-index: 6;
}
@media (max-width: 1000px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    padding: 120px 10px 0 0;
    background: var(--clr4);
    overflow: auto;
    transition: all 0.2s ease-in-out;
    z-index: 5;
    margin-left: 0;
  }
}
@media (max-width: 1000px) and (max-width: 560px) {
  .menu {
    padding-bottom: 50px;
  }
}
.menu.active {
  right: 0;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1000px) {
  .menu__list {
    display: block;
    text-align: right;
  }
}
@media (max-width: 1000px) {
  .menu__item {
    margin-bottom: 25px;
    display: block;
  }
}
.menu__link {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--clr3);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.menu__link:hover {
  color: var(--clr2);
}
@media (max-width: 1000px) {
  .menu__link {
    font-size: 33px;
  }
}
.menu li {
  position: relative;
}
.menu li:hover .sub-menu__list {
  opacity: 1;
  visibility: visible;
}

.home {
  position: relative;
}
@media (max-width: 768px) {
  .home::before {
    content: "";
    background-image: url("../img/home-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    opacity: 0.2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.home__inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 50px;
}
@media (max-width: 768px) {
  .home__inner {
    flex-direction: column;
  }
}
.home__block {
  flex: 0 1 50%;
}
@media (max-width: 768px) {
  .home__block {
    margin: 70px 0px;
  }
}
.home__block h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .home__block h1 {
    font-size: calc(35px + 20 * (100vw - 860px) / 540);
  }
}
@media (max-width: 768px) {
  .home__block h1 {
    font-size: 50px;
  }
}
.home__block p {
  font-size: 36px;
  color: var(--clr1);
  margin-bottom: 40px;
  max-width: 600px;
}
@media (max-width: 1400px) {
  .home__block p {
    font-size: calc(24px + 12 * (100vw - 860px) / 540);
  }
}
@media (max-width: 768px) {
  .home__block p {
    font-size: 28px;
  }
}
.home__btn {
  text-transform: uppercase;
}
.home__image {
  flex: 0 1 50%;
}
.home__img {
  border-radius: 0 0 8px 0;
}
@media (max-width: 768px) {
  .home__img {
    display: none;
  }
}

.about {
  margin: 100px 0;
  padding: 0 0 25px 0;
  border-radius: 0 0 30px 0;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 768px) {
  .about {
    margin: 50px 0;
  }
}
.about__body h2 {
  font-size: 36px;
  line-height: 1;
  font-family: "Gilroy-Medium", sans-serif;
  margin-bottom: 30px;
}
.about__text {
  font-size: 18px;
  margin-bottom: 20px;
}
.about__subtitle {
  color: var(--clr1);
  margin-bottom: 20px;
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 22px;
}
.about__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
  background-color: var(--clr5);
  padding: 30px;
  border-radius: 0 0 30px 0;
  position: relative;
}
@media (max-width: 768px) {
  .about__block {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .about__block {
    padding: 30px 10px;
  }
}
.about__block::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/eco.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  top: -45px;
  right: -30px;
  width: 70px;
  height: 70px;
  transform: rotate(50deg);
}
.about__block--item {
  position: relative;
  padding-left: 30px;
}
.about__block--item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background-color: var(--clr2);
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
}
.about__block--item p {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 18px;
}
.about h3 {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
.about__block--block p {
  margin-bottom: 10px;
  font-size: 18px;
}
.about__block--body {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .about__block--body {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
}
.about__block--body p {
  font-family: "Gilroy-Bold", sans-serif;
  color: var(--clr1);
  font-size: 24px;
}

.service {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .service {
    margin: 50px 0;
  }
}
.service h2 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 50px;
  font-family: "Gilroy-Medium", sans-serif;
  text-align: center;
}
@media (max-width: 550px) {
  .service h2 {
    margin-bottom: 60px;
  }
}
.service__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .service__inner {
    gap: 30px 20px;
  }
}
.service__column {
  display: flex;
  max-width: 330px;
  border: 1px dashed #f1f1f1;
  border-radius: 0 0 30px 0;
}
@media (max-width: 550px) {
  .service__column {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .service__column {
    max-width: 100%;
  }
}
.service__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.service__item h3 {
  color: var(--clr1);
  margin-bottom: 10px;
  min-height: 80px;
  font-size: 22px;
  font-family: "Gilroy-Medium", sans-serif;
  font-weight: 500;
}
@media (max-width: 550px) {
  .service__item h3 {
    min-height: auto;
  }
}
.service__item p {
  font-size: 18px;
  flex: 1 1 auto;
  margin-bottom: 20px;
}
.service__image {
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .service__image {
    margin-bottom: 10px;
  }
}
.service__img {
  width: 100px;
  height: 100px;
}
.service__item--link {
  text-transform: uppercase;
  color: var(--clr4);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  max-width: 250px;
  text-align: center;
  margin: 0 auto;
  padding: 12px;
}
.service__item--link:hover {
  color: var(--clr4);
}

.advantages {
  margin: 100px 0 0;
  background-image: url("../img/advantages-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .advantages {
    margin: 0;
  }
}
.advantages__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1010px) {
  .advantages__inner {
    flex-direction: column;
    gap: 100px;
  }
}
@media (max-width: 650px) {
  .advantages__inner {
    gap: 50px;
  }
}
@media (max-width: 550px) {
  .advantages__inner {
    gap: 0px;
  }
}
.advantages__body {
  flex: 0 1 50%;
}
.advantages__body h2 {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 50px;
  font-family: "Gilroy-Medium", sans-serif;
}
@media (max-width: 1000px) {
  .advantages__body h2 {
    font-size: calc(36px + 9 * (100vw - 768px) / 132);
  }
}
@media (max-width: 768px) {
  .advantages__body h2 {
    font-size: 36px;
  }
}
.advantages__title {
  margin-bottom: 50px;
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 550px) {
  .advantages__items {
    display: block;
    text-align: center;
  }
}
.advantages__block {
  flex: 0 1 50%;
  display: flex;
  gap: 20px;
}
@media (max-width: 650px) {
  .advantages__block {
    gap: 0;
  }
}
@media (max-width: 550px) {
  .advantages__block {
    display: block;
    width: 100%;
  }
}

.advantages-item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 550px) {
  .advantages-item {
    margin-bottom: 50px;
  }
}
.advantages-item h3 {
  color: var(--clr1);
  font-size: 24px;
  margin-bottom: 5px;
  font-family: "Gilroy-Bold", sans-serif;
}
.advantages-item p {
  flex: 1 1 auto;
  font-size: 18px;
}
.advantages-item__image {
  margin-bottom: 15px;
}
.advantages-item__img {
  width: 60px;
  height: 60px;
}

.advantages-half {
  flex: 0 1 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  background-color: rgba(103, 160, 56, 0.2274509804);
}
.advantages-half__image {
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media (max-width: 650px) {
  .advantages-half__image {
    display: none;
  }
}
.advantages-half__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.advantages-half__item {
  padding: 50px 0px;
}
@media (max-width: 1010px) {
  .advantages-half__item {
    padding: 50px 0;
  }
}
.advantages-half__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
}
.advantages-half__title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 0 10px;
}
@media (max-width: 650px) {
  .advantages-half__title {
    min-height: 72px;
  }
}
@media (max-width: 400px) {
  .advantages-half__btn {
    width: 0;
  }
}
@media (max-width: 400px) {
  .advantages-half__link {
    width: 0;
  }
}

.advantages-half--one {
  margin-top: -50px;
  border-radius: 0 0 0 30px;
  background-color: rgba(103, 160, 56, 0.2274509804);
}
@media (max-width: 650px) {
  .advantages-half--one {
    margin-top: 0;
  }
}
@media (max-width: 550px) {
  .advantages-half--one {
    border-radius: 0;
  }
}

.advantages-half--two {
  margin-bottom: -50px;
  border-radius: 0 30px 0 0;
  background-color: #dfeef5;
}
@media (max-width: 650px) {
  .advantages-half--two {
    margin-bottom: 0;
  }
}
@media (max-width: 550px) {
  .advantages-half--two {
    border-radius: 0 0 30px 0;
  }
}

.faq {
  margin: 50px 0;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .faq {
    margin: 25px 0;
    padding: 25px 0;
  }
}
.faq__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-self: center;
  justify-self: center;
}
@media (max-width: 1000px) {
  .faq__inner {
    display: block;
    padding: 0 50px;
  }
}
@media (max-width: 600px) {
  .faq__inner {
    padding: 0;
  }
}
.faq__image {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media (max-width: 1000px) {
  .faq__image {
    display: none;
  }
}
.faq__img {
  border-radius: 0 0 20px 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.faq__body h2 {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 30px;
  font-family: "Gilroy-Medium", sans-serif;
}
@media (max-width: 1000px) {
  .faq__body h2 {
    font-size: calc(36px + 9 * (100vw - 768px) / 132);
  }
}
@media (max-width: 768px) {
  .faq__body h2 {
    font-size: 36px;
  }
}
@media (max-width: 390px) {
  .faq__body h2 {
    font-size: 30px;
  }
}
.faq__block--item {
  padding: 20px 0px;
  border-bottom: 1px solid #edf2f5;
  border-radius: 0 0 10px 0;
}
.faq__block--title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #313133;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding-left: 50px;
}
@media (max-width: 550px) {
  .faq__block--title {
    padding-left: 40px;
  }
}
.faq__block--title:hover {
  color: var(--clr2);
}
.faq__block--title::after, .faq__block--title::before {
  content: "";
  width: 16px;
  height: 3px;
  position: absolute;
  top: 11px;
  background-color: var(--clr2);
  transition: all 0.3s ease-in-out;
}
.faq__block--title::before {
  transform: rotate(90deg);
  left: 0;
}
.faq__block--title::after {
  left: 0;
}
.faq__block--title.active::before {
  transform: rotate(45deg);
  background-color: var(--clr2);
}
.faq__block--title.active::after {
  transform: rotate(-45deg);
  background-color: var(--clr2);
}
.faq__block--text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  padding-top: 10px;
  display: none;
  position: relative;
  padding-left: 50px;
  color: #a39e9e;
}
@media (max-width: 550px) {
  .faq__block--text {
    padding-left: 40px;
  }
}

.contact {
  margin: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .contact {
    margin: 50px 0;
  }
}
.contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  gap: 25px;
}
@media (max-width: 1050px) {
  .contact__inner {
    flex-direction: column;
  }
}
.contact__block h2 {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 50px;
  font-family: "Gilroy-Medium", sans-serif;
  color: var(--clr3);
  z-index: 10;
  position: relative;
}
@media (max-width: 1050px) {
  .contact__block h2 {
    font-size: calc(36px + 9 * (100vw - 768px) / 282);
  }
}
@media (max-width: 768px) {
  .contact__block h2 {
    font-size: 36px;
  }
}
.contact__block--left {
  background-color: rgba(103, 160, 56, 0.2274509804);
  border-radius: 16px;
  backdrop-filter: blur(8.3px);
  -webkit-backdrop-filter: blur(8.3px);
  padding: 50px;
  border-radius: 0 0 0 24px;
  max-width: 700px;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1050px) {
  .contact__block--left {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact__block--left {
    padding: calc(20px + 30 * (100vw - 320px) / 448);
    height: calc(230px + 120 * (100vw - 320px) / 448);
  }
}
.contact__block--left::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  background: url("../img/icon/mask1.svg") 0 0/100% no-repeat;
  width: 400px;
  height: 400px;
  z-index: -1;
  opacity: 0.5;
}
.contact__block--left::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -200px;
  background: url("../img/icon/mask2.svg") 0 0/100% no-repeat;
  width: 400px;
  height: 300px;
  z-index: -1;
  opacity: 0.5;
}
.contact__link-phone {
  font-size: 40px;
  color: var(--clr3);
  position: relative;
  padding-left: 60px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1140px) {
  .contact__link-phone {
    font-size: calc(30px + 10 * (100vw - 1050px) / 90);
  }
}
@media (max-width: 1050px) {
  .contact__link-phone {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .contact__link-phone {
    font-size: calc(25px + 15 * (100vw - 320px) / 448);
    padding-left: calc(40px + 20 * (100vw - 320px) / 448);
  }
}
.contact__link-phone::before {
  content: "";
  position: absolute;
  background: url("../img/icon/phone.svg") 0 0/100% no-repeat;
  width: 40px;
  height: 40px;
  top: 1px;
  left: 0;
}
@media (max-width: 768px) {
  .contact__link-phone::before {
    width: calc(30px + 10 * (100vw - 320px) / 448);
    height: calc(30px + 10 * (100vw - 320px) / 448);
  }
}
.contact__link-phone:hover {
  color: var(--clr2);
}
.contact__block--right {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.6px);
  -webkit-backdrop-filter: blur(10.6px);
  padding: 50px;
  border: 1px solid rgba(103, 160, 56, 0.368627451);
  border-radius: 0 0 30px 0;
  max-width: 600px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .contact__block--right {
    padding: calc(20px + 30 * (100vw - 320px) / 448);
  }
}
.contact__block--right::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/eco.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  top: -45px;
  right: -30px;
  width: 70px;
  height: 70px;
  transform: rotate(50deg);
}
.contact__form {
  text-align: center;
}
.contact__form h2 {
  margin-bottom: 20px;
  color: var(--clr3);
  text-shadow: none;
  font-size: 45px;
}
@media (max-width: 768px) {
  .contact__form h2 {
    font-size: 36px;
  }
}
@media (max-width: 550px) {
  .contact__form h2 {
    font-size: 30px;
  }
}
.contact__form p {
  margin-bottom: 30px;
}
@media (max-width: 550px) {
  .contact__form p {
    font-size: 18px;
  }
}
.contact__textarea {
  height: 100px;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #bebebe;
  border-radius: 0 0 8px 0;
  width: 100%;
  min-width: 350px;
  max-width: 450px;
  padding: 15px;
  color: rgba(34, 34, 34, 0.8784313725);
  font-size: 16px;
  margin: 0 auto 16px;
  outline: none;
  font-family: "Gilroy-regular", sans-serif;
  transition: all 0.3s ease-in-out;
  resize: none;
}
.contact__textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact__textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact__textarea:hover {
  border: 1px solid var(--clr6);
}
.contact__textarea:focus {
  border: 1px solid var(--clr2);
}
@media (max-width: 450px) {
  .contact__textarea {
    min-width: 100%;
  }
}
.footer {
  padding: 50px 0 30px;
  background-color: var(--clr6);
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 10px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
@media (max-width: 1050px) {
  .footer__inner {
    flex-wrap: wrap;
    row-gap: 50px;
  }
}
@media (max-width: 500px) {
  .footer__inner {
    display: block;
  }
}
@media (max-width: 500px) {
  .footer__block {
    margin-bottom: 30px;
  }
}
.footer__block--service {
  text-align: left;
}
@media (max-width: 500px) {
  .footer__logo {
    display: block;
  }
}
.footer__logo-img {
  max-width: 200px;
  margin: 0 20px 20px 0;
}
@media (max-width: 500px) {
  .footer__logo-img {
    margin-right: 0;
  }
}
.footer__img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.footer__img--card {
  width: 30px;
  height: 30px;
}
.footer__button {
  display: flex;
  align-items: center;
  z-index: 6;
  gap: 20px;
  transition: all 0.3s ease-in-out;
}
.footer__button span {
  display: block;
  text-align: right;
  font-size: 16px;
  color: var(--clr4);
}
.footer__phone {
  color: var(--clr4);
  transition: all 0.3s ease-in-out;
  font-family: "Gilroy-Medium", sans-serif;
}
.footer__phone:hover {
  color: var(--clr3);
}
.footer__lang {
  transition: all 0.3s ease-in-out;
}
.footer__lang:hover {
  transform: scale(1.1);
}
.footer__lang--img {
  width: 32px;
  height: 32px;
}
.footer__title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  color: var(--clr4);
  margin-bottom: 20px;
  font-size: 20px;
  display: inline-block;
  letter-spacing: 1px;
}
.footer__list--service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  max-width: 700px;
}
@media (max-width: 550px) {
  .footer__list--service {
    display: flex;
    flex-direction: column;
  }
}
.footer__list--social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__list--pay {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__item {
  position: relative;
  padding-left: 20px;
}
.footer__item::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--clr2);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.footer__item::before:hover {
  background-color: var(--clr4);
}
.footer__item--c {
  padding-left: 0;
  transition: all 0.3s ease-in-out;
}
.footer__item--c:hover {
  transform: scale(1.1);
}
.footer__item--c::before {
  display: none;
}
.footer__link {
  font-size: 18px;
  color: var(--clr4);
  transition: all 0.3s ease-in-out;
}
.footer__link:hover {
  color: var(--clr3);
}
.footer__items {
  margin-top: 20px;
}
.footer__cooper {
  font-size: 10px;
  background-color: #008682;
  padding: 10px 0;
  color: var(--clr4);
  text-align: center;
}
.footer__cooper a {
  color: var(--clr4);
  transition: all 0.3s ease-in-out;
}
.footer__cooper a:hover {
  color: var(--clr5);
}

.scroll-up {
  position: fixed;
  right: 30px;
  bottom: -30%;
  display: inline-block;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr2);
  border-radius: 0 0 8px 0;
  border: 1px solid #ffffff;
  animation: scroll 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) alternate infinite;
}
.scroll-up:hover {
  transform: translateY(-5px);
  background-color: var(--clr1);
}
.scroll-up img {
  width: 35px;
  transform: rotate(90deg);
}

.show-scroll {
  bottom: 30px;
}
@media (max-height: 400px) {
  .show-scroll {
    right: 10px;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease-in-out;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup__content {
  opacity: 1;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px 30px;
  transition: all 0.3s ease-in-out;
}
.popup__content {
  max-width: 600px;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
  background: var(--clr4);
  border-radius: 0 0 30px 0;
  opacity: 0;
}
.popup__clean h2 {
  text-align: left;
}
.popup__cleanp:last-child {
  color: var(--clr1);
}
.popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: var(--clr3);
  z-index: 101;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.popup__close:hover {
  color: var(--clr2);
}
.popup__form {
  display: block;
  padding: 50px;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .popup__form {
    padding-left: calc(10px + 40 * (100vw - 320px) / 448);
    padding-right: calc(10px + 40 * (100vw - 320px) / 448);
  }
}
.popup__form h2 {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.22;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .popup__form h2 {
    font-size: 20px;
  }
}
.popup__form p {
  text-align: left;
  line-height: 1.26;
  letter-spacing: 1px;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}
.popup__form p span {
  color: var(--clr1);
  font-family: "Gilroy-Bold", sans-serif;
}
.popup__form p::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--clr2);
  border-radius: 50%;
}
.popup__thank {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .popup__thank h2 {
    font-size: 30px;
  }
}
.popup__thank p {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}
.popup__thank p::before {
  display: none;
}
.popup__input .error {
  border: 1px solid red;
}
.popup__btn {
  margin-top: 36px;
}

.popup-input {
  display: block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #bebebe;
  border-radius: 0 0 8px 0;
  width: 100%;
  min-width: 350px;
  max-width: 450px;
  padding: 15px;
  color: rgba(34, 34, 34, 0.8784313725);
  font-size: 16px;
  margin: 0 auto 16px;
  outline: none;
  font-family: "Gilroy-regular", sans-serif;
  transition: all 0.3s ease-in-out;
}
.popup-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.popup-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.popup-input:hover {
  border: 1px solid var(--clr6);
}
.popup-input:focus {
  border: 1px solid var(--clr2);
}
@media (max-width: 450px) {
  .popup-input {
    min-width: 100%;
  }
}

.loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(100, 100, 100, 0.1176470588);
  border-radius: 0 0 30px 0;
  z-index: 1000;
}
.loading-icon.active {
  display: flex;
  z-index: 1000;
}
.loading-icon img {
  width: 80px;
  height: 80px;
}

.select {
  position: relative;
}
.select._active {
  z-index: 5;
}
.select._active .select__value::before {
  transform: rotate(-180deg);
}
.select._active.select__options {
  display: block;
}
.select__item {
  position: relative;
  min-width: 350px;
  max-width: 450px;
  margin: 0 auto;
}
@media (max-width: 420px) {
  .select__item {
    min-width: 100%;
  }
}
.select__title {
  color: rgba(34, 34, 34, 0.8784313725);
  border: 1px solid #bebebe;
  background-color: #fff;
  cursor: pointer;
  border-radius: 0 0 8px 0;
}
.select__value {
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 15px;
  text-align: left;
}
.select__value::before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icon/select.svg") center/100% no-repeat;
}
.select__value span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__options {
  color: rgba(34, 34, 34, 0.8784313725);
  display: none;
  position: absolute;
  top: 49px;
  min-width: 100%;
  left: 0;
  background-color: var(--clr4);
  border: 1px solid #bebebe;
  border-top: 0;
  font-size: 16px;
  padding: 0px 0px 5px 0px;
  border-radius: 0 0 8px 0;
  overflow: auto;
  max-height: 250px;
}
.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
  transition: all 0.2s ease-in-out;
  text-align: left;
}
.select__option:hover {
  background-color: var(--clr5);
}

.clean__content {
  max-width: 1200px;
}
.clean__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  background-color: #f8fafb;
  gap: 20px;
  position: relative;
  margin-bottom: 30px;
}
.clean__block::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/eco.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  top: -45px;
  right: -30px;
  width: 70px;
  height: 70px;
  transform: rotate(50deg);
}
@media (max-width: 650px) {
  .clean__block {
    grid-template-columns: repeat(1, 1fr);
    padding: 30px 10px 20px;
  }
}
@media (max-width: 400px) {
  .clean__block {
    gap: 30px;
  }
}
.clean__item {
  display: flex;
  align-items: start;
  gap: 20px;
}
@media (max-width: 400px) {
  .clean__item {
    flex-direction: column;
    gap: 10px;
  }
}
.clean__item p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
  color: var(--clr1);
  font-family: "Gilroy-Bold", sans-serif;
  padding-left: 0;
}
@media (max-width: 400px) {
  .clean__item p {
    text-align: center;
  }
}
.clean__item p::before {
  content: "";
  display: none;
}
.clean__img {
  width: 60px;
  height: 60px;
}
.clean__body {
  position: relative;
  border-radius: 0 0 30px 0;
}
.clean__body::before {
  content: "";
  background-color: rgba(75, 75, 75, 0.5019607843);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 0 0 30px 0;
  top: 0;
  left: 0;
  z-index: 5;
}
@media (max-width: 650px) {
  .clean__body {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .clean__body--wrapper {
    max-height: 200px;
  }
}
.clean__image-bg {
  height: 500px;
  width: 100px;
}
@media (max-width: 768px) {
  .clean__image-bg {
    max-height: 300px;
  }
}
.clean__img-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: inline-block;
}
.clean__link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.error-page {
  min-height: 100vh;
  background: url("../img/advantages-bg.webp") center/cover no-repeat;
  display: flex;
  padding: 20px 0;
}
.error-page__body {
  flex: 1 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  color: var(--clr1);
  padding: 0 10px;
}
.error-page__body h1 {
  font-size: 44px;
  font-family: "Gilroy-Bold", sans-serif;
  max-width: 730px;
  line-height: 120%;
  margin: 16px auto;
}
@media (max-width: 1300px) {
  .error-page__body h1 {
    font-size: calc(30px + 14 * (100vw - 768px) / 532);
  }
}
@media (max-width: 768px) {
  .error-page__body h1 {
    font-size: 26px;
  }
}
.error-page__body p {
  max-width: 525px;
  margin: 0 auto 36px;
  color: var(--clr3);
}
.error-page__body p span {
  color: var(--clr2);
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 22px;
}
.error-page__block span {
  font-size: 150px;
  font-family: "Gilroy-Bold", sans-serif;
  color: var(--clr1);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 1300px) {
  .error-page__block span {
    font-size: calc(115px + 35 * (100vw - 320px) / 980);
  }
}
.error-page__block span:hover {
  transform: scale(1.1);
}
.error-page__block span:nth-child(2) {
  color: var(--clr2);
}
.error-page__btn {
  align-self: center;
}
@media (max-width: 380px) {
  .error-page__btn {
    align-self: auto;
  }
}
.error-page__btn:hover {
  background-color: var(--clr1);
  color: var(--clr4);
}