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

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

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

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

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

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

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

.ket6m2 {
  width: 25%;
}

.pkrlre {
  width: 33.3333%;
}

.yxoth6 {
  width: 41.666667%;
}

.cod825 {
  width: 50%;
}

.kk30yb {
  width: 100%;
}

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

.tv7ans {
  flex: 1;
}

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

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

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

  .dg4x35 {
    width: 33.3333%;
  }

  .uo67kj {
    width: 58.3333%;
  }

  .o1wdxz {
    width: 66.6666%;
  }

  .jp4ll3 {
    width: 50%;
  }

  .iyca7s {
    width: 41.6666%;
  }

  .qyruz2 {
    flex-direction: row;
  }
}

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

  .hx7lr0 {
    width: 50%;
  }

  .xjb1cj {
    width: 58.3333%;
  }

  .tgvhbz {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.lwm06o:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.rwn8pm {
  flex-shrink: 0;
}

.rwn8pm .h4s6wm {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.tb0lk7 .o77lsc {
  width: calc(50% - 15px);
}

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

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

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

.o77lsc::before {
  display: none;
}

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

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

.svvtwb {
  margin: 25px 0;
}

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

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

.gqynkw p {
  margin-bottom: 0;
}

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

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

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

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

.etr9m7::before {
  display: none;
}

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

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

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

.o3oyla .wz7pxz + .q1u5qi,
.o3oyla .wz7pxz + p {
  margin-top: 10px;
}

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

.dadqa2,
.rx9xlc {
  width: 50%;
}

.ei1lzo {
  padding-left: 15px;
}

.bbuj3m {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.frvo6r {
  margin: 20px 0;
}

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

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

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

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

.awrxlk,
.f26hwk {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.cqjpxa textarea {
  height: 155px;
}

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

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

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

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

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

.k1yfl4 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.kgx1zb {
  margin: 0 15px;
}

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

.myro5l:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.rqk67b {
  margin: 0;
}

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

.rqk67b.bou8d5 li {
  width: calc(50% - 5px);
}

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

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

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

.vhgz7s {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.hseq04 {
  display: flex;
}

.up0c4p {
  text-align: center;
}

.fe8gb1 {
  align-items: center;
} 

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

.sbmdrb {
  justify-content: center;
}

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

  .bg9nwf {
    display: inline-flex;
  }

  .lwm06o {
    max-width: 125px;
  }

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

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

  .jl9yn9 ul {
    display: block;
  }

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

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

  .rwn8pm {
    margin-top: 15px;
  }

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

  .az42a2 {
    margin-right: 0;
  }
}

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

  .yp9tbc {
    margin-bottom: 30px;
  }

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

  .jkgz0t {
    margin-right: 7px;
  }

  .ivly8e {
    width: 152px;
  }

  .c1qb3j,
  .eyeyio {
    margin-bottom: 25px;
    text-align: center;
  }

  .az42a2 {
    display: none;
  }

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

  .e2ybnc,
  .wg8ns1 {
    text-align: center;
  }

  .s56s9m {
    margin: 10px 0;
  }

  .k30x37 {
    padding: 80px 0;
  }

  .lcf4zk,
  .ac37aa {
    margin-left: auto;
    margin-right: auto;
  }

  .udx8xy {
    max-width: 100%;
  }

  .cqjpxa {
    margin-bottom: 40px;
  }

  .g2eacc {
    padding: 10px 0;
  }

  .lwm06o {
    max-width: 103px;
  }

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

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

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

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

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

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

  .g2eacc {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .tb0lk7 .q1u5qi {
    display: block;
  }

  .tb0lk7 .o77lsc {
    width: 100%;
    display: block;
  }

  .h2gv5q {
    padding-top: 75px;
  }

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

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

  .svvtwb {
    margin: 20px 0;
  }

  .gqynkw {
    padding: 15px 10px;
  }

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

  .nzp5ub {
    width: 100%;
  }

  .sg4ecl {
    margin-right: 10px;
  }

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

  .c1qb3j,
  .s56s9m {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .xhn3uq {
    padding: 20px 15px;
  }

  .e2ybnc {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .yatnzw {
    margin-top: 20px;
  }

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

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

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

  .iu3ksl {
    display: block;
  }

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

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

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

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

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

  .awrxlk,
  .f26hwk {
    padding: 45px 0 60px;
  }

  .gl12zs {
    display: block;
  }

  .cxl5z5 {
    flex-direction: row;
  }

  .qkwoqt {
    margin-right: 15px;
  }

  .k1yfl4 {
    padding-top: 0;
  }

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

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

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

  .cqjpxa {
    padding: 10px;
  }

  .hbwxda {
    padding: 20px 15px;
  }

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

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

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

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

  .cqjpxa textarea {
    height: 99px;
  }

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

  .kggxa9 {
    margin-top: 20px;
  }

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

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

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

  .cxl5z5 {
    margin-bottom: 8px;
  }

  .o3oyla {
    flex-direction: column;
  }

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

  .o3oyla .wz7pxz + .q1u5qi, 
  .o3oyla .wz7pxz + p {
    margin-top: 0;
  }

  .o77lsc {
    margin-bottom: 20px;
  }

  .dadqa2, 
  .rx9xlc {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .ei1lzo {
    padding-left: 0;
  }

  .bbuj3m {
    padding-right: 0;
  }

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

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

  .jrhbrv {
    padding-top: 47px;
  }

  .myro5l {
    max-width: 103px;
  }

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

  .w1ze9r {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .kgx1zb {
    margin: 0;
  }

  .vhgz7s {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.dx8029[open] .n0e0x4::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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