:root {
  --modal-animation-time: 0.3s ;
}

@font-face {
  font-family: "swiper-icons";
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

/* Auto Height */

/* 3D Effects */

/* CSS Mode */

input, button {
  font-family: "Roboto", sans-serif;
  outline: none;
  -webkit-appearance: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
  resize: none;
}
input:focus:required:invalid, button:focus:required:invalid {
  border-color: red;
}
input:required:valid, button:required:valid {
  border-color: green;
}

*, *::before, *::after {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

body {
  color: #333333;
  position: relative;
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #EDF6FD;
}

button {
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}

ul, h1, h2, h3, p, ul, li, a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

.wrap {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #CECECE;
}

body::-webkit-scrollbar-thumb {
  background: #7B7B7B;
  border-radius: 20px;
}
.box-cheked input + label {
  font-weight: normal;
  font-size: 12px;
  line-height: 110%;
  color: #4D4946;
  padding-left: 26px;
  position: relative;
  cursor: pointer;
}
.box-cheked input + label a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #4D4946;
}

.box-cheked input + label::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #7B7B7B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  left: 0;
  top: calc(50% - 8px);
}

.box-cheked input:checked + label::before {
  background-image: url("../images/cheked_1.png");
  border: none;
}

.button-standart {
  background: #ff8c00;
  -webkit-box-shadow: 0px 3px 0px #EB991D;
          box-shadow: 0px 3px 0px #EB991D;
  border-radius: 10px;
  padding: 20px 10px;
  width: 350px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align:center;
  color: #FFFFFF;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.button-standart:hover {
  background: #FFA113;
}

@media (max-width: 768px) {
  .button-standart {
    padding: 12px 10px;
    font-size: 16px;
    line-height: 19px;
  }
}
.button-transparent {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align:center;
  color: #ff8c00;
  padding: 15px 10px;
  border: 2px solid #ff8c00;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.button-transparent:hover {
  background-color: #FFA113;
  color: #ffff;
}

@media (max-width: 768px) {
  .button-transparent {
    font-size: 16px;
    line-height: 19px;
    padding: 12px 10px;
  }
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  padding: 50px 20px;
  z-index: 20;
}
.modal__content {
  width: 100%;
  min-height: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__close {
  cursor: pointer;
}

@-webkit-keyframes modal-fadeout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes modal-fadeout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}
.section-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 52px;
  text-align: center;
  color: #343330;
}
.section-title span {
  color: #ff8c00;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.social {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.stoc-input {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #7B7B7B;
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 10px;
}
.stoc-input::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #7B7B7B;
}
.stoc-input::-moz-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #7B7B7B;
}
.stoc-input:-ms-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #7B7B7B;
}
.stoc-input::-ms-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #7B7B7B;
}
.fon-guarantees {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/fon-guarantees.png");
}
.features {
  padding-top: 60px;
  padding-bottom: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/fon_2.png");
  position: relative;
  overflow: hidden;
  float: left;
    width: 100%;
}
.features::before {
  position: absolute;
  content: "";
  width: 189px;
  height: 233px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/decor1_1.png");
  left: 0;
  bottom: 122px;
}
.features::after {
  position: absolute;
  content: "";
  width: 302px;
  height: 302px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/decor2_1.png");
  right: 0;
  top: 97px;
}
.features__header.section-title {
  max-width: 607px;
  margin: 0 auto;
}
.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
  position: relative;
}
.features__list li {
  margin-bottom: 50px;
}
.features__box {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.features__box img {
  width: 100%;
  height: auto;
  display: block;
}
.features__text {
  max-width: 267px;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #4D4946;
  margin-top: 20px;
}

@media (max-width: 968px) {
  .features {
    padding-top: 60px;
  }
  .features::before {
    display: none;
  }
  .features::after {
    display: none;
  }
  .features__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .features__list li {
    margin-bottom: 0px;
  }
  .features__text {
    margin: 0 auto;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .features {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .features__header.section-title {
    max-width: 100%;
    margin: 0 auto;
  }
  .features__list {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
	gap: 0px;
}
.features__list li {
    width: calc((100% - 5px)/2);
    margin: 10px auto;
}
  .features__box {
    width: 70px;
    height: 70px;
  }
  .features__text {
    font-size: 14px;
    line-height: 130%;
    margin-top: 6px;
  }
}
.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FFFFFF;
  float: left;
    width: 100%;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.footer__logo p {
  font-weight: bold;
  font-size: 35px;
  line-height: 41px;
  color: #343330;
}
.footer__logo p:nth-child(1) {
  margin-right: 4px;
  color: #ff8c00;
}
.footer__text {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #7B7B7B;
}
.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2px;
}
.footer__contact a {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #343330;
}
.footer__contact p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #7B7B7B;
  display: block;
  padding-left: 11px;
  position: relative;
}
.footer__contact p::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 100px;
  background: #51CF32;
}
.footer__container {
  padding-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__copyright {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #7B7B7B;
}
.footer__policy {
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #7B7B7B;
  border-bottom: 1px dashed #7B7B7B;
}
.footer__policy:hover {
  color: #4D4946;
  border-bottom: 1px dashed #4D4946;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 0px;
    margin: 0 auto;
    white-space: nowrap;
  }
  .footer__logo p {
    font-size: 19px;
    line-height: 22px;
  }
  .footer__text {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .footer__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__contact {
    gap: 5px;
  }
  .footer__contact a {
    font-size: 18px;
    line-height: 21px;
    display: block;
    margin: 0 auto;
  }
  .footer__contact p {
    font-size: 12px;
    line-height: 14px;
    padding-left: 11px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .footer__container {
    padding-top: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__copyright {
    font-size: 12px;
    line-height: 130%;
    text-align: center;
  }
  .footer__policy {
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: #7B7B7B;
    border-bottom: 1px dashed #7B7B7B;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.guarantees {
  padding-top: 60px;
  padding-bottom: 80px;
  float: left;
    width: 100%;
}
.guarantees__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.guarantees__item img {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto;
}
.guarantees__headers {
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  color: #4D4946;
  margin-top: 25px;
}
.guarantees__text {
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #4D4946;
  margin-top: 20px;
}

@media (max-width: 968px) {
  .guarantees {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .guarantees__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .guarantees {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .guarantees__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .guarantees__item img {
    width: 60px;
    height: 60px;
  }
  .guarantees__headers {
    font-size: 20px;
    line-height: 23px;
    margin-top: 10px;
  }
  .guarantees__text {
    font-size: 14px;
    line-height: 130%;
    max-width: 288px;
    margin: 0 auto;
    margin-top: 5px;
  }
}
.header {
  width: 100%;
  padding: 10px 0;
  float:left;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.header__logo-box p {
  font-weight: bold;
  font-size: 35px;
  line-height: 41px;
  color: #343330;
}
.header__logo-box p:nth-child(1) {
  color: #ff8c00;
  margin-right: 9px;
}
.header__logo-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #7B7B7B;
  width: 300px;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__contact .social {
  gap: 9px;
  margin-right: 30px;
}
.header__tel {
  display: none;
}
.header__contact-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2px;
}
.header__contact-box a {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #343330;
}
.header__contact-box p {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #7B7B7B;
  display: block;
  padding-left: 11px;
  position: relative;
}
.header__contact-box p::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100px;
  left: 0;
  top: calc(50% - 3px);
  background-color: #51CF32;
}
.header__button.button-transparent {
  max-width: 183px;
  margin-left: 30px;
}

.wts {
    background: #25d266;
    color: #fff;
}
.tg {
    background: #00a2f2;
    color: #fff;
}
.vb {
    background: #7460f3;
    color: #fff;
}
.soc_menu {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: block;
    text-align: center;
    line-height: 35px;
}
.wathap {
    background: #25d266;
    padding: 5px;
    border-radius: 7px;
	color: #fff;
	cursor:pointer;
}
.wathap i, .viber i, .telegram i{
	margin-right:5px;
}
.viber {
    background: #7460f3;
    padding: 5px;
    border-radius: 7px;
	color: #fff;
	cursor:pointer;
}
.telegram {
    background: #00a2f2;
    padding: 5px;
    border-radius: 7px;
	color: #fff;
	cursor:pointer;
}

.menuhas {
  width: 100%;
  height: 55px;
  float:left;
}
@media (max-width: 1030px) {
  .header__logo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
@media (max-width: 850px) {
  .header__tel {
    display: block;
    -webkit-box-shadow: 0px 4px 14px rgba(2, 37, 69, 0.12);
            box-shadow: 0px 4px 14px rgba(2, 37, 69, 0.12);
    border-radius: 100px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .header__contact-box {
    *display: none;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 12px;
  }
  .header__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .header__contact-box p::before{
	  display: none;
  }
  .header__logo-box {
    margin-right: 0px;
	width: 100%;
	text-align:center;
	display: inline-block;
  }
  .header__logo-box p {
    font-size: 23px;
  }
  .header__logo-box p:nth-child(1) {
    margin-right: 0;
  }
  .header__logo-text {
    font-size: 20px;
	line-height: normal;
    width: 100%;
	text-align:center;
  }
  .header__contact {
		display: inline-block;
		width: 100%;
		text-align:center;
		margin: 15px 0;
  }
  .header__contact-box a {
		font-size: 27px;
		margin: 15px 0;
  }
  .header__contact .social {
    gap: 5px;
    margin-right: 15px;
  }
  .social {
		display: inline-block;
  }
   .social li {
	float: left;
    margin: 0 5px;
}
  .header__contact .social li a {
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header__contact .social li {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header__button.button-transparent {
    max-width: 288px;
    margin-left: 0px;
    margin: 0 auto;
  }
  .header__tel { }
}
.modals {
  max-width: 490px;
  width: 100%;
  padding: 50px;
  background: #F2F4F7;
  -webkit-box-shadow: 0px 4px 14px rgba(2, 37, 69, 0.12);
          box-shadow: 0px 4px 14px rgba(2, 37, 69, 0.12);
  border-radius: 20px;
  position: relative;
}
.modals__header {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  color: #343330;
}
.modals__text {
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #4D4946;
  display: block;
  max-width: 342px;
  margin: 0 auto;
  margin-top: 25px;
}
.modals__form {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}
.modals__close {
  position: absolute;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../fonts/close_1.svg");
  top: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .modals {
    padding: 16px;
    background: #F2F4F7;
  }
  .modals__header {
    font-size: 26px;
    max-width: 300px;
    margin: 0 auto;
  }
  .modals__text {
    font-size: 14px;
    margin-top: 15px;
  }
  .modals__form {
    margin-top: 25px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .modals__close {
    position: absolute;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/close_1.svg");
    top: 10px;
    right: 10px;
  }
  .modals .box-cheked {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.preview {
  padding-top: 191px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/fon_3.png");
  *overflow: hidden;
}
.preview__header {
  font-weight: 600;
  font-size: 44px;
  color: #343330;
  display: block;
  max-width: 770px;
}
.preview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.preview__label {
  font-size: 18px;
  line-height: 130%;
  color: #51CF32;
  display: block;
  padding: 9px 15px;
  padding-left: 49px;
  position: relative;
  background: rgba(166, 232, 82, 0.5);
  border-radius: 10px;
  margin-left: 25px;
}
.preview__label::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/preview-decor.png");
  left: 15px;
  top: calc(50% - 12px);
}
.preview__price-cointent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 10px 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
          box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
  border-radius: 10px;
}
.preview__price-cointent p {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #343330;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.preview__price {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  color: #ff8c00;
  margin-right: auto;
  margin-left: 10px;
}
.preview__price-old {
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: #CECECE;
  text-decoration: line-through;
  margin-right: auto;
}
.preview__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 30px;
}
.preview__item {
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #4D4946;
  position: relative;
  padding-left: 16px;
}
.preview__item::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #ff8c00;
  border-radius: 100px;
  left: 0;
  top: calc(50% - 2px);
}
.preview__container {
  width: 100%;
  max-width: 860px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.preview__container-text {
  margin-left: 123px;
  padding-left: 90px;
  position: relative;
  margin-bottom: -45px;
  position: relative;
}
.preview__container-text::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 33px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/strech.png");
  left: -90px;
  top: -20px;
}
.preview__container-text span {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #FED876;
  -webkit-box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
          box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
  border-radius: 100px;
  left: 0;
  top: calc(50% - 35px);
}
.preview__container-text span::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 82px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/a4.png");
  left: 0;
  top: -30%;
}
.preview__container-text p {
  width: 282px;
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #7B7B7B;
}

@media (max-width: 1480px) {
  .features::after {
    right: -150px;
  }

  .features::before {
    left: -70px;
  }
}
@media (max-width: 768px) {
  .preview {
   padding-top: 40px;
   *padding-bottom: 414px;
    background-image: none;
    position: relative;
	width:100%;
	float:left;
  }
  .preview::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-image: none;
  }
  .preview__header {
    font-weight: 600;
    font-size: 20px;
    *line-height: 33px;
    text-align: center;
    color: #343330;
    max-width: 100%;
    margin: 0 auto;
  }
  .preview__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
  .preview__label {
    margin-left: 0px;
    margin: 0 auto;
  }
  .preview__price-cointent {
    padding: 12px 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
  }
  .preview__price-cointent p {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .preview__price {
    font-size: 22px;
    line-height: 26px;
    margin: 0;
    margin-left: 10px;
  }
  .preview__price-old {
    font-size: 20px;
    line-height: 23px;
    margin: 0;
    margin-left: 18px;
  }
  .preview__list {
    margin-top: 16px;
  }
  .preview__item {
    font-size: 16px;
    line-height: 130%;
    padding-left: 11px;
  }
  .preview__item::before {
    top: 6px;
  }
  .preview__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 51px;
    width: 288px;
    margin: 0 auto;
    margin-top: 10px;
  }
  .preview__button.button-standart {
    margin-top: 10px;
  }
  .preview__container-text {
    margin-left: 0px;
    margin-bottom: 0px;
  }
  .preview__container-text::before {
    display: none;
  }
  .preview__container-text p {
    width: 198px;
    font-size: 12px;
    line-height: 130%;
  }
}
.prices {
  padding-top: 30px;
  padding-bottom: 60px;
  float: left;
    width: 100%;
}
.prices__header.section-title {
  max-width: 735px;
  margin: 0 auto;
}
.prices__wrap {
  margin-top: 50px;
}
.prices__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.prices__card {
  height: 100%;
  background: #F8F9FC;
  border: 1px solid #E9E9E9;
  -webkit-box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
          box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.prices__card-image {
  height: 302px;
  position: relative;
}
.prices__card-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prices__card-prices {
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
  border-top: 1px solid #E9E9E9;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}
.prices__card-btn.button-standart {
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 183px;
}
.prices__card-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  color: #343330;
}
.prices__card-title{
    *line-height: 60px;
	margin: 15px 0;
    text-align: center;
}
.prices__card-title a{
	font-size: 20px;
    color: #4D4946;
}
.prices__wrap ul.prices__list{
	margin:0;
}
.prices__wrap ul.prices__list li{
	list-style:none;
	margin-bottom:0;
}
.prices ul {
	margin-left:30px;
}
.prices ul li{
	list-style: disc;
	margin-bottom:7px;
}

@media (max-width: 1150px) {
  .prices__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .prices {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  .prices__header.section-title {
    max-width: 288px;
  }
  .prices__wrap {
    margin-top: 20px;
  }
  .prices__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .prices__card-image {
    height: 160px;
  }
  .prices__item {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  .prices__card-prices {
    padding-left: 16px;
    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .prices__card-btn.button-standart {
    padding-top: 14px;
    padding-bottom: 14px;
    max-width: 256px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .prices__card-price {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #343330;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
}
.reception-calculation {
  padding-top: 60px;
  padding-bottom: 60px;
  float: left;
    width: 100%;
}
.reception-calculation__box {
  padding: 50px;
  background-image: url("../images/fon_4.png");
  -webkit-box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
          box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
  border-radius: 40px;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.reception-calculation__box::before {
  position: absolute;
  content: "";
  width: 576px;
  height: 429px;
  top: 0;
  right: 37px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/decor-desctop.png");
}
.reception-calculation__header {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  color: #343330;
  display: block;
  max-width: 523px;
}
.reception-calculation__text {
  margin-top: 25px;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #4D4946;
}
.reception-calculation__form {
  margin-top: 25px;
  position: relative;
  z-index: 1;
}
.reception-calculation__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
.reception-calculation__input.stoc-input {
  max-width: 220px;
  margin-right: 10px;
}
.reception-calculation__btn.button-standart {
  max-width: 184px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.reception-calculation__form .box-cheked {
  margin-top: 10px;
}
.reception-calculation__list {
  display: -ms-grid;
  display: grid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.reception-calculation__list li {
  position: relative;
}
.reception-calculation__list li:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 968px) {
  .reception-calculation__box::before {
    background-image: url("../images/decor-mobile_2.png");
    width: 255px;
    height: 154px;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .reception-calculation {
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .reception-calculation__box {
    padding: 16px;
    padding-bottom: 173px;
  }
  .reception-calculation__box::before {
    top: auto;
    bottom: 11px;
    left: calc(50% - 125px);
  }
  .reception-calculation__header {
    font-size: 22px;
    line-height: 26px;
    max-width: 256px;
    text-align: center;
    margin: 0 auto;
  }
  .reception-calculation__text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 130%;
    display: block;
    max-width: 224px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
  }
  .reception-calculation__form {
    margin-top: 10px;
  }
  .reception-calculation__boxs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .reception-calculation__input.stoc-input {
    max-width: 100%;
    margin-right: 0px;
  }
  .reception-calculation__btn.button-standart {
    max-width: 100%;
  }
  .reception-calculation__list {
    margin: 0 auto;
  }
  .reception-calculation__list li:not(:last-child) {
    margin-right: 4px;
  }
  .reception-calculation__form .box-cheked {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stages {
  padding-top: 60px;
  padding-bottom: 60px;
  float: left;
    width: 100%;
}
.stages__header.section-title {
  text-align: left;
}
.stages__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
}
.stages__box p {
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #4D4946;
  max-width: 723px;
  display: block;
}
.stages__box div {
  padding: 20px 26px;
  padding-left: 100px;
  -webkit-box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
          box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
  border-radius: 80px;
  min-width: 426px;
  background: #FFFFFF;
  box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
  border-radius: 40px;
  position: relative;
}
.stages__box div::before {
  position: absolute;
  content: "";
  width: 84px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/decor_4.png");
  left: 6px;
  top: calc(50% - 42px);
}
.stages__box div p {
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #4D4946;
}
.stages__wrap {
  margin-top: 61px;
}
.stages__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
.stages__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 35px;
}
.stages__item {
  position: relative;
}
.stages__item:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-top.png");
  right: -50px;
}
.stages__item:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-btn.png");
  right: -50px;
}
.stages__item:nth-child(3)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-top.png");
  right: -50px;
}
.stages__item:nth-child(5)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-btn.png");
  right: -50px;
}
.stages__item:nth-child(6)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-top.png");
  right: -50px;
}
.stages__item:nth-child(7)::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/arrow-btn.png");
  right: -50px;
}
.stages__img {
  display: block;
  margin: 0 auto;
}
.stages__box {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stages__number {
  background: #ff8c00;
  -webkit-box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
          box-shadow: 0px 0px 30px rgba(2, 37, 69, 0.15);
  min-width: 22px;
  min-height: 22px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.stages__text {
  display: block;
  max-width: 257px;
}

@media (max-width: 968px) {
  .stages__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .stages__item:nth-child(1)::before {
    display: none;
  }

  .stages__item:nth-child(2)::before {
    display: none;
  }

  .stages__item:nth-child(3)::before {
    display: none;
  }

  .stages__item:nth-child(5)::before {
    display: none;
  }

  .stages__item:nth-child(6)::before {
    display: none;
  }

  .stages__item:nth-child(7)::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .stages {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .stages__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 10px;
  }
  .stages__box p {
    font-size: 14px;
    line-height: 130%;
  }
  .stages__box div {
    padding: 16px;
    padding-top: 69px;
    -webkit-box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
            box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
    border-radius: 40px;
    max-width: 288px;
    min-width: 288px;
    margin: 0 auto;
  }
  .stages__box div::before {
    left: calc(50% - 42px);
    top: -20px;
  }
  .stages__box div p {
    font-size: 14px;
    line-height: 130%;
    text-align: center;
  }
  .stages__wrap {
    margin-top: 20px;
  }
  .stages__boxs {
    margin: 0 auto;
    margin-top: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
  }
  .stages__list {
    width: 100%;
	  display: flex;
	  flex-flow: row wrap;
	  justify-content: space-around;
    gap: 0;
  }
  .stages__list li{
	  width: calc((100% - 5px)/2);
  }
  .stages__item:nth-child(1)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:nth-child(2)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:nth-child(3)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:nth-child(5)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:nth-child(6)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:nth-child(7)::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item::before {
    display: block;
    position: absolute;
    content: "";
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../fonts/Arrow.svg");
    bottom: -35px;
    left: calc(50% - 16px);
  }
  .stages__item:last-child::before {
    display: none;
  }
  .stages__img {
    width: 70px;
    height: 64px;
    margin: 0 auto;
  }
  .stages__number {
    display: none;
  }
  .stages__text {
    font-size: 14px;
    line-height: 130%;
    text-align: center;
  }
}
.types-wells {
	float: left;
    width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.types-wells__wrap {
  margin-top: 25px;
}
.types-wells__box {
  padding-top: 48px;
  background: #F8F9FC;
  -webkit-box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
          box-shadow: 0px 14px 14px rgba(2, 37, 69, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: none;
}
.types-wells__box.active {
  display: block;
}
.types-wells__box-one {
  padding-left: 50px;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.types-wells__box-content {
  margin-right: 20px;
}
.types-wells__box-title {
  font-weight: 600;
  font-size: 30px;
  color: #343330;
}
.types-wells__box-text {
}
.types-wells__box-text p, .types-wells__box-content p, .types-wells__box-txt p {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #4D4946;
  margin-bottom:15px;
}


.com-content-article__body p{
	font-weight: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #4D4946;
}


.types-wells__box-image {
  width: 445px;
  min-width: 445px;
}
.types-wells__box-image img {
  width: 100%;
}
.types-wells__box-txt {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.types-wells__box-three {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFFFFF;
}
.types-wells__three {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #4D4946;
  padding-left: 50px;
  position: relative;
}
.types-wells__three::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/label.png");
  left: 0;
  top: calc(50% - 20px);
}
.types-wells__box-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: 30px;
}
.types-wells__price {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  color: #ff8c00;
  margin-right: 10px;
}
.types-wells__price-old {
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: #CECECE;
  text-decoration: line-through;
}
.types-wells__box-label {
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 15px;
  padding-left: 15px;
  padding-left: 70px;
  border: 1px dashed #ff8c00;
  border-radius: 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #ff8c00;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.types-wells__box-label a {
	color:#ff8c00;
}
.types-wells__box-label::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/tel.png");
  left: 15px;
  top: calc(50% - 20px);
}

@media (max-width: 1000px) {
  .types-wells__box-one {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .types-wells__box-image {
    margin: 0 auto;
  }

  .types-wells__box-price {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .types-wells {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .types-wells__wrap {
    margin-top: 20px;
  }
  .types-wells__box {
    padding-top: 16px;
  }
  .types-wells__box-one {
    padding-left: 16px;
    padding-right: 16px;
  }
  .types-wells__box-content {
    margin-right: 0px;
  }
  .types-wells__box-title {
    font-size: 22px;
    line-height: 26px;
  }
  .types-wells__box-text {
    gap: 10px;
  }
  .types-wells__box-text p {
    font-size: 14px;
    line-height: 130%;
  }
  .types-wells__box-image {
    max-width: 100%;
    min-width: auto;
    width: auto;
  }
  .types-wells__box-txt {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .types-wells__box-three {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .types-wells__box-price {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .types-wells__three {
    font-size: 18px;
    line-height: 21px;
    padding-left: 35px;
    width: 256px;
    margin: 0 auto;
    font-weight: 500;
  }
  .types-wells__three::before {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    background-size: cover;
  }
  .types-wells__price {
    font-size: 22px;
    line-height: 26px;
  }
  .types-wells__price-old {
    font-size: 20px;
    line-height: 23px;
  }
  .types-wells__box-label {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 35px;
    padding-left: 80px;
    font-size: 24px;
    line-height: 130%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .types-wells__box-label::before {
    width: 30px;
    height: 30px;
    background-size: cover;
    left: 35px;
    top: calc(50% - 15px);
  }
}


#menu-wrap {}
#menu-wrap, #menu-wrap_foot {
	z-index: 5;
	position: absolute;
}
.menuss, .menuss2{
	display:flex;
	height:55px;
}
.menuss li, .menuss2 li{
	display: flex;
    position: relative;
    z-index: 4;
    align-content: center;
}
.menuss li a, .menuss2 li a {
	padding:15px;
	color:#000;
	font-size:18px;
}
.menuss li a:hover, .menuss li:hover > a, .menuss2 li a:hover, .menuss2 li:hover > a{
	color:#ff8c00;
}
.menuss li.current.active a, .menuss li.active.deeper.parent a{
	color:#ff8c00;
}
.menuss li.current.active li a, .menuss li.active.deeper.parent li a{
	color:#000;
}
.menuss li.current.active li.current.active a, .menuss li.active.deeper.parent li.current.active a{
	background: #f29812;
}




.menuss ul, .menuss2 ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 300px;
	position: absolute;
	top: 34px;
	left: 0px;
	background: #ff8c00;
}
.menuss ul li, .menuss2 ul li {
	display:block;
	float: none;
}
.menuss ul li a, .menuss2 ul li a, .menuss ul li span, .menuss2 ul li span {
	float:left;
	width:100%;
	font-size:16px;
	font-weight:normal;
	display:block;
	color:#fff;
	line-height: 1.2;
	padding: 15px;
}
.menuss ul li a:hover, .menuss ul li:hover > a, .menuss2 ul li a:hover, .menuss2 ul li:hover > a, .menuss ul li span:hover, .menuss ul li:hover > span, .menuss2 ul li span:hover, .menuss2 ul li:hover > span{
	background:#f29812;
	color:#ffffff;
	cursor:pointer;
}
.menuss li:hover > ul, .menuss2 li:hover > ul{
	display: block;
}
.menuss ul ul, .menuss2 ul ul {
	left: 149px;
	top: 0px;
}
#menu-icon, #menu-icon2 {
	display:none;
}
#menu-wrap_foot ul li ul{
	display:none;
}

@media screen and (max-width: 991px){
	#menu-wrap, #menu-wrap_foot {
		width: 100%;
		position: relative;
		background: #ff8c00;
	}
	#menu-icon, #menu-icon2{
		width: 100%;
		background: #ff8c00;
		cursor:pointer;
		display:block;
		float: left;
		color: #fff;
		text-align: center;
		font-size: 18px;
		padding: 12px 0;
	}
	.menuss, .menuss2{
		clear:both;
		*position:absolute;
		top:50px;
		width:100%;
		left: 0;
		z-index:100;
		padding:0;
		margin:0;
		display:none;
		height: auto;
	}
	.menuss li, .menuss2 li{
		display:block;
		margin:0;
	}
	.menuss li a, .menuss2 li a, .menuss li span, .menuss2 li span {
		background:#ff8c00;
		color:#fff;
		float: left;
		width: 100%;
	}
	.menuss li a:hover, .menuss li:hover > a, .menuss2 li a:hover, .menuss2 li:hover > a, .menuss li span:hover, .menuss li:hover > span, .menuss2 li span:hover, .menuss2 li:hover > span{
		background:#f29812;
		color:#fff;
	}
	.menuss ul li a, .menuss2 ul li a, .menuss ul li span, .menuss2 ul li span {
		padding: 15px 0 15px 30px;
	}
	.menuss ul , .menuss2 ul {
		display:block;
		position:relative;
		top:0;
		left:0;
		width:100%;
	}
	.menuss ul ul, .menuss2 ul ul {
		left:0;
	}	
}
@media screen and (max-width: 768px){
	.header__box{
		display: grid;
	}
	.header__wrap{
		width: 100%;
		gap: 0;
	}
}
