@charset "UTF-8";
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #333333;
}

/* Убирает прокрутку по горизонтале, для мобильной версии */
html,
body {
  overflow-x: hidden;
}

/* Вставка изображений любых в бокс */
img {
  max-width: 100%;
  height: auto;
}

/* Плавная прокрутка */
html {
  scroll-behavior: smooth;
}

/* Отступ сверху при прокручивании */
.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=ratio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: insert(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  text-align: center;
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 20px;
  line-height: 130%;
  font-weight: 700;
  margin-bottom: 0.5em;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Убирает синий фон при нажатии */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Установка цвета и фона в input */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #fbf6db;
}

input {
  border-radius: 0;
}

/* Выравнивание placeholder в textarea*/
/* disable horizontal resizing of textarea */
textarea {
  resize: vertical;
  max-height: 100px;
  min-height: 55px;
  border-radius: 0;
  float: left;
  padding-top: 20px;
  box-sizing: border-box;
}

.button {
  display: flex;
  align-items: center;
  font: inherit;
  text-align: center;
  font-size: 13px;
  line-height: 130%;
  color: #ffffff;
  vertical-align: middle;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  background: linear-gradient(180deg, #009700 48.75%, #005000 100%);
  border: none;
  border-radius: 50px;
  height: 40px;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
  padding: 10px 20px 10px 20px;
  justify-content: center;
}

.button .flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: -150%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.button:hover {
  background-color: #005000;
  transition: background-color 0.5s ease 0s;
}

.button:active {
  box-shadow: 0 2px 2px #005000;
  animation: activeScale 0.3s ease 0s;
}

@keyframes activeScale {
  0% {
    scale: 100%;
  }
  100% {
    scale: 105%;
  }
}
form * {
  outline: none;
  cursor: pointer;
}

form p {
  margin: 0;
}

.req.error {
  box-shadow: 0 4px 2px -2px red;
}

.checkbox-policy__item {
  margin: 0px 0px 10px 0px;
}

.checkbox-policy__input {
  display: none;
  cursor: pointer;
}

.checkbox-policy__label a {
  color: #005000;
  font-weight: 700;
}

.checkbox-policy__input:checked + .checkbox-policy__label:after {
  transform: scale(1);
  visibility: visible;
}

.checkbox-policy__label {
  display: inline-flex;
  font-size: 14px;
  line-height: 130%;
  position: relative;
}

.notice-row {
  display: inline;
}

.checkbox-policy__label:before {
  content: "";
  flex: 0 0 24px;
  height: 24px;
  background-color: #009700;
  border-radius: 6px;
  margin: 0px 10px 0px 0px;
}

.checkbox-policy__label:after {
  transition: transform 0.3s ease 0s;
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: #005000;
  border-radius: 6px;
  transform: scale(0);
  visibility: hidden;
}

.checkbox-policy__item.error .checkbox-policy__label:before {
  box-shadow: 0 0 5px red;
}

@media (min-width: 1140px) {
  body,
  html {
    width: 100%;
    height: 100vh;
  }
}
#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_notification p {
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: #330066;
}

@media (min-width: 576px) {
  #cookie_notification.show {
    display: flex;
  }
  .cookie__accept {
    margin: 0 0 0 25px;
  }
}
@media (max-width: 575px) {
  #cookie_notification.show {
    display: block;
    text-align: left;
  }
  .cookie__accept {
    margin: 10px 0 0 0;
  }
}
.header__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.logo__wrapper {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-height: 115px;
}

.logo__logo {
  width: 100px;
}

.logo__descriptor {
  display: none;
}

.map__wrapper {
  display: none;
}

.btn-application {
  display: none;
}

.mesenger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.mesenger__headtitle {
  display: none;
}

.mesenger__list {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 0;
  margin-top: 5px;
}

.mesenger__item {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.mesenger__item:not(:last-child) {
  padding-right: 20px;
}

.header__phone {
  display: none;
}

@media (min-width: 767px) {
  .header__wrapper {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .logo__logo {
    width: 150px;
  }
  .logo__descriptor {
    position: relative;
    display: flex;
    justify-content: start;
    color: #006800;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .header__mesenger {
    flex-direction: row;
    align-items: center;
  }
  .mesengers__descriptior {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-right: 10px;
  }
  .mesenger__headtitle {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1140px) {
  .header__wrapper {
    padding-left: 75px;
    padding-right: 75px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .map__wrapper {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .map__adress {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 5px;
  }
  .header__mesenger {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .mesenger__item {
    width: 30px;
  }
  .btn-application {
    position: relative;
    display: flex;
  }
  .header__phone {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: end;
  }
  .phone__title {
    margin: 0;
    padding-bottom: 5px;
  }
  .phone__title-item {
    font-size: 20px;
  }
}
.underground {
  height: fit-content;
  box-sizing: border-box;
  border: none;
  background: url(../img/underground.webp) 100% no-repeat;
  background-size: cover;
}

.underground__gradient {
  padding-top: 25px;
  background: linear-gradient(180deg, #FFF 10%, rgba(255, 255, 255, 0) 100%);
  padding-bottom: 35px;
}

.underground__wrapper {
  padding-right: 20px;
  padding-left: 20px;
  height: auto;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.contacts__title {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.underground__contacts {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.contacts {
  width: 100%;
  max-width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.contacts__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.contacts__item {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.contact__image {
  padding-right: 20px;
}

.contact__description {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.mesenger__title--footer {
  color: #000;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (min-width: 767px) {
  .underground__wrapper {
    padding-right: 60px;
    padding-left: 60px;
  }
  .contacts {
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .contacts__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contacts__item {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 50%;
  }
}
@media (min-width: 1140px) {
  .underground {
    display: none;
  }
}
.modal-application {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(161, 186, 167, 0.5);
  z-index: 100;
  opacity: 1;
  scale: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  cursor: pointer;
  box-sizing: border-box;
}

.modal__show {
  display: flex;
  animation: fadein 0.5s;
}

.modal-application__wrapper {
  position: absolute;
  width: 90%;
  max-width: 500px;
  height: fit-content;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  background: url(../img/modal.webp) 100% 100% no-repeat;
  background-size: cover;
  background-position: revert;
}

.modal-application__image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(124, 122, 94, 0) 0%, rgba(236, 230, 158, 0.53) 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}

.wrapper__modal-application {
  background-color: #c6ffc6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.modal__application {
  width: 100%;
}

.modal__title {
  color: #006800;
  font-family: OpenSans, Sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6em;
  text-align: center;
}

.modal__description {
  color: #D0E0FC;
  font-family: OpenSans, Sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6em;
  text-align: center;
}

.btn-close {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -15px;
  right: -15px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 2px solid #006800;
  z-index: 100;
}

.btn-close:before,
.btn-close:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  top: 45%;
  left: 2px;
  background-color: #006800;
  border-radius: 50px;
  z-index: 100;
}

.btn-close:before {
  rotate: -45deg;
}

.btn-close:after {
  rotate: 45deg;
}

@media (min-width: 767px) {
  .modal-application__wrapper {
    flex-direction: row;
    width: 600px;
    background-position: right;
    justify-content: end;
    max-width: 100%;
  }
  .modal-application__image {
    width: 50%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .wrapper__modal-application {
    width: 50%;
  }
}
.firstscreen {
  min-height: 100vh;
  box-sizing: border-box;
  border: none;
}

.firstscreen:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 120%;
  background: url(../img/background.webp) 100% 100% no-repeat;
  background-size: cover;
  z-index: -1;
}

.firstscreen__gradient {
  min-height: 100vh;
  padding-bottom: 35px;
}

.firstscreen__gradient:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 79.52%, #FFF 100%), linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}

.firstscreen__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  padding-left: 20px;
  height: auto;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.title-advantages__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.title__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.firstscreen__title {
  color: #006800;
  text-align: center;
  text-shadow: 4px 6px 15px #ffffff;
  font-family: Roboto, sans-serif;
  font-size: calc(18px + 2.125vw);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: calc(280px + 44.4444444444vw);
}

.firstscreen__descriptor {
  color: #000;
  text-align: center;
  text-shadow: 6px 6px 20px #FFF;
  font-family: Roboto, sans-serif;
  font-size: calc(16px + 0.75vw);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: calc(280px + 37.5vw);
  margin-top: 25px;
}

.advantages__wrapper {
  position: relative;
  display: flex;
  margin: 10px;
}

.advantages__list {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin: 0;
}

.advantages__item {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: calc(0px + 0.3571428571vw);
}

.advantages__piture {
  display: flex;
  align-items: center;
  min-width: 40px;
  padding-right: 10px;
}

.advatages__description {
  color: #000;
  text-shadow: 0px 0px 4px #24925D;
  font-family: Roboto, sans-serif;
  font-size: calc(16px + 1.125vw);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.advatages__description p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-firstscreen {
  width: 80%;
  font-size: 18px;
  height: 55px;
  margin: 10px;
  margin-bottom: 30px;
}

.applicanion__wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  background: rgb(251, 246, 219);
  box-shadow: 0 0 10px #000000;
  box-sizing: border-box;
  padding: 25px 30px;
}

.applicanion__title {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  text-decoration: underline;
  background: linear-gradient(180deg, #22BE4E 0%, #006800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ask-questions__name,
.ask-questions__phone,
.ask-questions__question {
  width: 100%;
  background: rgb(251, 246, 219);
  border: none;
  border-bottom: 0.8px solid #000;
  margin-bottom: 5px;
  height: 55px;
}

.ask-btn {
  width: 100%;
  height: 55px;
  font-size: 18px;
}

.checkbox-policy__item {
  padding-top: 10px;
}

.ask-questions__mesenger {
  justify-content: center;
  align-items: center;
}

.mesenger__list-firstscreen {
  justify-content: space-around;
  max-width: 300px;
}

.mesenger__title {
  text-align: center;
  width: 100%;
}

.notice {
  color: #939393;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.notice-row {
  color: #939393;
  font-family: Roboto, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.onlain {
  text-transform: uppercase;
  color: #006800;
  font-weight: bold;
}

@media (min-width: 767px) {
  .firstscreen__wrapper {
    padding-right: 60px;
    padding-left: 60px;
  }
  .mobile {
    display: none;
  }
}
@media (min-width: 1140px) {
  .firstscreen {
    max-height: 100%;
    height: 100%;
  }
  .firstscreen__gradient {
    max-height: 100%;
    height: 100%;
    padding-bottom: 0;
  }
  .firstscreen:before {
    height: 100%;
  }
  .firstscreen__gradient:before {
    height: 100%;
  }
  .firstscreen__wrapper {
    flex-direction: row;
    padding-right: 75px;
    padding-left: 75px;
    align-items: center;
    margin-top: calc(1px + 5vh);
  }
  .firstscreen__gradient {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 20%);
  }
  .btn-firstscreen {
    display: none;
  }
  .title-advantages__wrapper {
    align-items: start;
  }
  .title__wrapper {
    align-items: start;
  }
  .firstscreen__title {
    text-align: start;
    font-size: 42px;
  }
  .firstscreen__descriptor {
    font-size: 24px;
  }
  .applicanion__wrapper {
    width: 30%;
    max-width: 320px;
    margin-left: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background: rgb(251, 246, 219);
    box-shadow: 0 0 10px #000000;
    box-sizing: border-box;
    padding: 25px 30px;
    height: 100%;
  }
  .modal__form {
    width: 100%;
    margin-left: 0;
  }
  .advatages__description {
    font-size: 28px;
  }
}
.modal__attention {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(161, 186, 167, 0.5);
  z-index: 100;
  opacity: 1;
  scale: 1;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  cursor: pointer;
  box-sizing: border-box;
}

.modal--active {
  display: flex;
  animation: fadein 0.5s;
}

.modal__wrapper {
  position: absolute;
  width: 80%;
  max-width: 500px;
  height: fit-content;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background: rgb(251, 246, 219);
  background-size: cover;
  background-position: revert;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 2px 5px #006800;
}

.modal__notice {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  text-decoration: underline;
  background: linear-gradient(180deg, #22BE4E 0%, #006800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 20px;
}

.footer {
  width: 100%;
  background: #838383;
}

.footer__wrapper {
  padding-right: 20px;
  padding-left: 20px;
  height: auto;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.all__rights {
  text-align: start;
  color: #000;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.privacy {
  text-align: end;
  color: #000;
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

@media (min-width: 1140px) {
  .footer {
    position: absolute;
    bottom: 0;
    z-index: 10;
  }
}
/*# sourceMappingURL=style.min.css.map */
