.m-btns {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  display: none;
}
@media screen and (max-width: 1000px) {
  .m-btns {
    display: flex;
  }
}
.m-btns__item {
  background-color: #fff;
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 10px 10px rgba(246, 71, 31, .1);
  border-radius: 10px;
  border: 1px solid #F6471F;
  box-sizing: border-box;
  font-size: 13px !important;
  padding: 2px 0;
}
.m-btns__item_main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-btns__item_main img {
  margin-right: 6px;
  width: 20px;
  height: 20px;
}
.m-btns__phone {
  margin-top: 4px;
  color: #F6471F;
}
.alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  padding: 12px 0;
  transition: .5s;
  opacity: 0;
  pointer-events: none
}
.alert .modal-inp {
  margin-bottom: 0;
  margin-right: 10px;
}
.alert .tbtn-inner { white-space: nowrap; padding-left: 30px; }
.alert .tbtn-inner { white-space: nowrap; padding-right: 30px; }
.alert.active {
  opacity: .9;
  pointer-events: auto;
  box-shadow: 0 0 30px 20px rgba(0, 0, 0, .03);
}
.alert:hover {
  opacity: 1;
}
.alert__fields {
  display: flex;
}
.alert__close {
  height: 38px;
  width: 38px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 5px;
}
.alert__close svg path {
  transition: .2s;
}
.alert__close:hover svg path {
  fill: #f74e28;
}
.alert__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alert__time {
  display: flex;
  flex-direction: column;
}
.alert__time_title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600
}
.alert__time_days {
  display: flex;
  align-items: center;
}
.alert__time_main {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.alert__time_day {
  display: flex;
  flex-direction: column;
}
.alert__time_day_item {
  display: flex;
  align-items: center;
}
.alert__sq {
  flex-shrink: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid #F74E28;
  margin-right: 8px;
  position: relative;
}
.alert__sq::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 2px;
  background-color: #F74E28;
  display: none;
}
.alert__time_day_item input:checked + .alert__sq::after { display: block; }
.alert__time_day_item:not(:last-child) {
  margin-bottom: 10px;
}
.alert__time_day select {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.alert__time_day select::-ms-expand {
  display: none;
}

.alert__time_nums {
  display: flex;
}
.alert__time_num {
  position: relative;
  color: #fff;
  margin-right: 10px;

}
.alert__time_num::after {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-110%);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 6px solid #fff;
  pointer-events: none;
}
.alert__time_num::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(50%);
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid #fff;
  pointer-events: none;
}
.alert__time_num select {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  width: 70px;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  outline: none;
  color: #fff;
  background-color: #F74E28;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.alert__time_num select::-ms-expand {
  display: none;
}

@media screen and (max-width: 1300px) {
  .alert__content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1000px) {
  .alert {
    display: none;
  }
}


.call-phone { cursor: pointer; }
.o-in {
  display: none;
}
.o-in.active { display: block; }
.opros__call {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.opros__call img {
  margin-right: 12px;
}
.opros__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.opros__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.opros__btn {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
.opros__btn-full {
  width: 100%;
}
.opros__btn .btn-inner {
  width: 100%;
}
.opros__complaint {
  text-align: center;
  display: block;
  font-size: 14px;
}
.opros__check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  cursor: pointer;
}
.opros__check input[type="radio"] { display: none; }
.opros__check p {
  width: calc(100% - 30px - 10px);
}
.opros__check_sq {
  width: 30px;
  height: 30px;
  display: inline-block;
  flex-shrink: 0;
  border: 1px solid #F88878;
  border-radius: 4px;
  position: relative;
  margin-right: 10px;
}
.opros__check_sq::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background-color: #F88878;
  border-radius: 4px;
  display: none;
}
input[type="date"] { display: none; margin-left: 40px; padding: 12px 18px; border: none; outline: none; border: 1px solid #f88878; }

.opros__check input:checked ~ input[type="date"] { display: block; }
.opros__check input:checked + .opros__check_sq::before { display: block; }




.f-call {
  position: fixed;
  right: 15px;
  top: 50vh;
  width: 100%;
  max-width: 300px;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 20px 15px rgba(0, 0, 0, .05);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.f-call.active {
  opacity: 1;
  pointer-events: auto
}
.f-call__title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.f-call__close {
  height: 38px;
  width: 38px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 5px;
}
.f-call__close svg path {
  transition: .2s;
}
.f-call__close:hover svg path {
  fill: #f74e28;
}

@media screen and (max-width: 700px) {
  .f-call {
    display: none;
  }
}

.footer {
  padding: 100px 0;
  background: #4A413B;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-item {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-map img {
  max-width: 100%;
  width: 370px;
  border-radius: 5px;
}
.footer-separator {
  height: 1px;
  width: 100%;
  margin: 60px 0;
  background: #675C55;
}
.footer-header {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.footer-menu__link {
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #AEA8A5;
}
.footer-menu__link:hover {
  color: #fff;
}
.footer-hint {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #AEA8A5;
}
.footer-hint img {
  height: 24px;
  width: 24px;
  margin-right: 10px;
}
.footer-contact {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 25px;
}
.footer-contact i {
  font-weight: normal;
  font-size: 16px;
}
.footer-contact--link:hover {
  color: #F74E28;
}
.footer .tbtn-inner {
  padding: 20px 30px;
}
.footer .btn--dark {
  text-transform: capitalize;
}
.footer .btn--dark .btn-inner {
  padding: 12px 20px;
}
.footer-info {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
  padding-right: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 980px) {
  .footer-inner {
    row-gap: 30px;
  }
  .footer-item {
    width: 48%;
  }
  .footer-separator {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 0;
    padding-bottom: 80px;
  }
  .footer-item {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-menu {
    align-items: center;
  }
}

.services {
  padding: 120px 0 80px;
}
.services .section-header {
  margin-bottom: 22px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
}
.services-list .btn {
  margin-top: 30px;
}
.services-item {
  width: 49%;
  background: #fff;
  border-radius: 8px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.services-item__header {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  width: 100%;
}
.services-item__hint {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.services-item__hint:last-child {
  margin-bottom: 0;
}
.services-item__hint-icon {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-item__hint-text {
  width: calc(100% - 36px);
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  padding-left: 12px;
}
.services-item__hint-text b {
  color: #333333;
}
.services-item__price {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.services-item__text {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 30px;
}
.services-item__inner {
  border-top: 1px solid #ECECEC;
  border-right: 1px solid #ECECEC;
  padding-top: 20px;
  padding-right: 30px;
  width: 50%;
}
.services-item__inner:last-child {
  border-right: none;
  padding-left: 30px;
  padding-right: 0;
}

@media screen and (max-width: 1280px) {
  .services-item {
    padding: 30px;
  }
}
@media screen and (max-width: 980px) {
  .services-item {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .services {
    padding: 50px 0 30px;
  }
  .services-list .btn {
    margin-top: 10px;
  }
  .services-item__inner {
    width: 100%;
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .services-item__inner:last-child {
    padding-left: 0;
    padding-bottom: 0;
  }
}
.order {
  padding: 40px 0 60px;
}
.order-inner {
  display: flex;
  flex-wrap: wrap;
  background: #FFFFFF;
  border-radius: 8px;
}
.order-inner__info {
  width: 60%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.order-inner__subinfo {
  width: 40%;
  background: #6A564B;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 0 8px 8px 0;
}
.order-inner__subinfo:after {
  content: "";
  display: block;
  position: absolute;
  height: 531px;
  width: 414px;
  bottom: 0;
  left: -239px;
  background: url("../images/order-img.webp") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
}
.order-header {
  font-weight: 600;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
.order-text {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #666666;
  max-width: 395px;
}
.order-tel {
  display: inline-flex;
  padding: 18px 30px;
  border: 1px dashed #AEAEAE;
  border-radius: 50px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 30px 0 40px;
}
.order-tel:hover {
  color: #F74E28;
  border-color: #F74E28;
}
.order-hint {
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 205px;
  position: relative;
}
.order-hint:before {
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  width: 24px;
  left: -40px;
  top: 0;
  background: url("../fonts/order-star.svg") no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 1280px) {
  .order-inner__info {
    padding: 40px;
  }
  .order-inner__subinfo {
    padding: 40px 60px;
  }
  .order-inner__subinfo:after {
    height: 385px;
    width: 300px;
    left: -140px;
  }
}
@media screen and (max-width: 980px) {
  .order-inner__info {
    width: 100%;
    align-items: center;
  }
  .order-inner__subinfo {
    width: 100%;
    border-radius: 0 0 8px 8px;
  }
  .order-inner__subinfo:after {
    display: none;
  }
  .order-text {
    text-align: center;
  }
  .order-hint {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .order {
    padding: 20px 0;
  }
  .order-inner__info {
    padding: 40px 20px;
  }
  .order-header {
    font-size: 30px;
  }
  .order-text {
    font-size: 16px;
  }
  .order-tel {
    font-size: 20px;
    padding: 14px 18px;
  }
  .order-hint {
    font-size: 16px;
  }
}
.how {
  padding: 60px 0;
}
.how-item {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D2D2D2;
}
.how-item:last-child {
  border: none;
}
.how-item__num {
  height: 60px;
  width: 80px;
}
.how-item__num svg {
  height: 100%;
  width: 100%;
}
.how-item__header {
  width: calc(50% - 80px);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.02em;
  padding-left: 100px;
}
.how-item__text {
  width: 50%;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  padding-left: 100px;
}

@media screen and (max-width: 768px) {
  .how-item {
    flex-direction: column;
    align-items: center;
  }
  .how-item__header {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin: 10px 20px;
  }
  .how-item__text {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .how {
    padding: 30px 0;
  }
  .how-item__header {
    font-size: 16px;
  }
  .how-item__text {
    font-size: 14px;
  }
}
.park {
  padding: 60px 0;
}
.park-item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 30px;
}
.park-item:last-child {
  margin-bottom: 0;
}
.park-img {
  width: 63%;
  border-radius: 8px 0 0 0;
}
.park-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 0;
}
.park-info {
  width: 37%;
  background: #6A564B;
  border-radius: 0 8px 0 0;
  padding: 60px;
}
.park-header {
  font-size: 30px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 26px;
}
.park-text {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
}
.park-footer {
  width: 100%;
  padding: 40px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.park-footer__item {
  width: 30%;
}
.park-footer__header {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.park-footer__spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  position: relative;
}
.park-footer__spec:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  bottom: 4px;
  left: 0;
  right: 0;
  border: 1px dashed #CBCBCB;
  z-index: 1;
}
.park-footer__spec span {
  display: block;
  background: #fff;
  position: relative;
  z-index: 2;
}
.park-footer__spec span:first-child {
  padding-right: 2px;
}
.park-footer__spec span:last-child {
  padding-left: 2px;
}
.park-footer__spec:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
  .park-footer__item {
    width: 46%;
    margin-bottom: 20px;
  }
  .park-footer__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 980px) {
  .park-img {
    width: 100%;
  }
  .park-img img {
    border-radius: 8px 8px 0 0;
  }
  .park-info {
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .park-info {
    padding: 30px;
  }
  .park-footer {
    padding: 20px 30px;
  }
  .park-footer__item {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .park {
    padding: 30px 0;
  }
  .park-info {
    padding: 20px 15px;
    font-size: 14px;
  }
  .park-header {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .park-text {
    font-size: 14px;
  }
  .park-footer {
    padding: 20px 15px;
  }
}
.service {
  padding: 60px 0;
}
.service-inner {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  background: #fff;
}
.service-img {
  width: 63%;
  border-radius: 8px 0 0 0;
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img img {
  max-width: 100%;
}
.service-info {
  width: 37%;
  background: #6A564B;
  border-radius: 0 8px 0 0;
  padding: 60px;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #fff;
}
.service-footer {
  padding: 20px 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-footer__item {
  width: 48%;
  border-top: 1px solid #ECECEC;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
  padding: 20px 0;
}
.service-footer__item b {
  color: #333333;
  font-weight: 600;
}
.service-footer__item:nth-child(1), .service-footer__item:nth-child(2) {
  border: none;
}

@media screen and (max-width: 980px) {
  .service-img {
    width: 100%;
  }
  .service-info {
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .service-img {
    padding: 30px;
  }
  .service-info {
    padding: 30px;
  }
  .service-footer {
    padding: 20px 30px;
  }
  .service-footer__item {
    width: 100%;
    padding: 10px 0;
  }
  .service-footer__item:nth-child(2) {
    border-top: 1px solid #ECECEC;
  }
}
@media screen and (max-width: 480px) {
  .service-img {
    padding: 15px;
  }
  .service-info {
    padding: 15px;
    font-size: 14px;
  }
  .service-footer {
    padding: 20px 15px;
  }
  .service-footer__item {
    font-size: 14px;
  }
}
.about {
  padding: 60px 0;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
}
.about-img {
  width: 37%;
}
.about-img img {
  max-width: 100%;
  border-radius: 8px;
}
.about-info {
  width: 63%;
  padding-left: 70px;
}
.about-header {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-text {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #666666;
}

@media screen and (max-width: 980px) {
  .about-info {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 30px 0;
  }
  .about-inner {
    padding-top: 0;
  }
  .about-img {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .about-info {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .about-header {
    font-size: 20px;
  }
  .about-text {
    font-size: 14px;
  }
}

.calculation {
  padding: 60px 0;
}
.calculation-submit {
  border: none;
  outline: none;
}
.calculation .section-header {
  width: 100%;
}
.calculation-inner {
  background: #FFFFFF;
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.calculation-inner:after {
  content: "";
  display: block;
  position: absolute;
  height: 247px;
  width: 247px;
  left: -123px;
  bottom: -123px;
  background: url("../fonts/calculation-img.svg") no-repeat center;
  background-size: contain;
}
.calculation-inputs {
  width: 30%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.calculation-inp {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  width: 100%;
  height: 64px;
  padding: 20px 22px;
  background: #EFEFEF;
  border-radius: 6px;
  border: 1px solid transparent;
}
.calculation-inp.err {
  border-color: red;
  box-shadow: 0 0 15px red;
}
.calculation-inp:focus {
  border-color: #F74E28;
}
.calculation-inp::placeholder {
  color: #8D8D8D;
}
.calculation-map {
  width: 68%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.calculation-map iframe {
  width: 100% !important;
  height: 350px !important;
}
.calculation-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.calculation-discount {
  display: flex;
  flex-direction: column;
}
.calculation-discount__text {
  position: relative;
  padding-left: 34px;
  font-weight: 500;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #666666;
  margin-bottom: 2px;
}
.calculation-discount__text:before {
  content: "";
  display: block;
  position: absolute;
  height: 18px;
  width: 18%;
  top: 0;
  left: 0;
  background: url("../fonts/order-star.svg") no-repeat center;
  background-size: contain;
}
.calculation-discount__count {
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #F74E28;
  padding-left: 34px;
}

@media screen and (max-width: 1366px) {
  .calculation-inner:after {
    height: 180px;
    width: 180px;
    left: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 980px) {
  .calculation-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .calculation-inner:after {
    display: none;
  }
  .calculation-inputs {
    width: 100%;
    margin-bottom: 20px;
  }
  .calculation-map {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .calculation .section-header {
    margin-bottom: 20px;
  }
  .calculation-inner {
    padding: 20px;
  }
  .calculation-nav {
    flex-direction: column;
    align-items: center;
  }
  .calculation-discount {
    margin-bottom: 10px;
  }
}
.warranty {
  padding: 60px 0;
}
.warranty-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 14px;
}
.warranty-item {
  width: 24%;
  padding: 60px 30px;
  border: 1px solid #D2D2D2;
  border-radius: 8px;
}
.warranty-item--half {
  width: 49.4%;
}
.warranty-item__icon {
  height: 40px;
  width: 40px;
  margin-bottom: 30px;
}
.warranty-item__text {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 980px) {
  .warranty-item {
    width: 49.4%;
  }
}
@media screen and (max-width: 768px) {
  .warranty-item {
    width: 49%;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 480px) {
  .warranty {
    padding: 30px 0;
  }
  .warranty-item {
    width: 100%;
  }
  .warranty-item__icon {
    margin-bottom: 15px;
  }
}
.gallery-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery-photos {
  width: 49%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 6%;
  justify-content: space-between;
}
.gallery-item {
  width: 47.5%;
  height: 47%;
}
.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
/* .gallery-video {
  width: 48%;
  height: 390px;
  position: relative;
} */
.gallery__video {
  width: 48%;
  position: relative;
  height: 390px;
}

.gallery__video iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.gallery__yt {
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery__yt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background: url("../fonts/play-btn.svg") no-repeat center;
  background-size: contain;
  transition: all 0.3s ease;
}

.gallery__yt.hidden {
  opacity: 0;
}
.gallery__poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gallery__poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery__poster_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__yt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 980px) {
  .gallery-photos {
    width: 100%;
    margin-bottom: 30px;
  }
  .gallery__video {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .gallery-inner {
    padding-top: 0;
  }
  .gallery__video {
    height: 250px;
  }
}
.payment {
  padding: 60px 0 120px;
}
.payment-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.payment-item {
  width: 23%;
  background: #FFFFFF url("../fonts/payment-bg.svg") no-repeat right top;
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 55px 50px 40px 50px;
}
.payment-item__icon {
  height: 40px;
  width: 40px;
  margin-bottom: 26px;
}
.payment-item__icon img {
  width: 100%;
}
.payment-item__hint {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 980px) {
  .payment-item {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .payment-inner {
    row-gap: 30px;
  }
  .payment-item {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .payment-inner {
    padding-top: 0;
    row-gap: 30px;
  }
  .payment-item {
    width: 100%;
  }
}
.fancybox-slide--html .fancybox-close-small {
  top: 17px;
  right: 17px;
  padding: 0;
}
.fancybox-slide--html .fancybox-close-small svg {
  height: 20px;
  width: 20px;
}

.fancybox-button {
  height: 38px;
  width: 38px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fancybox-button svg path {
  transition: all 0.3s ease;
}
.fancybox-button:hover svg path {
  fill: #F74E28;
}

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