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

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

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

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

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

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

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

.rljqmb {
  width: 25%;
}

.had86r {
  width: 33.3333%;
}

.dusb25 {
  width: 41.666667%;
}

.jlhci5 {
  width: 50%;
}

.quu3ih {
  width: 100%;
}

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

.x9dsy9 {
  flex: 1;
}

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

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

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

  .kh2rf6 {
    width: 33.3333%;
  }

  .e4j68a {
    width: 58.3333%;
  }

  .tkscp9 {
    width: 66.6666%;
  }

  .nvsqks {
    width: 50%;
  }

  .ubhdzi {
    width: 41.6666%;
  }

  .s5im95 {
    flex-direction: row;
  }
}

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

  .mt6nee {
    width: 50%;
  }

  .um08f6 {
    width: 58.3333%;
  }

  .i62ppc {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.sgrcc6:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.p3uhes {
  flex-shrink: 0;
}

.p3uhes .l9rzf3 {
  padding-left: 45px;
  padding-right: 45px;
}

.hkezrq {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.xvyw2p .b60qcc {
  width: calc(50% - 15px);
}

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

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

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

.b60qcc::before {
  display: none;
}

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

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

.hb54vs {
  margin: 25px 0;
}

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

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

.lff0s2 p {
  margin-bottom: 0;
}

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

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

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

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

.yke3oe::before {
  display: none;
}

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

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

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

.ekn1sz .v71m4h + .b2rt2j,
.ekn1sz .v71m4h + p {
  margin-top: 10px;
}

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

.viyisy,
.eg5e2j {
  width: 50%;
}

.cv4hss {
  padding-left: 15px;
}

.kzd11u {
  padding-right: 15px;
}

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

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

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

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

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

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

.lm97pn input,
.lm97pn select,
.lm97pn .l9rzf3 {
  border-radius: 0;
  height: 55px;
}

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

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

.lm97pn .l9rzf3 {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.onw58b {
  margin: 20px 0;
}

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

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

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

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

.xjdkbm,
.u46ir0 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.ojfcw0 textarea {
  height: 155px;
}

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

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

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

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

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

.dsclty {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fv54wh {
  margin: 0 15px;
}

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

.oxv1n0:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.d24njd {
  margin: 0;
}

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

.d24njd.qnhbqb li {
  width: calc(50% - 5px);
}

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

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

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

.rjosru {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.p12hdn {
  display: flex;
}

.k1mjhb {
  text-align: center;
}

.f270es {
  align-items: center;
} 

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

.fqjauu {
  justify-content: center;
}

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

  .g4308z {
    display: inline-flex;
  }

  .sgrcc6 {
    max-width: 125px;
  }

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

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

  .qymkjx ul {
    display: block;
  }

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

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

  .p3uhes {
    margin-top: 15px;
  }

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

  .zd1i6i {
    margin-right: 0;
  }
}

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

  .sqqnvp {
    margin-bottom: 30px;
  }

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

  .xryjs5 {
    margin-right: 7px;
  }

  .lz8z7c {
    width: 152px;
  }

  .ufoti5,
  .pr6s3z {
    margin-bottom: 25px;
    text-align: center;
  }

  .y05obd,
  .sasaz9 {
    text-align: center;
  }

  .lbxmkb {
    padding: 80px 0;
  }

  .ie06cl {
    margin: 10px 0;
  }

  .tgl7q7,
  .eo32ck {
    margin-left: auto;
    margin-right: auto;
  }

  .hwmh1h {
    max-width: 100%;
  }

  .ojfcw0 {
    margin-bottom: 40px;
  }

  .xqow09 {
    padding: 10px 0;
  }

  .sgrcc6 {
    max-width: 103px;
  }

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

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

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

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

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

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

  .xqow09 {
    padding: 6px 0;
  }

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

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

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

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

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

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

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

  .xvyw2p .b2rt2j {
    display: block;
  }

  .xvyw2p .b60qcc {
    width: 100%;
    display: block;
  }

  .n490ac {
    padding-top: 75px;
  }

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

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

  .hb54vs {
    margin: 20px 0;
  }

  .lff0s2 {
    padding: 15px 10px;
  }

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

  .m3agpw {
    width: 100%;
  }

  .gn0fdz {
    margin-right: 10px;
  }

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

  .ufoti5,
  .ie06cl {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .z4w8xh {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .i9iaih {
    display: block;
  }

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

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

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

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

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

  .xjdkbm,
  .u46ir0 {
    padding: 45px 0 60px;
  }

  .fgiyxl {
    display: block;
  }

  .ov5w1u {
    flex-direction: row;
  }

  .bk7xxo {
    margin-right: 15px;
  }

  .dsclty {
    padding-top: 0;
  }

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

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

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

  .ojfcw0 {
    padding: 10px;
  }

  .r9bv8u {
    padding: 20px 15px;
  }

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

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

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

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

  .ojfcw0 textarea {
    height: 99px;
  }

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

  .acztzc {
    margin-top: 20px;
  }

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

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

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

  .ov5w1u {
    margin-bottom: 8px;
  }

  .ekn1sz {
    flex-direction: column;
  }

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

  .ekn1sz .v71m4h + .b2rt2j, 
  .ekn1sz .v71m4h + p {
    margin-top: 0;
  }

  .b60qcc {
    margin-bottom: 20px;
  }

  .viyisy, 
  .eg5e2j {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .cv4hss {
    padding-left: 0;
  }

  .kzd11u {
    padding-right: 0;
  }

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

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

  .e41x6h {
    padding-top: 47px;
  }

  .oxv1n0 {
    max-width: 103px;
  }

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

  .bsnwql {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .fv54wh {
    margin: 0;
  }

  .rjosru {
    margin-top: 15px;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.ux8wa2[open] .qod5cv::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hdqb5j {
  max-width: 540px;
}

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

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

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

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