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

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

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

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

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

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

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

.ht1zow {
  width: 25%;
}

.qq4k2p {
  width: 33.3333%;
}

.elbz2j {
  width: 41.666667%;
}

.cb07mh {
  width: 50%;
}

.g4mv96 {
  width: 100%;
}

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

.cwgvre {
  flex: 1;
}

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

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

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

  .gajxf0 {
    width: 33.3333%;
  }

  .vm829a {
    width: 58.3333%;
  }

  .s1biix {
    width: 66.6666%;
  }

  .zbmnmy {
    width: 50%;
  }

  .wx1b9x {
    width: 41.6666%;
  }

  .tvdcz3 {
    flex-direction: row;
  }
}

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

  .gbe929 {
    width: 50%;
  }

  .hkppg7 {
    width: 58.3333%;
  }

  .n9yt73 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.zxyfne:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.g76h26 {
  flex-shrink: 0;
}

.g76h26 .mamn52 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.kfv867 .nuxzft {
  width: calc(50% - 15px);
}

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

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

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

.nuxzft::before {
  display: none;
}

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

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

.wswhag {
  margin: 25px 0;
}

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

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

.v0sfr8 p {
  margin-bottom: 0;
}

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

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

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

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

.ltipks::before {
  display: none;
}

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

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

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

.qirkdd .lw2kpe + .nx8f2m,
.qirkdd .lw2kpe + p {
  margin-top: 10px;
}

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

.c1c0er,
.eicxqm {
  width: 50%;
}

.xbwzgu {
  padding-left: 15px;
}

.ocfsia {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.p0bazc {
  margin: 20px 0;
}

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

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

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

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

.xm0wb8,
.fkg4eo {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.l7b6ld textarea {
  height: 155px;
}

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

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

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

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

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

.adsyzs {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.oeo3lv {
  margin: 0 15px;
}

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

.uk152t:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.jka0ff {
  margin: 0;
}

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

.jka0ff.apybid li {
  width: calc(50% - 5px);
}

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

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

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

.sq3s9w {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.qdsh2p {
  display: flex;
}

.fzvbq3 {
  text-align: center;
}

.b71aav {
  align-items: center;
} 

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

.hzb2fb {
  justify-content: center;
}

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

  .okxcff {
    display: inline-flex;
  }

  .zxyfne {
    max-width: 125px;
  }

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

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

  .vd5wnt ul {
    display: block;
  }

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

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

  .g76h26 {
    margin-top: 15px;
  }

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

  .zi0oik {
    margin-right: 0;
  }
}

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

  .hvo8oi {
    margin-bottom: 30px;
  }

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

  .q7i54k {
    margin-right: 7px;
  }

  .q7kqkp {
    width: 152px;
  }

  .v4k2x5,
  .lc2cxe {
    margin-bottom: 25px;
    text-align: center;
  }

  .zi0oik {
    display: none;
  }

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

  .ghnmb3,
  .ux2vnh {
    text-align: center;
  }

  .fl4w4b {
    margin: 10px 0;
  }

  .kwyqj6 {
    padding: 80px 0;
  }

  .nyhbfp,
  .jbfg4p {
    margin-left: auto;
    margin-right: auto;
  }

  .fa52ge {
    max-width: 100%;
  }

  .l7b6ld {
    margin-bottom: 40px;
  }

  .vs82t2 {
    padding: 10px 0;
  }

  .zxyfne {
    max-width: 103px;
  }

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

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

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

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

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

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

  .vs82t2 {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .kfv867 .nx8f2m {
    display: block;
  }

  .kfv867 .nuxzft {
    width: 100%;
    display: block;
  }

  .uy4fjh {
    padding-top: 75px;
  }

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

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

  .wswhag {
    margin: 20px 0;
  }

  .v0sfr8 {
    padding: 15px 10px;
  }

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

  .rp4iiy {
    width: 100%;
  }

  .h6emes {
    margin-right: 10px;
  }

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

  .v4k2x5,
  .fl4w4b {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .ynkxn1 {
    padding: 20px 15px;
  }

  .ghnmb3 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .wgiug7 {
    margin-top: 20px;
  }

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

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

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

  .ibjy3n {
    display: block;
  }

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

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

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

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

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

  .xm0wb8,
  .fkg4eo {
    padding: 45px 0 60px;
  }

  .blh5hg {
    display: block;
  }

  .tbhf3f {
    flex-direction: row;
  }

  .bp7qv6 {
    margin-right: 15px;
  }

  .adsyzs {
    padding-top: 0;
  }

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

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

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

  .l7b6ld {
    padding: 10px;
  }

  .ffklpo {
    padding: 20px 15px;
  }

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

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

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

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

  .l7b6ld textarea {
    height: 99px;
  }

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

  .rpt5jr {
    margin-top: 20px;
  }

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

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

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

  .tbhf3f {
    margin-bottom: 8px;
  }

  .qirkdd {
    flex-direction: column;
  }

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

  .qirkdd .lw2kpe + .nx8f2m, 
  .qirkdd .lw2kpe + p {
    margin-top: 0;
  }

  .nuxzft {
    margin-bottom: 20px;
  }

  .c1c0er, 
  .eicxqm {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .xbwzgu {
    padding-left: 0;
  }

  .ocfsia {
    padding-right: 0;
  }

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

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

  .xm8mpl {
    padding-top: 47px;
  }

  .uk152t {
    max-width: 103px;
  }

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

  .nc7dva {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .oeo3lv {
    margin: 0;
  }

  .sq3s9w {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.hyu5in[open] .up5f2t::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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