*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
  background-color: transparent;
}
input::-moz-placeholder {
  color: inherit;
}
input::placeholder {
  color: inherit;
}

a {
  display: inline-block;
  color: inherit;
  font-family: inherit;
}

html {
  font-size: 10px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.2;
}
body.is-menu-open {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 160rem;
  margin: 0 auto;
}
.container--small {
  max-width: 128rem;
}
@media screen and (max-width: 1680px) {
  .container {
    max-width: 128rem;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 73rem;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 37rem;
    padding-inline: 1rem;
  }
}

.section {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 8rem;
  }
}

.text-accent {
  color: #1cb704;
}

.title {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: 900;
}
.title--big {
  position: absolute;
  inset: 0;
  inset-block-start: -2rem;
  font-size: 5.4rem;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 2.8rem;
  }
  .title--big {
    display: none;
  }
}

.site__phone {
  position: fixed;
  inset-block-end: 2rem;
  inset-inline-end: 2rem;
  width: 7rem;
  height: 7rem;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: #0086e0;
  border-radius: 50%;
  transition-property: background-color;
  transition-duration: 200ms;
}

.site__phone:hover {
  background-color: #0b66a2;
}

.site__phone::before,
.site__phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation-name: phone-back;
  animation-iteration-count: infinite;
  animation-duration: 2s;
}

.site__phone::before {
  background-color: rgba(0, 134, 224, 0.1098039216);
}

.site__phone::after {
  border: 0.1rem solid rgba(0, 134, 224, 0.1098039216);
  animation-delay: 0.5s;
}

@keyframes phone-back {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}
.header {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  padding-block: 2rem;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .header .header__logo-text {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header .header__logo img {
    width: 7rem;
    height: 7rem;
  }
  .header .header__social {
    display: none;
  }
}

.header__top {
  display: grid;
  grid-template-columns: 1fr repeat(2, auto);
  align-items: center;
  grid-gap: 6rem;
}
@media screen and (max-width: 1280px) {
  .header__top {
    grid-gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .header__top {
    grid-template-columns: 1fr auto;
  }
}

.header__logo {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  grid-gap: 1.8rem;
}
.header__logo-text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.social {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  grid-gap: 1.4rem;
}
.social__link {
  border-radius: 50%;
  overflow: hidden;
  transition-duration: 200ms;
  transition-property: transform;
}
.social__link:hover {
  transform: scale(1.1);
}

.header__burger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__burger {
    display: block;
  }
}

.header__bottom {
  border-block: 0.1rem solid rgba(255, 255, 255, 0.2705882353);
  margin-block-start: 1.5rem;
  padding-block: 1.8rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .header__bottom {
    display: none;
  }
}

.header__list {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10rem;
}
@media screen and (max-width: 1280px) {
  .header__list {
    grid-gap: 3rem;
  }
}

.header__link {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  text-underline-offset: 0.7rem;
  text-decoration-color: transparent;
  transition-duration: 200ms;
  transition-property: text-decoration-color;
}
@media screen and (max-width: 1280px) {
  .header__link {
    font-size: 1.4rem;
  }
}
.header__link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6039215686);
}
.header__link--language {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  grid-gap: 1rem;
}

.header__phone {
  padding: 1.4rem 2.5rem;
  background-color: #1cb704;
  font-size: 1.8rem;
  text-decoration: none;
  transition-duration: 200ms;
  transition-property: background-color;
}
.header__phone:hover {
  background-color: #168605;
}
@media screen and (max-width: 767px) {
  .header__phone {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), -webkit-image-set(url("../img/hero/hero-bg.webp") type("image/webp"), url("../img/hero/hero-bg.jpg") type("image/jpeg"));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), image-set(url("../img/hero/hero-bg.webp") type("image/webp"), url("../img/hero/hero-bg.jpg") type("image/jpeg"));
  background-size: auto, cover;
  background-position: center;
  display: grid;
  align-items: center;
  color: #fff;
}
@supports not ((background-image: -webkit-image-set(url("../img/hero/hero-bg.webp") type("image/webp"))) or (background-image: image-set(url("../img/hero/hero-bg.webp") type("image/webp")))) {
  .hero {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/hero/hero-bg.jpg");
  }
}

.hero .container {
  max-width: none;
  width: 160rem;
  padding-block-start: 7rem;
}
@media screen and (max-width: 1680px) {
  .hero .container {
    width: 128rem;
  }
}
@media screen and (max-width: 1280px) {
  .hero .container {
    width: 69rem;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero .container {
    width: 37rem;
    padding-inline: 1rem;
  }
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 600;
  max-width: 80rem;
  line-height: 1.4;
  margin-block-end: 3rem;
}
.hero__title--big {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 2;
}
@media screen and (max-width: 1280px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__title--big {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 2.6rem;
  }
  .hero__title--big {
    font-size: 3.5rem;
  }
}

.hero__description {
  font-size: 1.8rem;
  line-height: 1.5;
}

.about__title {
  margin-block-end: 6rem;
}
.about__title::before {
  content: "";
  position: absolute;
  inset-block-start: 6.3rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 0.2rem;
  background-color: #1cb704;
}
@media screen and (max-width: 1280px) {
  .about__title--rus .title--big {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about__title--rus {
    max-width: 30rem;
    line-height: 1.4;
    margin-inline: auto;
  }
  .about__title--rus::before {
    inset-block-start: 10rem;
  }
}

.about__description {
  max-width: 80rem;
  margin-inline: auto;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about__description {
    font-size: 1.8rem;
  }
}

.services {
  position: relative;
  color: #fff;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/services/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  opacity: 0.1;
  z-index: -1;
}
@supports not (background-image: url("../img/services/bg.webp")) {
  .services::before {
    background-image: url("../img/services/bg.png");
  }
}
@media screen and (max-width: 1280px) {
  .services::before {
    background-size: 100%;
  }
}
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #17172a;
  z-index: -2;
}

.services__title {
  margin-block-end: 7rem;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}
@media screen and (max-width: 1280px) {
  .services__list {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 6rem;
  }
}

.services__item-header {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  grid-gap: 2rem;
  margin-block-end: 3.5rem;
}
@media screen and (max-width: 1280px) {
  .services__item-header {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .services__item-header {
    justify-content: start;
  }
}

.services__name {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.services__item-info {
  display: grid;
  grid-gap: 2rem;
}

.services__description {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-inline-start: 3rem;
}
.services__description::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.8rem;
  width: 1rem;
  height: 1rem;
  background-color: #f7c03e;
}
@media screen and (max-width: 1280px) {
  .services__description {
    text-align: center;
  }
  .services__description::before {
    inset-inline-start: auto;
    transform: translateX(-2rem);
  }
}
@media screen and (max-width: 767px) {
  .services__description {
    text-align: left;
  }
}

.features {
  padding-block-end: 5rem;
}

.features__title {
  margin-block-end: 8rem;
}
@media screen and (max-width: 767px) {
  .features__title {
    margin-block-end: 5rem;
  }
}

.features__content {
  display: grid;
  grid-template-columns: 45rem 1fr;
  grid-gap: 10rem;
}
@media screen and (max-width: 1280px) {
  .features__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .features__content {
    grid-gap: 7rem;
  }
}

.features__image-wrapper {
  overflow: hidden;
  height: 54rem;
}
@media screen and (max-width: 1280px) {
  .features__image-wrapper {
    height: 40rem;
  }
}

.features__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  grid-gap: 10rem 5rem;
  padding-block: 5rem;
}
@media screen and (max-width: 1280px) {
  .features__list {
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  .features__list {
    grid-template-columns: 1fr;
    grid-gap: 6rem 3rem;
  }
}

.features__icon {
  margin-block-end: 5rem;
}
@media screen and (max-width: 1280px) {
  .features__icon {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .features__icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.features__description {
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
.features__description::before {
  content: "";
  position: absolute;
  inset-block-start: -2.5rem;
  width: 10rem;
  height: 0.3rem;
  background-color: #1cb704;
}
@media screen and (max-width: 1280px) {
  .features__description {
    text-align: center;
  }
  .features__description::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .features__description {
    font-size: 1.8rem;
  }
  .features__description::before {
    height: 0.2rem;
    width: 6rem;
  }
}

.gallery__title {
  margin-block-end: 5rem;
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0.7rem;
}
@media screen and (max-width: 767px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery__item {
  overflow: hidden;
  height: 20rem;
}
@media screen and (max-width: 1280px) {
  .gallery__item {
    height: 15rem;
  }
}
.gallery__item.hidden {
  display: none;
}
.gallery__item a {
  height: 100%;
  width: 100%;
}

.gallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gallery__more {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-inline-start: auto;
  margin-block-start: 3rem;
  background-color: #1cb704;
  padding: 1.4rem 5.5rem;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .gallery__more {
    width: 100%;
  }
}

.order {
  position: relative;
  color: #fff;
}
.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.1;
}
@supports not (background-image: url("../img/hero/hero-bg.webp")) {
  .order::before {
    background-image: url("../img/hero/hero-bg.jpg");
  }
}
.order::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #17172a;
  z-index: -2;
}

.order__title {
  margin-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .order__title {
    max-width: 28rem;
    margin-inline: auto;
    line-height: 1.4;
  }
  .order__title--rus {
    max-width: 100%;
  }
}

.order__form {
  display: grid;
  grid-gap: 2rem;
  max-width: 70rem;
  margin-inline: auto;
}
.order__form-block {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .order__form-block {
    grid-auto-flow: row;
  }
}

.order__label {
  display: grid;
}
.order__label-title {
  font-size: 1.6rem;
  padding-inline-start: 1rem;
  margin-block-end: 1rem;
}

.order__field {
  border: 0.1rem solid rgba(255, 255, 255, 0.3843137255);
  height: 5rem;
  color: #fff;
  font-size: 1.6rem;
  padding-inline: 2rem;
  background-color: rgba(23, 23, 42, 0.631372549);
}

.order__message {
  background-color: rgba(23, 23, 42, 0.631372549);
  resize: none;
  border: 0.1rem solid rgba(255, 255, 255, 0.3843137255);
  min-height: 15rem;
  outline: none;
  padding: 2rem;
  color: #fff;
  font-size: 1.6rem;
}

.order__submit {
  width: 20rem;
  height: 5rem;
  background-color: #fff;
  margin-inline-start: auto;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-color: transparent;
  transition-duration: 200ms;
  transition-property: text-decoration-color;
}
.order__submit:hover {
  text-decoration-color: inherit;
}
@media screen and (max-width: 767px) {
  .order__submit {
    width: 100%;
  }
}

.footer {
  background-color: #17172a;
  color: #fff;
}

.footer .container {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 6rem;
}
@media screen and (max-width: 1280px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .container {
    grid-template-columns: 1fr;
    grid-gap: 7rem;
  }
}

.footer__navigation {
  display: grid;
  justify-content: center;
  grid-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__navigation {
    justify-content: start;
  }
}

.footer__link {
  font-size: 1.6rem;
  text-underline-offset: 0.4rem;
  text-decoration-color: transparent;
  transition-property: text-decoration-color;
  transition-duration: 200ms;
}
.footer__link:hover {
  text-decoration-color: inherit;
}

.footer__contacts {
  display: grid;
  grid-gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .footer__contacts {
    justify-content: start;
  }
}
.footer__contacts-text {
  font-size: 1.6rem;
}
.footer__contacts-link {
  display: block;
  line-height: 1.8;
  text-underline-offset: 0.3rem;
}

.footer__social {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__social {
    justify-content: start;
  }
}

.menu {
  position: fixed;
  inset: 0;
  color: #fff;
  padding-block-start: 10rem;
  padding-block-end: 5rem;
  z-index: 2;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition-property: opacity, visibility, transform;
  transition-duration: 200ms;
}
.menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.menu::after, .menu::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100%;
}
.menu::after {
  background-color: #17172a;
  z-index: -2;
}
.menu::before {
  background-image: url("../img/services/bg.webp");
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
}
@supports not (background-image: url("../img/services/bg.webp")) {
  .menu::before {
    background-image: url("../img/services/bg.png");
  }
}

.menu .container {
  position: relative;
}

.menu__close {
  position: absolute;
  inset-inline-end: 1.5rem;
  inset-block-start: -6rem;
}

.menu__item {
  text-align: center;
}

.menu__list {
  display: grid;
  grid-gap: 2.4rem;
  margin-block-end: 4rem;
}

.menu__social {
  justify-content: center;
}

.menu__link {
  font-size: 2rem;
  text-decoration: none;
}

.loader {
  position: fixed;
  inset: 0;
  background-color: rgba(23, 23, 42, 0.3254901961);
  -webkit-backdrop-filter: blur(0.4rem);
          backdrop-filter: blur(0.4rem);
  display: grid;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.loader.active {
  opacity: 1;
  visibility: visible;
}

.thanks {
  position: fixed;
  inset: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: scale(0);
  opacity: 0;
  transition-duration: 200ms;
  transition-property: transform, opacity;
}
.thanks.active {
  opacity: 1;
  transform: scale(1);
}
.thanks .container {
  background-color: #fff;
  box-shadow: 0 0 1rem 0.1rem rgba(94, 94, 94, 0.537254902);
  padding: 3rem;
}

.thanks__title {
  font-size: 2.4rem;
  text-align: center;
  margin-block-end: 1.5rem;
}

.thanks__description {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}/*# sourceMappingURL=index.css.map */