/* === 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;
}

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

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

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

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

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

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

.xa1b33 {
  width: 25%;
}

.uxsi4i {
  width: 33.3333%;
}

.qsu4b0 {
  width: 41.666667%;
}

.m5j49q {
  width: 50%;
}

.bkslas {
  width: 100%;
}

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

.hgxe5o {
  flex: 1;
}

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

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

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

  .eaacbp {
    width: 33.3333%;
  }

  .r53wqv {
    width: 58.3333%;
  }

  .qj5syp {
    width: 66.6666%;
  }

  .j0qyk5 {
    width: 50%;
  }

  .iwp1i1 {
    width: 41.6666%;
  }

  .j8rnek {
    flex-direction: row;
  }
}

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

  .bimy3e {
    width: 50%;
  }

  .ez209b {
    width: 58.3333%;
  }

  .e8tksg {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.x9866l:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.hjghzi {
  flex-shrink: 0;
}

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

.epxfai {
  position: relative;
  background-color: var(--blue-color);
  padding: 60px 0 45px;
}

.za3rou {
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
}

.v9iuvp {
  margin: 30px 0;
  font-size: 42px;
  line-height: 57px;
  font-weight: 600;
  color: var(--white-color);
}

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

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

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

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

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

.krgyg2 .qbohp3 {
  width: calc(50% - 15px);
}

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

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

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

.qbohp3::before {
  display: none;
}

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

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

.sgtd2w {
  margin: 25px 0;
}

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

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

.n6tupq p {
  margin-bottom: 0;
}

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

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

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

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

.pnryns::before {
  display: none;
}

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

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

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

.a8irob .rhsyxx + .om2pdq,
.a8irob .rhsyxx + p {
  margin-top: 10px;
}

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

.uekq4n,
.u7j3gk {
  width: 50%;
}

.c3a2xh {
  padding-left: 15px;
}

.qh2ty8 {
  padding-right: 15px;
}

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

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

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

.gcz3ai {
  width: 100%;
  max-width: 470px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
}

.kqe193 {
  padding: 30px 25px;
  width: 100%;
  margin: 0 auto;
}

.gcz3ai select {
  margin-bottom: 15px;
}

.zolmg7 {
  padding: 12px 40px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
}

.djd8d6 {
  margin: 20px auto 0;
  max-width: 240px;
}

.ac0t58 {
  font-size: 12px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.nbi90r {
  margin: 20px 0;
}

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

.nbi90r li::before {
  width: 28px;
  height: 28px;
  left: 0;
  top: 1px; 
  border-radius: 5px;
  background: url(../images/check-icon.svg) no-repeat center var(--green-color);
}

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

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

.bepg62,
.yqu9gw {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.v1zpiu textarea {
  height: 155px;
}

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

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

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

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

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

.k2edid {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.uej5gj {
  margin: 0 15px;
}

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

.hvmpma:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.szxp2h {
  margin: 0;
}

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

.szxp2h.hlkiil li {
  width: calc(50% - 5px);
}

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

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

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

.nsmdmk {
  margin-top: 35px;
}

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

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

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

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

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

.hnosvo {
  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; }
  .hnosvo:hover {
    opacity: 0.7; }
  .hnosvo.is-active:hover {
    opacity: 0.7; }
  .hnosvo.is-active .x9fa5v,
  .hnosvo.is-active .x9fa5v::before,
  .hnosvo.is-active .x9fa5v::after {
    background-color: var(--blue-color); }

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

.x9fa5v {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .x9fa5v, .x9fa5v::before, .x9fa5v::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; }
  .x9fa5v::before, .x9fa5v::after {
    content: "";
    display: block; }
  .x9fa5v::before {
    top: -10px; }
  .x9fa5v::after {
    bottom: -10px; }

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

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

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

.ghi8pk {
  display: flex;
}

.qpkmsg {
  text-align: center;
}

.zl9goc {
  align-items: center;
} 

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

.pskvtf {
  justify-content: center;
}

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

  .hnosvo {
    display: inline-flex;
  }

  .x9866l {
    max-width: 125px;
  }

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

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

  .dsnjcz ul {
    display: block;
  }

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

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

  .hjghzi {
    margin-top: 15px;
  }

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

  .m8i88j {
    margin-right: 0;
  }
}

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

  .mt2jnf {
    margin-bottom: 30px;
  }

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

  .l21mif {
    margin-right: 7px;
  }

  .axkpzs {
    width: 152px;
  }

  .osi9hp,
  .ixuhha {
    margin-bottom: 25px;
    text-align: center;
  }

  .m8i88j {
    display: none;
  }

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

  .v9iuvp,
  .za3rou {
    text-align: center;
  }

  .o5blvz {
    margin: 10px 0;
  }

  .fqe9j6 {
    padding: 80px 0;
  }

  .nwnnty,
  .xkwbco {
    margin-left: auto;
    margin-right: auto;
  }

  .c7vbwn {
    max-width: 100%;
  }

  .v1zpiu {
    margin-bottom: 40px;
  }

  .me6gz4 {
    padding: 10px 0;
  }

  .x9866l {
    max-width: 103px;
  }

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

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

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

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

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

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

  .me6gz4 {
    padding: 6px 0;
  }

  .epxfai {
    padding: 45px 0 25px;
  }

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

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

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

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

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

  .krgyg2 .om2pdq {
    display: block;
  }

  .krgyg2 .qbohp3 {
    width: 100%;
    display: block;
  }

  .dnm6tb {
    padding-top: 75px;
  }

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

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

  .sgtd2w {
    margin: 20px 0;
  }

  .n6tupq {
    padding: 15px 10px;
  }

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

  .fb47lx {
    width: 100%;
  }

  .ii2qis {
    margin-right: 10px;
  }

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

  .osi9hp,
  .o5blvz {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  .v9iuvp {
    font-size: 32px;
    line-height: 43px;
  }

  .q228fh {
    max-width: 207px;
    font-size: 10px;
    line-height: 13px;  
  }

  .gcz3ai select {
    padding: 9px 15px;
  }

  .zolmg7 {
    font-size: 24px;
    line-height: 32px;
    padding: 10px 25px;
  }

  .kqe193 {
    padding: 20px 15px;
  }

  .v9iuvp {
    margin-bottom: 20px;
  }

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

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

  .nbi90r li::before {
    width: 24px;
    height: 24px;
    background-size: 60%;
    top: 0;
  }

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

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

  .q228fh {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .djd8d6 {
    margin-top: 20px;
  }

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

  .gcz3ai .yoi128 {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
  }

  .za3rou {
    font-size: 15px;
    line-height: 25px;
  }

  .vxbjd2 {
    display: block;
  }

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

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

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

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

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

  .bepg62,
  .yqu9gw {
    padding: 45px 0 60px;
  }

  .x1ydvc {
    display: block;
  }

  .sjrzfv {
    flex-direction: row;
  }

  .rrw2s5 {
    margin-right: 15px;
  }

  .k2edid {
    padding-top: 0;
  }

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

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

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

  .v1zpiu {
    padding: 10px;
  }

  .rlzts7 {
    padding: 20px 15px;
  }

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

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

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

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

  .v1zpiu textarea {
    height: 99px;
  }

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

  .bxydum {
    margin-top: 20px;
  }

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

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

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

  .sjrzfv {
    margin-bottom: 8px;
  }

  .a8irob {
    flex-direction: column;
  }

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

  .a8irob .rhsyxx + .om2pdq, 
  .a8irob .rhsyxx + p {
    margin-top: 0;
  }

  .qbohp3 {
    margin-bottom: 20px;
  }

  .uekq4n, 
  .u7j3gk {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .c3a2xh {
    padding-left: 0;
  }

  .qh2ty8 {
    padding-right: 0;
  }

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

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

  .thew7x {
    padding-top: 47px;
  }

  .hvmpma {
    max-width: 103px;
  }

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

  .gt3hjv {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .uej5gj {
    margin: 0;
  }

  .nsmdmk {
    margin-top: 15px;
  }

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

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

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

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

@media (max-width: 575px) {
  .m8i88j {
    max-width: 161px;
  }

  .gcz3ai {
    max-width: 100%;
  }
}


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

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

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

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

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

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

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

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

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

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

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

.uamj6y[open] .ut8q12::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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