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

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

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

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

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

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

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

.t6dlx5 {
  width: 25%;
}

.ccmcj1 {
  width: 33.3333%;
}

.bfen0c {
  width: 41.666667%;
}

.t4ujz4 {
  width: 50%;
}

.nyas4e {
  width: 100%;
}

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

.myrdfq {
  flex: 1;
}

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

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

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

  .ehcu35 {
    width: 33.3333%;
  }

  .f2gi0k {
    width: 58.3333%;
  }

  .jjzyef {
    width: 66.6666%;
  }

  .gceu3l {
    width: 50%;
  }

  .cn6e28 {
    width: 41.6666%;
  }

  .gj63sg {
    flex-direction: row;
  }
}

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

  .fp08tc {
    width: 50%;
  }

  .nnvhen {
    width: 58.3333%;
  }

  .y4dc40 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.bbr25a:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.nk7mdm {
  flex-shrink: 0;
}

.nk7mdm .yyeijy {
  padding-left: 45px;
  padding-right: 45px;
}

.l27io5 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.qurw0a .vcjl4h {
  width: calc(50% - 15px);
}

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

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

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

.vcjl4h::before {
  display: none;
}

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

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

.eoc1o1 {
  margin: 25px 0;
}

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

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

.z6fno8 p {
  margin-bottom: 0;
}

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

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

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

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

.bux38t::before {
  display: none;
}

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

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

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

.do4oqf .cbc65z + .fvm519,
.do4oqf .cbc65z + p {
  margin-top: 10px;
}

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

.qlfd50,
.saonix {
  width: 50%;
}

.di8thz {
  padding-left: 15px;
}

.ugdo35 {
  padding-right: 15px;
}

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

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

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

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

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

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

.xiylkd input,
.xiylkd select,
.xiylkd .yyeijy {
  border-radius: 0;
  height: 55px;
}

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

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

.xiylkd .yyeijy {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.qoe1nk {
  margin: 20px 0;
}

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

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

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

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

.d16jh5,
.aozwby {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.oi8k8m textarea {
  height: 155px;
}

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

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

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

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

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

.dlpaw3 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabbw4 {
  margin: 0 15px;
}

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

.i9sq31:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.xjhqby {
  margin: 0;
}

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

.xjhqby.rxi3rt li {
  width: calc(50% - 5px);
}

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

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

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

.ou3p2h {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.ojd99r {
  display: flex;
}

.efm2ct {
  text-align: center;
}

.h3gksy {
  align-items: center;
} 

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

.b5gx8a {
  justify-content: center;
}

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

  .q72wpv {
    display: inline-flex;
  }

  .bbr25a {
    max-width: 125px;
  }

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

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

  .ga6bdh ul {
    display: block;
  }

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

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

  .nk7mdm {
    margin-top: 15px;
  }

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

  .jz084j {
    margin-right: 0;
  }
}

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

  .g7sw48 {
    margin-bottom: 30px;
  }

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

  .vpyabx {
    margin-right: 7px;
  }

  .xvaqds {
    width: 152px;
  }

  .farcxx,
  .fy574a {
    margin-bottom: 25px;
    text-align: center;
  }

  .bg07re,
  .xmb8o3 {
    text-align: center;
  }

  .tnk9dc {
    padding: 80px 0;
  }

  .dt4sdk {
    margin: 10px 0;
  }

  .n9wbmc,
  .te7py0 {
    margin-left: auto;
    margin-right: auto;
  }

  .ssbefm {
    max-width: 100%;
  }

  .oi8k8m {
    margin-bottom: 40px;
  }

  .mp7hfn {
    padding: 10px 0;
  }

  .bbr25a {
    max-width: 103px;
  }

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

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

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

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

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

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

  .mp7hfn {
    padding: 6px 0;
  }

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

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

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

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

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

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

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

  .qurw0a .fvm519 {
    display: block;
  }

  .qurw0a .vcjl4h {
    width: 100%;
    display: block;
  }

  .gr6l4x {
    padding-top: 75px;
  }

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

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

  .eoc1o1 {
    margin: 20px 0;
  }

  .z6fno8 {
    padding: 15px 10px;
  }

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

  .og5oiv {
    width: 100%;
  }

  .qcpki5 {
    margin-right: 10px;
  }

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

  .farcxx,
  .dt4sdk {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .mernxf {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .yku99o {
    display: block;
  }

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

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

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

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

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

  .d16jh5,
  .aozwby {
    padding: 45px 0 60px;
  }

  .qb9i8t {
    display: block;
  }

  .dl398q {
    flex-direction: row;
  }

  .dl6rx5 {
    margin-right: 15px;
  }

  .dlpaw3 {
    padding-top: 0;
  }

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

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

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

  .oi8k8m {
    padding: 10px;
  }

  .t88j1w {
    padding: 20px 15px;
  }

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

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

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

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

  .oi8k8m textarea {
    height: 99px;
  }

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

  .yqa910 {
    margin-top: 20px;
  }

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

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

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

  .dl398q {
    margin-bottom: 8px;
  }

  .do4oqf {
    flex-direction: column;
  }

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

  .do4oqf .cbc65z + .fvm519, 
  .do4oqf .cbc65z + p {
    margin-top: 0;
  }

  .vcjl4h {
    margin-bottom: 20px;
  }

  .qlfd50, 
  .saonix {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .di8thz {
    padding-left: 0;
  }

  .ugdo35 {
    padding-right: 0;
  }

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

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

  .y3cbm7 {
    padding-top: 47px;
  }

  .i9sq31 {
    max-width: 103px;
  }

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

  .p09574 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .tabbw4 {
    margin: 0;
  }

  .ou3p2h {
    margin-top: 15px;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.zj18gd[open] .wwxl8r::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.voog66 {
  max-width: 540px;
}

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

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

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

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