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

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

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

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

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

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

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

.obykef {
  width: 25%;
}

.e8mkwq {
  width: 33.3333%;
}

.fb9sq1 {
  width: 41.666667%;
}

.lxvglz {
  width: 50%;
}

.mwjn3z {
  width: 100%;
}

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

.o8e4ux {
  flex: 1;
}

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

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

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

  .r9uby1 {
    width: 33.3333%;
  }

  .o89oar {
    width: 58.3333%;
  }

  .h9k8t3 {
    width: 66.6666%;
  }

  .x2fly9 {
    width: 50%;
  }

  .upmvsl {
    width: 41.6666%;
  }

  .rat0ee {
    flex-direction: row;
  }
}

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

  .oueina {
    width: 50%;
  }

  .phfjjv {
    width: 58.3333%;
  }

  .k7ido0 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.plbyz2:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.y63n94 {
  flex-shrink: 0;
}

.y63n94 .ch8z5k {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.ndvoqq .xuc6po {
  width: calc(50% - 15px);
}

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

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

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

.xuc6po::before {
  display: none;
}

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

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

.k37q93 {
  margin: 25px 0;
}

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

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

.isj8hf p {
  margin-bottom: 0;
}

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

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

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

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

.moyrup::before {
  display: none;
}

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

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

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

.hfzxtv .em3bdj + .s1s100,
.hfzxtv .em3bdj + p {
  margin-top: 10px;
}

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

.d57oyk,
.isw1rz {
  width: 50%;
}

.rioowm {
  padding-left: 15px;
}

.a37pjq {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.xm7u6h {
  margin: 20px 0;
}

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

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

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

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

.yxvy3x,
.hg5k59 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.mcgwth textarea {
  height: 155px;
}

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

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

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

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

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

.se2zpr {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.l7omfh {
  margin: 0 15px;
}

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

.dpw65t:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.y5yrj1 {
  margin: 0;
}

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

.y5yrj1.erupr3 li {
  width: calc(50% - 5px);
}

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

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

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

.ftkktv {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.zzywdg {
  display: flex;
}

.sswt0u {
  text-align: center;
}

.txdibu {
  align-items: center;
} 

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

.om2aux {
  justify-content: center;
}

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

  .vjxil3 {
    display: inline-flex;
  }

  .plbyz2 {
    max-width: 125px;
  }

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

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

  .ja6q5o ul {
    display: block;
  }

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

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

  .y63n94 {
    margin-top: 15px;
  }

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

  .upgopt {
    margin-right: 0;
  }
}

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

  .ooi5lg {
    margin-bottom: 30px;
  }

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

  .w5duyh {
    margin-right: 7px;
  }

  .y44wry {
    width: 152px;
  }

  .n7wi8e,
  .zhvdh1 {
    margin-bottom: 25px;
    text-align: center;
  }

  .upgopt {
    display: none;
  }

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

  .w4o9u1,
  .radhnf {
    text-align: center;
  }

  .ffo0n6 {
    margin: 10px 0;
  }

  .cyz9dd {
    padding: 80px 0;
  }

  .yg530p,
  .gt9l22 {
    margin-left: auto;
    margin-right: auto;
  }

  .m5b94a {
    max-width: 100%;
  }

  .mcgwth {
    margin-bottom: 40px;
  }

  .oes9ka {
    padding: 10px 0;
  }

  .plbyz2 {
    max-width: 103px;
  }

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

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

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

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

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

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

  .oes9ka {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .ndvoqq .s1s100 {
    display: block;
  }

  .ndvoqq .xuc6po {
    width: 100%;
    display: block;
  }

  .a4tnrx {
    padding-top: 75px;
  }

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

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

  .k37q93 {
    margin: 20px 0;
  }

  .isj8hf {
    padding: 15px 10px;
  }

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

  .gylvp0 {
    width: 100%;
  }

  .xnz391 {
    margin-right: 10px;
  }

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

  .n7wi8e,
  .ffo0n6 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .iyyemi {
    padding: 20px 15px;
  }

  .w4o9u1 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .z392zu {
    margin-top: 20px;
  }

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

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

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

  .rxmr2v {
    display: block;
  }

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

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

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

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

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

  .yxvy3x,
  .hg5k59 {
    padding: 45px 0 60px;
  }

  .q7hj86 {
    display: block;
  }

  .jkgbax {
    flex-direction: row;
  }

  .n0nbyp {
    margin-right: 15px;
  }

  .se2zpr {
    padding-top: 0;
  }

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

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

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

  .mcgwth {
    padding: 10px;
  }

  .l0iza4 {
    padding: 20px 15px;
  }

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

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

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

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

  .mcgwth textarea {
    height: 99px;
  }

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

  .kwjwx7 {
    margin-top: 20px;
  }

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

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

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

  .jkgbax {
    margin-bottom: 8px;
  }

  .hfzxtv {
    flex-direction: column;
  }

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

  .hfzxtv .em3bdj + .s1s100, 
  .hfzxtv .em3bdj + p {
    margin-top: 0;
  }

  .xuc6po {
    margin-bottom: 20px;
  }

  .d57oyk, 
  .isw1rz {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .rioowm {
    padding-left: 0;
  }

  .a37pjq {
    padding-right: 0;
  }

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

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

  .ck93f5 {
    padding-top: 47px;
  }

  .dpw65t {
    max-width: 103px;
  }

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

  .v4zzb8 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .l7omfh {
    margin: 0;
  }

  .ftkktv {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.tuwmq9[open] .br0ood::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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