/* === main.css === */
/* inlined: vars.css */
:root {
  --blue-color: #195B71;
  --blue-medium-color: #2F7187;
  --blue-light-color: #E5ECEF;
  --red-color: #D75345;
  --red-light-color: #DC6B5F;
  --green-color: #A6B900;
  --green-light-color: #F6F8E5;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;
  --grey-light-color: #F9F9F9;
  --header-color: #FFF7EA;
  --grey-bg-color: #F0F4F5;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}
/* inlined: grid.css */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

.jub6s7 {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.jub6s7.sm {
  max-width: calc(962px + var(--grid-gutter) * 2);
}

.uiingr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.ib19ww {
  flex-direction: column-reverse;
}

.v6e094 {
  flex-direction: column-reverse;
}

.wexfyk {
  width: fit-content;
  padding: 0 var(--grid-gutter);
}

.gsizuy {
  width: 25%;
}

.wwotja {
  width: 33.3333%;
}

.xva7uu {
  width: 41.666667%;
}

.scm2gb {
  width: 50%;
}

.kig065 {
  width: 100%;
}

.wagxrj {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ciqozi {
  flex: 1;
}

.q73clu {
  justify-content: flex-start;
}

.iy878n {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .oyhrfl {
    width: 25%;
  }

  .kwc9lz {
    width: 33.3333%;
  }

  .x3iovl {
    width: 58.3333%;
  }

  .o229r4 {
    width: 66.6666%;
  }

  .uhi2s9 {
    width: 50%;
  }

  .oqvpts {
    width: 41.6666%;
  }

  .bkf3r4 {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .s4tzi4 {
    width: 25%;
  }

  .fun8pp {
    width: 50%;
  }

  .cp49uw {
    width: 58.3333%;
  }

  .fyal50 {
    width: 41.6666%;
  }

  .vmdxn9 {
    justify-content: flex-start;
  }

  .fzs57f {
    justify-content: flex-end;
  }

  .skwe3u {
    flex-direction: row;
  }
}

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

*:before,
*:after {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  min-height: 100%;
}

html {
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: var(--primary-font), sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 42px;
  line-height: 57px;
  margin: 60px 0 30px;
}

h2 {
  font-size: 40px;
  line-height: 54px;
  margin: 60px 0 30px;
}

h3 {
  font-size: 38px;
  line-height: 52px;
  margin: 60px 0 30px;
}

h4 {
  font-size: 36px;
  line-height: 50px;
  margin: 60px 0 30px;
}

h5 {
  font-size: 32px;
  line-height: 43px;
  margin: 60px 0 30px;
}

h6 {
  font-size: 28px;
  line-height: 38px;
  margin: 60px 0 30px;
}

ul {
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

ul li::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--black-color);
}

ol {
  margin: 20px 0 20px 22px;
}

ol li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
}

blockquote {
  position: relative;
  display: block;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 16px 78px 16px 80px;
  margin: 15px 0;
}

blockquote::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 58px;
  height: calc(100% - 10px);
  width: 2px;
  background-color: var(--grey-medium-color);
}

kbd {
  letter-spacing: .05em;
  font-family: var(--primary-font);
  font-weight: 400;
}

code,
samp {
  display: inline-block;
  padding: 0 2px;
  font-family: inconsolata;
  font-weight: 400;
  background-color: var(--grey-light-color);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .05em;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--text-color);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

a {
  color: var(--blue-color);
  line-height: 1;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

input, 
select,
textarea {
  width: 100%;
  position: relative;
  display: block;
  padding: 11px 14px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary-font), sans-serif;
  font-weight: 400;
  background-color: var(--white-color);
  outline: none;
  border: 1px solid var(--grey-medium-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

select {
  padding-right: 50px;
  background: url(../images/select-arrow.svg) no-repeat calc(100% - 15px) var(--white-color);
}

::-webkit-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--grey-color);
  opacity: 1;
}
:-moz-placeholder {
  color: var(--grey-color);
  opacity: 1;
}

input:active,
input:focus,
textarea:active,
textarea:focus {
  border: 1px solid var(--blue-color);
}

.kpnmda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--red-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  border-radius: 30px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.kpnmda:hover,
.kpnmda:active {
  background-color: var(--red-light-color);
  text-decoration: none;
}

.icuwoe {
  position: relative;
  padding: 13px 0;
  background-color: var(--header-color);
  box-shadow: 0 1px 4px 0 rgba(132, 133, 204, 0.25);
}

.mn9o0l {
  max-width: 168px;
  width: 100%;
  transition: var(--transition);
  border: 0;
}

.mn9o0l:hover {
  opacity: .9;
}

.hnrnwh {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  transition: var(--transition);
}

.d50j6m {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, .7);
}

.hnrnwh.is-active {
  transform: translateX(0);
}

.d50j6m.is-active {
  opacity: 1;
  z-index: 9;
}

.ze92va {
  width: 100%;
  margin-right: 30px;
}

.ze92va ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.ze92va ul li {
  margin: 0 40px 0 0;
  padding: 0;
}

.ze92va ul li::before {
  display: none;
}

.ze92va ul li:last-child {
  margin-right: 0;
}

.ze92va ul li * {
  display: inline-flex;
  color: var(--text-color);
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.ze92va ul li a:hover {
  color: var(--blue-color);
  border-color: var(--blue-color);
}

.iic2ah {
  flex-shrink: 0;
}

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

.xozs3a {
  position: relative;
}

.dovi8o {
  background-color: var(--blue-light-color);
  padding: 50px 0 85px;
}

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

.zlhgbv {
  font-size: 16px;
  line-height: 27px;
}

.y0lfrg {
  margin: 0 0 25px;
  font-size: 42px;
  line-height: 57px;
  font-weight: 600;
  color: var(--black-color);
}

.ylclz8 {
  padding: 70px 0 45px;
}

.jbqcic {
  padding: 50px 0 25px;
  background-color: var(--blue-medium-color);
  color: var(--white-color);
}

.jbqcic p {
  color: var(--white-color);
}

.e8y5hd {
  margin: 0 0 30px;
  font-size: 24px;
  display: inline-block;
  line-height: 32px;
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 5px 20px;
}

.jbqcic .uytphv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.jbqcic .xq33c4 {
  width: calc(50% - 15px);
}

.uytphv {
  margin: 20px 0 0;
  padding: 0;
  list-style-type: none;
}

.xq33c4 {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}

.c30gs2 p:last-child {
  margin-bottom: 0;
}

.xq33c4::before {
  display: none;
}

.xq33c4 strong {
  font-weight: 700;
  margin-right: 15px;
  font-size: 24px;
  line-height: 30px;
  color: var(--white-color);
}

.vw8qo9 {
  padding: 50px 0 45px;
  background-color: var(--blue-light-color);
}

.aqz1rk {
  margin: 25px 0;
}

.xmd2ef {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: var(--green-light-color);
  padding: 15px 20px;
  margin-bottom: 14px;
}

.yb015h {
  margin-top: 2px;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xmd2ef p {
  margin-bottom: 0;
}

.g1yq8r {
  padding: 60px 0 40px;
  background-color: var(--grey-bg-color);
}

.qdgzdb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.e239bc {
  margin: 15px 0 0;
  padding: 0;
  list-style-type: none;
}

.v30yg8 {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.v30yg8::before {
  display: none;
}

.mzbcpp {
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.j8adhx p:last-child {
  margin-bottom: 0;
}

.cn0z1h {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  color: var(--white-color);
}

.cn0z1h .e8y5hd + .uytphv,
.cn0z1h .e8y5hd + p {
  margin-top: 10px;
}

.cn0z1h p {
  color: var(--white-color);
}

.fxvtjx,
.w6h4sz {
  width: 50%;
}

.lo987e {
  padding-left: 15px;
}

.y24dus {
  padding-right: 15px;
}

.fxvtjx {
  padding: 50px 30px 25px 0;
  padding-left: calc((100% - (var(--grid-width) + var(--grid-gutter) * 2)) / 2);
  background-color: var(--blue-medium-color);
}

.w6h4sz {
  padding: 50px 0 25px 30px;
  padding-right: calc((100% - (var(--grid-width) + var(--grid-gutter) * 2)) / 2);
  background-color: var(--blue-color);
}

.q9yuzv {
  padding: 60px 0 95px;
}

.jrnr0z {
  max-width: 824px;
  width: 100%;
  margin: 0 auto;
}

.c3cqnq {
  display: flex;
  align-items: center;
  justify-content: center;
}

.st7tcq {
  max-width: 363px;
  width: 100%;
  margin: 20px auto;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.jrnr0z input,
.jrnr0z select,
.jrnr0z .kpnmda {
  border-radius: 0;
  height: 55px;
}

.jrnr0z input,
.jrnr0z select {
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 0;
}

.jrnr0z select {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.jrnr0z .kpnmda {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.rxqsgq {
  margin: 20px 0;
}

.rxqsgq li {
  padding-left: 43px;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}

.rxqsgq li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  left: 0;
  top: 2px;
  border-radius: 5px;
  background-color: var(--blue-color);
  color: var(--white-color);
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  font-weight: 700;
}

.byn9kr {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--blue-color);
  line-height: 54px;
  font-weight: 600;
}

.wxrnkx {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  padding: 20px 15px 100px;
}

.jaikkm,
.hm6b1v {
  padding: 70px 0 80px;
}

.jv8mzb {
  padding: 25px 30px;
  max-width: 565px;
  width: 100%;
  border-radius: 10px;
  margin: 0 auto 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 20px 0 rgba(37, 37, 37, 0.3);
}

.lmv2lu {
  padding: 20px 52px;
  background-color: var(--grey-light-color);
  border: 1px solid var(--green-color);
}

.m9ciad {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black-color);
  margin: 0 0 25px;
  text-align: center;
}

.w57ow9 {
  font-size: 12px;
  line-height: 16px;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 300;
}

.w57ow9 a {
  color: var(--text-color);
  font-weight: 400;
}

.jv8mzb input,
.jv8mzb select,
.jv8mzb textarea {
  margin-bottom: 20px;
}

.jv8mzb textarea {
  height: 155px;
}

.ehu6ec {
  margin: 25px auto 0;
  max-width: 240px;
}

.hg8fqs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(12px * -1) 25px;
}

.ostig7 {
  width: 50%;
  padding: 0 12px;
}

.wpuq4q {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  background-color: var(--grey-light-color);
  border: 1px solid var(--green-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

.wpuq4q p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.p4a1om {
  padding-top: 2px;
}

.xuhqyt {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.bcxoda {
  margin: 0 0 8px;
  display: block;
  line-height: 24px;
  color: var(--black-color);
}

.uvlhkx {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.akib6k {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.akib6k:last-child {
  margin-bottom: 0;
}

.akib6k p {
  margin-right: 10px;
  margin-bottom: 0;
  line-height: 22px;
  width: 125px;
  flex-shrink: 0;
}

.akib6k span {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.j5mr97 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background-color: var(--grey-light-color);
  border: 1px solid var(--green-color);
  padding: 20px 25px;
  width: 100%;
  max-width: 495px;
} 

.xlrloh {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  flex-shrink: 0;
}

.tt2bw9 {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--black-color);
}

.dvkg8d p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
}

.yd0tpo {
  padding-top: 60px;
  background-color: var(--black-color);
}

.ew2zx2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.grsavg {
  margin: 0 15px;
}

.fono9f {
  max-width: 168px;
  width: 100%;
}

.fono9f:hover {
  opacity: .9;
}

.jmn058 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 12px 0 20px 0;
}

.jmn058 li {
  margin: 0 20px 0 0;
  padding: 0;
}

.jmn058 li:last-child {
  margin-right: 0;
}

.jmn058 li::before {
  display: none;
}

.jmn058 li a {
  width: 36px;
  height: 36px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-color);
  border: 0;
}

.jmn058 li a svg path {
  transition: var(--transition);
}

.jmn058 li a:hover svg path {
  fill: var(--blue-color);
}

.s4mhe8 {
  display: flex;
  align-items: flex-start;
  width: 252px;
  margin-top: 30px;
}

.s4mhe8 p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--white-color);
}

.iochew {
  margin-right: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vjvtlo {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--white-color);
}

.i9zm66 {
  margin: 0;
}

.i9zm66.xiv95l {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.i9zm66.xiv95l li {
  width: calc(50% - 5px);
}

.i9zm66 li {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 20px;
}

.i9zm66 li::before {
  display: none;
}

.i9zm66 li a {
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: var(--white-color);
}

.n4uqfj {
  margin-top: 35px;
}

.vpnmzg {
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  text-align: justify;
}

.vpnmzg p {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 0;
  color: var(--white-color);
}

.rx72ez {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  text-align: left;
  color: var(--white-color);
}

.qi5rhh {
  text-align: center;
  padding-top: 24px;
}

.qi5rhh p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--white-color);
}

.imdo3r {
  position: relative;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 100;
  overflow: visible; }
  .imdo3r:hover {
    opacity: 0.7; }
  .imdo3r.is-active:hover {
    opacity: 0.7; }
  .imdo3r.is-active .iif4tg,
  .imdo3r.is-active .iif4tg::before,
  .imdo3r.is-active .iif4tg::after {
    background-color: var(--blue-color); }

.wshfud {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.iif4tg {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .iif4tg, .iif4tg::before, .iif4tg::after {
    width: 40px;
    height: 3px;
    background-color: var(--blue-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .iif4tg::before, .iif4tg::after {
    content: "";
    display: block; }
  .iif4tg::before {
    top: -10px; }
  .iif4tg::after {
    bottom: -10px; }

.nmj9xw .iif4tg {
  top: 2px; }
  .nmj9xw .iif4tg::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .nmj9xw .iif4tg::after {
    top: 20px; }

.nmj9xw.is-active .iif4tg {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .nmj9xw.is-active .iif4tg::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .nmj9xw.is-active .iif4tg::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

.fl5as1 {
  margin-top: 60px!important;
}

.n8u5b8 {
  display: flex;
}

.ehyu7r {
  text-align: center;
}

.m3ajku {
  align-items: center;
} 

.k1djl6 {
  justify-content: space-between;
}

.n9cz9o {
  justify-content: center;
}

.ua9p4i {
  justify-content: flex-start;
}
/* inlined: media.css */
@media (max-width: 1025px) {
  .ze92va ul li {
    margin-right: 25px;
  }

  .imdo3r {
    display: inline-flex;
  }

  .mn9o0l {
    max-width: 125px;
  }

  .hnrnwh {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 90px 30px 30px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 330px;
    z-index: 99;
    background-color: var(--white-color);
    transform: translateX(100%);
  }

  .ze92va {
    margin-right: 0;
    width: auto;
    text-align: right;
    width: 100%;
  }

  .ze92va ul {
    display: block;
  }

  .ze92va ul li {
    margin-right: 0;
    margin-bottom: 15px; 
  }

  .ze92va ul li * {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
  }

  .iic2ah {
    margin-top: 15px;
  }

  .kpnmda {
    font-size: 20px;
    padding: 10px 20px;
  }

  .jbvnj1 {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .yd0tpo {
    padding-top: 60px;
  }

  .ew2zx2 {
    margin-bottom: 30px;
  }

  .fono9f {
    margin-bottom: 0;
    justify-content: flex-start;
    max-width: 125px;
  }

  .iochew {
    margin-right: 7px;
  }

  .s4mhe8 {
    width: 152px;
  }

  .e02tvv,
  .kms487 {
    margin-bottom: 25px;
    text-align: center;
  }

  .y0lfrg,
  .zlhgbv {
    text-align: center;
  }

  .dovi8o {
    padding: 80px 0;
  }

  .qdgzdb {
    margin: 10px 0;
  }

  .j5mr97,
  .wpuq4q {
    margin-left: auto;
    margin-right: auto;
  }

  .dvkg8d {
    max-width: 100%;
  }

  .jv8mzb {
    margin-bottom: 40px;
  }

  .icuwoe {
    padding: 10px 0;
  }

  .mn9o0l {
    max-width: 103px;
  }

  .ylclz8 {
    padding: 70px 0 40px;
  }

  .t27ert {
    padding: 50px 0 10px;
  }

  .khljw6 {
    padding: 40px 0 10px;
  }

  .tl6kno {
    padding: 25px 0 65px;
  }
}

@media (max-width: 767px) {
  p,
  ul li,
  ol li,
  blockquote,
  code, 
  samp,
  input, 
  select, 
  textarea {
    font-size: 15px;
    line-height: 25px;
  }

  ul li {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  ol li {
    margin-bottom: 15px;
  }

  ul li::before {
    top: 10px;
    left: 9px;
    width: 3px;
    height: 3px;
  }

  blockquote {
    margin: 15px 0;
    padding: 14px 18px 14px 27px; 
  }

  blockquote::before {
    left: 17px;
    width: 1px;
  }

  h1 {
    font-size: 32px;
    line-height: 43px;
    margin: 50px 0 25px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 50px 0 25px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
    margin: 50px 0 25px;
  }

  h4 {
    font-size: 26px;
    line-height: 35px;
    margin: 50px 0 25px;
  }

  h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 50px 0 25px;
  }

  h6 {
    font-size: 20px;
    line-height: 27px;
    margin: 50px 0 25px;
  }

  input, 
  select, 
  textarea {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

  .wxrnkx {
    padding: 10px 15px 65px;
  }

  .kpnmda {
    font-size: 18px;
    line-height: 24px;
    padding: 11px 20px;
  }

  .icuwoe {
    padding: 6px 0;
  }

  .dovi8o {
    padding: 40px 0 35px;
  }

  .le49at {
    margin-top: -28px;
  }

  .vw8qo9 {
    padding: 40px 0 25px;
  }

  .g1yq8r {
    padding: 50px 0 45px;
  }

  .mzbcpp {
    margin-right: 15px;
    max-width: 20px;
  }

  .q9yuzv {
    padding: 50px 0 65px;
  }

  .jbqcic {
    padding: 40px 0 20px;
  }

  .jbqcic .uytphv {
    display: block;
  }

  .jbqcic .xq33c4 {
    width: 100%;
    display: block;
  }

  .hnrnwh {
    padding-top: 75px;
  }

  .jbqcic .xq33c4 strong {
    font-size: 18px;
    line-height: 30px;
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }

  .xq33c4 strong {
    margin-right: 10px;
  }

  .aqz1rk {
    margin: 20px 0;
  }

  .xmd2ef {
    padding: 15px 10px;
  }

  .yb015h {
    max-width: 21px;
    margin-right: 10px;
    margin-top: 5px;
  }

  .htdbql {
    width: 100%;
  }

  .c0vn11 {
    margin-right: 10px;
  }

  .kms487 {
    max-width: 331px;
    margin-left: auto;
    margin-right: auto;
  }

  .e02tvv,
  .qdgzdb {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  .y0lfrg {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 15px;
  }

  .c3cqnq {
    display: block;
  }

  .st7tcq {
    max-width: 207px;
    font-size: 10px;
    line-height: 13px;
    margin-top: 15px;
    margin-bottom: 0;
  }

  .jrnr0z input,
  .jrnr0z select {
    border-right: 1px solid var(--grey-medium-color);
    border-bottom: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .jrnr0z input:active,
  .jrnr0z input:focus {
    border-right: 1px solid var(--blue-color);
  }

  .jrnr0z select {
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }

  .jrnr0z .kpnmda {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .zlhgbv {
    font-size: 14px;
    line-height: 23px;
  }

  .ylclz8 {
    padding: 50px 0 35px;
  }

  .rxqsgq li {
    font-size: 15px;
    line-height: 25px;
    padding-left: 34px;
    margin-bottom: 15px;
  }

  .rxqsgq li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    top: 0;
  }

  .xuhqyt {
    width: 40px;
    height: 40px;
    padding: 3px;
  }

  .byn9kr {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 40px;
  }

  .m1pxeb {
    display: block;
  }

  .j5mr97 {
    margin-bottom: 20px;
    padding: 15px;
    width: 100%;
  }

  .xlrloh {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 4px;
  }

  .dvkg8d p {
    font-size: 14px;
    line-height: 21px;
  }

  .hg8fqs {
    display: block;
    margin-bottom: 15px;
  }

  .ostig7 {
    width: 100%;
    margin-bottom: 15px;
  }

  .jaikkm,
  .hm6b1v {
    padding: 45px 0 60px;
  }

  .wbqr9n {
    display: block;
  }

  .akib6k {
    flex-direction: row;
  }

  .xuhqyt {
    margin-right: 15px;
  }

  .p4a1om {
    padding-top: 0;
  }

  .wpuq4q {
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
  }

  .akib6k span {
    font-size: 14px;
    line-height: 19px;
  }
  
  .vdr3x3 {
    padding: 19px 0;
  }

  .cmto6v {
    font-size: 20px;
    line-height: 27px;
  }

  .jv8mzb {
    padding: 10px;
  }

  .lmv2lu {
    padding: 20px 15px;
  }

  .m9ciad {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .jmn058 {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .w57ow9 {
    font-size: 10px;
    line-height: 13px;
  }

  .jv8mzb input, .jv8mzb select, .jv8mzb textarea {
    margin-bottom: 15px;
  }

  .jv8mzb textarea {
    height: 99px;
  }

  .ew2zx2 {
    margin-bottom: 22px;
    flex-wrap: wrap;
  }

  .ehu6ec {
    margin-top: 20px;
  }

  .uvlhkx {
    font-size: 14px;
    line-height: 21px;
  }

  .wpuq4q p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
  }

  .akib6k p {
    margin-bottom: 0;
    width: 109px;
  }

  .akib6k {
    margin-bottom: 8px;
  }

  .cn0z1h {
    flex-direction: column;
  }

  .e8y5hd {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
    padding: 5px 10px;
  }

  .cn0z1h .e8y5hd + .uytphv, 
  .cn0z1h .e8y5hd + p {
    margin-top: 0;
  }

  .xq33c4 {
    margin-bottom: 20px;
  }

  .fxvtjx, 
  .w6h4sz {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .lo987e {
    padding-left: 0;
  }

  .y24dus {
    padding-right: 0;
  }

  .hm6b1v {
    padding: 40px 0 60px;
  }

  .akib6k strong {
    font-size: 14px;
    line-height: 21px;
  }

  .yd0tpo {
    padding-top: 47px;
  }

  .fono9f {
    max-width: 103px;
  }

  .jmn058 li a {
    width: 32px;
    height: 32px;
  }

  .ibwxre {
    margin-bottom: 20px;
  }

  .jmn058 li a img {
    max-height: 80%;
  }

  .s4mhe8 {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .s4mhe8 p {
    font-size: 15px;
    line-height: 22px;
  }

  .i9zm66 li a {
    font-size: 15px;
    line-height: 20px;
  }

  .vjvtlo {
    font-size: 16px;
    line-height: 21px;
  }

  .i9zm66 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .i9zm66 li {
    line-height: 18px;
    width: calc(50% - 5px);
  }

  .grsavg {
    margin: 0;
  }

  .n4uqfj {
    margin-top: 15px;
  }

  .vpnmzg p {
    font-size: 12px;
    line-height: 16px;
  }

  .vpnmzg {
    margin-bottom: 30px;
    text-align: left;
  }

  .qi5rhh {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .qi5rhh p {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 575px) {
  .jrnr0z {
    max-width: 100%;
  }
}


/* ===== PACK7 CUSTOM STYLES ===== */

/* Текстовый логотип — переопределяем SVG-стили из base */
.mn9o0l {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
  text-decoration: none;
}
.mn9o0l:hover {
  opacity: 1;
  color: var(--blue-color);
  text-decoration: none;
}
.fono9f {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
  text-decoration: none;
}
.fono9f:hover {
  color: var(--blue-light-color);
  text-decoration: none;
  opacity: 1;
}

/* Footer top — выравниваем по центру (нет address-блока) */
.ew2zx2 {
  align-items: center;
}

/* ===== CITIES ===== */
.lxa99t {
  padding: 0 0 60px;
}

.hn6lnk {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-color);
  margin-bottom: 1.25rem;
}

.gxk4o2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .gxk4o2 {
    grid-template-columns: 1fr;
  }
}

.qqa3sx {
  border: 1px solid var(--grey-medium-color);
  border-radius: 6px;
  overflow: hidden;
}

.wnprhf {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-color);
  background-color: var(--blue-light-color);
  transition: background-color var(--transition);
  margin: 0;
}

.wnprhf:hover {
  background-color: #b8cfd8;
}

.wnprhf::after {
  content: "▸";
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.qqa3sx[open] .wnprhf::after {
  transform: rotate(90deg);
}

.j5xrl2 {
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--grey-medium-color);
}

.j5xrl2 li::before {
  display: none;
}

.j5xrl2 li {
  margin: 0;
  padding: 0;
}

.j5xrl2 li a {
  display: block;
  padding: 0.2rem 1rem;
  font-size: 0.9rem;
  color: var(--blue-color);
  text-decoration: none;
  transition: background 0.15s;
}

.j5xrl2 li a:hover {
  background: var(--grey-bg-color);
  color: var(--blue-medium-color);
  text-decoration: none;
}

/* ===== ARTICLE CONTENT TYPOGRAPHY ===== */
.jzd0jl {
  line-height: 1.7;
}

.jzd0jl p {
  margin: 0 0 18px;
}

.jzd0jl h1 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 24px;
}

.jzd0jl h2 {
  font-size: 26px;
  line-height: 1.3;
  margin: 44px 0 16px;
}

.jzd0jl h3 {
  font-size: 21px;
  line-height: 1.35;
  margin: 36px 0 12px;
}

.jzd0jl h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 28px 0 10px;
}

.jzd0jl h5 {
  font-size: 16px;
  line-height: 1.45;
  margin: 22px 0 8px;
}

.jzd0jl h6 {
  font-size: 14px;
  line-height: 1.5;
  margin: 18px 0 8px;
}

.jzd0jl ul,
.jzd0jl ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.jzd0jl ul {
  list-style-type: disc;
}

.jzd0jl ol {
  list-style-type: decimal;
}

.jzd0jl li {
  margin-bottom: 6px;
  padding-left: 0;
}

.jzd0jl li::before {
  display: none;
}

/* ===== DISCLAIMER paragraph spacing ===== */
.vpnmzg p + p {
  margin-top: 8px;
}

/* ===== CONTACT FORM ===== */
.xi6cpo {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}

.mky1n1 {
  max-width: 540px;
}

.sbmesq {
  display: block;
  margin-bottom: 22px;
}

.ixxl1o {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 7px;
}

.sh94cv {
  resize: vertical;
  height: 145px;
}

.tkgwcp {
  margin-top: 8px;
  max-width: 200px;
  width: 100%;
}
