@charset "UTF-8";
/* Scss Document */
.f2 {
  font-family: "IBM Plex Sans", sans-serif;
}

:root {
  --px: 20px;
  --font11: 11px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font20: 20px;
  --font24: 24px;
  --font28: 28px;
  --font32: 32px;
  --font40: 40px;
  --font48: 48px;
}

.fz11 {
  font-size: var(--font11);
}

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

.fz28 {
  font-size: var(--font28);
}

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

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

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

.fz48 {
  font-size: var(--font48);
}

.it {
  font-style: italic;
}

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

.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-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.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-21 {
  z-index: 21;
}

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

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

.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-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: clamp(8px, 0.78125vw, 100%);
}

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

.round-20 {
  border-radius: clamp(8px, 1.0416666667vw, 100%);
}

.round-25 {
  border-radius: clamp(8px, 1.3020833333vw, 100%);
}

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

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

.round-40 {
  border-radius: clamp(10px, 2.0833333333vw, 100%);
}

.round-45 {
  border-radius: clamp(10px, 2.34375vw, 100%);
}

.round-50 {
  border-radius: clamp(10px, 2.6041666667vw, 100%);
}

.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: "Manrope", sans-serif;
  outline: none;
}

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

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

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

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

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

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

.mb-40 {
  margin-bottom: 2.0833333333vw;
}

.mb-45 {
  margin-bottom: 2.34375vw;
}

.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: clamp(50px, 4.6875vw, 100%);
}

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

.mb-100 {
  margin-bottom: clamp(50px, 5.2083333333vw, 100%);
}

.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: clamp(50px, 4.6875vw, 100%);
}

.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: 4.1666666667vw;
}

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

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

h1 {
  font-size: var(--font40);
}

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

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

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

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

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

h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: #2B6CB0;
  line-height: 120%;
  margin-top: 20px;
}
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

.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 h1, .text h2, .text h3, .text h4, .text h5 {
  line-height: 120%;
  color: #2B6CB0;
}
.text img {
  max-width: 100% !important;
  height: auto !important;
}
.text ul {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
.text ul li {
  padding-left: 40px;
  background-image: url(../images/arrow-li.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: var(--font16);
  display: block;
  min-height: 32px;
  padding-top: 3px;
}
.text ul ul {
  margin-top: 25px;
  margin-left: 15px;
}
.text ol {
  margin-left: 0px;
  list-style-position: inside;
}
.text ul ul li {
  background-image: none;
  padding-left: 0px;
  list-style-type: square;
}
.text p:last-child {
  margin-bottom: 0;
}
.text table {
  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 {
  border-radius: clamp(8px, 1.25vw, 100%);
  border: 1px solid #E2E8F0;
  background: #FFF;
  padding: 16px;
}
.text blockquote p {
  margin-bottom: 0px;
}
.text .quote {
  border-left: 2px solid var(--2, #374957);
}

body {
  color: #374957;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #2B6CB0;
}

img,
svg {
  display: block;
}

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

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

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

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

.hide {
  display: none;
}

.def {
  color: #374957;
}

.black {
  color: #25282B;
}

a.black {
  color: #25282B;
}
a.black:hover {
  color: #2B6CB0;
}

.black-000 {
  color: #000;
}

.blue {
  color: #2B6CB0;
}

.f8 {
  color: #F8F9FA;
}

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

.e1 {
  color: #E1E5EE;
}

.e8 {
  color: #E8E8E8;
}

.fff {
  color: #fff;
}

.gray {
  color: #C8C8C8;
}

.bg-37 {
  background-color: #374957;
}

.bg-black {
  background-color: #25282B;
}

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

.bg-blue {
  background-color: #2B6CB0;
}

.bord {
  border: 1px solid #E2E8F0;
}

.sh {
  -webkit-box-shadow: 0 10px 20px rgba(150, 150, 150, 0.37);
          box-shadow: 0 10px 20px rgba(150, 150, 150, 0.37);
}

#page {
  min-height: 100vh;
}

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

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

.btn {
  padding: 19px 40px;
  border-width: 0;
}
.btn.f2 {
  font-family: "IBM Plex Sans", sans-serif;
}
.btn.black {
  color: #25282B;
}
.btn-fff {
  background-color: #F8F9FA;
  color: #2B6CB0;
}
.btn-fff:hover {
  background-color: #2B6CB0;
  color: #fff !important;
}
.btn-blue {
  background-color: #2B6CB0;
  color: #fff;
}
.btn-gray {
  background-color: #374957;
  color: #fff;
}
.btn-gray:hover {
  background-color: #415667;
}
.btn-gray-border {
  border: 2px solid #C8C8C8;
  color: #000;
}

.bg-blue .btn-fff {
  border: 2px solid #fff;
}
.bg-blue .btn-fff:hover {
  background-color: #265f9c;
}

.input {
  width: 100%;
  border-radius: clamp(8px, 1.0416666667vw, 100%);
  border: 1px solid #FFF;
  padding: 19px 16px;
  background-color: transparent;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: var(--font24);
  font-weight: 500;
  color: #fff;
}
.input::-webkit-input-placeholder {
  color: #fff;
}
.input::-moz-placeholder {
  color: #fff;
}
.input:-moz-placeholder {
  color: #fff;
}
.input:-ms-input-placeholder {
  color: #fff;
}

.link.blue:hover {
  color: #fff;
}
.link.blue:hover path {
  stroke: #fff;
}
.link span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 6.5%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.open-service-menu {
  border-radius: 44px;
  padding: 5px 16px;
}

.header {
  padding: 32px 0;
}
.header a[href^="tel:"] {
  padding: 0 13px 0 13px;
}
.header .logo img {
  width: auto;
  height: 35px;
}

.main-menu {
  padding: 8px 16px;
}
.main-menu ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
}
.main-menu li {
  display: block;
}
.main-menu a {
  color: #F8F9FA;
}
.main-menu a:hover {
  color: #C8C8C8;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 2%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}
.main-menu .current-menu-item a {
  color: #C8C8C8;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 2%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.bcream {
  background-color: #F3F3F3;
  color: #4A5568;
}
.bcream a {
  color: rgba(74, 85, 104, 0.52);
}
.bcream a:hover {
  color: #25282B;
}

.screen {
  background-repeat: no-repeat;
  background-position: right bottom;
}
.screen-txt {
  border-left: 2px solid #2B6CB0;
}
.screen-list-item {
  border-left: 2px solid #C8C8C8;
}

.menu-service:hover .menu-service-hide {
  display: block;
}
.menu-service-hide {
  top: calc(100% + 0px);
  left: 0;
  width: 340px;
  padding-top: 10px;
}
.menu-service-hide .inner {
  padding: 10px 0px;
}
.menu-service-hide .inner > ul > li:hover > a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 6.5%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}
.menu-service-hide li {
  display: block;
  position: relative;
}
.menu-service-hide li a {
  white-space: normal;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
}
.menu-service-hide li:hover ul {
  display: block;
}
.menu-service-hide li ul {
  position: absolute;
  top: 0;
  left: 100%;
  width: auto;
  font-size: 15px;
  padding: 0 10px;
  display: none;
}
.menu-service-hide li ul a {
  background-color: #374957;
  border-radius: 5px;
  white-space: nowrap;
  border-left: 2px solid #374957;
  padding-left: 18px;
}
.menu-service-hide li ul a:hover {
  background-color: #2d3c47;
}
.menu-service-hide li ul li:nth-child(1n+2) {
  margin-top: 2px;
}
.menu-service-hide .menu-item-has-children > a:after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.main-service-item {
  padding: 32px 40px;
}
.main-service-item:hover {
  background-color: #2B6CB0;
  color: #fff;
}
.main-service-item:hover .title {
  color: #fff;
}
.main-service-item:hover path {
  fill: #fff;
}
.main-service-item a {
  top: 0;
  left: 0;
}

.garant-row {
  gap: 48px 20px;
}
.garant-item {
  padding: 24px 20px;
  width: calc(33.3333333333% - 20px);
}
.garant-item.bg-blue .num {
  color: #F8F9FA;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--unnamed, #F8F9FA);
}
.garant-item:last-child {
  padding-right: 12.5vw;
}
.garant-item:last-child .num {
  top: 50%;
  right: 32px;
  left: auto;
  bottom: auto;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.garant .txt a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 2%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}
.garant .num {
  bottom: -3.4895833333vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: clamp(90px, 6.6666666667vw, 100%);
  color: rgba(43, 108, 176, 0.1);
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #2B6CB0;
}

.step-row {
  margin-bottom: 90px;
}
.step-item {
  width: 35.61%;
}
.step .sep {
  height: 1px;
  border-bottom: 1px dashed #252729;
}
.step .mr-33 {
  margin-right: 33px;
}
.step .num img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.step .num-1, .step .num-6 {
  width: 8.48%;
}
.step .num-2 {
  width: 13.18%;
}
.step .num-4 {
  width: 13.18%;
}
.step .num-3 {
  width: 6.74%;
}
.step .num-3 img {
  top: 0;
  left: 0;
}
.step .num-5 {
  width: 8.48%;
}
.step .num-5 img {
  top: 0;
  left: 0;
}

.feedback .left {
  max-width: 645px;
}
.feedback .right {
  width: 420px;
}
.feedback .txt {
  max-width: 500px;
}

.nais-item {
  width: calc(33.3333333333% - 30px);
  padding: 16px 25px;
}

.slider .draggable {
  margin: 0 -15px;
}
.slider .slide {
  padding: 0 15px;
}
.slider-arrow:hover {
  opacity: 0.6;
}

.maps-box {
  height: 710px;
  padding-top: 48px;
  background-image: url(../images/map.png);
  background-repeat: no-repeat;
  background-position: center 65px;
}
.maps-tags span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.post .text > * {
  padding: 8px 16px;
}
.post .text strong {
  font-weight: 500;
}

.project-short {
  border: 1px solid #374957;
}
.project-short .info {
  padding: 24px 15px;
}
.project-short .title:hover {
  text-decoration: underline;
  color: #2B6CB0;
}
.project-short .thumb {
  width: 50%;
  max-width: 645px;
}

@media (max-width: 550px) {
  .project-short .thumb {
    width: 100%;
    max-width: 100%;
  }
}
.weknow-nav li {
  padding: 10px 24px;
  border-radius: clamp(8px, 1.5625vw, 100%);
  border: 1px solid #2B6CB0;
}
.weknow-nav li:hover {
  background-color: #2B6CB0;
  color: #fff;
}
.weknow-nav .current {
  background-color: #2B6CB0;
  color: #fff;
}
.weknow .arrow img {
  width: auto;
  height: 40px;
}

.accordion .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion.active .arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.feedback-bottom-left {
  padding: 32px 24px;
}

.field.gray a {
  color: #C8C8C8;
  text-decoration: underline;
}
.field.gray a:hover {
  text-decoration: none;
}

.field.e8 a {
  color: #E8E8E8;
  text-decoration: underline;
}
.field.e8 a:hover {
  text-decoration: none;
}

.sort-open {
  border: 1px solid #2B6CB0;
  padding: 8px 10px;
  width: 270px;
}
.sort-open:hover {
  background-color: #2B6CB0;
  color: #fff;
}
.sort-open:hover path {
  fill: #fff;
}

aside {
  width: 282px;
}
aside > ul > li:hover > a {
  cursor: pointer;
  background-color: #2B6CB0;
  color: #fff;
}
aside li {
  display: block;
}
aside li:nth-child(1n+2) {
  margin-top: 16px;
}
aside li a {
  background-color: #C8C8C8;
  display: block;
  padding: 16px 24px;
  color: #25282B;
  text-transform: uppercase;
}
aside li ul {
  padding-top: 8px;
  display: none;
}
aside li li:nth-child(1n+2) {
  margin-top: 8px;
}
aside li li a {
  font-size: 16px;
  text-transform: none;
  padding: 8px 24px;
  border-left: 2px solid #2B6CB0;
}
aside li li a:hover {
  background-color: #2B6CB0;
  color: #fff;
}
aside li .current-menu-item a {
  background-color: #2B6CB0;
  color: #fff;
}
aside .menu-item-has-children.open > a {
  background-color: #2B6CB0;
  color: #fff;
}
aside > ul > .current-menu-parent ul, aside > ul > .current-menu-item ul {
  display: block;
}
aside > ul > .current-menu-parent > a, aside > ul > .current-menu-item > a {
  background-color: #2B6CB0;
  color: #fff;
}

article h1 {
  margin-top: -8px;
}
article h1 span {
  display: block;
}

.page-row {
  padding-left: 320px;
}
.page-col-left {
  top: 0;
  left: 0;
}

.footer-row {
  gap: 20px 5.9895833333vw;
  border-bottom: 1px solid #C8C8C8;
}
.footer .name {
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
}
.footer li {
  display: block;
}
.footer li:nth-child(1n+2) {
  margin-top: 20px;
}
.footer li a {
  color: #C8C8C8;
}
.footer li a:hover {
  text-decoration: underline;
}

.cast .btn {
  padding: 14px;
}
.cast .btn:hover {
  background-color: #265f9c;
}

.portfolio-slider .slick-track {
  gap: 15px;
}
.portfolio-slider .slide {
  width: 420px;
}

.name-box .fz40 span {
  display: block;
  color: #2B6CB0;
}

.panel-mobile {
  height: calc(100vh - 76px);
  top: 76px;
  left: 0;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.panel-mobile.active {
  visibility: visible;
  opacity: 1;
}
.panel-mobile li {
  display: block;
}
.panel-mobile a {
  color: #fff;
  display: block;
  font-size: 20px;
  padding: 8px 0;
}
.panel-mobile li ul {
  padding-left: 10px;
  padding-bottom: 15px;
  display: none;
}
.panel-mobile li li a {
  padding: 5px 0;
  font-size: 16px;
}
.panel-mobile .menu-item-has-children > 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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.panel-mobile .menu-item-has-children > a.active:after {
  content: "";
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.panel-mobile .menu-item-has-children > a:after {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-right: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.popup {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  visibility: hidden;
  opacity: 0;
}
.popup.active {
  visibility: visible;
  opacity: 1;
}
.popup-close {
  top: 20px;
  right: 20px;
}
.popup-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.popup-bg {
  top: 0;
  left: 0;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
}
.popup-bg.active {
  visibility: visible;
  opacity: 0.7;
}

.hidebr br {
  display: none;
}

.sliderfoto .slide {
  margin-right: 30px;
  width: 533px;
}

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

.page-404 .btn {
  padding: 15px;
}
.page-404-menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 30px;
}
.page-404-menu li {
  display: block;
}
.page-404-menu li a {
  padding: 10px 32px;
  color: #25282B;
  display: block;
  border-radius: 32px;
  background-color: #F8F9FA;
}
.page-404-menu li a:hover {
  background-color: #2B6CB0;
  color: #fff;
}
.page-404-menu li ul {
  display: none;
}
.page-404-pic {
  width: 417px;
}

.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;
  margin-bottom: 90px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  width: 38px;
  height: 38px;
  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;
  font-size: var(--font16);
}
.wp-pagenavi a:hover {
  background-color: #2B6CB0;
  color: #fff;
}
.wp-pagenavi span {
  background-color: #2B6CB0;
  font-weight: bold;
  color: #fff;
}
.wp-pagenavi .nextpostslink {
  background-color: #E8E8E8;
}
.wp-pagenavi .nextpostslink:hover {
  color: #fff;
  background-color: #2B6CB0;
}
.wp-pagenavi .previouspostslink {
  background-color: #E8E8E8;
}
.wp-pagenavi .previouspostslink:hover {
  color: #fff;
  background-color: #2B6CB0;
}

.blog-short .thumb {
  width: 350px;
  border: 4px solid #e0e5e9;
}
.blog-short .thumb-project {
  width: 350px;
}
.blog-short .btn {
  padding: 15px 30px;
}

.document-short .thumb {
  width: 250px;
  border: 4px solid #e0e5e9;
}
.document-short .btn {
  padding: 15px 30px;
}

.bcream-2 .link-home {
  background-image: url(../images/home-bg.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 63px;
  height: 40px;
  padding-left: 14px;
}
.bcream-2 .link-home svg {
  width: auto;
  height: 24px;
}
.bcream-2 .link {
  background-color: #f8f9fa;
  padding: 0 10px 0 0px;
  min-width: 0;
  height: 40px;
}
.bcream-2 .link:before {
  content: "";
  background-image: url(../images/current.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -25px;
  width: 25px;
  height: 100%;
}
.bcream-2 .link:after {
  content: "";
  background-image: url(../images/current.svg);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
}
.bcream-2 span.current {
  background-color: #f8f9fa;
  padding: 0 10px 0 0px;
  min-width: 150px;
  height: 40px;
}
.bcream-2 span.current:before {
  content: "";
  background-image: url(../images/current.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -25px;
  width: 25px;
  height: 100%;
}
.bcream-2 span.current:after {
  content: "";
  background-image: url(../images/current.svg);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -25px;
  width: 25px;
  height: 100%;
}

.search-box {
  width: 308px;
}
.search-box input {
  width: 100%;
  background-color: #fff;
  padding: 11px 15px;
  border-width: 0;
}
.search-box button {
  padding: 0 20px;
  top: 0;
  right: 0;
  border-width: 0;
  width: 58px;
}

@media (max-width: 992px) {
  .bcream-2 svg {
    width: 20px;
    height: auto;
  }
  .bcream-2 .link-home {
    width: 50px;
    height: 40px;
    background-size: cover;
    background-position: right 0;
    padding-left: 10px;
  }
  .bcream-2 span.current {
    height: 40px;
    padding: 0;
    min-width: 0;
  }
  .bcream-2 span.current:before {
    top: 0;
    left: -25px;
    width: 25px;
    height: 100%;
    background-size: cover;
  }
  .bcream-2 span.current:after {
    top: 0;
    right: -25px;
    width: 25px;
    height: 100%;
    background-size: cover;
  }
  .search-box {
    width: calc(100% + 40px);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
  .search-box input {
    padding: 10px 15px;
    border-radius: 0;
  }
  .page-top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    padding-bottom: 15px;
  }
  .page-top-info br {
    display: none;
  }
}
@media (max-width: 550px) {
  .bcream-2 span.current {
    min-width: 0;
  }
}
.cast-box {
  padding: 24px 60px;
}
.cast-box-pic {
  width: 304px;
}
.cast-box-txt {
  color: #374957;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(7px);
}
.cast-box-button {
  padding: 16px 24px;
}
.cast-box-item {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(7px);
  padding: 36px 14px 14px 14px;
}
.cast-box-item .num {
  top: -22px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 44px;
  height: 44px;
}

.project-new-item {
  -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
}
.project-new-item .img-full {
  border-radius: 10px;
}
/* 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: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  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-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;
  gap: 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);
  padding: 5px;
}

.gallery-columns-3 dl {
  width: calc(33.3333333333% - 20px);
  padding: 5px;
}

.gallery-columns-4 dl {
  width: calc(25% - 20px);
  padding: 5px;
}

.gallery-columns-5 dl {
  width: calc(20% - 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;
  }
}
.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

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

.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;
  }
}
@media (max-width: 1460px) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 13px;
    --font14: 14px;
    --font15: 14px;
    --font16: 14px;
    --font17: 15px;
    --font18: 15px;
    --font20: 15px;
    --font24: 18px;
    --font32: 22px;
    --font40: 30px;
    --font48: 35px;
  }
  .wrap {
    margin-left: 50px;
    margin-right: 50px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .p-25 {
    padding: 20px;
  }
  .gap-30 {
    gap: 20px;
  }
  .gap-32 {
    gap: 22px;
  }
  .main-menu ul {
    gap: 20px;
  }
  .main-service-item {
    padding: 20px;
  }
  .step-row {
    margin-bottom: 90px;
  }
  .step-item {
    min-height: 195px;
  }
  .step-item img {
    width: auto;
    height: 50px;
  }
  .maps-box {
    height: 36.9791666667vw;
    background-size: auto 80%;
  }
  .accordion {
    margin-bottom: 15px;
  }
  .accordion .title img {
    width: auto;
    height: 40px;
  }
  .slider .draggable {
    margin: 0 -10px;
  }
  .slider .slide {
    padding: 0 10px;
  }
  .slider-arrow svg {
    width: auto;
    height: 40px;
  }
  .project-short .thumb {
    width: 50%;
  }
  .text ul li {
    background-position: 0 0;
    padding-top: 1px;
  }
  .portfolio-slider .slide {
    width: 350px;
  }
  .feedback-row .right {
    margin-right: 0 !important;
  }
  .page-row {
    padding-left: 320px;
  }
}
@media (max-width: 1270px) {
  .panel-menu .wrap > ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .page-404-pic {
    width: 320px;
  }
  .cast-box {
    padding: 25px;
    gap: 15px;
  }
  .cast-box-name {
    font-size: 24px;
  }
  .cast-box-step {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .project-new-row.project-mobile-scroll {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .project-new-row.project-mobile-scroll .project-new-item:nth-child(1n+4) {
    display: none;
  }
}
@media (max-width: 992px) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 12px;
    --font14: 13px;
    --font15: 13px;
    --font16: 14px;
    --font17: 14px;
    --font18: 14px;
    --font20: 16px;
    --font24: 17px;
    --font32: 20px;
    --font40: 26px;
    --font48: 30px;
  }
  .wrap {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
  #page {
    padding-top: 76px;
  }
  .p-40 {
    padding: 25px;
  }
  .gap-30 {
    gap: 15px;
  }
  .btn {
    padding: 15px 30px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 0;
  }
  .header-left {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .logo img {
    width: auto;
    height: 28px;
  }
  .garant-row {
    gap: 20px;
  }
  .garant-item {
    width: calc(50% - 20px);
    height: 250px !important;
  }
  .step-item {
    min-height: 0;
  }
  .step-item br {
    display: none;
  }
  .step .num-1, .step .num-6 {
    width: 8.48%;
    zoom: 0.6;
  }
  .step .num-2 {
    width: 13.18%;
    zoom: 0.6;
  }
  .step .num-4 {
    width: 13.18%;
    zoom: 0.6;
  }
  .step .num-3 {
    width: 6.74%;
    zoom: 0.7;
  }
  .step .num-3 img {
    top: 0;
    left: 0;
  }
  .step .num-5 {
    width: 8.48%;
    zoom: 0.7;
  }
  .step .num-5 img {
    top: 0;
    left: 0;
  }
  .open-mobile-panel.active .icon-menu {
    display: none;
  }
  .open-mobile-panel.active .icon-close {
    display: block;
  }
  .maps-box {
    height: 500px;
  }
  .feedback-bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .garant-row {
    gap: 10px;
  }
  .garant-item {
    width: 100%;
    padding-right: 100px;
    height: auto !important;
  }
  .garant-item .jcc {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .garant-item .num {
    left: auto;
    right: 20px;
    bottom: auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .step .num {
    display: none;
  }
  .step-row {
    margin-bottom: 0px;
  }
  .step-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .feedback-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .feedback .mb-30 {
    margin-bottom: 10px;
  }
  .feedback .txt {
    font-size: 14px;
  }
  .page-row {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-col-left {
    position: static;
    margin-bottom: 30px;
    width: 100%;
  }
  .bcream {
    padding: 20px 0;
  }
  .contact-page {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  aside li:nth-child(1n+2) {
    margin-top: 5px;
  }
  .cast-box-5 .mb-45 {
    margin-bottom: 45px;
  }
  .cast-box-step {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
  .project-new-row.project-mobile-scroll {
    gap: 10px;
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
  }
  .project-new-row.project-mobile-scroll .project-new-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 250px;
  }
  .project-new-row.project-mobile-scroll .project-new-item:nth-child(1n+4) {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .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) {
  .bcream-2 {
    zoom: 0.7;
  }
  .name-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-50 {
    padding: 30px;
  }
  .list-col-3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .gap-32 {
    gap: 15px;
  }
  .screen {
    padding-top: 30px;
  }
  .screen-button {
    -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;
  }
  .screen-list {
    gap: 10px;
  }
  .main-service-row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .nais-row {
    gap: 10px;
  }
  .nais-item {
    width: calc(50% - 10px);
    padding: 16px 20px;
  }
  .maps-box {
    height: 350px;
    padding-top: 25px;
  }
  .maps-box .mb-32 {
    margin-bottom: 15px;
  }
  .maps-tags {
    font-size: 14px;
  }
  .weknow-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .weknow-nav li {
    width: calc(50% - 5px);
  }
  .feedback-bottom-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .feedback-bottom-form .btn {
    width: 100%;
  }
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer li:nth-child(1n+2) {
    margin-top: 5px;
  }
  .footer li a {
    display: block;
    padding: 5px 0;
  }
  .footer-col:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .garant-item:last-child {
    padding-right: 100px;
  }
  .garant-item:last-child .info {
    -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: 8px;
  }
  .garant-item:last-child .icon img {
    width: auto;
    height: 70px;
  }
  .garant-item:last-child .btn {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    width: calc(100% + 80px);
    padding: 15px;
  }
  .garant-item .num {
    font-size: 60px;
  }
  .project-short {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-short .info {
    padding: 15px;
  }
  .project-short .title {
    margin-bottom: 0;
  }
  .project-list-category {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .page-404-menu ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0px;
    margin-top: 15px;
  }
  .blog-short,
  .document-short {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .blog-short .thumb,
  .document-short .thumb {
    width: 180px;
  }
  .cast-box-list {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 10px;
  }
  .cast-box-step {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 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) {
  :root {
    --px: 20px;
    --font12: 12px;
    --font13: 12px;
    --font14: 13px;
    --font15: 13px;
    --font16: 14px;
    --font17: 14px;
    --font18: 14px;
    --font20: 15px;
    --font24: 15px;
    --font32: 18px;
    --font40: 24px;
    --font48: 26px;
  }
  #page {
    overflow: hidden;
  }
  .lh140 {
    line-height: 130%;
  }
  .header a[href^="tel:"] {
    font-size: 0;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 100%;
    padding: 0;
    width: 46px;
    height: 46px;
  }
  .screen {
    padding-top: 15px;
    background-size: 90% auto;
  }
  .screen .mb-55,
  .screen .mb-50 {
    margin-bottom: 30px;
  }
  .screen-txt {
    padding-top: 0;
    padding-bottom: 0;
  }
  .popup {
    width: calc(100% - 40px);
    padding-top: 40px;
  }
  .popup-close {
    top: 5px;
    right: 5px;
  }
  .slider-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    width: 100%;
  }
  .maps-tags {
    font-size: 12px;
    gap: 5px;
  }
  .maps-tags > * {
    padding: 5px 10px;
  }
  .maps-box {
    background-size: 90% auto;
    background-position: center bottom 20px;
  }
  .weknow-nav {
    font-size: 14px;
  }
  .weknow-nav li {
    padding: 10px 15px;
  }
  .accordion .title {
    font-size: 17px;
  }
  .accordion .text {
    font-size: 14px;
  }
  .project-short .thumb {
    width: 100%;
  }
  .project-list-category {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .bcream {
    padding: 20px 0;
  }
  .sort-box {
    width: 100%;
  }
  .sort-open {
    width: 100%;
  }
  .feedback .right {
    width: 100% !important;
  }
  .page-row {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  aside {
    width: 100%;
    height: auto;
  }
  .document-short {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .document-short .thumb {
    width: 100%;
    max-width: 250px;
  }
  .blog-short {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .blog-short .thumb {
    width: 100%;
  }
  .cast-box {
    padding: 20px;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cast-box-name {
    text-align: center;
    margin-bottom: 15px;
  }
  .cast-box-info {
    gap: 25px;
  }
  .cast-box-button-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cast-box-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  .cast-box-step {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .cast-box-step img {
    width: 60px;
    height: auto;
  }
  .cast-box .fz28 {
    font-size: 20px;
    text-align: center;
  }
  .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;
  }
}