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

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

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

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

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

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

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

.muhcf2 {
  width: 25%;
}

.uam39z {
  width: 33.3333%;
}

.v3nom7 {
  width: 41.666667%;
}

.r4vigp {
  width: 50%;
}

.lhm6m2 {
  width: 100%;
}

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

.n7624q {
  flex: 1;
}

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

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

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

  .rb3aqi {
    width: 33.3333%;
  }

  .gbpq22 {
    width: 58.3333%;
  }

  .o8snp2 {
    width: 66.6666%;
  }

  .zo9vbs {
    width: 50%;
  }

  .pc6lgh {
    width: 41.6666%;
  }

  .ddel9a {
    flex-direction: row;
  }
}

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

  .wnhqzc {
    width: 50%;
  }

  .frgv4n {
    width: 58.3333%;
  }

  .k0li9s {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.tvi3qk:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.y3dxfa {
  flex-shrink: 0;
}

.y3dxfa .ohrgja {
  padding-left: 45px;
  padding-right: 45px;
}

.xiq2we {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.r8m489 .db0eab {
  width: calc(50% - 15px);
}

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

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

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

.db0eab::before {
  display: none;
}

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

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

.r9beld {
  margin: 25px 0;
}

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

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

.nkl9uw p {
  margin-bottom: 0;
}

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

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

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

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

.d4n2rw::before {
  display: none;
}

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

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

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

.ffpo8d .bl5kkz + .h27fjc,
.ffpo8d .bl5kkz + p {
  margin-top: 10px;
}

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

.n3phik,
.zce6na {
  width: 50%;
}

.q8phw6 {
  padding-left: 15px;
}

.om3bse {
  padding-right: 15px;
}

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

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

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

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

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

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

.hyzxy0 input,
.hyzxy0 select,
.hyzxy0 .ohrgja {
  border-radius: 0;
  height: 55px;
}

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

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

.hyzxy0 .ohrgja {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.lhx1gg {
  margin: 20px 0;
}

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

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

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

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

.fjm597,
.uc1dhc {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.ajs75y textarea {
  height: 155px;
}

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

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

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

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

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

.p03kx9 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sr7rg2 {
  margin: 0 15px;
}

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

.m2qjjy:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.dt3zqc {
  margin: 0;
}

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

.dt3zqc.vykw5c li {
  width: calc(50% - 5px);
}

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

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

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

.yyf2mg {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.lp6svn {
  display: flex;
}

.amt69r {
  text-align: center;
}

.trvbjv {
  align-items: center;
} 

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

.z2u8es {
  justify-content: center;
}

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

  .jltlxh {
    display: inline-flex;
  }

  .tvi3qk {
    max-width: 125px;
  }

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

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

  .yad1m4 ul {
    display: block;
  }

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

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

  .y3dxfa {
    margin-top: 15px;
  }

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

  .qzh4lj {
    margin-right: 0;
  }
}

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

  .r9ehei {
    margin-bottom: 30px;
  }

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

  .xybd1k {
    margin-right: 7px;
  }

  .ffqz44 {
    width: 152px;
  }

  .avgg2x,
  .act85a {
    margin-bottom: 25px;
    text-align: center;
  }

  .nm8j6r,
  .i1brtb {
    text-align: center;
  }

  .rqhwlr {
    padding: 80px 0;
  }

  .gl8d0v {
    margin: 10px 0;
  }

  .vcxpg6,
  .r45nlk {
    margin-left: auto;
    margin-right: auto;
  }

  .cfiga2 {
    max-width: 100%;
  }

  .ajs75y {
    margin-bottom: 40px;
  }

  .mzwxvz {
    padding: 10px 0;
  }

  .tvi3qk {
    max-width: 103px;
  }

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

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

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

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

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

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

  .mzwxvz {
    padding: 6px 0;
  }

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

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

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

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

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

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

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

  .r8m489 .h27fjc {
    display: block;
  }

  .r8m489 .db0eab {
    width: 100%;
    display: block;
  }

  .xhfxtn {
    padding-top: 75px;
  }

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

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

  .r9beld {
    margin: 20px 0;
  }

  .nkl9uw {
    padding: 15px 10px;
  }

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

  .m99xls {
    width: 100%;
  }

  .h9p516 {
    margin-right: 10px;
  }

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

  .avgg2x,
  .gl8d0v {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .zdusrk {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .czfy76 {
    display: block;
  }

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

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

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

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

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

  .fjm597,
  .uc1dhc {
    padding: 45px 0 60px;
  }

  .pzw8ny {
    display: block;
  }

  .zoeiiz {
    flex-direction: row;
  }

  .k7p6xu {
    margin-right: 15px;
  }

  .p03kx9 {
    padding-top: 0;
  }

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

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

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

  .ajs75y {
    padding: 10px;
  }

  .gxud5w {
    padding: 20px 15px;
  }

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

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

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

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

  .ajs75y textarea {
    height: 99px;
  }

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

  .pso8al {
    margin-top: 20px;
  }

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

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

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

  .zoeiiz {
    margin-bottom: 8px;
  }

  .ffpo8d {
    flex-direction: column;
  }

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

  .ffpo8d .bl5kkz + .h27fjc, 
  .ffpo8d .bl5kkz + p {
    margin-top: 0;
  }

  .db0eab {
    margin-bottom: 20px;
  }

  .n3phik, 
  .zce6na {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .q8phw6 {
    padding-left: 0;
  }

  .om3bse {
    padding-right: 0;
  }

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

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

  .shknwn {
    padding-top: 47px;
  }

  .m2qjjy {
    max-width: 103px;
  }

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

  .s3qm4i {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .sr7rg2 {
    margin: 0;
  }

  .yyf2mg {
    margin-top: 15px;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.bdv7y6[open] .bthn6l::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.kk065q {
  max-width: 540px;
}

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

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

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

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