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

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

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

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

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

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

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

.yir3f7 {
  width: 25%;
}

.pkh10y {
  width: 33.3333%;
}

.f3tlcd {
  width: 41.666667%;
}

.c7jdzt {
  width: 50%;
}

.v0gfxq {
  width: 100%;
}

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

.a43opy {
  flex: 1;
}

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

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

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

  .necjc1 {
    width: 33.3333%;
  }

  .y430jl {
    width: 58.3333%;
  }

  .io139u {
    width: 66.6666%;
  }

  .alh4dz {
    width: 50%;
  }

  .mtby4q {
    width: 41.6666%;
  }

  .p5yui5 {
    flex-direction: row;
  }
}

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

  .d3wrki {
    width: 50%;
  }

  .taz5a7 {
    width: 58.3333%;
  }

  .wtsg8m {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.wlja2m:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.ucptnk {
  flex-shrink: 0;
}

.ucptnk .s1elnq {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.gp9kf4 .px3es5 {
  width: calc(50% - 15px);
}

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

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

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

.px3es5::before {
  display: none;
}

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

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

.k24deu {
  margin: 25px 0;
}

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

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

.g3b670 p {
  margin-bottom: 0;
}

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

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

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

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

.mt114i::before {
  display: none;
}

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

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

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

.bghjvy .p6iof0 + .qxc6ok,
.bghjvy .p6iof0 + p {
  margin-top: 10px;
}

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

.ms9aj9,
.jj7rj9 {
  width: 50%;
}

.yv569v {
  padding-left: 15px;
}

.bsm2rt {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

.fmb12a {
  font-size: 12px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.x890rs {
  margin: 20px 0;
}

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

.x890rs li::before {
  width: 28px;
  height: 28px;
  left: 0;
  top: 1px; 
  border-radius: 5px;
  background: url(../images/check-icon.svg) no-repeat center var(--green-color);
}

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

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

.je38f5,
.hx0k74 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.icjapi textarea {
  height: 155px;
}

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

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

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

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

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

.ycihbf {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.miahwp {
  margin: 0 15px;
}

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

.ua896i:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.ng65e4 {
  margin: 0;
}

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

.ng65e4.hnmfpm li {
  width: calc(50% - 5px);
}

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

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

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

.l4abj2 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.b571tv {
  display: flex;
}

.uhv8hg {
  text-align: center;
}

.k1t95x {
  align-items: center;
} 

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

.k9hggi {
  justify-content: center;
}

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

  .m6g9pu {
    display: inline-flex;
  }

  .wlja2m {
    max-width: 125px;
  }

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

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

  .h0ch3k ul {
    display: block;
  }

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

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

  .ucptnk {
    margin-top: 15px;
  }

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

  .wkdpp2 {
    margin-right: 0;
  }
}

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

  .egaqp2 {
    margin-bottom: 30px;
  }

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

  .pzzdvz {
    margin-right: 7px;
  }

  .po8grh {
    width: 152px;
  }

  .zm0n0n,
  .divmjs {
    margin-bottom: 25px;
    text-align: center;
  }

  .wkdpp2 {
    display: none;
  }

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

  .u49vvv,
  .he3orz {
    text-align: center;
  }

  .jpdo75 {
    margin: 10px 0;
  }

  .esxvoj {
    padding: 80px 0;
  }

  .lvexcv,
  .pvorjr {
    margin-left: auto;
    margin-right: auto;
  }

  .wpkuta {
    max-width: 100%;
  }

  .icjapi {
    margin-bottom: 40px;
  }

  .ncggt7 {
    padding: 10px 0;
  }

  .wlja2m {
    max-width: 103px;
  }

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

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

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

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

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

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

  .ncggt7 {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .gp9kf4 .qxc6ok {
    display: block;
  }

  .gp9kf4 .px3es5 {
    width: 100%;
    display: block;
  }

  .df8f38 {
    padding-top: 75px;
  }

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

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

  .k24deu {
    margin: 20px 0;
  }

  .g3b670 {
    padding: 15px 10px;
  }

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

  .c2fsci {
    width: 100%;
  }

  .da65vd {
    margin-right: 10px;
  }

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

  .zm0n0n,
  .jpdo75 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .iadq4e {
    padding: 20px 15px;
  }

  .u49vvv {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .r4n5d9 {
    margin-top: 20px;
  }

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

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

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

  .z3m3yw {
    display: block;
  }

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

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

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

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

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

  .je38f5,
  .hx0k74 {
    padding: 45px 0 60px;
  }

  .ijktis {
    display: block;
  }

  .cb29qg {
    flex-direction: row;
  }

  .mgy6wi {
    margin-right: 15px;
  }

  .ycihbf {
    padding-top: 0;
  }

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

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

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

  .icjapi {
    padding: 10px;
  }

  .zeglcl {
    padding: 20px 15px;
  }

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

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

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

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

  .icjapi textarea {
    height: 99px;
  }

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

  .pbkq9o {
    margin-top: 20px;
  }

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

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

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

  .cb29qg {
    margin-bottom: 8px;
  }

  .bghjvy {
    flex-direction: column;
  }

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

  .bghjvy .p6iof0 + .qxc6ok, 
  .bghjvy .p6iof0 + p {
    margin-top: 0;
  }

  .px3es5 {
    margin-bottom: 20px;
  }

  .ms9aj9, 
  .jj7rj9 {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .yv569v {
    padding-left: 0;
  }

  .bsm2rt {
    padding-right: 0;
  }

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

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

  .ab53lx {
    padding-top: 47px;
  }

  .ua896i {
    max-width: 103px;
  }

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

  .cc6iwf {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .miahwp {
    margin: 0;
  }

  .l4abj2 {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.it6dx0[open] .usczu7::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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