@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "";
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  margin: 0 auto;
  max-width: 73.125rem;
  box-sizing: content-box;
}
@media (max-width: 75em) {
  [class*=__container] {
    max-width: 60.625rem;
  }
}
@media (max-width: 61.99875em) {
  [class*=__container] {
    max-width: 46.875rem;
  }
}
@media (max-width: 47.99875em) {
  [class*=__container] {
    max-width: none;
    padding: 0 0.9375rem;
  }
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  text-align: center;
}
.lock .popup__content {
  visibility: visible;
}

.popup__close {
  display: none;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.header {
  padding: 30px 0px 30px 0px;
  position: relative;
}
.header__wrapper {
  background-color: #fff;
  padding: 30px 0px 50px 0px;
  position: relative;
  z-index: 2;
}
@media (max-width: 47.99875em) {
  .header__wrapper {
    padding: 30px 0px;
  }
}
.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .header__items {
    flex-wrap: wrap;
  }
}
.header__item {
  text-align: center;
}
.header__item h1 {
  font-size: 45px;
  color: #1c6f5b;
  margin: 0px 15px 0px 0px;
}
@media (max-width: 75em) {
  .header__item h1 {
    font-size: 40px;
  }
}
@media (max-width: 61.99875em) {
  .header__item h1 {
    margin: 0px 0px 30px 0px;
  }
}
.header__item_left {
  flex: 0 1 90%;
}
@media (max-width: 47.99875em) {
  .header__item_left {
    flex: 0 0 100%;
    margin: 0px 0px 15px 0px;
  }
}
.header__item_right {
  flex: 0 0 65px;
  margin: 0px 0px 0px auto;
}
.header__top {
  display: flex;
  align-items: center;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 61.99875em) {
  .header__top {
    flex-direction: column;
  }
}
.header__description {
  font-weight: 700;
  font-size: 25px;
  color: darkred;
  text-align: left;
  padding-right: 30px;
}
@media (max-width: 61.99875em) {
  .header__description {
    text-align: center;
  }
}
@media (max-width: 47.99875em) {
  .header__description {
    padding: 0;
    font-size: 18px;
  }
}
.header__call {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__callback {
  display: block;
  width: 55px;
  height: 55px;
}
.header__callback img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 29.99875em) {
  .header__callback {
    width: 45px;
    height: 45px;
  }
}
.header__tel {
  color: #4169e1;
  font-size: 35px;
  font-weight: 600;
  font-style: italic;
}
@media (max-width: 75em) {
  .header__tel {
    font-size: 28px;
  }
}
@media (max-width: 29.99875em) {
  .header__tel {
    font-size: 25px;
  }
}

.header__form {
  display: none;
  position: absolute;
  bottom: -199px;
  right: 0;
  height: 200px;
  width: 300px;
  background-color: #fff;
  box-shadow: 0 0 15px 0 #000;
  border-radius: 7px;
  padding: 25px 15px 15px;
}
.header__form._showed {
  display: block;
}
@media (max-width: 29.99875em) {
  .header__form {
    width: 270px;
  }
}
.header__revcall {
  margin: 0px 0px 20px 0px;
  font-weight: 700;
}

.form {
  position: relative;
}
.form__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
}
.form__close img {
  width: 100%;
  height: 100%;
}
.form__inputs {
  margin: 0px 0px 15px 0px;
}
.form__input {
  border: 1px solid #000;
  border-radius: 7px;
  padding: 10px;
  width: 100%;
}
.form__btn {
  border: 1px solid #000;
  padding: 10px 15px;
  width: 100%;
  background-color: rgb(5, 9, 201);
  transition: all 0.3s ease 0s;
  color: #fff;
  border-radius: 7px;
}
.form__btn:hover {
  background-color: rgb(4, 29, 255);
  box-shadow: 0 0 15px 0 #000;
}

.form__error {
  font-size: 12px;
}

.images {
  width: 50%;
  margin: 0 auto;
}
.images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 47.99875em) {
  .images {
    width: 100%;
  }
}
.pp {
    color:red;
}
