:root {
  --font-primary: "Avenir Next Cyr", sans-serif;
  --body-bg: #ffffff;
  --body-color: #143447;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

.fade-in-down {
  animation: fadeInDown 0.3s ease-out;
}

.row-gutter-10 {
  margin: 0 -0.5rem -1rem;
}
.row-gutter-10 > [class^=col] {
  padding: 0 0.5rem 1rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.text-center {
  text-align: center !important;
}

.text-green {
  color: #00c66f !important;
}

.text-yellow {
  color: #f2d872 !important;
}

.text-blue {
  color: #6fa5d6 !important;
}

.text-red {
  color: #db0031 !important;
}

.text-grey {
  color: #949dab;
}

.text-dark {
  color: #000 !important;
}

.text-right {
  text-align: right;
}

.is-visually-hidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.row-gutter-120 {
  margin: 0 -6rem;
}
.row-gutter-120 > [class^=col-] {
  padding: 0 6rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .is-md-only {
    display: none !important;
  }
}

.is-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .is-md-visible {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-lg-visible {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-xl-visible {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-md-hidden {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-lg-hidden {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-xl-hidden {
    display: none !important;
  }
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-32 {
  margin-bottom: 3.2rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.w-full {
  width: 100%;
}

@keyframes slowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3rem, -5rem) scale(1.2);
  }
  66% {
    transform: translate(-2rem, 2rem) scale(0.8);
  }
  100% {
    transform: translate(1rem, -1rem) scale(1);
  }
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next Cyr";
  src: url("../fonts/AvenirNextCyr-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.ui-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 3.8rem;
  border-radius: 0.6rem;
  padding: 0 1.8rem;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  border: none;
  gap: 0.8rem;
  transition: 0.4s;
}
.ui-btn:active {
  transform: scale(0.95);
  transition: none;
}
.ui-btn:disabled {
  pointer-events: none;
}
@media (min-width: 1200px) {
  .ui-btn {
    height: 4.4rem;
    padding: 0 2rem;
  }
}

.ui-btn--red {
  background: #ef4032;
  color: #fff;
}
.ui-btn--red:hover {
  background: #e30613;
  color: #fff;
}

html {
  -ms-overflow-style: scrollbar;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 114rem;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-hd,
.col-hd-auto, .col-hd-12, .col-hd-11, .col-hd-10, .col-hd-9, .col-hd-8, .col-hd-7, .col-hd-6, .col-hd-5, .col-hd-4, .col-hd-3, .col-hd-2, .col-hd-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 0.1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.push-1 {
  left: 8.3333333333%;
}

.push-2 {
  left: 16.6666666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.3333333333%;
}

.push-5 {
  left: 41.6666666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.3333333333%;
}

.push-8 {
  left: 66.6666666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.3333333333%;
}

.push-11 {
  left: 91.6666666667%;
}

.pull-1 {
  right: 8.3333333333%;
}

.pull-2 {
  right: 16.6666666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.3333333333%;
}

.pull-5 {
  right: 41.6666666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.3333333333%;
}

.pull-8 {
  right: 66.6666666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.3333333333%;
}

.pull-11 {
  right: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.3333333333%;
  }
  .push-sm-2 {
    left: 16.6666666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.3333333333%;
  }
  .push-sm-5 {
    left: 41.6666666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.3333333333%;
  }
  .push-sm-8 {
    left: 66.6666666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.3333333333%;
  }
  .push-sm-11 {
    left: 91.6666666667%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.3333333333%;
  }
  .pull-sm-2 {
    right: 16.6666666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.3333333333%;
  }
  .pull-sm-5 {
    right: 41.6666666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.3333333333%;
  }
  .pull-sm-8 {
    right: 66.6666666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.3333333333%;
  }
  .pull-sm-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.3333333333%;
  }
  .push-md-2 {
    left: 16.6666666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.3333333333%;
  }
  .push-md-5 {
    left: 41.6666666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.3333333333%;
  }
  .push-md-8 {
    left: 66.6666666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.3333333333%;
  }
  .push-md-11 {
    left: 91.6666666667%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.3333333333%;
  }
  .pull-md-2 {
    right: 16.6666666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.3333333333%;
  }
  .pull-md-5 {
    right: 41.6666666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.3333333333%;
  }
  .pull-md-8 {
    right: 66.6666666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.3333333333%;
  }
  .pull-md-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.3333333333%;
  }
  .push-lg-2 {
    left: 16.6666666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.3333333333%;
  }
  .push-lg-5 {
    left: 41.6666666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.3333333333%;
  }
  .push-lg-8 {
    left: 66.6666666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.3333333333%;
  }
  .push-lg-11 {
    left: 91.6666666667%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.3333333333%;
  }
  .pull-lg-2 {
    right: 16.6666666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.3333333333%;
  }
  .pull-lg-5 {
    right: 41.6666666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.3333333333%;
  }
  .pull-lg-8 {
    right: 66.6666666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.3333333333%;
  }
  .pull-lg-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.3333333333%;
  }
  .push-xl-2 {
    left: 16.6666666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.3333333333%;
  }
  .push-xl-5 {
    left: 41.6666666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.3333333333%;
  }
  .push-xl-8 {
    left: 66.6666666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.3333333333%;
  }
  .push-xl-11 {
    left: 91.6666666667%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.3333333333%;
  }
  .pull-xl-2 {
    right: 16.6666666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.3333333333%;
  }
  .pull-xl-5 {
    right: 41.6666666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.3333333333%;
  }
  .pull-xl-8 {
    right: 66.6666666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.3333333333%;
  }
  .pull-xl-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 1600px) {
  .col-hd {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-hd-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-hd-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-hd-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-hd-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-hd-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-hd-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-hd-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-hd-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-hd-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-hd-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-hd-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-hd-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-hd-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-hd-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-hd-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-hd-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-hd-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-hd-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-hd-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-hd-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-hd-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-hd-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-hd-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-hd-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-hd-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-hd-0 {
    margin-left: 0%;
  }
  .offset-hd-1 {
    margin-left: 8.3333333333%;
  }
  .offset-hd-2 {
    margin-left: 16.6666666667%;
  }
  .offset-hd-3 {
    margin-left: 25%;
  }
  .offset-hd-4 {
    margin-left: 33.3333333333%;
  }
  .offset-hd-5 {
    margin-left: 41.6666666667%;
  }
  .offset-hd-6 {
    margin-left: 50%;
  }
  .offset-hd-7 {
    margin-left: 58.3333333333%;
  }
  .offset-hd-8 {
    margin-left: 66.6666666667%;
  }
  .offset-hd-9 {
    margin-left: 75%;
  }
  .offset-hd-10 {
    margin-left: 83.3333333333%;
  }
  .offset-hd-11 {
    margin-left: 91.6666666667%;
  }
  .push-hd-0 {
    left: auto;
  }
  .push-hd-1 {
    left: 8.3333333333%;
  }
  .push-hd-2 {
    left: 16.6666666667%;
  }
  .push-hd-3 {
    left: 25%;
  }
  .push-hd-4 {
    left: 33.3333333333%;
  }
  .push-hd-5 {
    left: 41.6666666667%;
  }
  .push-hd-6 {
    left: 50%;
  }
  .push-hd-7 {
    left: 58.3333333333%;
  }
  .push-hd-8 {
    left: 66.6666666667%;
  }
  .push-hd-9 {
    left: 75%;
  }
  .push-hd-10 {
    left: 83.3333333333%;
  }
  .push-hd-11 {
    left: 91.6666666667%;
  }
  .pull-hd-0 {
    right: auto;
  }
  .pull-hd-1 {
    right: 8.3333333333%;
  }
  .pull-hd-2 {
    right: 16.6666666667%;
  }
  .pull-hd-3 {
    right: 25%;
  }
  .pull-hd-4 {
    right: 33.3333333333%;
  }
  .pull-hd-5 {
    right: 41.6666666667%;
  }
  .pull-hd-6 {
    right: 50%;
  }
  .pull-hd-7 {
    right: 58.3333333333%;
  }
  .pull-hd-8 {
    right: 66.6666666667%;
  }
  .pull-hd-9 {
    right: 75%;
  }
  .pull-hd-10 {
    right: 83.3333333333%;
  }
  .pull-hd-11 {
    right: 91.6666666667%;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-hd-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-hd-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-hd-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-hd-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-hd-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-hd-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-hd-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-hd-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-hd-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-hd-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-hd-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-hd-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-hd-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-hd-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-hd-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-hd-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-hd-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-hd-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-hd-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-hd-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-hd-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-hd-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-hd-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-hd-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-hd-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-hd-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-hd-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-hd-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-hd-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
* {
  outline: none;
  box-sizing: border-box;
  min-width: 0;
}
*:before, *:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html,
body {
  scrollbar-gutter: stable;
  overscroll-behavior: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (max-width: 360px) {
  html {
    font-size: 2.7777777778vw;
  }
}
@media (min-width: 1200px) and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}

.app {
  position: relative;
  min-height: 100%;
  min-width: 32rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: clip;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 134rem;
}

.is-services-open .ems-header__services::after {
  display: block;
}
.is-services-open .ems-header__services-toggle {
  display: none;
}
@media (min-width: 1200px) {
  .is-services-open .ems-header__services-toggle {
    display: -ms-flexbox;
    display: flex;
  }
}
.is-services-open .ems-header__services-offcanvas {
  display: block;
}

.is-nav-open .ems-header__toggle {
  pointer-events: auto;
}
.is-nav-open .ems-header__toggle svg:nth-child(1) {
  opacity: 0;
  transform: scale(0);
}
.is-nav-open .ems-header__toggle svg:nth-child(2) {
  opacity: 1;
  transform: scale(1);
}
.is-nav-open .ems-header__call {
  pointer-events: auto;
}
.is-nav-open .ems-header__offcanvas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.is-nav-open body {
  overflow: hidden;
  pointer-events: none;
}

.ems-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f4f9f5;
  color: #303030;
  font-family: var(--font-primary);
}
.ems-header * {
  font-family: var(--font-primary);
}
.ems-header a {
  text-decoration: none;
}
.ems-header a:hover {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .ems-header {
    position: sticky;
    top: -6.2rem;
    height: 14.6rem;
    background: linear-gradient(to bottom, #f4f9f5 6.2rem, #fff 6.2rem);
    border-bottom: 0.1rem solid #eaefeb;
  }
  .ems-header:has(.is-open) .ems-header__overlay {
    opacity: 1;
  }
}

.ems-header__sticky {
  height: 4.5rem;
}
.ems-header__sticky > .container-fluid {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.ems-header__sticky .ems-header__action {
  display: none;
}
@media (min-width: 768px) {
  .ems-header__sticky {
    height: 5.2rem;
  }
  .ems-header__sticky .ems-header__action {
    display: block;
  }
}
@media (min-width: 1200px) {
  .ems-header__sticky {
    display: none;
  }
}

.ems-header__offcanvas {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 500;
  padding: 0 0 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}
.ems-header__offcanvas .ems-header__logo,
.ems-header__offcanvas .ems-header__call {
  display: none;
}
@media (min-width: 768px) {
  .ems-header__offcanvas {
    top: 5.2rem;
  }
  .ems-header__offcanvas .ems-header__action {
    display: none;
  }
}
@media (min-width: 1200px) {
  .ems-header__offcanvas {
    all: unset;
    display: block;
    position: relative;
    top: 0;
    height: 14.6rem;
  }
  .ems-header__offcanvas > .container-fluid {
    height: 100%;
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 11rem 21.4rem 1fr auto;
    grid-template-rows: 6.2rem 8.4rem;
    grid-template-areas: "logo topbar topbar eye" "services search nav nav";
    gap: 0 1.6rem;
  }
  .ems-header__offcanvas .ems-header__logo,
  .ems-header__offcanvas .ems-header__call {
    display: -ms-flexbox;
    display: flex;
  }
  .ems-header__offcanvas .ems-header__logo {
    grid-area: logo;
  }
  .ems-header__offcanvas .ems-header__topbar {
    grid-area: topbar;
  }
  .ems-header__offcanvas .ems-header__call {
    grid-area: call;
  }
  .ems-header__offcanvas .ems-header__eye {
    grid-area: eye;
  }
  .ems-header__offcanvas .ems-header__services {
    grid-area: services;
  }
  .ems-header__offcanvas .ems-header__search {
    grid-area: search;
  }
  .ems-header__offcanvas .ems-header__nav {
    grid-area: nav;
  }
  .ems-header__offcanvas .ems-header__action {
    grid-area: action;
  }
}

.ems-header__logo {
  height: 4.5rem;
  margin: 0 auto 0 0;
}
.ems-header__logo img,
.ems-header__logo svg {
  display: block;
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .ems-header__logo {
    height: 5.2rem;
  }
}
@media (min-width: 1200px) {
  .ems-header__logo {
    height: 6.2rem;
    margin: 0;
  }
}

.ems-header__call {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #303030;
}
.ems-header__call svg {
  display: block;
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #7c9684;
  transition: color 0.4s;
}
.ems-header__call:hover {
  color: #5e7866;
}
.ems-header__call:hover svg {
  color: #5e7866;
}
@media (min-width: 768px) {
  .ems-header__call {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .ems-header__call {
    font-size: 1.6rem;
    margin: 0 1.6rem 0 0;
  }
}

.ems-header__action {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 2rem;
}
.ems-header__action .ui-btn {
  height: 4.4rem;
}
@media (min-width: 768px) {
  .ems-header__action {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0;
  }
  .ems-header__action .ui-btn {
    height: 3.8rem;
  }
}

.ems-header__toggle {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  color: #7c9684;
}
.ems-header__toggle svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.ems-header__toggle svg:nth-of-type(1) {
  opacity: 1;
}
.ems-header__toggle svg:nth-of-type(2) {
  opacity: 0;
}

@media (min-width: 768px) {
  .ems-header__topbar {
    display: grid;
    grid-template-columns: 411fr 357fr;
    margin: 0 -2rem 2rem;
    background: #f4f9f5;
    border-top: 0.1rem solid #e7ece8;
    border-bottom: 0.1rem solid #e7ece8;
    min-height: 5.4rem;
  }
}
@media (min-width: 1200px) {
  .ems-header__topbar {
    height: 6.2rem;
    min-height: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

.ems-header__location {
  margin: 0 -2rem 2rem;
  padding: 0;
  list-style: none;
  background: #f4f9f5;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  color: #728077;
}
.ems-header__location > li {
  padding: 1.2rem 2rem;
  border-top: 0.1rem solid #e7ece8;
  transition: background 0.4s;
}
.ems-header__location > li:hover {
  background: #eaefeb;
}
.ems-header__location b {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #303030;
  margin: 0 0 0.6rem;
}
@media (min-width: 768px) {
  .ems-header__location {
    margin: 0;
    background: none;
    display: -ms-flexbox;
    display: flex;
  }
  .ems-header__location > li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: none;
    padding: 1rem 2rem;
    border-right: 0.1rem solid #e7ece8;
  }
}
@media (min-width: 1200px) {
  .ems-header__location {
    font-size: 1.4rem;
    height: 100%;
    margin: 0 0 0 -1.6rem;
  }
  .ems-header__location > li {
    padding: 1.2rem 3.2rem;
  }
  .ems-header__location b {
    font-size: 1.6rem;
  }
}

.ems-header__extra {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  position: relative;
  list-style: none;
}
.ems-header__extra::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -2rem;
  right: -2rem;
  border-bottom: 0.1rem solid #eaefeb;
}
.ems-header__extra a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7c9684;
  gap: 0.6rem;
}
.ems-header__extra a:hover {
  color: #5e7866;
}
.ems-header__extra svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .ems-header__extra {
    margin: 0;
    padding: 0;
    height: 100%;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }
  .ems-header__extra::before {
    display: none;
  }
  .ems-header__extra > li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 2rem;
    border-right: 0.1rem solid #e7ece8;
    height: 100%;
  }
  .ems-header__extra > li:last-child {
    border-right: none;
  }
  .ems-header__extra a {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .ems-header__extra {
    font-size: 1.6rem;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 1.6rem 0 0;
  }
  .ems-header__extra > li {
    padding: 1.2rem 1.6rem;
    border: none;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .ems-header__extra svg {
    width: 2rem;
    height: 2rem;
  }
}

.ems-header__search {
  margin: 0 0 0.6rem;
  position: relative;
}
.ems-header__search:hover .ems-header__search-icon {
  color: #7c9684;
}
.ems-header__search:has(:focus) .ems-header__search-icon {
  color: #7c9684;
}
.ems-header__search:has(:focus) .ems-header__search-input {
  border-color: #a6d1c6;
}
.ems-header__search:has(:focus) .ems-header__search-input:-ms-input-placeholder {
  color: #303030;
}
.ems-header__search:has(:focus) .ems-header__search-input::placeholder {
  color: #303030;
}
@media (min-width: 768px) {
  .ems-header__search {
    margin: 0 0 1rem;
  }
}
@media (min-width: 1200px) {
  .ems-header__search {
    margin: 0;
  }
}

.ems-header__search-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 4.4rem;
  border-radius: 0.6rem;
  box-shadow: none;
  background: #f6f7f7;
  border: 0.1rem solid #e7ece8;
  color: #303030;
  padding: 0 1.6rem 0 4.4rem;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  transition: 0.4s;
  cursor: pointer;
}
.ems-header__search-input:-ms-input-placeholder {
  color: #9ea7a1;
  transition: color 0.4s;
}
.ems-header__search-input::placeholder {
  color: #9ea7a1;
  transition: color 0.4s;
}

.ems-header__search-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 1.6rem;
  width: 2rem;
  height: 100%;
  color: #c0c5c2;
  margin: 0;
  pointer-events: none;
  transition: color 0.4s;
}
.ems-header__search-icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

@media (min-width: 1200px) {
  .ems-header__services {
    height: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .ems-header__services::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2rem;
    display: none;
  }
}

.ems-header__services-toggle {
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.4s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  padding: 0.8rem 0;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: #303030;
}
.ems-header__services-toggle:hover {
  color: #637468;
}
.ems-header__services-toggle svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  transform: rotate(-90deg);
  color: #637468;
}
.ems-header__services-toggle svg:first-of-type {
  display: none;
}
.ems-header__services-toggle svg:last-of-type {
  margin: 0 0 0 auto;
}
@media (min-width: 1200px) {
  .ems-header__services-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 1.6rem;
    width: 100%;
    height: 4.4rem;
    gap: 0.8rem;
    min-height: auto;
    border-radius: 0.6rem;
    background: #f0f5f1;
    color: #303030;
  }
  .ems-header__services-toggle svg {
    width: 2rem;
    height: 2rem;
    color: #7c9684;
    transition: color 0.4s;
  }
  .ems-header__services-toggle svg:first-of-type {
    display: block;
  }
  .ems-header__services-toggle svg:last-of-type {
    display: none;
  }
  .ems-header__services-toggle:hover {
    background: #eaefeb;
    color: #303030;
  }
  .ems-header__services-toggle:hover svg {
    color: #5e7866;
  }
}

.ems-header__services-offcanvas {
  display: none;
}
@media (min-width: 1200px) {
  .ems-header__services-offcanvas {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 400;
    width: 42rem;
    background: #fff;
    border-radius: 0.6rem 0 0 0.6rem;
    margin: 2rem 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100svh - 14.6rem - 4rem);
    overscroll-behavior: contain;
  }
  .ems-header__services-offcanvas::-webkit-scrollbar {
    width: 0.8rem;
    height: 0.8rem;
    background: #eaefeb;
    border-radius: 0.2rem;
  }
  .ems-header__services-offcanvas::-webkit-scrollbar-thumb {
    background: #a6d1c6;
  }
}

.ems-header__services-back {
  border: none;
  background: none;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  min-height: 5rem;
  color: #303030;
  margin: 0 0 0.6rem;
  transition: 0.4s;
}
.ems-header__services-back svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  color: #637468;
}
@media (min-width: 1200px) {
  .ems-header__services-back {
    display: none;
  }
}

.ems-header__services-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}
.ems-header__services-menu a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #f6f7f7;
  color: #555555;
  border-radius: 0.6rem;
  padding: 1.2rem 2rem;
  min-height: 5rem;
}
.ems-header__services-menu svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #637468;
  margin: 0 0 0 auto;
}
.ems-header__services-menu > li.is-open > a {
  display: none;
}
.ems-header__services-menu > li.is-open > .ems-header__services-dropdown {
  display: block;
}
@media (min-width: 1200px) {
  .ems-header__services-menu > li.is-open > a {
    display: -ms-flexbox;
    display: flex;
  }
  .ems-header__services-menu > li.is-open > .ems-header__services-dropdown {
    display: block;
  }
  .ems-header__services-menu a {
    background: transparent;
    color: #303030;
  }
  .ems-header__services-menu a:hover {
    background: #f6f7f7;
    color: #303030;
  }
}

.ems-header__services-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.ems-header__services-dropdown {
  display: none;
}
@media (min-width: 1200px) {
  .ems-header__services-dropdown {
    --x: 42rem;
    --y: 14.6rem;
    --h: auto;
    position: fixed;
    top: var(--y);
    left: var(--x);
    height: var(--h);
    width: 34rem;
    background: #fff;
    border-radius: 0 0.6rem 0.6rem 0;
    margin: 2rem 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100svh - 14.6rem - 4rem);
    overscroll-behavior: contain;
  }
  .ems-header__services-dropdown::-webkit-scrollbar {
    width: 0.8rem;
    height: 0.8rem;
    background: #eaefeb;
    border-radius: 0.2rem;
  }
  .ems-header__services-dropdown::-webkit-scrollbar-thumb {
    background: #a6d1c6;
  }
}

.ems-header__nav {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .ems-header__nav {
    margin: 0 0 0 1.6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.2rem;
    height: 100%;
  }
}

.ems-header__nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ems-header__nav-menu > li.is-open > a {
  display: none;
}
.ems-header__nav-menu > li.is-open > .ems-header__nav-dropdown {
  display: block;
}
.ems-header__nav-menu > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 5rem;
  color: #303030;
  padding: 0.8rem 0;
  gap: 0.6rem;
}
.ems-header__nav-menu > li > a:hover {
  color: #637468;
}
.ems-header__nav-menu > li > a > svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0 0 auto;
  transform: rotate(-90deg);
  color: #637468;
  transition: transform 0.4s;
}
@media (min-width: 1200px) {
  .ems-header__nav-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.6rem;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
  }
  .ems-header__nav-menu > li > a > svg {
    transform: none;
  }
  .ems-header__nav-menu > li {
    position: relative;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .ems-header__nav-menu > li::after {
    content: "";
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2rem;
  }
  .ems-header__nav-menu > li.is-open::after {
    display: block;
  }
  .ems-header__nav-menu > li.is-open > a {
    display: -ms-flexbox;
    display: flex;
    color: #637468;
  }
  .ems-header__nav-menu > li.is-open > a svg {
    transform: rotate(180deg);
  }
  .ems-header__nav-menu > li.is-open > .ems-header__nav-dropdown {
    display: block;
  }
}

.ems-header__nav-action {
  display: none;
}
@media (min-width: 1200px) {
  .ems-header__nav-action {
    display: block;
  }
}

.ems-header__nav-dropdown {
  display: none;
}
@media (min-width: 1200px) {
  .ems-header__nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 400;
    width: 34rem;
    background: #fff;
    border-radius: 0.6rem;
    margin: 2rem 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100svh - 14.6rem - 4rem);
    overscroll-behavior: contain;
  }
  .ems-header__nav-dropdown::-webkit-scrollbar {
    width: 0.8rem;
    height: 0.8rem;
    background: #eaefeb;
    border-radius: 0.2rem;
  }
  .ems-header__nav-dropdown::-webkit-scrollbar-thumb {
    background: #a6d1c6;
  }
}

.ems-header__nav-back {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  min-height: 5rem;
  color: #303030;
  margin: 0 0 0.6rem;
}
.ems-header__nav-back svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  color: #637468;
}
@media (min-width: 1200px) {
  .ems-header__nav-back {
    display: none;
  }
}

.ems-header__nav-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
}
.ems-header__nav-submenu a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #f6f7f7;
  color: #555555;
  border-radius: 0.6rem;
  padding: 1.2rem 2rem;
  min-height: 5rem;
  transition: 0.4s;
}
.ems-header__nav-submenu svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #637468;
  margin: 0 0 0 auto;
}
@media (min-width: 1200px) {
  .ems-header__nav-submenu a {
    background: transparent;
    color: #303030;
  }
  .ems-header__nav-submenu a:hover {
    background: #f6f7f7;
    color: #303030;
  }
}

.ems-header__eye {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 2rem;
  height: 2rem;
  color: #7c9684;
  transition: 0.4s;
  font-family: inherit;
}
.ems-header__eye svg {
  display: block;
  width: 100%;
  height: 100%;
}
.ems-header__eye:hover {
  color: #5e7866;
}

.main {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.ems-footer {
  padding: 2rem 0 3.2rem;
  background: #f4f9f5;
  color: #728077;
  font-family: var(--font-primary);
}
.ems-footer * {
  font-family: var(--font-primary);
}
.ems-footer a {
  text-decoration: none;
}
.ems-footer a:hover {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .ems-footer {
    padding: 7rem 0;
  }
}

.ems-footer__logo {
  width: 7.6rem;
  height: auto;
  margin: 0 0 2rem;
}
.ems-footer__logo img,
.ems-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .ems-footer__logo {
    width: 10.8rem;
    margin: 0 0 2.6rem;
  }
}

.ems-footer__contacts {
  margin: 0 0 3.2rem;
}
@media (min-width: 768px) {
  .ems-footer__contacts {
    margin: 0 0 2.8rem;
    max-width: 16.8rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__contacts {
    max-width: none;
    margin: 0 0 7rem;
  }
}

.ems-footer__contacts-text {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  .ems-footer__contacts-text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 32rem;
  }
}

.ems-footer__contacts-call {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 3.2rem;
  padding: 0;
  list-style: none;
}
.ems-footer__contacts-call a {
  white-space: nowrap;
  color: #5fbaa4;
}
.ems-footer__contacts-call a:hover {
  color: #303030;
}
@media (min-width: 1200px) {
  .ems-footer__contacts-call {
    margin: 0 0 4.7rem;
    font-size: 2.4rem;
  }
}

.ems-footer__contacts-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
.ems-footer__contacts-social a {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  color: #a6d1c6;
  border-radius: 0.8rem;
  overflow: hidden;
}
.ems-footer__contacts-social a:has(.icon-vk):hover {
  color: #0177ff;
}
.ems-footer__contacts-social a:has(.icon-dzen):hover {
  color: #2c3036;
}
.ems-footer__contacts-social a:has(.icon-tg):hover {
  color: #27a2e1;
}
.ems-footer__contacts-social a:has(.icon-rt):hover {
  color: #0f0941;
}
.ems-footer__contacts-social a:has(.icon-yt):hover {
  color: #ff0000;
}
.ems-footer__contacts-social svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .ems-footer__contacts-social {
    padding: 0 1.6rem 0 0;
  }
  .ems-footer__contacts-social a {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__contacts-social a {
    width: 4rem;
    height: 4rem;
  }
}

@media (min-width: 768px) {
  .ems-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__grid {
    grid-template-areas: "location menu" "location assn";
    grid-template-rows: 1fr auto;
  }
}

.ems-footer__location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin: 0 0 3.2rem;
  padding: 0;
  list-style: none;
}
.ems-footer__location > li.is-active .ems-footer__location-toggle svg {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .ems-footer__location {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 0 2.8rem;
    grid-column: 1/-1;
  }
}
@media (min-width: 1200px) {
  .ems-footer__location {
    grid-template-columns: 1fr;
    gap: 4rem;
    grid-column: unset;
    grid-area: location;
    margin: 0 0 7rem;
  }
}

.ems-footer__location-toggle {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: #303030;
}
.ems-footer__location-toggle svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #637468;
  transition: transform 0.4s;
}
@media (min-width: 768px) {
  .ems-footer__location-toggle {
    cursor: text;
  }
  .ems-footer__location-toggle svg {
    display: none;
  }
}
@media (min-width: 1200px) {
  .ems-footer__location-toggle {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
  }
}

.ems-footer__location-content {
  display: none;
}
@media (min-width: 768px) {
  .ems-footer__location-content {
    display: block;
  }
}

.ems-footer__location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  color: #606060;
  padding: 1.2rem 0 0;
}
.ems-footer__location-info > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.8rem;
}
.ems-footer__location-info svg {
  display: block;
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ems-footer__menu {
  margin: 0 0 3.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
}
.ems-footer__menu a {
  color: #303030;
}
.ems-footer__menu a:hover {
  color: #637468;
}
@media (min-width: 768px) {
  .ems-footer__menu {
    margin: 0 0 2.8rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__menu {
    margin: 0 0 4rem;
    grid-area: menu;
  }
}

.ems-footer__assn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.8rem;
  border: 0.1rem solid #e0e5e1;
  padding: 1.6rem;
  gap: 1.2rem;
  margin: 0 0 4rem;
}
.ems-footer__assn img {
  display: block;
  width: 6.2rem;
  height: auto;
  object-fit: contain;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ems-footer__assn figcaption {
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #606060;
}
@media (min-width: 768px) {
  .ems-footer__assn {
    margin: 0 0 2.8rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__assn {
    grid-area: assn;
    margin: 0 0 7rem;
    max-width: 30rem;
  }
}

.ems-footer__line {
  display: block;
  margin: 0 0 3.6rem -50vw;
  border: none;
  border-bottom: 0.1rem solid #e0e5e1;
  width: 100vw;
  position: relative;
  left: 50%;
}
@media (min-width: 768px) {
  .ems-footer__line {
    margin-bottom: 3.6rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__line {
    margin-bottom: 7rem;
  }
}

.ems-footer__copyright {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #606060;
  margin: 0 0 2.4rem;
}
.ems-footer__copyright p {
  margin: 0 0 0.8rem;
}
.ems-footer__copyright *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .ems-footer__copyright {
    margin: 0 0 3.2rem;
  }
  .ems-footer__copyright p {
    margin: 0 0 1rem;
  }
}

.ems-footer__documents {
  margin: 0 0 2.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}
.ems-footer__documents a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  border-radius: 0.8rem;
  background: #fff;
  color: #606060;
  padding: 1.2rem 1.6rem;
}
.ems-footer__documents a:hover {
  color: #7c9684;
}
.ems-footer__documents a:hover svg {
  color: #7c9684;
}
.ems-footer__documents svg {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  margin: 0 0 0 auto;
  width: 2rem;
  height: 2rem;
  color: #5fbaa4;
  transition: color 0.4s;
}
@media (min-width: 768px) {
  .ems-footer__documents {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__documents {
    gap: 1.2rem;
    margin: 0 0 3.2rem;
  }
  .ems-footer__documents a {
    padding: 1.5rem 2rem;
  }
}

.ems-footer__policy {
  margin: 0 0 2.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
}
.ems-footer__policy a {
  color: #506556;
  text-decoration: underline;
}
.ems-footer__policy a:hover {
  color: #303030;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .ems-footer__policy {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .ems-footer__policy {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.4rem;
    gap: 1.2rem 2.8rem;
    margin: 0;
  }
}

.ems-footer__dev {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.ems-footer__dev-text {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  color: #606060;
}

.ems-footer__dev-link {
  color: #7c9684;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.4rem;
  height: auto;
}
.ems-footer__dev-link svg {
  display: block;
  width: 100%;
  height: auto;
}
.ems-footer__dev-link:hover {
  color: #303030;
}

.ems-overlay {
  display: none;
}
@media (min-width: 1200px) {
  .ems-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    pointer-events: none;
    background: rgba(48, 48, 48, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    transition: opacity 0.4s;
    opacity: 0;
  }
}

:has(.ems-header .is-open) .ems-overlay,
.is-nav-open .ems-overlay,
.is-services-open .ems-overlay {
  opacity: 1;
}