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

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

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

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

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

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

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

.bq8ap5 {
  width: 25%;
}

.ajvkc3 {
  width: 33.3333%;
}

.p6svaq {
  width: 41.666667%;
}

.xlo8jx {
  width: 50%;
}

.azak3k {
  width: 100%;
}

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

.a3y9ft {
  flex: 1;
}

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

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

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

  .w3ztb6 {
    width: 33.3333%;
  }

  .wopotr {
    width: 58.3333%;
  }

  .bca0ei {
    width: 66.6666%;
  }

  .rp9ljy {
    width: 50%;
  }

  .r6eaqc {
    width: 41.6666%;
  }

  .ah29gy {
    flex-direction: row;
  }
}

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

  .o40zfo {
    width: 50%;
  }

  .srocww {
    width: 58.3333%;
  }

  .sr4gjo {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.ma7hf1:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.gpqlxo {
  flex-shrink: 0;
}

.gpqlxo .evvsv1 {
  padding-left: 45px;
  padding-right: 45px;
}

.bg9h9k {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.tl64ke .uw6k4k {
  width: calc(50% - 15px);
}

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

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

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

.uw6k4k::before {
  display: none;
}

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

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

.atl32p {
  margin: 25px 0;
}

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

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

.kiqb6x p {
  margin-bottom: 0;
}

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

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

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

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

.pvdkcw::before {
  display: none;
}

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

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

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

.sjlgl4 .qppd56 + .eygct2,
.sjlgl4 .qppd56 + p {
  margin-top: 10px;
}

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

.a95beu,
.prg5m1 {
  width: 50%;
}

.j79zkx {
  padding-left: 15px;
}

.wctwxi {
  padding-right: 15px;
}

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

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

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

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

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

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

.zk7gf8 input,
.zk7gf8 select,
.zk7gf8 .evvsv1 {
  border-radius: 0;
  height: 55px;
}

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

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

.zk7gf8 .evvsv1 {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ix95qc {
  margin: 20px 0;
}

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

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

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

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

.i3l9x0,
.kica0j {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.adgynm textarea {
  height: 155px;
}

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

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

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

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

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

.rbl6gr {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.jwt60q {
  margin: 0 15px;
}

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

.vq2rki:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.h2rpdl {
  margin: 0;
}

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

.h2rpdl.nn3xp1 li {
  width: calc(50% - 5px);
}

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

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

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

.h6lzrf {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.lixlr4 {
  display: flex;
}

.ejufmq {
  text-align: center;
}

.nv4x9o {
  align-items: center;
} 

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

.sgn3zm {
  justify-content: center;
}

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

  .ptr106 {
    display: inline-flex;
  }

  .ma7hf1 {
    max-width: 125px;
  }

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

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

  .ey0ema ul {
    display: block;
  }

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

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

  .gpqlxo {
    margin-top: 15px;
  }

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

  .sr8ktt {
    margin-right: 0;
  }
}

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

  .kf1net {
    margin-bottom: 30px;
  }

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

  .qbd3fh {
    margin-right: 7px;
  }

  .vlgm4x {
    width: 152px;
  }

  .rp6a3z,
  .z1llz4 {
    margin-bottom: 25px;
    text-align: center;
  }

  .rx1aci,
  .offn2t {
    text-align: center;
  }

  .w3rges {
    padding: 80px 0;
  }

  .i6h6r1 {
    margin: 10px 0;
  }

  .d4yh2h,
  .z1sa7i {
    margin-left: auto;
    margin-right: auto;
  }

  .ibtrz4 {
    max-width: 100%;
  }

  .adgynm {
    margin-bottom: 40px;
  }

  .wqym3f {
    padding: 10px 0;
  }

  .ma7hf1 {
    max-width: 103px;
  }

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

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

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

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

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

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

  .wqym3f {
    padding: 6px 0;
  }

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

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

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

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

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

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

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

  .tl64ke .eygct2 {
    display: block;
  }

  .tl64ke .uw6k4k {
    width: 100%;
    display: block;
  }

  .z1lyqu {
    padding-top: 75px;
  }

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

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

  .atl32p {
    margin: 20px 0;
  }

  .kiqb6x {
    padding: 15px 10px;
  }

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

  .yfsmyt {
    width: 100%;
  }

  .rkhs0y {
    margin-right: 10px;
  }

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

  .rp6a3z,
  .i6h6r1 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .f26u7j {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .ulx37g {
    display: block;
  }

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

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

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

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

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

  .i3l9x0,
  .kica0j {
    padding: 45px 0 60px;
  }

  .i66nni {
    display: block;
  }

  .q3xd8n {
    flex-direction: row;
  }

  .sj4we4 {
    margin-right: 15px;
  }

  .rbl6gr {
    padding-top: 0;
  }

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

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

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

  .adgynm {
    padding: 10px;
  }

  .ip86xi {
    padding: 20px 15px;
  }

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

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

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

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

  .adgynm textarea {
    height: 99px;
  }

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

  .u5pqbo {
    margin-top: 20px;
  }

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

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

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

  .q3xd8n {
    margin-bottom: 8px;
  }

  .sjlgl4 {
    flex-direction: column;
  }

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

  .sjlgl4 .qppd56 + .eygct2, 
  .sjlgl4 .qppd56 + p {
    margin-top: 0;
  }

  .uw6k4k {
    margin-bottom: 20px;
  }

  .a95beu, 
  .prg5m1 {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .j79zkx {
    padding-left: 0;
  }

  .wctwxi {
    padding-right: 0;
  }

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

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

  .g0f46r {
    padding-top: 47px;
  }

  .vq2rki {
    max-width: 103px;
  }

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

  .vi3ihm {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .jwt60q {
    margin: 0;
  }

  .h6lzrf {
    margin-top: 15px;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.vyby78[open] .r6vq54::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.vbp0wy {
  max-width: 540px;
}

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

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

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

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