@charset "UTF-8";
/* Scss Document */
:root {
  --px: 30px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font20: 20px;
  --font22: 22px;
  --font24: 24px;
  --font26: 26px;
  --font32: 32px;
  --font38: 38px;
  --font42: 42px;
  --font64: 64px;
}

.f2 {
  font-family: "Onest";
}

.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);
}

.fz24 {
  font-size: var(--font24);
}

.fz26 {
  font-size: var(--font26);
}

.fz32 {
  font-size: var(--font32);
}

.fz38 {
  font-size: var(--font38);
}

.fz42 {
  font-size: var(--font42);
}

.fz64 {
  font-size: var(--font64);
}

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

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.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%;
}

.lh125 {
  line-height: 125%;
}

.lh130 {
  line-height: 130%;
}

.lh135 {
  line-height: 135%;
}

.lh140 {
  line-height: 140%;
}

.lh145 {
  line-height: 145%;
}

.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;
}

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

.grid-2 {
  margin-right: calc(var(--px) * -1);
  gap: var(--px);
}
.grid-2 > * {
  width: calc(50% - var(--px));
}

.grid-3 {
  margin-right: calc(var(--px) * -1);
  gap: var(--px);
}
.grid-3 > * {
  width: calc(33.3333333333% - var(--px));
}

@media (max-width: 992px) {
  .grid-2-table > * {
    width: calc(50% - var(--px));
  }
  .grid-1-table > * {
    width: calc(100% - var(--px));
  }
}
@media (max-width: 550px) {
  .grid-1-550 > * {
    width: calc(100% - var(--px));
  }
}
.grid-4 {
  margin-right: calc(var(--px) * -1);
  gap: var(--px);
}
.grid-4 > * {
  width: calc(25% - var(--px));
}

.grid-5 {
  margin-right: calc(var(--px) * -1);
  gap: var(--px);
}
.grid-5 > * {
  width: calc(20% - var(--px));
}

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

.bg-h-full {
  background-size: auto 100%;
}

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

.center {
  text-align: center;
}

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

.ttu {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.posr {
  position: relative;
}

.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: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.gap-70 {
  gap: 70px;
}

.gap-80 {
  gap: 80px;
}

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

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

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

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

.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: "Gotham";
  outline: none;
}

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

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-16 {
  margin-bottom: 16px;
}

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

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

.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: 50px;
}

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

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

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

.mb-70 {
  margin-bottom: 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;
}

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

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

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

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

.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: 80px;
}

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

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

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

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

.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-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 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;
}

.text h2 {
  font-size: var(--font24);
  font-weight: bold;
  color: #006E7B;
  line-height: 120%;
}
.text h3 {
  font-size: 22px;
  font-weight: bold;
  color: #006E7B;
  line-height: 120%;
}
.text h4 {
  font-size: 20px;
  font-weight: bold;
  color: #006E7B;
  line-height: 120%;
}
.text h5 {
  font-size: 18px;
  font-weight: bold;
  color: #006E7B;
  line-height: 120%;
}
.text h6 {
  font-size: 15px;
}
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 120%;
}
.text h2:first-child,
.text h3:first-child,
.text h4:first-child,
.text h5:first-child,
.text h6:first-child {
  margin-top: 0;
}

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

textarea {
  resize: none;
}

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: 15px;
  display: block;
  margin-bottom: 30px;
}
.text ul li {
  display: block;
  position: relative;
  padding-left: 25px;
  line-height: 150%;
}
.text ul li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #C7B299;
  border-radius: 100%;
}
.text ul.check li {
  padding-left: 40px;
}
.text ul.check li:before {
  content: "";
  background-image: url(../images/li-check.svg);
  background-repeat: no-repeat;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-color: transparent;
}
.text ul ul {
  margin-top: 15px;
  margin-left: 15px;
}
.text ol {
  margin-bottom: 15px;
  margin-left: 0px;
  counter-reset: num;
  margin-bottom: 30px;
}
.text ol li {
  line-height: 150%;
  position: relative;
  padding-left: 46px;
  display: block;
}
.text ol li:before {
  content: counter(num);
  counter-increment: num;
  background-color: #C7B299;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: -1px;
  left: 0;
}
.text ul ul li {
  background-image: none;
  padding-left: 0px;
  list-style-type: square;
}
.text li + li {
  margin-top: 15px;
}
.text p {
  margin-bottom: 15px;
}
.text p a {
  color: #006E7B;
  text-decoration: underline;
}
.text p a:hover {
  text-decoration: none;
}
.text p:last-child {
  margin-bottom: 0;
}
.text blockquote {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: var(--font20);
  line-height: 150%;
}
.text blockquote:before {
  content: "";
  background-image: url(../images/blockquote.svg);
  background-repeat: no-repeat;
  width: 54px;
  height: 40px;
  display: block;
  margin-bottom: 15px;
}
.text blockquote p {
  margin-bottom: 0px;
}

body {
  color: #302D32;
  font-family: "Gotham";
  font-size: var(--font16);
  background-color: #F8F8F8;
}

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

img {
  display: block;
}

a {
  text-decoration: none;
}

.hide {
  display: none;
}

#page {
  min-height: 100vh;
}

a.black:hover {
  color: #006E7B;
}

.black {
  color: #000;
}

.green {
  color: #006E7B;
}

.fiolet {
  color: #74459B;
}

.fff {
  color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-brown {
  background-color: #F2EDE6;
}

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

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

.bg-green {
  background-color: #155B60;
}
.bg-green.pointer:hover {
  background-color: #58595B;
}

.bg-gr {
  background: -webkit-gradient(linear, left top, right top, from(#155B60), color-stop(50%, #006F7B), to(#13858A));
  background: linear-gradient(90deg, #155B60 0%, #006F7B 50%, #13858A 100%);
}

.bg-br {
  background-color: #DAEDED;
}

.def {
  color: #302D32;
}

a.def:hover {
  color: #006E7B;
}

.gray {
  color: #898A8A;
}

.gray-58-a a {
  color: #58595B;
}
.gray-58-a a:hover {
  color: #006E7B;
}

.gray-58 {
  color: #58595B;
}

.gray-58-a a {
  color: #58595B;
}
.gray-58-a a:hover {
  color: #006E7B;
}

.black-a a {
  color: #302D32;
}

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

/*

@media (max-width: 1605px) {
    .wrap {
        margin-left: 50px;
        margin-right: 50px;
    }
}
*/
.input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px 30px;
  font-family: "Gotham";
  font-size: 16px;
  color: #fff;
  width: 100%;
}
.input::-webkit-input-placeholder {
  color: #fff;
}
.input::-moz-placeholder {
  color: #fff;
}
.input:-moz-placeholder {
  color: #fff;
}
.input:-ms-input-placeholder {
  color: #fff;
}

.input2 {
  background-color: rgb(255, 255, 255);
  border: 1px solid #898A8A;
  border-radius: 10px;
  padding: 15px 25px;
  font-family: "Gotham";
  font-size: 16px;
  color: #302D32;
  width: 100%;
}
.input2::-webkit-input-placeholder {
  color: #898A8A;
}
.input2::-moz-placeholder {
  color: #898A8A;
}
.input2:-moz-placeholder {
  color: #898A8A;
}
.input2:-ms-input-placeholder {
  color: #898A8A;
}

textarea.input {
  height: 120px;
}

textarea.input2 {
  height: 100px;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid #898A8A;
  border-radius: 10px;
  padding: 15px 25px;
  font-family: "Gotham";
  font-size: 16px;
  color: #898A8A;
  width: 100%;
  background-image: url(../images/drop.svg);
  background-repeat: no-repeat;
  background-position: right 25px center;
}

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

.btn-a {
  width: 50px;
  height: 50px;
  border: 1px solid #D6E9FF;
}

.btn-ws:hover {
  border: 1px solid #DBF2E4;
  background: #DBF2E4;
}

.btn-tg:hover {
  border: 1px solid #D5EAF6;
  background: #D5EAF6;
}

.btn-vk:hover {
  border: 1px solid #D6E9FF;
  background: #D6E9FF;
}

.btn-tel:hover {
  border: 1px solid var(--Green_Gradient, #155B60);
  background: var(--Green_Gradient, linear-gradient(90deg, #155B60 0%, #006F7B 50%, #13858A 100%));
}
.btn-tel:hover path {
  stroke: #fff;
}

.btn.bg-gr:hover {
  background: -webkit-gradient(linear, left top, right top, from(#1D777D), color-stop(50%, #028897), to(#199FA5));
  background: linear-gradient(90deg, #1D777D 0%, #028897 50%, #199FA5 100%);
}

.btn {
  font-family: "Gotham";
  font-weight: bold;
  cursor: pointer;
  border-width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-50 {
  height: 50px;
}
.btn-60 {
  height: 60px;
}
.btn-70 {
  height: 70px;
}
.btn-ws {
  border-color: #DBF2E4;
}
.btn-tel {
  border-color: #155B60;
}
.btn-border-green {
  border: 1px solid #155B60;
}
.btn-border-green:hover {
  color: #fff;
  border: 1px solid #155B60;
  background: -webkit-gradient(linear, left top, right top, from(#155B60), color-stop(50%, #006F7B), to(#13858A));
  background: linear-gradient(90deg, #155B60 0%, #006F7B 50%, #13858A 100%);
}
.btn-border-fff {
  border: 1px solid #fff;
}
.btn-fff {
  border-width: 0;
}

.size-50 {
  width: 50px;
  height: 50px;
}

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

.w600 {
  width: 600px;
}

.open_search_js:hover path {
  stroke: #199FA5;
}

.header-menu > ul > li.has-drop > a {
  cursor: text;
}
.header-menu > ul > li.has-drop:hover path {
  fill: #006E7B;
}
.header-menu > ul > li:hover a {
  color: #006E7B;
}
.header-menu li:hover ul {
  display: block;
}
.header-menu li ul {
  position: absolute;
  top: 100%;
  left: -40px;
  width: 424px;
  padding: 25px 40px;
  border-radius: 0 0 15px 15px;
  background-color: #fff;
  z-index: 2;
  display: none;
}
.header-menu li ul li {
  margin-bottom: 20px;
  display: block;
}
.header-menu li ul li:last-child {
  margin-bottom: 0;
}
.header-menu li ul a {
  font-size: 16px;
  font-weight: 500;
  color: #58595B !important;
}
.header-menu li ul a:hover {
  color: #006E7B !important;
}
.header-menu a.active {
  color: #006E7B !important;
}

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

.sh {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.header-search {
  top: 100%;
  left: 0;
  border-top: 1px solid #F8F8F8;
  padding: 12px 50px;
}
.header-search input {
  border: 1px solid #898A8A;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 190%;
  font-family: "Gotham";
  color: #898A8A;
}
.header-search button {
  top: 0;
  right: 0;
  width: 75px;
  height: 100%;
  background-color: transparent;
  border-width: 0;
}

.mobile-search input {
  border: 1px solid #898A8A;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 190%;
  font-family: "Gotham";
  color: #302D32;
}
.mobile-search input::-webkit-input-placeholder {
  color: #898A8A;
}
.mobile-search input::-moz-placeholder {
  color: #898A8A;
}
.mobile-search input:-moz-placeholder {
  color: #898A8A;
}
.mobile-search input:-ms-input-placeholder {
  color: #898A8A;
}
.mobile-search button {
  top: 0;
  right: 0;
  width: 55px;
  height: 100%;
  background-color: transparent;
  border-width: 0;
}

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

.we {
  background-repeat: no-repeat;
  background-position: right 0;
}
.we-baner-1 {
  padding: 50px 60px;
  background-repeat: no-repeat;
  background-position: right bottom;
  min-height: 406px;
  border-radius: 30px 0px;
  background-color: #74459B;
  -webkit-box-shadow: 0px 119px 62.9px -96px rgba(116, 69, 155, 0.25);
          box-shadow: 0px 119px 62.9px -96px rgba(116, 69, 155, 0.25);
}
.we-baner-2 {
  background-color: #C7B299;
  min-height: 415px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.promo {
  padding: 50px 70px;
  -webkit-box-shadow: 0px 119px 62.9px -96px rgba(0, 110, 123, 0.25);
          box-shadow: 0px 119px 62.9px -96px rgba(0, 110, 123, 0.25);
}
.promo a {
  min-width: 252px;
}

.about-post .thumb img {
  margin-left: -20px;
}

.bg-decor-1 {
  right: 0;
  top: 80px;
  pointer-events: none;
  z-index: -1;
}

.home-screen-post {
  min-height: 690px;
}

.slider-home-nav-row {
  bottom: 95px;
  left: 0;
}

.slider-photo .draggable {
  margin: 0 -15px;
}
.slider-photo .slide {
  padding: 0 15px;
}
.slider-photo .slide a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slider-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.zoom {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.has-zoom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.has-zoom:hover:before {
  opacity: 1;
}
.has-zoom:hover .zoom {
  opacity: 1;
}

.slider-doc .draggable {
  margin: 0 -15px;
}
.slider-doc .slide {
  padding: 0 15px;
}
.slider-doc .slide a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.slider-doc .slide a:hover:before {
  opacity: 1;
}
.slider-doc .slide a:hover .zoom {
  opacity: 1;
}
.slider-doc img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (min-width: 993px) {
  .slider-related .draggable {
    margin: 0 -15px;
  }
  .slider-related .slide {
    padding: 0 15px 4px 15px;
    height: auto !important;
    float: none;
  }
  .slider-related .for-info-item:hover {
    -webkit-filter: none;
            filter: none;
  }
  .slider-related .slick-track {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .service-price ul {
    gap: 0 30px;
  }
  .service-price li {
    padding: 18px 15px;
  }
  .service-price li:nth-child(4n+3), .service-price li:nth-child(4n+4) {
    background-color: #F8F8F8;
  }
  .pricetable li {
    padding: 18px 15px;
  }
  .pricetable li:nth-child(2n+2) {
    background-color: #fff;
  }
  .pricetableinpage li {
    padding: 18px 15px;
  }
  .pricetableinpage li:nth-child(2n+2) {
    background-color: #F8F8F8;
  }
  .price-accordion-item .pricetable li {
    padding: 18px 15px;
  }
  .price-accordion-item .pricetable li:nth-child(2n+2) {
    background-color: #F8F8F8;
  }
}
.video-home-item {
  padding: 40px 60px;
  min-height: 463px;
}
.video-home-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.video-home-item .dif {
  padding: 5px 10px;
  color: #74459B;
}
.video-home-play {
  width: 84px;
  height: 84px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video-home-play svg {
  width: auto;
  height: 32px;
}
.video-home-play-small {
  width: 34px;
  height: 34px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video-home-play-small svg {
  height: 16px;
}

.for-info .info {
  padding: 40px 30px 20px;
}
.for-info .date {
  padding: 5px 10px;
  background-color: #FAF8FD;
  color: #74459B;
}

.foot-menu li {
  display: block;
  margin-bottom: 14px;
}
.foot-menu .current-menu-item a {
  color: #006E7B;
}
.foot-menu a {
  color: #898A8A;
}
.foot-menu a:hover {
  color: #155B60;
}

.foot-col-1 .green {
  text-decoration: underline;
}
.foot-col-1 .green:hover {
  text-decoration: none;
}

.foot-col-4 {
  width: 380px;
}

.triger-menu.active a {
  color: #006E7B;
}
.triger-menu.active path {
  fill: #006E7B;
}

.menu-service {
  background: rgba(0, 0, 0, 0.7);
  top: 162px;
  left: 0;
  height: calc(100vh - 162px);
}

.menu-service-inner > ul > li > a:after {
  content: "";
  display: block;
  background-image: url(../images/drop2.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
}

.menu-service-inner > ul > li:hover > a:after {
  content: "";
  opacity: 1;
}

.menu-service-inner > ul > li li > a {
  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;
  gap: 5px;
}
.menu-service-inner > ul > li li > a:hover:before {
  content: "";
  background-image: url(../images/menu-hover.svg);
}
.menu-service-inner > ul > li li > a:before {
  content: "";
  background-image: url(../images/menu-def.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 24px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
.menu-service-inner > ul > li li > a:after {
  visibility: hidden;
  opacity: 0;
  display: block;
  background-image: url(../images/menu-hover.svg);
}

.menu-service-inner {
  background-color: #FBFBFB;
  height: 100%;
  /* &:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      width: 25%;
      height: 100%;
      background-color: #fff;
  }*/
}
.menu-service-inner li:hover a {
  color: #006E7B;
}
.menu-service-inner li {
  display: block;
}
.menu-service-inner > ul {
  padding: 40px 0;
  z-index: 2;
  width: 25%;
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
}
.menu-service-inner > ul::-webkit-scrollbar {
  width: 5px;
}
.menu-service-inner > ul::-webkit-scrollbar-track {
  background: #898A8A;
}
.menu-service-inner > ul::-webkit-scrollbar-thumb {
  background-color: #006E7B;
}
.menu-service-inner > ul > li {
  padding: 10px 55px;
  width: 100%;
}
.menu-service-inner > ul > li a {
  font-size: 16px;
  font-weight: bold;
  color: #58595B;
  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;
}
.menu-service-inner > ul > li > ul {
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  padding: 50px 35px;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu-service-inner > ul > li > ul li {
  width: 50%;
  margin-bottom: 20px;
  padding: 0 10px;
}
.menu-service-inner > ul > li > ul a {
  color: #898A8A !important;
  font-size: 14px;
  font-weight: 500;
}
.menu-service-inner > ul > li > ul a:hover {
  color: #006E7B !important;
}
.menu-service-inner > ul > li.active ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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: 10px;
}
.bcream a {
  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;
  gap: 10px;
  color: #302D32;
}
.bcream a:after {
  content: "";
  background-image: url(../images/arrow-bcream.svg);
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  display: block;
}

.w400 {
  width: 400px;
}

.service-promo span {
  bottom: 40px;
  left: 40px;
}

.page-nav a {
  padding-bottom: 18px;
  border-bottom: 2px solid transparent;
}
.page-nav .active {
  color: #006E7B;
  border-bottom-color: #006E7B;
}

.service-price-in-page li {
  padding: 12px 0;
}

.text .video-home-item {
  padding: 60px;
}

.prove {
  padding: 50px 20px 40px 80px;
  background-color: #E3D8CB;
}
.prove .thumb {
  bottom: 0;
  right: 0;
}

@media (min-width: 993px) {
  .slider-work-next {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    top: 50%;
    left: calc(100% + 63px);
  }
  .slider-work-prev {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    top: 50%;
    right: calc(100% + 63px);
  }
  .slider-work .slick-track {
    padding-bottom: 5px;
  }
  .slider-work .draggable {
    margin: 0 -15px;
  }
  .slider-work .slide {
    padding: 0 15px;
  }
  .slider-staff .draggable {
    overflow: visible;
    margin: 0 -15px;
  }
  .slider-staff .slide {
    padding: 0 15px;
  }
  .slider-photo .draggable {
    overflow: visible;
  }
}
@media (min-width: 766px) {
  .slider-sale .draggable {
    overflow: visible;
    margin: 0 -15px;
  }
  .slider-sale .slide {
    padding: 0 15px;
  }
}
.slider-arrow.bg-fff:hover {
  background-color: #006E7B;
}
.slider-arrow.bg-fff:hover path {
  stroke: #fff;
}
.slider-arrow path {
  stroke: #58595B;
}

.slider-photo-prev {
  top: 50%;
  left: -125px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.slider-photo-next {
  top: 50%;
  right: -125px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.related-service {
  gap: 15px 30px;
}
.related-service a:hover path {
  stroke: #006E7B;
}

@media (min-width: 993px) {
  .staff-item:hover {
    z-index: 2 !important;
  }
  .staff-item:hover .inner {
    opacity: 1;
    visibility: visible;
  }
  .staff-item:hover .inner,
  .staff-item:hover .staff-item-bg div {
    opacity: 1;
    visibility: visible;
  }
  .staff-item-bg div {
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
  .staff-item .inner {
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
  }
  .faq dl {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .faq dl:last-child {
    border-bottom-width: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .faq .icon {
    width: 122px;
    height: 122px;
  }
  .faq .title {
    min-height: 100px;
    padding: 20px 30px;
  }
  .faq .pic {
    top: 50%;
    right: calc(100% - 1px);
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .faq .pic-2 {
    top: 26px;
    left: calc(100% - 1px);
  }
  .faq .text {
    background-color: #F2EDE6;
  }
}
.slider-reviews-item .text {
  margin-top: -1px;
}

.filter .active {
  background-color: #006E7B;
  color: #fff;
}
.filter .block {
  padding: 15px 22px;
  border-width: 0;
}
.filter .block:hover {
  background-color: #006E7B;
  color: #fff;
}

.price-accordion-item.active .a-1 {
  display: none;
}
.price-accordion-item.active .a-2 {
  display: block;
}
.price-accordion-item .inner {
  padding: 0 30px 25px 30px;
}
.price-accordion-item li {
  padding: 18px 15px;
}
.price-accordion-item .icon svg {
  width: auto;
  height: 15px;
}

.staff-item-2:hover .thumb span {
  opacity: 1;
}
.staff-item-2 .thumb span {
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.doctor-text h2 {
  margin: 50px 0;
}
.doctor-text h2:first-child {
  margin-top: 0;
}

.video-item-2-bg {
  top: 0;
  left: 0;
}
.video-item-2 a {
  height: 175px;
}

.soder a {
  border-bottom: 1px dashed #006E7B;
}
.soder a:hover {
  border-bottom-color: transparent;
}

.my-form {
  border-radius: 30px 0px;
  background: var(--Green_Gradient, linear-gradient(90deg, #155B60 0%, #006F7B 50%, #13858A 100%));
  -webkit-box-shadow: 0px 119px 62.9px -96px rgba(0, 110, 123, 0.25);
          box-shadow: 0px 119px 62.9px -96px rgba(0, 110, 123, 0.25);
}
.my-form .inner {
  background-image: url(../images/woman.png);
  background-repeat: no-repeat;
  background-position: right 0;
}
.my-form.vid-2 .inner {
  background-position: calc(100% + 150px) 0;
}

.input-file {
  position: relative;
  display: inline-block;
}
.input-file .flex:before {
  content: "";
  background-image: url(../images/file.svg);
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.input-file span {
  position: relative;
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.map {
  height: 637px;
}

.contact-box {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-790px, -50%);
          transform: translate(-790px, -50%);
  width: 100%;
  max-width: 700px;
}

.filterDiv {
  display: none;
}
.filterDiv.show {
  display: block;
}

.popup {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  width: 600px;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup-bg {
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
}
.popup-bg.active {
  opacity: 1;
  visibility: visible;
}
.popup-close {
  top: -30px;
  right: -30px;
}
.popup-close:hover path {
  fill: #006E7B;
}

#call-me .input {
  width: 470px;
}

#order .input {
  width: 100%;
}

.services-on-list {
  margin-right: -10px;
}

.services-on-item {
  width: calc(50% - 10px);
}
.services-on-item svg {
  height: 30px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.services-on-item a {
  padding: 25px 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 993px) {
  .readmore:hover {
    color: #302d32;
  }
  .readmore:hover path {
    fill: #302d32;
  }
  .we-rating-item {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .we-rating-item:hover {
    -webkit-filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
  }
  .staff-item-2:hover {
    -webkit-filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
  }
  .for-info-item {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .for-info-item:hover {
    -webkit-filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 32px 83.5px rgba(0, 0, 0, 0.1));
  }
  .service-list-home a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .service-list-home a:hover {
    -webkit-box-shadow: 0px 32px 83.5px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 32px 83.5px 0px rgba(0, 0, 0, 0.1);
  }
  .work-item:hover .overlay {
    opacity: 1;
    visibility: visible;
  }
  .work-item .overlay {
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
.content {
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  /*

  &-right {
      .service-promo {
          &:first-child {
              position: sticky;
              top: 10px;
          }
      }
  }
  */
}

.collapsed {
  padding-bottom: 51px;
}
.collapsed:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), to(#F8F8F8));
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #F8F8F8 100%);
  pointer-events: none;
  z-index: 4;
}

.btn-open-content {
  display: none;
  bottom: 0;
  left: 0;
}
.btn-open-content span {
  border-bottom: 1px dashed #006E7B;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-acceptance input {
  display: none;
}
.wpcf7-acceptance input:checked + .wpcf7-list-item-label:before {
  background-position: center center;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
  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;
}
.wpcf7-acceptance .wpcf7-list-item-label:before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #F8F8F8;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: -100px 0;
  background-size: auto 20px;
  margin-right: 8px;
  border-radius: 8px;
}

img.emoji {
  display: inline-block !important;
  width: auto !important;
  height: 15px !important;
}

.grecaptcha-badge {
  display: none !important;
}

.we-social-home {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-color: #74459B;
  padding: 70px;
  -webkit-box-shadow: 0px 119px 62.9px -96px rgba(95, 49, 134, 0.25);
          box-shadow: 0px 119px 62.9px -96px rgba(95, 49, 134, 0.25);
}
.we-social-home dd a {
  width: 66px;
  height: 64px;
}
.we-social-home dd a:hover {
  opacity: 0.9;
}
.we-social-home-pic {
  bottom: 0;
  right: 0;
  height: 100%;
}
.we-social-home-pic img {
  width: auto;
  max-height: 100%;
}

@media (max-width: 1600px) {
  .we-social-home-pic {
    right: -100px;
  }
}
@media (max-width: 1260px) {
  .we-social-home {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    padding: 50px;
  }
}
@media (max-width: 760px) {
  .we-social-home {
    padding: 50px 20px 0px 20px;
  }
  .we-social-home-pic {
    position: static;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .we-social-home-pic img {
    max-width: 250px;
    height: auto;
  }
  .we-social-home dd a {
    zoom: 0.8;
  }
}
.single-video,
.has-iframe {
  display: -ms-grid;
  display: grid;
}
.single-video iframe,
.has-iframe iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

@media (max-width: 550px) {
  #CalltouchWidgetFrame {
    inset: auto 0 10px auto !important;
  }
}
#CalltouchWidgetFrame.active,
.medflex-round-widget.active {
  visibility: hidden;
  pointer-events: none;
}

/* 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;
}
.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;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  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;
}

.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;
  z-index: 4;
}
.slick-prev:hover,
.slick-next:hover {
  color: #000;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-disabled {
  visibility: hidden !important;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: 15px;
  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;
}

.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: bold;
  position: relative !important;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 20px !important;
  margin: 0 !important;
  color: #fff;
  background-color: indianred;
  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;
}

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;
  }
}
/* Scss Document */
@media (max-width: 1700px) {
  .wrap {
    max-width: 1375px;
  }
  .slider-work-next {
    left: calc(100% + 15px);
  }
  .slider-work-prev {
    right: calc(100% + 15px);
  }
  .advantages > * {
    width: calc(50% - var(--px));
  }
  .prove .thumb {
    height: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .prove .thumb img {
    width: auto !important;
    height: 70% !important;
  }
  .contact-box {
    -webkit-transform: translate(-680px, -50%);
            transform: translate(-680px, -50%);
  }
}
@media (max-width: 1550px) {
  .screen-other-page {
    background-position: calc(50% - 100px) 0;
  }
}
@media (max-width: 1405px) {
  .wrap {
    margin-left: 20px;
    margin-right: 20px;
  }
  .contact-box {
    -webkit-transform: translate(0px, -50%);
            transform: translate(0px, -50%);
    left: 20px;
  }
  .home-screen-post {
    min-height: 550px;
  }
  .slider-home-nav-row {
    bottom: 45px;
  }
}
@media (max-width: 1320px) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 14px;
    --font16: 15px;
    --font17: 17px;
    --font18: 18px;
    --font20: 18px;
    --font22: 22px;
    --font24: 22px;
    --font32: 25px;
    --font38: 32px;
    --font42: 35px;
    --font64: 44px;
  }
  .p-40 {
    padding: 25px;
  }
  .mb-60 {
    margin-bottom: 40px;
  }
  .mr-100 {
    margin-right: 50px;
  }
  .wrap {
    margin-left: 20px;
    margin-right: 20px;
  }
  .pr-50 {
    padding-right: 20px;
  }
  .pl-50 {
    padding-left: 20px;
  }
  .header-search {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .gap-30 {
    gap: 15px;
  }
  .logo svg {
    height: 60px;
    width: auto;
  }
  .header-adres .fz16 {
    font-size: 14px;
  }
  .header-contact .fz14 {
    font-size: 12px;
  }
  .header-menu .fz18 {
    font-size: 16px;
  }
  .menu-service {
    top: 146px;
    height: calc(100% - 146px);
  }
  .menu-service-inner:before {
    content: "";
    width: 33%;
  }
  .menu-service-inner > ul > li {
    width: 33%;
  }
  .menu-service-inner > ul > li > ul {
    width: 67%;
    left: 33%;
  }
  .menu-service-inner > ul > li a {
    font-size: 16px;
  }
  .menu-service-inner > ul > li > ul a {
    font-size: 14px;
  }
  .screen-post {
    max-width: 600px !important;
  }
  .we {
    background-size: 32% auto;
  }
  .we-baner-1 {
    padding: 40px;
  }
  .we-baner-2 .fz38 {
    font-size: 25px;
  }
  .promo {
    padding: 40px;
  }
  .text blockquote {
    font-size: 25px;
  }
  .text blockquote:before {
    font-size: 80px;
  }
  .video-home-item {
    min-height: 350px;
  }
  .for-info .info {
    padding: 20px;
  }
  .foot-col-4 {
    width: 320px;
  }
  .related-service {
    margin-right: 0;
  }
  .we {
    display: block;
  }
  .we > * {
    width: calc(100% - var(--px));
  }
  .we-baner-2 {
    background-size: cover;
  }
}
@media (max-width: 1260px) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 14px;
    --font16: 15px;
    --font17: 16px;
    --font18: 16px;
    --font20: 16px;
    --font22: 22px;
    --font24: 22px;
    --font32: 25px;
    --font38: 32px;
    --font42: 35px;
    --font64: 38px;
  }
  .we-rating-item .pic img {
    max-width: 80%;
    height: auto;
  }
  .video-home-item {
    height: 300px;
    padding: 25px;
  }
  .screen {
    background-position: calc(50% - 10px) 0;
  }
  .screen-post {
    max-width: 50% !important;
  }
  .header-adres {
    display: none;
  }
  .header-contact .fz14 {
    font-size: 11px;
  }
  .menu-service-inner > ul {
    padding: 20px 0;
  }
  .menu-service-inner > ul > li {
    padding: 10px 20px;
  }
  .menu-service-inner > ul > li > ul {
    padding: 30px 20px;
  }
  .foot {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .foot .mb-40 {
    margin-bottom: 25px;
  }
  .foot-col-4 {
    width: 100%;
    margin-top: 40px;
  }
  .foot-col-4 .btn {
    width: 310px;
  }
  .foot-menu li {
    margin-bottom: 7px;
  }
  .content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-right {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    gap: 30px;
  }
  #id-reviews-slider-box {
    padding: 0;
  }
  #id-reviews-slider-box .ml-100 {
    margin-left: 50px;
  }
  #id-reviews-slider-box .mr-100 {
    margin-right: 50px;
  }
  .work-category > *,
  .video-category > *,
  .staff-category > * {
    width: calc(33.3333333333% - var(--px));
  }
  .doctor-page-row .thumb {
    width: 38%;
  }
  .doctor-text {
    padding: 30px;
  }
  .doctor-text h2 {
    margin: 30px 0;
  }
  .doctor-text h2:first-child {
    margin-top: 0;
  }
  .slider-work-prev,
  .slider-work-next {
    display: none !important;
  }
}
@media (max-width: 992px) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 13px;
    --font15: 14px;
    --font16: 15px;
    --font17: 16px;
    --font18: 16px;
    --font20: 16px;
    --font22: 18px;
    --font24: 20px;
    --font32: 20px;
    --font38: 27px;
    --font42: 30px;
    --font64: 32px;
  }
  .p-60 {
    padding: 40px;
  }
  .mb-0m {
    margin-bottom: 0;
  }
  .mb-10m {
    margin-bottom: 10px;
  }
  .mb-20m {
    margin-bottom: 20px;
  }
  .mb-30m {
    margin-bottom: 30px;
  }
  .mb-160 {
    margin-bottom: 80px;
  }
  .mb-100,
  .mb-130 {
    margin-bottom: 40px;
  }
  #page {
    padding-top: 70px;
  }
  header {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
  }
  .pr-65 {
    padding-right: 35px;
  }
  .pl-65 {
    padding-left: 35px;
  }
  .round-10 {
    border-radius: 6px;
  }
  .round-15 {
    border-radius: 10px;
  }
  .header-button {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-button .btn-50 {
    height: 40px;
  }
  .header-social {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .logo svg {
    height: 40px;
    width: auto;
  }
  .btn-a {
    width: 40px;
    height: 40px;
  }
  .btn-open-menu svg {
    width: auto;
    height: 24px;
  }
  .btn-open-menu.active .expand-on {
    display: none;
  }
  .btn-open-menu.active .expand-off {
    display: block;
  }
  .screen-post {
    padding: 50px 0 !important;
    max-width: 70% !important;
  }
  .screen-txt {
    font-size: 14px;
    max-width: 400px;
  }
  .btn-60 {
    height: 50px;
  }
  .service-price ul,
  .we,
  .about-post {
    margin-right: 0;
  }
  .service-price ul > *,
  .we > *,
  .about-post > * {
    width: 100%;
  }
  .service-price ul > *:first-child,
  .we > *:first-child,
  .about-post > *:first-child {
    margin-bottom: 20px;
  }
  .service-list-home > * {
    width: calc(33.333% - var(--px));
  }
  .text blockquote {
    font-size: 20px;
  }
  .text blockquote:before {
    font-size: 80px;
  }
  .content-left {
    width: 100%;
  }
  .service-price {
    padding: 40px 0;
  }
  .service-price ul {
    gap: 0 20px;
  }
  .service-price li {
    padding: 12px 20px;
  }
  .service-price li:nth-child(2n+2) {
    background-color: #F8F8F8;
  }
  .pricetable li {
    padding: 12px 20px;
  }
  .pricetable li:nth-child(2n+2) {
    background-color: #fff;
  }
  .pricetableinpage li {
    padding: 12px 20px;
  }
  .pricetableinpage li:nth-child(2n+2) {
    background-color: #F8F8F8;
  }
  .price-accordion-item .pricetable li {
    padding: 12px 20px;
  }
  .price-accordion-item .pricetable li:nth-child(2n+2) {
    background-color: #F8F8F8;
  }
  .video-home-play {
    zoom: 0.6;
  }
  .video-home-item {
    padding: 20px;
    min-height: 220px;
    height: 220px;
  }
  .video-home-item .fz32 {
    font-size: 16px;
  }
  .for-info > * {
    width: calc(50% - var(--px));
  }
  .rating img {
    zoom: 0.6;
  }
  .logo-footer svg {
    width: auto;
    height: 60px;
  }
  .prove {
    padding: 40px 30px;
  }
  .prove .thumb {
    height: 100%;
  }
  .prove .thumb img {
    width: auto !important;
    height: 70% !important;
  }
  .staff-item .inner {
    position: relative;
    padding: 15px;
  }
  .faq dl {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .faq dl:last-child {
    border-bottom-width: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .faq dt {
    gap: 20px;
  }
  .faq .icon {
    width: 58px;
    height: 58px;
  }
  .faq .icon svg {
    width: auto;
    height: 30px;
  }
  .faq .title {
    padding: 20px 15px;
  }
  .faq .pic {
    top: 50%;
    right: calc(100% - 1px);
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    height: 100%;
  }
  .faq .pic svg {
    width: auto;
    max-height: 100%;
  }
  .faq .pic-2 {
    top: 26px;
    left: calc(100% - 1px);
  }
  .faq .text {
    background-color: #F2EDE6;
  }
  .touch_992 {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: -20px;
    gap: 0;
    padding-bottom: 10px;
  }
  .touch_992::-webkit-scrollbar {
    height: 3px;
  }
  .touch_992::-webkit-scrollbar-track {
    background: #EAEAEA;
  }
  .touch_992::-webkit-scrollbar-thumb {
    background-color: #C7B299;
  }
  .touch_992 > * {
    width: 250px !important;
    margin-right: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .touch_992 > * {
    width: 250px;
    margin-right: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .work-category > *,
  .video-category > *,
  .staff-category > * {
    width: calc(50% - var(--px));
  }
  #slider-staff .staff-item {
    height: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #slider-staff .inner {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .doctor-page-row {
    gap: 30px;
  }
  .doctor-page-row .btn {
    height: 50px;
    padding: 10px 25px;
  }
  .doctor-page-row .gap-30 {
    gap: 15px;
  }
  .doctor-page-row .thumb {
    width: 50%;
  }
  .my-form .inner {
    background-size: auto 100%;
  }
  .page-404 {
    padding: 70px 0 100px 0;
  }
  .page-404-pic img {
    width: auto;
    height: 250px;
  }
  .contact-box {
    position: static;
    -webkit-transform: translate(0px, 0%);
            transform: translate(0px, 0%);
    left: 0px;
    border-radius: 15px;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
  .map {
    height: 300px;
  }
  .screen-post {
    min-height: 450px;
    height: auto;
  }
  .slider-home-nav-row {
    bottom: 20px;
  }
  .popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0);
            transform: translate(0);
    border-radius: 0 !important;
    padding: 50px 20px 20px 20px;
  }
  .popup-close {
    top: 10px;
    right: 10px;
  }
  .popup-close svg {
    width: auto;
    height: 20px;
  }
  .popup-close path {
    fill: #000;
  }
  .input2 {
    font-size: 14px;
  }
  header {
    position: relative;
    z-index: 13;
  }
  .mobile-panel-hide {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.67);
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
    z-index: 10;
    padding-top: 70px;
  }
  .mobile-panel-hide.active {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-panel-hide .inner {
    width: 100%;
    overflow-y: auto;
  }
  .header-top {
    position: relative;
    z-index: 12;
  }
  .mobile-menu {
    font-size: 14px;
    font-weight: 500;
  }
  .mobile-menu li {
    display: block;
  }
  .mobile-menu li ul {
    display: none;
    margin: 10px 20px;
  }
  .mobile-menu li li:last-child {
    border-bottom-width: 0;
  }
  .mobile-menu li li li {
    margin-bottom: 8px;
  }
  .mobile-menu li li li:last-child {
    margin-bottom: 0;
  }
  .mobile-menu li li li a {
    font-size: 12px;
    font-weight: 500;
    color: #898A8A;
    padding: 5px 0;
  }
  .mobile-menu a {
    display: block;
    color: #000;
    font-weight: 500;
    padding: 10px 20px;
  }
  .mobile-menu > ul > li.open > a {
    color: #006E7B;
    background-image: url(../images/m-drop-active.svg) !important;
  }
  .mobile-menu > ul > li > ul > li.open > a {
    color: #006E7B;
  }
  .mobile-menu > ul > li > ul > li.open > a:before {
    background-image: url(../images/m-lvl-1-active.svg);
  }
  .mobile-menu > ul > li > ul > li > a {
    padding: 8px 0px;
    font-size: 14px;
    font-weight: 500;
    color: #58595B;
    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;
    gap: 5px;
  }
  .mobile-menu > ul > li > ul > li > a:before {
    content: "";
    background-image: url(../images/m-lvl-1.svg);
    background-repeat: no-repeat;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 18px;
    height: 11px;
  }
  .mobile-menu > ul > li.menu-item-has-children > a {
    background-image: url(../images/m-drop.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
  }
  .mobile-menu > ul > li > ul > li > ul {
    background-color: #F8F8F8;
    margin: 0 -20px;
    padding: 20px;
  }
  .mobile-menu > ul > li > ul > li > ul > li.current-menu-item a {
    color: #006E7B;
  }
  .mobile-menu > ul > li > ul > li > ul > li.current-menu-item a:before {
    background-image: url(../images/m-lvl-2-active.svg);
  }
  .mobile-menu > ul > li > ul > li > ul > li > a {
    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;
    gap: 5px;
  }
  .mobile-menu > ul > li > ul > li > ul > li > a:before {
    content: "";
    background-image: url(../images/m-lvl-2.svg);
    background-repeat: no-repeat;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 24px;
    height: 16px;
  }
  .slider-photo .slide {
    padding: 0px;
  }
  .slider-doc .slide {
    padding: 0;
  }
  .close-panel {
    right: 0;
    top: 0;
    padding: 5px;
  }
  .header-contact-tel a {
    font-size: 14px;
  }
  .header-social,
  header .gap-30 {
    gap: 5px;
  }
  .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) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 13px;
    --font15: 14px;
    --font16: 15px;
    --font17: 16px;
    --font18: 16px;
    --font20: 16px;
    --font22: 18px;
    --font24: 18px;
    --font32: 18px;
    --font38: 22px;
    --font42: 24px;
    --font64: 32px;
  }
  .p-60 {
    padding: 30px;
  }
  .p-40 {
    padding: 20px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .text blockquote {
    font-size: 16px;
  }
  .text blockquote:before {
    font-size: 80px;
  }
  .touch_767 {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: -20px;
    gap: 0;
    padding-bottom: 10px;
  }
  .touch_767::-webkit-scrollbar {
    height: 3px;
  }
  .touch_767::-webkit-scrollbar-track {
    background: #EAEAEA;
  }
  .touch_767::-webkit-scrollbar-thumb {
    background-color: #C7B299;
  }
  .touch_767 > * {
    width: 250px !important;
    margin-right: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .touch_767 .staff-item-2 {
    padding: 20px;
  }
  .price-accordion-item {
    border-radius: 0;
  }
  .service-list-home > * {
    width: calc(50% - var(--px));
  }
  .screen-post {
    max-width: 100% !important;
  }
  .name-row.block_767 .btn {
    width: auto;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 15px;
  }
  .foot-col-1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
    width: 100%;
  }
  .page-nav {
    gap: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -20px;
    padding-bottom: 4px;
  }
  .page-nav a {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-bottom: 7px;
  }
  .prove {
    padding: 20px;
  }
  .prove .thumb {
    display: none;
  }
  #id-reviews-slider-box .mr-100 {
    margin-right: 0;
  }
  #id-reviews-slider-box .ml-100 {
    margin-left: 0;
  }
  #slider-reviews {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-right: -20px;
    gap: 0;
  }
  #slider-reviews > * {
    width: 300px;
    margin-right: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #slider-reviews .text {
    padding: 20px;
  }
  .text .video-home-item {
    padding: 20px;
  }
  .price-accordion {
    margin-left: -20px;
    margin-right: -20px;
  }
  .price-accordion .p-25 {
    padding: 15px;
  }
  .price-accordion .gap-30 {
    gap: 15px;
  }
  .price-accordion .inner {
    padding: 0 15px 15px 15px;
  }
  .price-accordion .inner ul {
    font-size: 13px;
  }
  .my-form .inner {
    background-image: none !important;
  }
  .fz14m {
    font-size: 14px;
  }
  .page-404 {
    padding: 50px 0 100px 0;
  }
  .page-404-pic img {
    width: 250px;
    height: auto;
  }
  .page-404 .fz42 {
    font-size: 16px;
  }
  .advantages > * {
    width: calc(100% - var(--px));
  }
  .services-on-item {
    width: calc(100% - 10px);
  }
  .services-on-item a {
    padding: 15px;
    gap: 15px;
  }
  .step-item {
    margin-bottom: 20px;
  }
  .step-item .pic {
    margin-bottom: 20px;
  }
  #page {
    padding-top: 127px;
  }
  .btn-header-order {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-top {
    -webkit-box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25);
    gap: 4px;
  }
  .header-top .logo {
    width: 168px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
  }
  .header-contact-tel {
    overflow: hidden;
  }
  .header-contact-tel a {
    width: 0;
    height: 14px;
    display: block;
  }
  .header-bottom-mobile .btn {
    height: 37px;
  }
  header .header-button {
    gap: 5px;
  }
  header.header-scroll .header-contact {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
  }
  header.header-scroll .header-contact-tel {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
  }
  header.header-scroll .header-contact-tel a {
    width: 145px;
    margin-left: auto;
    margin-right: auto;
  }
  header.header-scroll .logo {
    width: 32px;
  }
  header.header-scroll .header-button {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    gap: 5px;
  }
  header.header-scroll .header-bottom-mobile {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
  .btn-ws-m {
    border: 1px solid #25D366;
  }
  .slides-numbers {
    display: none !important;
  }
  .screen-post {
    height: auto;
    min-height: 0;
    padding: 0 0 20px 0 !important;
  }
  .mobile-top .pic {
    margin-left: -20px;
    margin-right: -20px;
  }
  .mobile-top .pic img {
    width: 100%;
    height: auto;
  }
  #slider-home .slider-arrow {
    top: 50%;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  #slider-home .slider-home-prev {
    left: 0px;
  }
  #slider-home .slider-home-next {
    right: 0px;
  }
  #slider-home .screen {
    background-image: none !important;
    background-color: transparent;
  }
  .text.fz14m ul li:before {
    top: 6px;
  }
  .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) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 13px;
    --font15: 14px;
    --font16: 15px;
    --font17: 16px;
    --font18: 16px;
    --font20: 16px;
    --font22: 18px;
    --font24: 18px;
    --font32: 18px;
    --font38: 22px;
    --font42: 24px;
    --font64: 28px;
  }
  .p-30 {
    padding: 20px;
  }
  .p-60 {
    padding: 20px;
  }
  .popup .mb-20 {
    margin-bottom: 15px;
  }
  .popup .btn-70 {
    height: 60px;
    width: 100%;
  }
  .content-row {
    gap: 50px;
  }
  .content-left > *:last-child {
    margin-bottom: 0;
  }
  .sale-item .info {
    padding: 20px;
  }
  .doctor-short {
    padding: 15px;
  }
  .doctor-short .ava {
    margin-bottom: 10px;
  }
  .mb-160 {
    margin-bottom: 60px;
  }
  .name-row.mb-50,
  .name-block.mb-50 {
    margin-bottom: 30px;
  }
  .doctor-text {
    margin-left: -20px;
    margin-right: -20px;
    padding: 30px 20px;
  }
  .doctor-page-row .thumb {
    width: 100%;
  }
  .bcream.mt-50 {
    margin-top: 25px;
  }
  .screen-post.pt-55 {
    padding-top: 25px !important;
  }
  .filter {
    gap: 7px;
  }
  .filter .block {
    padding: 10px 15px;
  }
  .work-category > *,
  .video-category > *,
  .staff-category > * {
    width: calc(100% - var(--px));
  }
  .screen-other-page {
    background-image: none !important;
    background-color: #e9f5f5;
  }
  .lh190 {
    line-height: 150%;
  }
  #id-related-service {
    margin-right: 0;
  }
  .name-row.block_550 .btn {
    width: auto;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 15px;
  }
  .service-price {
    padding: 20px 0;
  }
  .service-price ul {
    font-size: 13px;
  }
  .round-s {
    border-radius: 15px 0 15px 0;
  }
  .promo {
    padding: 20px;
  }
  .promo .fz42 {
    font-size: 20px;
  }
  .we-row-2 {
    display: block;
  }
  .we-row-2 .ll {
    width: 100%;
  }
  .we-row,
  .we-row-2 {
    margin-right: 0;
    margin-bottom: 0;
  }
  .we-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .we-item .mb-20 {
    margin-bottom: 10px;
  }
  .screen .btn-play {
    margin-top: 10px;
  }
  .text ul li:before {
    top: 7px;
  }
  .my-form-row {
    margin-bottom: 20px;
  }
  .my-form .btn {
    width: 100%;
  }
  .input {
    padding: 15px;
    font-size: 14px;
  }
  .foot-col-2 {
    margin-bottom: 30px;
  }
  .we-baner-1 {
    background-image: none !important;
    overflow: hidden;
  }
  .we-baner-1 img {
    width: 100%;
    height: auto;
    display: block;
  }
  .we-baner-1 .m-pic {
    margin-right: -42px;
    margin-left: -40px;
    margin-bottom: -42px;
  }
  .block_550,
  .show_550 {
    display: block;
  }
  .hide_550 {
    display: none;
  }
}