@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, p, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "jost", sans-serif;
  color: #0d0d0d;
  line-height: 30px;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
}

input {
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding-left: 18px;
  background-color: #E7F1FE;
  border: 1px solid #168039;
  border-radius: 100px;
  outline: none;
}
input::placeholder {
  font-size: 18px;
  color: #000E1D;
  opacity: 1;
  transition: opacity 0.3s ease;
}
input:focus::placeholder {
  opacity: 0;
}

.link {
  position: relative;
  color: #008CC0;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.2s;
  transition-timing-function: linear;
}
.link--dotted {
  text-decoration: none;
}
.link--dotted::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background-image: url(../img/link-underline.svg);
  transition: 0.2s;
  transition-timing-function: ease-out;
}
.link--dotted:hover::before {
  background-image: none;
}

.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1026px) {
  .container {
    max-width: 780px;
  }
}
@media (max-width: 470px) {
  .container {
    padding: 0 15px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.c-primary {
  color: #168039;
}

.c-second {
  color: #C51D24;
}

.f-200 {
  font-weight: 200;
}

.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.f-700 {
  font-weight: 700;
}

.active {
  display: block;
}

.off {
  display: none;
}

.input {
  height: auto;
  padding: 15px 16px;
  background-color: #DCFFE7;
  border: 1px solid #168039;
  border-radius: 10px;
}
.input::placeholder {
  font-size: 18px;
  color: #007025;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input:focus::placeholder {
  opacity: 0.2;
}

.main-button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 20px;
  font-family: "jost", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 20px;
  text-shadow: 0px 1px 0px #006220;
  background: #00C340;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 1px 0px #00882D, inset 0px 1px 0px #FFFFFF;
  outline: none;
  transition: 0.3s;
  transition-timing-function: ease-out;
  cursor: pointer;
}
.main-button::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 10px;
  right: 10px;
  background: #D9D9D9;
  border-radius: 10px;
  box-shadow: 0px 9px 13px rgba(0, 145, 47, 0.6);
  transition: 0.3s;
  transition-timing-function: ease-out;
  z-index: -1;
}
.main-button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: #00C340 solid 20px;
  background: #00C340;
  border-radius: 10px;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  z-index: -2;
}
.main-button:hover::before {
  -webkit-animation-name: hvr-ripple-out-main;
  animation-name: hvr-ripple-out-main;
}
.main-button:hover::after {
  box-shadow: 0px 0px 0px rgba(0, 145, 47, 0.6);
}
.main-button--mini {
  max-width: 300px;
  max-height: 50px;
  padding-top: 15px;
}
.main-button--max {
  max-height: 60px;
  padding-top: 19px;
  padding-bottom: 20px;
  color: #fff;
  background: none;
  background: radial-gradient(136.12% 140.74% at 99.77% 99.04%, #8d28c8 0%, #7c42fa 20%, #007aff 80%, #609ceb 100%);
  box-shadow: 0px 2px 0px #2613D0;
}
.main-button--max::before {
  background-color: #2613D0;
  border-color: #2613D0;
}
.main-button--max::after {
  box-shadow: 0px 9px 13px rgba(38, 19, 208, 0.6);
}

@keyframes hvr-ripple-out-main {
  100% {
    top: -52px;
    right: -52px;
    bottom: -52px;
    left: -52px;
    opacity: 0;
  }
}
.outline-button {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  height: 60px;
  min-height: 60px;
  padding-top: 3px;
  font-size: 16px;
  font-weight: 600;
  color: #168039;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.06em;
  background: none;
  border: 3px solid rgba(22, 128, 57, 0.5);
  border-radius: 10px;
  box-sizing: border-box;
  transition: 0.3s;
  transition-timing-function: ease-out;
  cursor: pointer;
}
.outline-button:hover {
  color: #fff;
  background-color: #168039;
}
.outline-button--link {
  padding-top: 13px;
}

.block-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 45px;
}

.block-title-desc {
  max-width: 680px;
  font-size: 36px;
  line-height: 40px;
}

.subtitle {
  max-width: 525px;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}

.active {
  display: block;
}

.off {
  display: none;
}

.visible {
  display: flex;
}

.no-scroll {
  overflow: hidden !important;
  padding-right: 16px;
}

.bottom {
  width: 100%;
  height: 100px;
  margin-top: 100px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .header {
    flex-wrap: wrap;
  }
}
.header {
  position: relative;
  margin-top: 12px;
  z-index: 1;
}
@media (max-width: 1026px) {
  .header {
    max-width: 2000px;
  }
}
@media (max-width: 900px) {
  .header {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 780px;
  }
}
@media (max-width: 680px) {
  .header {
    max-width: 500px;
    margin-top: 0;
    justify-content: center;
  }
}
.header .logo-wrap {
  position: relative;
}
@media (max-width: 680px) {
  .header .logo-wrap {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }
}
@media (max-width: 470px) {
  .header .logo-wrap {
    position: relative;
    left: -7px;
    margin-left: 0;
  }
}
.header .logo-wrap__desc {
  position: absolute;
  top: 42px;
  left: 50px;
  display: block;
  max-width: 180px;
  font-size: 16px;
  line-height: 20px;
}
.header .delivery-wrap {
  position: absolute;
  left: -1000px;
  right: -1000px;
  max-width: 216px;
  margin: auto;
  margin-top: 14px;
  text-align: center;
}
@media (max-width: 1026px) {
  .header .delivery-wrap {
    position: relative;
    left: auto;
    right: auto;
  }
}
@media (max-width: 900px) {
  .header .delivery-wrap {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 2060px;
    margin: auto;
    margin-bottom: 20px;
    order: 0;
    display: none;
  }
}
@media (max-width: 680px) {
  .header .delivery-wrap {
    max-width: 216px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-right: 0;
    order: 1;
  }
}
@media (max-width: 470px) {
  .header .delivery-wrap {
    max-width: 2000px;
    margin-top: 14px;
  }
}
.header .delivery-wrap__desc {
  display: inline-block;
  max-width: 160px;
  margin: auto;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 25px;
  letter-spacing: 0.03em;
}
.header .delivery-wrap__map {
  position: absolute;
  top: -27px;
  left: -500px;
  right: -500px;
  display: block;
  min-width: 286px;
  margin: auto;
  z-index: -1;
}
.header__contacts-wrap {
  margin-top: 4px;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 900px) {
  .header__contacts-wrap {
    order: 2;
    margin-top: 14px;
  }
}
@media (max-width: 680px) {
  .header__contacts-wrap {
    margin-left: 0;
    text-align: center;
    order: 0;
  }
}
@media (max-width: 470px) {
  .header__contacts-wrap {
    margin-right: auto;
    text-align: left;
  }
}
.header__mail {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 19px;
  line-height: 23px;
}
.header__mail::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  left: 0;
  width: 24px;
  height: 16px;
  background-image: url(../img/mail-icon.svg);
  opacity: 0.7;
  transition: 0.3s;
  transition-timing-function: ease-out;
}
.header__mail:hover::before {
  opacity: 1;
}
.header__phone {
  display: inline-block;
  margin-top: 7px;
  font-size: 22px;
  font-weight: 600;
}

.offer {
  position: relative;
  padding-top: 1px;
  padding-bottom: 441px;
  background-image: url(../img/offer-bg.jpg);
  background-attachment: fixed;
  background-position: center -108px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}
@media (max-width: 1026px) {
  .offer {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }
}
.offer__title {
  margin-top: 133px;
  font-size: 70px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 75px;
}
@media (max-width: 1026px) {
  .offer__title {
    margin-top: 98px;
  }
}
@media (max-width: 670px) {
  .offer__title {
    margin-top: 80px;
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 470px) {
  .offer__title {
    margin-top: 90px;
    font-size: 46px;
    text-align: left;
    line-height: 53px;
  }
}
@media (max-width: 359px) {
  .offer__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.offer__title-desc {
  display: block;
  max-width: 550px;
  margin-top: -2px;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  text-align: center;
  line-height: 40px;
}
@media (max-width: 470px) {
  .offer__title-desc {
    font-size: 38px;
    text-align: left;
    line-height: 36px;
  }
  .offer__title-desc .f-600 {
    font-weight: 400;
  }
}
@media (max-width: 359px) {
  .offer__title-desc {
    margin-top: 2px;
    font-size: 36px;
    line-height: 35px;
  }
}
.offer__button {
  margin-top: 17px;
}

.catalog {
  position: relative;
  margin-top: -343px;
  z-index: 1;
}
@media (max-width: 1026px) {
  .catalog {
    margin-top: -373px;
  }
}
.catalog__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .catalog__title-wrap {
    flex-wrap: wrap;
  }
}
.catalog__title-wrap {
  align-items: flex-end;
}
@media (max-width: 1026px) {
  .catalog__title-wrap {
    flex-wrap: wrap;
  }
}
.catalog__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 35px;
}
@media (max-width: 1026px) {
  .catalog__title {
    width: 100%;
    margin-top: 55px;
    text-align: center;
    order: 1;
  }
}
@media (max-width: 470px) {
  .catalog__title {
    text-align: left;
  }
}
.catalog__title-desc {
  position: relative;
  top: 2px;
  max-width: 460px;
  font-size: 29px;
  text-align: right;
  line-height: 33px;
}
@media (max-width: 1026px) {
  .catalog__title-desc {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 470px) {
  .catalog__title-desc {
    text-align: left;
  }
}
.catalog__title-desc--strong {
  display: block;
  font-weight: 600;
}
@media (max-width: 470px) {
  .catalog__title-desc--strong {
    display: inline;
  }
}
.catalog__main-list {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media (max-width: 1026px) {
  .catalog__main-list {
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .catalog__main-list {
    display: none;
  }
}
.catalog__main-item {
  width: calc(33.33333% - 15px);
  max-width: 340px;
}
.catalog__item {
  margin-bottom: 25px;
  padding-bottom: 3px;
  background: #fff;
  border: 1px solid rgba(22, 128, 57, 0.5);
}
.catalog__subtitle {
  padding: 14px 14px;
  font-size: 19px;
  line-height: 20px;
  font-weight: 400;
}
.catalog__subtitle--strong {
  display: block;
  margin-top: 3px;
  font-size: 21px;
  font-weight: 600;
}
.catalog__photo-wrap {
  padding: 0 14px;
}
@media (max-width: 900px) {
  .catalog__photo {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.catalog__parameters-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .catalog__parameters-list {
    flex-wrap: wrap;
  }
}
.catalog__parameters-list {
  justify-content: flex-start;
  margin-top: 7px;
  padding: 0 14px;
  font-size: 18px;
}
.catalog__parameters-item {
  margin-right: 20px;
}
@media (max-width: 1026px) {
  .catalog__parameters-item {
    line-height: 22px;
  }
}
.catalog__parameters-item--grey {
  display: inline-block;
  margin-right: 5px;
  color: #999;
}
.catalog__price-list {
  margin-top: 10px;
}
.catalog__price-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 5px;
  border-top: 1px solid #B2D5BE;
  font-size: 17px;
  line-height: 20px;
}
@media (max-width: 1026px) {
  .catalog__price-item {
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .catalog__price-item {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.catalog__price-param {
  margin-right: auto;
}
@media (max-width: 1026px) {
  .catalog__price-param {
    position: relative;
    top: 11px;
  }
}
@media (max-width: 900px) {
  .catalog__price-param {
    position: static;
  }
}
@media (max-width: 359px) {
  .catalog__price-param--scotch {
    position: relative;
  }
}
.catalog__price {
  font-weight: 600;
}
.catalog__price-link {
  margin-left: 8px;
  color: #008CC0;
}
@media (max-width: 1026px) {
  .catalog__price-link {
    width: 100%;
    margin: 0;
    text-align: right;
  }
}
@media (max-width: 900px) {
  .catalog__price-link {
    width: auto;
    margin-left: 8px;
  }
}
@media (max-width: 359px) {
  .catalog__price-link--scotch {
    width: 100%;
    margin: 0;
    text-align: right;
  }
}
.catalog__mobile-list {
  display: none;
  max-width: 400px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .catalog__mobile-list {
    display: block;
  }
}
.catalog__inline-form {
  display: none;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 12px;
  background-color: #eaf6ea;
  border-radius: 4px;
  box-sizing: border-box;
}
.catalog__inline-wrap {
  position: relative;
  z-index: 2;
}
.catalog__inline-form.is-open {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.catalog__inline-input {
  width: 100%;
  height: 45px;
  padding-top: 12px;
  margin-bottom: 9px;
  border-radius: 4px;
  background-color: #fff;
  outline: none;
}
.catalog__inline-btn {
  width: 100%;
  height: 45px;
  padding: 12px;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator {
  margin-top: 74px;
}
.calculator__title-desc {
  display: block;
  margin-top: 8px;
  max-width: 680px;
  font-weight: 300;
}
.calculator__form-wrap {
  position: relative;
  margin-top: 19px;
  padding: 5px;
  padding-bottom: 7px;
  background-image: url(../img/old_wall.png);
  border-radius: 10px 80px 10px 10px;
}
.calculator__form-wrap::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border: 1px solid #168039;
  border-radius: 10px 80px 10px 10px;
  opacity: 0.4;
  z-index: 1;
}
.calculator__line {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 5px;
  padding-top: 2px;
  padding-bottom: 18px;
  padding-left: 25px;
  border-bottom: 1px solid #BFBFBF;
}
@media (max-width: 1026px) {
  .calculator__line {
    flex-wrap: wrap;
    padding-bottom: 8px;
    padding-left: 10px;
  }
}
@media (max-width: 680px) {
  .calculator__line {
    padding-right: 10px;
  }
}
.calculator__line::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 1026px) {
  .calculator__line--top {
    padding-right: 60px;
  }
}
.calculator__line--final {
  border-bottom: none;
}
.calculator__line--final::before {
  display: none;
}
.calculator__photo-wrap {
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 0;
}
.calculator__group {
  position: relative;
  margin-right: 48px;
  flex-shrink: 0;
  z-index: 1;
}
@media (max-width: 1110px) {
  .calculator__group {
    margin-right: 30px;
  }
}
@media (max-width: 1026px) {
  .calculator__group {
    flex-wrap: wrap;
    flex-shrink: 1;
  }
}
@media (max-width: 680px) {
  .calculator__group {
    margin-right: 0;
  }
}
.calculator__group--contacts {
  margin-left: 30px;
}
@media (max-width: 1110px) {
  .calculator__group--contacts {
    margin-left: 0px;
  }
}
@media (max-width: 1026px) {
  .calculator__group--contacts {
    margin-top: 5px;
  }
}
@media (max-width: 680px) {
  .calculator__group--price {
    width: 100%;
    margin-top: 10px;
  }
}
.calculator__group-title {
  font-size: 18px;
  font-weight: 500;
  color: #168039;
}
.calculator__hidden-input {
  display: none;
}
.calculator__label-wrap {
  display: flex;
  margin-top: 2px;
}
@media (max-width: 1026px) {
  .calculator__label-wrap {
    flex-wrap: wrap;
  }
}
.calculator__label {
  position: relative;
  margin-right: 29px;
  padding-left: 25px;
  font-size: 22px;
  line-height: 22px;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (max-width: 1026px) {
  .calculator__label {
    margin-bottom: 10px;
  }
}
.calculator__label::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #DCFFE7;
  border: 1px solid #168039;
  border-radius: 100px;
}
.calculator__label::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 6px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #168039;
  border-radius: 100px;
  transition: 0.3s;
  transition-timing-function: ease-out;
  opacity: 0;
}
.calculator__label:hover {
  color: #0d0d0d;
}
.calculator__label:hover::after {
  opacity: 0.3;
}
.calculator__label--check::before {
  border-radius: 4px;
}
.calculator__label--check::after {
  top: 7px;
  width: 12px;
  height: 10px;
  background: none;
  background-image: url(../img/calculator-check.svg);
  background-size: cover;
  border-radius: 0;
}
.calculator__label--dimmed {
  color: #999; /* Делаем текст серым */
}
.calculator__hidden-input:checked + .calculator__label:after {
  opacity: 1;
}
.calculator__input {
  display: block;
  width: 100%;
  max-width: 220px;
  width: 520px;
  margin-top: 1px;
  padding-left: 13px;
  padding-right: 0;
}
@media (max-width: 1110px) {
  .calculator__input {
    max-width: 195px;
  }
}
@media (max-width: 680px) {
  .calculator__input {
    width: 100%;
    max-width: 300px;
  }
}
.calculator__input--mini {
  max-width: 70px;
  margin-top: 1px;
}
.calculator__input--mini {
  padding-right: 0;
}
.calculator__length-desc {
  display: inline-block;
  max-width: 70px;
  margin-top: -2px;
  margin-left: 6px;
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
}
.calculator__price {
  display: inline-block;
  margin-top: 11px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 1110px) {
  .calculator__price {
    font-size: 34px;
  }
}
@media (max-width: 680px) {
  .calculator__price {
    margin-top: 0px;
  }
}
.calculator__cta-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .calculator__cta-wrap {
    flex-wrap: wrap;
  }
}
.calculator__button {
  display: block;
  width: 100%;
  width: 300px;
  max-width: 300px;
  max-height: 50px;
  margin-top: 1px;
  margin-left: 10px;
  padding-top: 15px;
  font-size: 17px;
  letter-spacing: 0.02em;
}
@media (max-width: 680px) {
  .calculator__button {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 4px;
    margin-left: 0;
    font-size: 16px;
  }
}
@media (max-width: 359px) {
  .calculator__button {
    font-size: 14px;
  }
}

.consult {
  margin-top: 80px;
  background-image: url(../img/consult-bg.jpg);
  background-attachment: fixed;
  background-position: center;
}
@media (max-width: 1026px) {
  .consult {
    margin-top: 105px;
  }
}
.consult__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .consult__container {
    flex-wrap: wrap;
  }
}
.consult__container {
  position: relative;
  z-index: 1;
}
@media (max-width: 1026px) {
  .consult__container {
    padding-bottom: 50px;
  }
}
.consult__image-wrap {
  flex-shrink: 0;
  position: relative;
  margin-top: -19px;
  margin-left: -207px;
}
@media (max-width: 1110px) {
  .consult__image-wrap {
    margin-left: -257px;
  }
}
@media (max-width: 1026px) {
  .consult__image-wrap {
    flex-shrink: 1;
  }
}
@media (max-width: 1026px) {
  .consult__image-wrap--pc {
    display: none;
  }
}
.consult__image-wrap--mobile {
  display: none;
  position: static;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1026px) {
  .consult__image-wrap--mobile {
    display: block;
  }
}
@media (max-width: 670px) {
  .consult__photo {
    position: absolute;
    left: -1000px;
    right: -1000px;
    bottom: 270px;
    bottom: 0;
    margin: auto;
    min-width: 680px;
    width: 680px;
  }
}
@media (max-width: 470px) {
  .consult__photo {
    bottom: 270px;
  }
}
.consult__content-wrap {
  margin-top: 70px;
  margin-left: -102px;
}
@media (max-width: 1026px) {
  .consult__content-wrap {
    order: 1;
    margin: 0;
    margin-top: 60px;
  }
}
.consult__title {
  font-weight: 400;
  line-height: 46px;
}
@media (max-width: 1026px) {
  .consult__title {
    font-size: 43px;
    line-height: 42px;
  }
}
.consult__list-title {
  display: inline-block;
  margin-top: 27px;
  font-size: 24px;
  font-weight: 600;
  line-height: 25px;
}
.consult__list {
  margin-top: 6px;
}
.consult__item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 14px;
  font-size: 22px;
}
.consult__item::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 12px;
  left: 0px;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  border: 2px solid #168039;
}
.consult__form {
  position: relative;
  max-width: 590px;
  margin-top: 33px;
  padding: 30px;
  padding-top: 19px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 2;
}
@media (max-width: 1026px) {
  .consult__form {
    margin-top: 0;
  }
}
@media (max-width: 670px) {
  .consult__form {
    max-width: 400px;
    margin-top: 340px;
  }
}
@media (max-width: 470px) {
  .consult__form {
    margin-top: 580px;
  }
}
.consult__form-title {
  max-width: 450px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 470px) {
  .consult__form-title {
    max-width: 296px;
  }
}
.consult__input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .consult__input-wrap {
    flex-wrap: wrap;
  }
}
.consult__input-wrap {
  justify-content: start;
  margin-top: 15px;
}
.consult__input {
  max-width: 220px;
  margin-right: 10px;
}
@media (max-width: 670px) {
  .consult__input {
    max-width: 1000px;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.consult__button {
  max-width: 300px;
  height: 50px;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0px 1px 0px #00882D;
}
@media (max-width: 670px) {
  .consult__button {
    max-width: 1000px;
  }
}
@media (max-width: 470px) {
  .consult__button {
    height: 60px;
    padding-top: 10px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 359px) {
  .consult__button {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.delivery {
  position: relative;
  margin-top: 145px;
}
@media (max-width: 1026px) {
  .delivery {
    margin-top: 120px;
  }
}
.delivery__title {
  max-width: 530px;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 55px;
}
.delivery__list {
  max-width: 420px;
  margin-top: 40px;
}
@media (max-width: 1026px) {
  .delivery__list {
    max-width: 1000px;
    margin-top: 20px;
  }
}
.delivery__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 47px;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 1026px) {
  .delivery__item {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .delivery__item {
    max-width: 420px;
  }
}
.delivery__item::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  left: 0;
  width: 36px;
  height: 22px;
  background-color: #168039;
  mask-image: url("../img/delivery-icon.svg");
}
.delivery__item--strong::before {
  background-color: #FF4D00;
}
.delivery__logo-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .delivery__logo-list {
    flex-wrap: wrap;
  }
}
.delivery__logo-list {
  position: absolute;
  bottom: 2px;
  right: 20px;
}
@media (max-width: 1026px) {
  .delivery__logo-list {
    position: static;
    width: 100%;
    margin-top: 230px;
  }
}
@media (max-width: 670px) {
  .delivery__logo-list {
    display: block;
    margin-top: 200px;
  }
}
.delivery__logo-item {
  margin-left: 49px;
}
.delivery__logo-item:first-of-type {
  margin-left: 0;
}
@media (max-width: 1110px) {
  .delivery__logo-item {
    margin-left: 40px;
  }
}
@media (max-width: 670px) {
  .delivery__logo-item {
    margin-bottom: 30px;
    margin-left: 0;
  }
}
.delivery__logo-item--2 {
  position: relative;
  top: -2px;
}
@media (max-width: 670px) {
  .delivery__logo-item {
    position: static;
  }
}
.delivery__image {
  position: absolute;
  top: -140px;
  left: -965px;
  right: -1000px;
  margin: auto;
  z-index: -1;
}
@media (max-width: 1026px) {
  .delivery__image {
    top: -20px;
    width: 1000px;
    max-width: 1100px;
  }
}
@media (max-width: 900px) {
  .delivery__image {
    top: 40px;
  }
}
@media (max-width: 670px) {
  .delivery__image {
    top: auto;
    left: 0;
    right: auto;
    bottom: 50px;
    width: 700px;
  }
}
@media (max-width: 470px) {
  .delivery__image {
    left: -105px;
  }
}

.contacts {
  position: relative;
  min-height: 455px;
  margin-top: 165px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1026px) {
  .contacts {
    margin-top: 120px;
  }
}
.contacts__container {
  position: relative;
  z-index: 1;
}
.contacts__wrap {
  position: relative;
  position: absolute;
  max-width: 400px;
  margin: auto;
  padding-top: 24px;
  padding-bottom: 21px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fff;
  border-radius: 0 0 20px 0;
  box-shadow: 0px 2px 0px #C7C7C7;
  box-sizing: border-box;
}
@media (max-width: 470px) {
  .contacts__wrap {
    position: static;
    width: 100%;
  }
}
.contacts__wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 20px;
  right: 20px;
  box-shadow: 0px 20px 45px rgba(0, 0, 0, 0.14);
  z-index: -1;
}
.contacts__title {
  position: relative;
  font-weight: 400;
  color: #168039;
}
.contacts__title::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: -30px;
  right: -30px;
  height: 1px;
  background: linear-gradient(90deg, #168039 0%, #FFFFFF 100%);
}
.contacts__list {
  margin-top: 38px;
}
.contacts__item {
  position: relative;
  margin-bottom: 34px;
  padding-left: 31px;
}
.contacts__line {
  position: absolute;
  bottom: -16px;
  left: -30px;
  right: -30px;
  height: 1px;
  background: linear-gradient(90deg, #168039 0%, #FFFFFF 100%);
  opacity: 0.4;
}
.contacts__line--phone {
  bottom: -12px;
}
.contacts__item::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -10px;
  width: 32px;
  height: 32px;
  background: #F4F4F4;
  box-shadow: 0px 1px 0px #D0D0D0;
  border-radius: 4px;
  box-sizing: border-box;
}
.contacts__item--phone::after {
  top: -6px;
}
.contacts__item--mail::after {
  top: -1px;
}
.contacts__item::before {
  content: "";
  position: absolute;
  left: -4px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.contacts__item--geo::before {
  top: 2px;
  background-image: url(../img/contacts-geo-icon.svg);
  z-index: 1;
}
.contacts__item--phone::before {
  top: 0px;
  background-image: url(../img/contacts-phone-icon.svg);
  z-index: 1;
}
.contacts__item--mail::before {
  top: 5px;
  left: -4px;
  background-image: url(../img/contacts-mail-icon.svg);
  z-index: 1;
}
.contacts__item--geo {
  font-size: 19px;
  line-height: 24px;
}
.contacts__item--phone {
  margin-bottom: 30px;
}
.contacts__phone {
  display: block;
  margin-bottom: -5px;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
}
.contacts__phone-link {
  color: #0d0d0d;
  text-decoration: none;
}
.contacts__phone-desc {
  font-size: 18px;
  line-height: 20px;
}
.contacts__item--mail {
  margin-top: -4px;
  margin-bottom: 0;
  font-size: 19px;
}
.contacts__mail {
  cursor: pointer;
}
.contacts__mail--mobile {
  display: none;
}
.contacts__map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.under-map {
  display: flex;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.under-map__button {
  max-width: 320px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer {
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 19px;
  line-height: 23px;
  background-image: url(../img/old_wall.png);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .footer__container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .footer__copyright {
    width: 100%;
    margin-bottom: 15px;
  }
}
.footer__link {
  text-decoration: underline;
}
.footer__link::before {
  display: none;
}

.pop-up {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  background-color: rgba(13, 13, 13, 0.8);
  z-index: 10;
}
.pop-up__wrap {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 35px;
  padding-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 16.6px 3.4px rgba(0, 48, 95, 0.12);
}
@media (max-width: 470px) {
  .pop-up__wrap {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}
.pop-up__wrap::before, .pop-up__wrap::after {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: -50px;
  right: -50px;
  border: 1px solid #168039;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.7;
}
.pop-up__wrap::after {
  top: -100px;
  bottom: -100px;
  left: -100px;
  right: -100px;
  opacity: 0.4;
}
.pop-up__form {
  position: relative;
  z-index: 1;
}
.pop-up__title {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}
.pop-up__input {
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-sizing: border-box;
}
.pop-up__button {
  position: relative;
  max-width: 300px;
  border-radius: 8px;
}
.pop-up__button::before {
  border-radius: 8px;
}
.pop-up__close {
  position: absolute;
  top: -33px;
  right: -1px;
  padding: 0;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.pop-up__close::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -21px;
  width: 14px;
  height: 14px;
  background-image: url(../img/pop-up-close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
  transition: 0.3s;
  transition-timing-function: ease-out;
}
.pop-up__close:hover::before {
  opacity: 1;
  transform: rotate(90deg);
}

.form-block {
  position: relative;
}

.form-block__checkbox-wrap--pop-up {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 300px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  box-sizing: border-box;
}

.form-block__checkbox {
  position: relative;
  width: 23px;
  height: 23px;
  margin-top: 5px;
  text-align: left;
  vertical-align: top;
  background-color: #DCFFE7;
  border: 1px solid #168039;
  cursor: pointer;
  flex-shrink: 0;
}

.form-block__checkbox::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 25px;
  height: 25px;
  background-color: #DCFFE7;
  border: 1px solid #168039;
  border-radius: 6px;
  box-sizing: border-box;
}

.form-block__checkbox::after {
  content: "";
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: -100px;
  right: -100px;
  width: 13px;
  height: 11px;
  margin: auto;
  background-image: url(../img/form-accept.svg);
  opacity: 0;
}

.form-block__checkbox:checked::after {
  opacity: 100;
}

.form-block__label {
  max-width: 270px;
  margin-top: 7px;
  margin-left: 9px;
  font-size: 16px;
  color: #666;
  line-height: 20px;
  letter-spacing: 0;
}

.form-block__link {
  text-decoration: underline;
}

.form-block__link::before {
  display: none;
}

.total {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.total__logo {
  margin-top: 10px;
}
.total__content {
  width: 100%;
}
.total__title-desc {
  max-width: 400px;
  margin-top: 1px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
  color: #000;
}
.total__button {
  margin-top: 10px;
}

.thanks__title--total {
  margin-top: -40px;
  font-size: 50px;
  font-weight: 600;
  color: #45BF55;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 50px;
}

.grey {
  color: #999;
}

.main-button--total {
  display: block;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  text-decoration: none;
}

.politics {
  max-width: 860px;
  margin-top: 50px;
  margin-bottom: 80px;
}
.politics__title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 20px;
}
.politics__paragraph {
  margin-bottom: 20px;
  line-height: 27px;
}
.politics__paragraph--list {
  margin-bottom: 0;
}
.politics__list {
  margin-bottom: 20px;
}
.politics__item {
  margin-bottom: 10px;
  padding-left: 30px;
  list-style: decimal inside;
}

.visible {
  display: flex;
}

/*# sourceMappingURL=style.css.map */
