:root {
  --color-green: #457947;
  --color-title: #202022;
  --color-blue: #0979cc;
}
html {
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: Tilda Sans, sans-serif;
  min-height: 100vh;
  color: #000;
  margin: 0;
  background-color: #eff3f7;
}
main {
  display: block;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
button,
select {
  text-transform: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}
textarea {
  overflow: auto;
  resize: none;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
[hidden] {
  display: none;
}
*,
::after,
::before {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  color: var(--color-text);
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
input {
  border: none;
  background-color: #fff;
  font: inherit;
}
button {
  border: none;
  padding: 0;
  font: inherit;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Black.woff2) format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans Extra';
  src: url(../fonts/TildaSans-ExtraBold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Light.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Semibold.woff2) format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tilda Sans';
  src: url(../fonts/TildaSans-Medium.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.no-overflow {
  overflow: hidden;
}
.hidden,
.hidden-desctop,
.hidden-mobile {
  display: none;
}
.section {
  padding: 100px 0 125px;
}
.header {
  display: block;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 5px #00000017;
  transition-duration: 0.3s;
}
.header.float {
  padding: 5px 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.logo {
  display: block;
  margin-right: 42px;
  flex-shrink: 0;
}
.logo img {
  display: block;
}
.menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
.menu-item-has-children {
  position: relative;
  flex-shrink: 0;
}
.menu-item-has-children > a {
  position: relative;
  padding-right: 17px;
}
.menu-item-has-children > a:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-right: none;
  border-top: none;
  background-color: transparent;
  position: absolute;
  transform: rotate(-45deg);
  right: 0;
  top: 5px;
  transition-duration: 0.3s;
}
.menu-item-has-children:hover > a:after {
  transform: rotate(-225deg);
  top: 9px;
}
.sub-menu {
  box-shadow: 0 2px 6px 5px rgb(0 0 0 / 16%);
  background-color: #fff;
  padding: 13px 20px;
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 999;
  margin-left: -20px;
  transition-duration: 0.3s;
  width: -moz-max-content;
  width: max-content;
}
.sub-menu a {
  font-size: 14px;
}
.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.daw {
  transform: rotate(180deg);
  margin-left: 10px;
  display: none;
}
.menu-item-has-children.open > a .daw {
  transform: rotate(0);
}
.hero__contacts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 3px;
  flex-direction: column;
  font-size: 14px;
  line-height: 14px;
  margin-left: auto;
  margin-right: 18px;
}
.hero__adres {
  display: block;
}
.hero__tel {
  display: block;
}
.soc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.soc__item {
  display: block;
  line-height: 0;
}
.header__btn {
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--color-green);
  padding: 10px 11px;
  max-width: 165px;
  width: 100%;
  margin-left: 27px;
  transition-duration: 0.3s;
}
.hero {
  height: 100vh;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.hero:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__title {
  text-align: center;
  font-size: 58px;
  line-height: normal;
  margin-bottom: 29px;
  color: #fff;
}
.hero__desc {
  text-align: center;
  color: #fff;
  font-size: 24px;
}
.btn {
  color: #fff;
  text-align: center;
  font-weight: 600;
  background-color: var(--color-green);
  border-radius: 7px;
  display: block;
  width: 100%;
  padding: 18px 10px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
}
.btn:hover,
.header__btn:hover {
  background-color: #325833;
}
.hero__btn {
  max-width: 304px;
  margin: 60px auto 85px;
}
.animate-btn::before {
  content: '';
  position: absolute;
  top: -27px;
  left: -75%;
  width: 15px;
  height: 200%;
  transform: rotate(45deg);
  background: #ffffffd6;
  animation: 2s infinite shimmer;
}
@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.hero__next {
  margin: 0 auto;
  display: block;
  animation: 1.7s infinite hero-next-animate;
}
@keyframes hero-next-animate {
  0%,
  to {
    transform: translateY(0);
  }
  50%,
  55% {
    transform: translateY(-7px);
  }
}
.benefits {
  background-color: #eee;
}
.title {
  color: #000;
  font-size: 42px;
  line-height: normal;
  text-align: center;
  font-weight: 600;
  margin-bottom: 90px;
}
.benefits__title {
  display: block;
}
.benefits__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 72px 40px;
  flex-wrap: wrap;
}
.benefits__item {
  width: calc(33.333% - 27px);
}
.benefits__item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.benefits__item-head img {
  display: block;
  width: 35px;
}
.benefits__item-title {
  font-size: 18px;
}
.benefits__item-desc {
  display: block;
}
.services__title {
  display: block;
}
.services__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.services__item {
  width: calc(33.333% - 27px);
  border-radius: 10px;
  box-shadow: 0 2px 10px #00000024;
  padding: 30px;
}
.services__item-title {
  display: block;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 9px;
}
.services__desc {
  display: block;
}
.tarifs {
  background-color: #fff;
}
.table-wrap {
  overflow-x: auto;
}
.tarifs table {
  border-collapse: collapse;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.tarifs table tr {
  display: table-row;
  border-bottom: 1px solid #ced5d9;
}
.tarifs table td {
  padding: 20px;
  -moz-text-align-last: left;
  text-align-last: left;
  font-size: 18px;
}
.tarifs table th {
  font-weight: 500;
  padding: 20px;
  -moz-text-align-last: left;
  text-align: left;
  font-size: 18px;
}
.tarifs table td:first-child,
.tarifs table th:first-child {
  padding-left: 80px;
}
.tarifs__title {
  text-align: center;
}
.tarifs__desc {
  font-size: 24px;
  text-align: center;
  margin-top: 56px;
  font-weight: 300;
}
.tarifs__btn {
  max-width: 293px;
  width: 100%;
  margin: 30px auto 0;
}
.reviews__title {
  display: block;
}
.reviews__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 80px 40px;
  flex-wrap: wrap;
}
.reviews__item {
  width: calc(33.333% - 27px);
  border-radius: 10px;
  background-color: #f7f7f7;
  padding: 30px 41px;
}
.reviews__item-avatar {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: -84px auto 37px;
  -o-object-fit: cover;
  object-fit: cover;
}
.reviews__item-name {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  display: block;
  margin-bottom: 9px;
}
.reviews__item-desc {
  display: block;
}
.examples {
  background-color: #fff;
}
.examples__title {
  display: block;
}
.examples__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.examples__item {
  width: calc(33.333% - 27px);
  border-radius: 10px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  display: block;
}
.examples__item img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.faq {
  background-color: #eee;
}
.faq__title {
  display: block;
}
.faq__item {
  padding: 25px 120px 24px 40px;
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.faq__item-title {
  display: block;
}
.faq__item-title-item {
  font-size: 24px;
  font-weight: 600;
}
.faq__item-control {
  transform: rotate(0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 17px;
  top: 30px;
  cursor: pointer;
  transition-duration: 0.3s;
}
.faq__item.active .faq__item-control {
  transform: rotate(45deg);
}
.faq__item-control svg {
  display: block;
}
.faq__item-body {
  display: block;
  overflow: hidden;
  transition-duration: 0.3s;
  height: 0;
  max-width: 85%;
}
.faq__item-body-inner {
  display: block;
  padding: 20px 0 0;
  line-height: 31px;
  font-size: 20px;
}
.faq__item.active .faq__item-body {
  height: auto;
  opacity: 1;
}
.faq__item-body p {
  display: block;
  margin-bottom: 20px;
}
.faq__item-body p:last-child {
  margin-bottom: 0;
}
.faq__item-body ul {
  display: list-item;
  margin: 20px 40px;
}
.faq__item-body li {
  font-size: 18px;
  list-style: disc;
}
.faq__item-body a {
  color: var(--color-green);
}
.consult {
  background-color: #fff;
}
.consult__title {
  display: block;
  text-align: center;
  margin-bottom: 35px;
}
.title__sub {
  font-size: 24px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 78px;
}
.form__field-wrap {
  display: block;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.text-field {
  border: 1px solid #dbdbdb;
  height: 60px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
  padding: 10px 20px;
}
.text-field::-moz-placeholder {
  color: #c2c2c2;
}
.text-field::placeholder {
  color: #c2c2c2;
}
.textarea-field {
  height: 200px;
}
.form__btn {
  max-width: 280px;
  margin: 50px auto 0;
}
.contacts {
  display: block;
}
.contacts__container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.contacts__left {
  display: block;
  max-width: 445px;
  width: 100%;
}
.contacts__title {
  font-size: 28px;
  display: block;
  margin-bottom: 25px;
}
.contacts__item-wrap {
  display: block;
  margin-bottom: 70px;
}
.contacts__item {
  display: block;
  font-size: 20px;
}
.contacts__right {
  display: block;
  width: 100%;
  height: 400px;
}

.contacts__right iframe {
  width: 100%;
  height: 100%;
  display: block;
  min-width: 100%;
}

.footer {
  padding: 10px 0;
  background-color: #000;
}
.footer__container {
  display: block;
}
.copyright {
  color: #fff;
  text-align: center;
}
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s;
  opacity: 0;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  max-width: 560px;
  width: 95%;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f8fa;
  z-index: 999;
  padding: 50px 60px 40px;
  border-radius: 10px;
  overflow: hidden;
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  display: block;
}
.modal__close {
  position: absolute;
  top: 26px;
  right: 27px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background: 0 0;
  border: none;
  z-index: 998;
}
.modal__close:hover {
  cursor: pointer;
}
.modal__close:hover::after,
.modal__close:hover::before {
  background-color: #c00f0c;
}
.modal__close::after,
.modal__close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-green);
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__modal__close {
  display: block;
}
.modal__title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
  line-height: normal;
}
.modal__desc {
  font-size: 16px;
  margin-bottom: 32px;
  text-align: center;
}
.modal .text-field {
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
}
.modal__btn {
  margin-top: 0;
  margin-bottom: 15px;
  max-width: 100%;
  width: 100%;
  height: 60px;
  line-height: 61px;
}
.modal__form {
  display: block;
}
.modal-success .modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.modal-success svg {
  width: 100px;
}
.hamburger {
  justify-content: space-between;
  flex-direction: column;
  gap: 2px;
  width: 30px;
  height: 17px;
  position: relative;
  display: none;
  z-index: 999;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #49454f;
}

.content {
  padding-top: 100px;
  padding-bottom: 80px;
}

.content__container {
  min-height: 500px;
}

.content h1 {
  font-size: 40px;
  margin-bottom: 50px;
  line-height: normal;
}

.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: 45px;
  margin-bottom: 25px;
  position: relative;
  line-height: normal;
}
.content h2 {
  font-size: 32px;
}
.content h3 {
  font-size: 28px;
}
.content h4 {
  font-size: 26px;
}
.content h5 {
  font-size: 24px;
}
.content p {
  margin: 25px 0;
}
.content a {
  color: var(--color-green);
  text-decoration: underline;
}
.content ol,
.content ul {
  margin: 30px 0 30px 30px;
}
.content li {
  margin-bottom: 15px;
}
.content ul li {
  list-style-type: disc;
}
.content ol li {
  list-style-type: auto;
}
.wp-block-quote {
  background-color: #eee;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--color-green);
}
.wp-block-quote cite {
  display: none;
}
.wp-block-quote p {
  margin-top: 0;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.content table {
  font-size: 14px;
}

.content figure {
  margin: 0 0 20px;
}

.content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: 0 0;
  position: absolute;
  bottom: -35px;
  margin-top: 0;
  color: #000;
}

@media (max-width: 1199px) {
  .container {
    max-width: 100%;
  }
  .hamburger {
    display: flex;
  }
  .header {
    display: block;
    padding: 10px 0;
  }
  .menu {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
  }
  .menu a {
    text-align: center;
  }
  .menu li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu-item-has-children > a {
    margin-right: -13px;
  }
  .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    box-shadow: none;
    margin: 10px 0 0;
    padding: 0 0 0 20px;
    display: none;
    width: 100%;
  }
  .sub-menu a {
    font-size: 14px;
    margin-bottom: 10px;
    color: #7e7e7e;
    display: inline-block;
  }
  .menu-item-has-children.active .sub-menu {
    display: block;
  }
  .menu-item-has-children:hover > a:after {
    right: 0;
    top: 5px;
    transform: rotate(-45deg);
  }
  .menu-item-has-children.active > a:after {
    transform: rotate(-225deg);
    top: 9px;
  }
  .header__btn {
    margin-left: 0;
  }
  .header__wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    height: 100%;
    transition-duration: 0.3s;
    transform: translateX(-100%);
  }
  .header__wrap.active {
    transform: translateX(0);
  }
  .hero__contacts {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 992px) {
  .section {
    padding: 70px 0 90px;
  }
  .benefits__item,
  .reviews__item,
  .services__item {
    width: calc(50% - 20px);
  }
  .tarifs table td:first-child,
  .tarifs table th:first-child {
    padding-left: 0;
  }
  .contacts__container {
    /* flex-direction: column; */
    flex-wrap: wrap;
  }
  .contacts__left {
    max-width: 100%;
  }
  .modal__content {
    padding: 25px 20px 40px;
  }
  .modal__close {
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0 60px;
  }
  .title {
    font-size: 24px;
    margin-bottom: 45px;
  }
  .benefits__item,
  .reviews__item,
  .services__item {
    width: 100%;
  }
  .benefits__wrap {
    gap: 40px 40px;
  }
  .tarifs__desc {
    font-size: 18px;
    margin-top: 40px;
  }
  .reviews__title {
    margin-bottom: 90px;
  }
  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .reviews__item-avatar {
    margin: -84px auto 20px;
  }
  .examples__item {
    width: 100%;
  }
  .faq__item {
    padding: 15px 70px 15px 20px;
  }
  .faq__item-title-item {
    font-size: 18px;
    line-height: 19px;
  }
  .faq__item-body-inner {
    padding: 20px 0 0;
    line-height: 24px;
    font-size: 16px;
  }
  .faq__item-control {
    right: 17px;
    top: 21px;
  }
  .title__sub {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .text-field {
    height: 45px;
    padding: 10px;
  }
  .textarea-field {
    height: 100px;
  }
  .hero__title {
    font-size: 38px;
  }
  .modal__title {
    font-size: 24px;
    line-height: 27px;
    margin-bottom: 30px;
  }
  .content {
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .content h1 {
    font-size: 30px;
    margin-bottom: 35px;
  }

  .content h2 {
    font-size: 24px;
  }
  .content h3 {
    font-size: 20px;
  }
  .content h4 {
    font-size: 18px;
  }
  .content h5 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .logo {
    width: 70px;
    transition-duration: 0.3s;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__desc {
    font-size: 16px;
  }
  .examples__wrap,
  .services__wrap {
    gap: 20px;
  }
  .header.float {
    padding: 3px 0;
  }
  .header.float .logo {
    width: 50px;
  }
}
