@charset "UTF-8";
/* Scss Document */
:root {
  --px: clamp(16px, 1.042vw, 20px);
  --font12: clamp(12px, 0.625vw, 12px); /* статичный */
  --font13: clamp(13px, 0.677vw, 13px); /* статичный */
  --font14: clamp(13px, 0.729vw, 14px);
  --font15: clamp(13px, 0.781vw, 15px);
  --font16: clamp(14px, 0.833vw, 16px);
  --font17: clamp(14px, 0.885vw, 17px);
  --font18: clamp(15px, 0.938vw, 18px);
  --font20: clamp(16px, 1.042vw, 20px);
  --font22: clamp(17px, 1.094vw, 22px);
  --font30: clamp(18px, 1.563vw, 30px);
  --font40: clamp(20px, 2.083vw, 40px);
  --font60: clamp(30px, 3.125vw, 60px);
}

.fz12 {
  font-size: var(--font12);
}

.fz13 {
  font-size: var(--font13);
}

.fz14 {
  font-size: var(--font14);
}

.fz15 {
  font-size: var(--font15);
}

.fz16 {
  font-size: var(--font16);
}

.fz17 {
  font-size: var(--font17);
}

.fz18 {
  font-size: var(--font18);
}

.fz20 {
  font-size: var(--font20);
}

.fz22 {
  font-size: var(--font22);
}

.fz60 {
  font-size: var(--font60);
}

.fz30 {
  font-size: var(--font30);
}

.fz40 {
  font-size: var(--font40);
}

.text-center {
  text-align: center;
}

.fw300 {
  font-weight: 300;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.lh {
  line-height: 1;
}

.lh110 {
  line-height: 110%;
}

.lh120 {
  line-height: 120%;
}

.lh130 {
  line-height: 130%;
}

.lh140 {
  line-height: 140%;
}

.lh150 {
  line-height: 150%;
}

.lh160 {
  line-height: 160%;
}

.lh170 {
  line-height: 170%;
}

.lh180 {
  line-height: 180%;
}

.lh190 {
  line-height: 190%;
}

.lh200 {
  line-height: 200%;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dif {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.fxs {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fxg {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fxww {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ais {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.aie {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jcc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vert {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grid {
  display: -ms-grid;
  display: grid;
}
.grid-col-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}

.cover {
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

.last > *:last-child {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

.mc {
  margin-left: auto;
  margin-right: auto;
}

.no-under {
  text-decoration: none;
}

.ttu {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.posr {
  position: relative;
}

.start {
  top: 0;
  left: 0;
}

.block {
  display: block;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: clamp(15px, 1.563vw, 30px);
}

.gap-40 {
  gap: clamp(20px, 2.083vw, 40px);
}

.gap-50 {
  gap: clamp(20px, 2.083vw, 50px);
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.op-0 {
  opacity: 0;
}

.op-10 {
  opacity: 0.1;
}

.op-20 {
  opacity: 0.2;
}

.op-30 {
  opacity: 0.3;
}

.op-40 {
  opacity: 0.4;
}

.op-50 {
  opacity: 0.5;
}

.op-60 {
  opacity: 0.6;
}

.op-70 {
  opacity: 0.7;
}

.op-80 {
  opacity: 0.8;
}

.op-90 {
  opacity: 0.9;
}

.round-5 {
  border-radius: 5px;
}

.round-6 {
  border-radius: 6px;
}

.round-7 {
  border-radius: 7px;
}

.round-8 {
  border-radius: 8px;
}

.round-9 {
  border-radius: 9px;
}

.round-10 {
  border-radius: 10px;
}

.round-11 {
  border-radius: 11px;
}

.round-12 {
  border-radius: 12px;
}

.round-13 {
  border-radius: 13px;
}

.round-14 {
  border-radius: 14px;
}

.round-15 {
  border-radius: 15px;
}

.round-20 {
  border-radius: 20px;
}

.round-25 {
  border-radius: 25px;
}

.round-30 {
  border-radius: 30px;
}

.round-35 {
  border-radius: 35px;
}

.round-40 {
  border-radius: 40px;
}

.round-45 {
  border-radius: 45px;
}

.round-full {
  border-radius: 100%;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.oh {
  overflow: hidden;
}

.tar {
  text-align: right;
}

.pointer {
  cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=email] {
  font-family: "Inter";
  outline: none;
}

input[type=submit],
button {
  outline: none;
  cursor: pointer;
  font-family: "Inter";
  border-width: 0;
}

svg {
  display: block;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-11 {
  margin-bottom: 11px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: clamp(25px, 2.604vw, 50px);
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: clamp(30px, 3.125vw, 60px);
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: clamp(30px, 3.646vw, 70px);
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 1px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: clamp(40px, 4.167vw, 80px);
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-3 {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-9 {
  padding-top: 9px;
  padding-bottom: 9px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-11 {
  padding-top: 11px;
  padding-bottom: 11px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-13 {
  padding-top: 13px;
  padding-bottom: 13px;
}

.py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: clamp(12px, 1.042vw, 20px);
  padding-bottom: clamp(12px, 1.042vw, 20px);
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: clamp(25px, 2.604vw, 50px);
  padding-bottom: clamp(25px, 2.604vw, 50px);
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-70 {
  padding-top: clamp(30px, 3.646vw, 70px);
  padding-bottom: clamp(30px, 3.646vw, 70px);
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.px-2 {
  padding-left: 2px;
  padding-right: 2px;
}

.px-3 {
  padding-left: 3px;
  padding-right: 3px;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.px-6 {
  padding-left: 6px;
  padding-right: 6px;
}

.px-7 {
  padding-left: 7px;
  padding-right: 7px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-9 {
  padding-left: 9px;
  padding-right: 9px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-11 {
  padding-left: 11px;
  padding-right: 11px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-13 {
  padding-left: 13px;
  padding-right: 13px;
}

.px-14 {
  padding-left: 14px;
  padding-right: 14px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-30 {
  padding-left: clamp(15px, 1.563vw, 30px);
  padding-right: clamp(15px, 1.563vw, 30px);
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-11 {
  padding-bottom: 11px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 1px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-9 {
  padding-top: 9px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.p-0 {
  padding-right: 0px;
}

.p-0 {
  padding: 0px;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}

.p-6 {
  padding: 6px;
}

.p-7 {
  padding: 7px;
}

.p-8 {
  padding: 8px;
}

.p-9 {
  padding: 9px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-35 {
  padding: 35px;
}

.p-30 {
  padding: clamp(15px, 1.563vw, 30px);
}

.p-40 {
  padding: clamp(15px, 2.083vw, 40px);
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: clamp(25px, 2.604vw, 50px);
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

/* Scss Document */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

#page {
  position: relative;
}

a, img {
  outline: none;
}

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Scss Document */
img {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

h2 {
  font-size: var(--font30);
}

h3 {
  font-size: var(--font22);
}

h4 {
  font-size: var(--font20);
}

h5 {
  font-size: var(--font18);
}

h6 {
  font-size: var(--font16);
}

h2,
h3,
h4,
h5,
h6 {
  color: #AC4133;
  font-weight: 600;
}

.clr:before,
.clr:after {
  content: " ";
  display: table;
  clear: both;
}

input::-webkit-input-placeholder {
  text-indent: 0px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input::-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-ms-input-placeholder {
  text-indent: 0px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  text-indent: -500px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-moz-placeholder {
  text-indent: -500px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-moz-placeholder {
  text-indent: -500px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-ms-input-placeholder {
  text-indent: -500px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

input[type=submit],
input[type=button],
button {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Scss Document */
.text img {
  max-width: 100% !important;
  height: auto !important;
}
.text ul {
  margin-bottom: 25px;
  list-style-type: square;
  list-style-position: inside;
}
.text ul ul {
  margin-top: 25px;
  margin-left: 15px;
}
.text ol {
  margin-bottom: 25px;
  margin-left: 0px;
  list-style-position: inside;
}
.text ul ul li {
  background-image: none;
  padding-left: 0px;
  list-style-type: square;
}
.text li + li {
  margin-top: 5px;
}
.text p {
  margin-bottom: 25px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text table {
  margin-bottom: 25px;
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
}
.text table tr:nth-child(2n+2) {
  background-color: rgba(238, 238, 238, 0.42);
}
.text table tr:hover {
  background-color: rgba(238, 238, 238, 0.8);
}
.text table th {
  background-color: #30A2D9;
  padding: 15px 10px;
  color: #fff;
  border: 1px solid #fff;
}
.text table th p {
  margin-bottom: 0;
}
.text table td {
  padding: 10px;
  border: 1px solid #fff;
}
.text table td p {
  margin-bottom: 0;
}
.text blockquote {
  margin-bottom: 25px;
  color: #fff;
  background-color: #30A2D9;
  padding: 10px;
}
.text blockquote p {
  margin-bottom: 0px;
}

body {
  color: #2D2D2D;
  font-family: "Inter";
  font-size: 14px;
  background-color: #fff;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.def {
  color: #2D2D2D;
}

.red {
  color: #AC4133;
}

.bg-red {
  background-color: #AC4133;
}

.bg-fb {
  background-color: #FBF5F5;
}

.bg-fff {
  background-color: #fff;
}

.bg-def {
  background-color: #2D2D2D;
}

.bg-f8 {
  background-color: #F8F8F8;
}

a.bg-def:hover {
  background-color: rgb(152.331838565, 57.567264574, 45.168161435);
}

.fff {
  color: #fff;
}

.tr {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.thumb img {
  max-width: 100%;
  height: auto;
}

.img-full img {
  width: 100%;
  height: auto;
}

.hide {
  display: none;
}

#page {
  min-height: 100vh;
}

.wrap {
  max-width: 1440px;
  min-width: 300px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

textarea.input {
  height: 140px;
}

.input {
  background-color: transparent;
  color: #676767;
  border: 1px solid #999;
  outline: none;
}
.input::-webkit-input-placeholder {
  color: #676767;
}
.input::-moz-placeholder {
  color: #676767;
}
.input:-moz-placeholder {
  color: #676767;
}
.input:-ms-input-placeholder {
  color: #676767;
}

.under {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.btn-border {
  border: 2px solid #AC4133 !important;
  background-color: transparent;
}
.btn-border:hover {
  background-color: #AC4133;
  color: #fff;
}
.btn-border.fff {
  border-color: #fff !important;
}
.btn-border.fff:hover {
  background-color: #fff;
  color: #2D2D2D;
}
.btn-red {
  background-color: rgb(152.331838565, 57.567264574, 45.168161435);
}

.header-bg {
  top: 0;
  right: 100%;
  width: 999px;
}
.header-top-bg {
  width: 3000px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2.5px);
}
.header-bottom-bg {
  width: 3000px;
  background: rgba(172, 65, 51, 0.9);
  backdrop-filter: blur(2.5px);
}

.hero-container {
  height: 100vh;
  min-height: 600px;
}
.hero-form {
  margin-bottom: clamp(50px, 9.792vw, 188px);
}
.hero-form .field input {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #202020;
  font-size: 16px;
  font-family: "Inter";
  padding: 18px 10px 0 10px;
  background-image: url(../images/calendar.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.hero-form .field .select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #202020;
  font-size: 16px;
  font-family: "Inter";
  padding: 18px 10px 0 10px;
  background-image: url(../images/select.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  outline: none;
}
.hero-form .field .lab {
  top: 7px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
  color: #919191;
}

.wpcf7-form-control-wrap {
  display: block;
}

.page-order-form .field input {
  width: 100%;
  height: 34px;
  background: #fff;
  color: #676767;
  font-size: 12px;
  font-family: "Inter";
  padding: 0 10px 0 33px;
  background-image: url(../images/date.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  border: 1px solid #E0E0E0;
}
.page-order-form .field input::-webkit-input-placeholder {
  color: #676767;
}
.page-order-form .field input::-moz-placeholder {
  color: #676767;
}
.page-order-form .field input:-moz-placeholder {
  color: #676767;
}
.page-order-form .field input:-ms-input-placeholder {
  color: #676767;
}
.page-order-form .field .select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  height: 34px;
  background: #fff;
  color: #676767;
  font-size: 12px;
  font-family: "Inter";
  padding: 0 10px 0 33px;
  background-image: url(../images/user2.svg), url(../images/select2.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: 10px center, right 12px center;
  border: 1px solid #E0E0E0;
}
.page-order-form .wpcf7-form-control-wrap {
  display: block;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  background: transparent;
}

.main-menu a.fff:hover {
  background-color: #2D2D2D;
}

.we img {
  width: auto;
  height: clamp(40px, 4.167vw, 80px);
}

.slider-arrow {
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.slider-prev {
  right: calc(100% + 30px);
}
.slider-prev.fff path {
  fill: #fff;
}
.slider-next {
  left: calc(100% + 30px);
}
.slider-next.fff path {
  fill: #fff;
}

.item:hover:before {
  opacity: 1;
}
.item:hover .info {
  background: rgba(45, 45, 45, 0.9);
}
.item:hover .btn {
  opacity: 1;
}
.item:hover .data {
  opacity: 0;
}
.item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 45, 45, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.item .info {
  bottom: 0;
  left: 0;
  background: rgba(172, 65, 51, 0.9);
  backdrop-filter: blur(2.5px);
}
.item .btn {
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.aboutus-slider-box {
  width: 49.1%;
  margin-left: -6.94%;
}
.aboutus-slider-prev {
  left: 20px;
}
.aboutus-slider-next {
  left: auto;
  right: 20px;
}
.aboutus-slider a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.4)), color-stop(50.48%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50.48%, rgba(0, 0, 0, 0.4) 100%);
}

.row-9292 .aboutus-slider-box {
  margin-left: 0;
}

.text .aboutus-slider-box {
  margin-left: 0;
  float: right;
  margin-left: clamp(25px, 2.604vw, 50px);
}

@media (max-width: 767px) {
  .text .aboutus-slider-box {
    margin-left: 0 !important;
    float: none;
    margin-left: clamp(25px, 2.604vw, 50px);
    margin-bottom: 25px;
  }
}
.bcream > span {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.bcream a {
  color: #2D2D2D;
}
.bcream .breadcrumb_last {
  color: #AC4133;
}

.popup {
  padding: 50px 30px;
  width: 500px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2.5px);
}
.popup.active {
  visibility: visible;
  opacity: 1;
}
.popup-bg {
  visibility: hidden;
  opacity: 0;
}
.popup-bg.active {
  visibility: visible;
  opacity: 1;
}
.popup-close {
  top: 20px;
  right: 20px;
}
.popup-close path {
  fill: #5E5E5E;
}
.popup-close:hover path {
  fill: #AC4133;
}
.popup .btn {
  padding: 14px 50px;
  min-width: 220px;
}
.popup .input {
  width: 100%;
  color: #5E5E5E;
}
.popup .input::-webkit-input-placeholder {
  color: #5E5E5E;
}
.popup .input::-moz-placeholder {
  color: #5E5E5E;
}
.popup .input:-moz-placeholder {
  color: #5E5E5E;
}
.popup .input:-ms-input-placeholder {
  color: #5E5E5E;
}

@media (max-width: 650px) {
  .popup {
    width: calc(100% - 40px);
    padding: 50px 20px 20px 20px;
  }
  .popup .mb-20 {
    margin-bottom: 10px;
  }
  .popup .mb-30 {
    margin-bottom: 20px;
  }
  .popup .conf {
    font-size: 13px;
    line-height: 120%;
  }
}
.panel-fixed {
  background: rgba(172, 65, 51, 0.95);
  backdrop-filter: blur(2.5px);
}

@media (min-width: 766px) {
  .contact-page .left {
    width: 37.5%;
  }
}
@media (max-width: 767px) {
  .contact-page .left {
    width: 100%;
  }
}
.social-red path {
  fill: #AC4133;
}
.social-red circle {
  stroke: #AC4133;
}

.map-big {
  height: clamp(250px, 27.031vw, 519px);
}

.singleinfo strong {
  color: #AC4133;
}
.singleinfo ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}
.singleinfo li {
  display: block;
  padding-left: 35px;
  background-image: url(../images/li.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
}

.price-old {
  color: #777;
  text-decoration: line-through;
}

.page-order {
  height: 100vh;
}

.marshrut .btn {
  border-width: 0;
}
.marshrut-list {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 8px 0;
}
.marshrut-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 8px;
}
.marshrut-list a:nth-child(1n+2) {
  border-top: 1px solid #eee;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 0px;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider .draggable {
  margin: 0 clamp(-7px, 0.781vw, -15px);
}
.slider .slide {
  padding: 0 clamp(7px, 0.781vw, 15px);
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-dots {
  position: absolute;
  bottom: -5px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 7px;
  padding: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slick-dots li button {
  display: block;
  border: 0;
  background: #dcdcdc;
  border-radius: 10px;
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background-color: #b99e7c;
}
.slick-dots li:hover button {
  background-color: #b99e7c;
}

.gallery {
  clear: both;
  margin-bottom: 20px;
  margin-right: -20px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-columns-1 dl {
  width: 100% !important;
}

.gallery-columns-2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gallery-columns-2 dl {
  width: calc(50% - 20px);
  margin-right: 20px;
  padding: 5px;
}

.gallery-columns-3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-columns-3 dl {
  width: calc(33.3333333333% - 20px);
  margin-right: 20px;
  padding: 5px;
}

.gallery-columns-4 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-columns-4 dl {
  width: calc(25% - 20px);
  margin-right: 20px;
  padding: 5px;
}

.gallery-columns-5 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-columns-5 dl {
  width: calc(20% - 20px);
  margin-right: 20px;
  padding: 5px;
}

.gallery dl {
  text-align: center;
  position: relative;
}

.gallery dt img {
  height: auto !important;
  width: 100% !important;
  display: block;
  -webkit-box-shadow: 0 0 0 #969696;
          box-shadow: 0 0 0 #969696;
  border: 1px solid #ddd;
  padding: 2px;
}

.gallery dd {
  margin: 0px;
  padding: 10px 5px;
}

.gallery dt {
  position: relative;
}

.gallery dl:hover dt a:before {
  opacity: 1;
}

@media (max-width: 992px) {
  .gallery {
    margin-right: 10px;
  }
  .gallery-columns-2 dl {
    width: calc(50% - 10px);
    margin-right: 10px;
  }
  .gallery-columns-3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-3 dl {
    width: calc(33.3333333333% - 10px);
    margin-right: 10px;
  }
  .gallery-columns-4 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-4 dl {
    width: calc(33.3333333333% - 10px);
    margin-right: 10px;
  }
  .gallery-columns-5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-5 dl {
    width: calc(33.3333333333% - 10px);
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .gallery {
    margin-right: 10px;
  }
  .gallery-columns-2 dl {
    width: calc(50% - 10px);
  }
  .gallery-columns-3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-3 dl {
    width: calc(50% - 10px);
  }
  .gallery-columns-4 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-4 dl {
    width: calc(50% - 10px);
  }
  .gallery-columns-5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-5 dl {
    width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  .gallery {
    margin-right: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gallery-columns-2 dl {
    width: calc(50% - 0px);
    margin-right: 0px;
  }
  .gallery-columns-3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-3 dl {
    width: calc(50% - 0px);
    margin-right: 0px;
  }
  .gallery-columns-4 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-4 dl {
    width: calc(50% - 0px);
    margin-right: 0px;
  }
  .gallery-columns-5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-columns-5 dl {
    width: calc(50% - 0px);
    margin-right: 0px;
  }
}
.wp-pagenavi {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  gap: 7px;
  color: #000;
}
.wp-pagenavi a,
.wp-pagenavi span {
  width: 35px;
  height: 35px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  text-decoration: none;
  color: #000;
  background-color: #E8E8E8;
  border-radius: 5px;
}
.wp-pagenavi a:hover {
  background-color: #006E7B;
  color: #fff;
}
.wp-pagenavi span {
  background-color: #006E7B;
  font-weight: bold;
  color: #fff;
}
.wp-pagenavi .nextpostslink {
  background-color: #006E7B;
}
.wp-pagenavi .nextpostslink:hover {
  color: #fff;
  background-color: #006E7B;
}
.wp-pagenavi .previouspostslink {
  background-color: #006E7B;
}
.wp-pagenavi .previouspostslink:hover {
  color: #fff;
  background-color: #006E7B;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.alignright {
  float: right;
  margin-bottom: 10px;
  margin-left: 20px;
}

.aligncenter {
  display: block !important;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
}

img.alignleft {
  margin-top: 5px;
}

img.alignright {
  margin-top: 5px;
}

img.aligncenter {
  margin-top: 5px;
}

.wp-caption {
  margin-bottom: 25px;
  position: relative;
}
.wp-caption a {
  display: block;
}
.wp-caption img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  margin: 0 !important;
}
.wp-caption p.wp-caption-text {
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  margin-left: 0;
  border-radius: 0 0 5px 5px;
}

/* Обратная связь */
form.wpcf7-form {
  position: static;
}
form.wpcf7-form .flx.jcc {
  position: relative;
}
form.wpcf7-form .ajax-loader {
  position: absolute;
  bottom: 0;
  right: 0;
}

.invalid {
  padding-bottom: 0px;
}

.sent {
  padding-bottom: 0px;
}
.sent div.wpcf7-response-output {
  background-color: #4caf50;
  color: #fff;
  display: none !important;
}

.rev {
  position: relative;
}

div.wpcf7 {
  margin: 0px;
  padding: 0px;
}
div.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}

div.wpcf7-response-output {
  font-weight: 500;
  position: relative !important;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px !important;
  margin: 0 !important;
  color: #fff;
  background-color: #f00;
  margin: 0;
  margin-top: 10px !important;
  border-radius: 0px;
  text-align: center;
  width: 100% !important;
  position: relative;
  z-index: 3;
  border-radius: 5px;
  border-width: 0 !important;
  font-size: 12px;
}

div.wpcf7-response-output:before,
div.wpcf7-response-output:after {
  content: " ";
  display: table;
  clear: both;
}

div.wpcf7-mail-sent-ok {
  border: 0px solid #398f14;
  background-color: green;
}

div.wpcf7-mail-sent-ng {
  border: 0px solid #ff0000;
}

div.wpcf7-spam-blocked {
  border: 0px solid #ffa500;
}

div.wpcf7-validation-errors {
  border: 0px solid #f7e700;
  background-color: red;
}

span.wpcf7-form-control-wrap {
  position: relative;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  top: 20%;
  left: 3%;
  z-index: 100;
  background: #fff;
  border: 1px solid #ff0000;
  font-size: 10pt;
  width: 280px;
  padding: 2px;
  display: none !important;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
}

span.wpcf7-not-valid-tip-no-ajax {
  color: #F46F43;
  font-size: 10pt;
  display: block;
}

span.wpcf7-list-item {
  margin-left: 0.5em;
}

.wpcf7-display-none {
  display: none;
}

div.wpcf7 img.ajax-loader {
  border: none;
  vertical-align: middle;
  margin-left: 4px;
}

div.wpcf7 div.ajax-error {
  display: none;
}

div.wpcf7 .placeheld {
  color: #888;
}

img.ajax-loader {
  display: none;
}

@media (max-width: 550px) {
  div.wpcf7-response-output {
    padding: 10px !important;
    border-radius: 5px !important;
  }
  textarea.input {
    height: 80px;
  }
}
@media (max-width: 1480px) {
  .wrap {
    margin-left: 3%;
    margin-right: 3%;
  }
  .flex_1480 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block_1480,
  .show_1480 {
    display: block;
  }
  .hide_1480 {
    display: none;
  }
}
@media (max-width: 1260px) {
  .header-left {
    padding-right: 15px;
  }
  .pl-30 {
    padding-left: 15px;
  }
  .logo img {
    width: 120px;
    height: auto;
  }
}
@media (max-width: 992px) {
  main {
    padding-top: 62px !important;
  }
  .contact-row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .footer {
    padding: 20px 0;
  }
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-row .studia,
  .footer-row .copy {
    width: auto !important;
  }
  .row-9292 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row-9292 .aboutus-slider-box {
    width: 100%;
  }
  .sostav svg {
    width: 25px;
    height: auto;
  }
  .page-order-form .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .panel-left {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100vh;
    overflow-y: auto;
    z-index: 15;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  .panel-left.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .panel-left .inner {
    width: 300px;
  }
  .mmenu li {
    display: block;
  }
  .mmenu li:nth-child(1n+2) {
    margin-top: 10px;
  }
  .mmenu li a {
    color: #000;
    display: block;
    padding: 5px 0;
  }
  .map {
    height: 300px;
  }
  .contact-row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .col1_992 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .col2_992 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .col3_992 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .flex_992 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block_992,
  .show_992 {
    display: block;
  }
  .hide_992 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero .btn {
    height: 100%;
  }
  .aboutus-row {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .aboutus-slider-box {
    width: 100%;
    margin: 0;
  }
  .singleinfo ul {
    gap: 5px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
  .col1_767 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .col2_767 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .flex_767 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block_767,
  .show_767 {
    display: block;
  }
  .hide_767 {
    display: none;
  }
}
@media (max-width: 550px) {
  .mr-80 {
    margin-right: 0;
  }
  .hero-form .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-form .btn {
    width: 100%;
  }
  .row-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .row-button .lh180 {
    line-height: 140%;
  }
  .reviews-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews-yandex {
    width: 100% !important;
  }
  .panel-mobile .fz20 {
    font-size: 12px;
  }
  .we {
    width: 100%;
    text-align: left;
  }
  .we-item {
    font-size: 12px;
  }
  .we-item .icon {
    margin-bottom: 0;
  }
  .contact .fz30 {
    font-size: 16px;
    text-align: center;
  }
  .page-order {
    height: 500px;
  }
  .page-order-form .btn {
    width: 100%;
  }
  .contact-row {
    text-align: center;
  }
  .contact-row .right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .col1_550 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .col2_550 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .flex_550 {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block_550,
  .show_550 {
    display: block;
  }
  .hide_550 {
    display: none;
  }
}