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

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

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

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

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

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

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

.c04ic6 {
  width: 25%;
}

.st89ma {
  width: 33.3333%;
}

.mchch0 {
  width: 41.666667%;
}

.mo4oit {
  width: 50%;
}

.obdajo {
  width: 100%;
}

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

.uvfo62 {
  flex: 1;
}

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

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

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

  .oakj9f {
    width: 33.3333%;
  }

  .wk2rjb {
    width: 58.3333%;
  }

  .bd5hi8 {
    width: 66.6666%;
  }

  .pxi7kq {
    width: 50%;
  }

  .dzkvwy {
    width: 41.6666%;
  }

  .pz63m1 {
    flex-direction: row;
  }
}

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

  .xhn7q6 {
    width: 50%;
  }

  .xvyopx {
    width: 58.3333%;
  }

  .so32zi {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.zfrd5d:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.e83pj4 {
  flex-shrink: 0;
}

.e83pj4 .w7i4v9 {
  padding-left: 45px;
  padding-right: 45px;
}

.mh1y4u {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.q4tqb7 .kpqijc {
  width: calc(50% - 15px);
}

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

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

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

.kpqijc::before {
  display: none;
}

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

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

.ls5qn1 {
  margin: 25px 0;
}

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

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

.hie5j4 p {
  margin-bottom: 0;
}

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

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

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

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

.prc5hc::before {
  display: none;
}

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

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

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

.jrb8je .netwdv + .vecu5s,
.jrb8je .netwdv + p {
  margin-top: 10px;
}

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

.fgrej2,
.nnb3er {
  width: 50%;
}

.endvoh {
  padding-left: 15px;
}

.mzjbid {
  padding-right: 15px;
}

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

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

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

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

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

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

.fe9pct input,
.fe9pct select,
.fe9pct .w7i4v9 {
  border-radius: 0;
  height: 55px;
}

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

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

.fe9pct .w7i4v9 {
  width: 224px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.i23iqf {
  margin: 20px 0;
}

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

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

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

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

.s3pvt5,
.p3788k {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.c47qp8 textarea {
  height: 155px;
}

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

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

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

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

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

.k87ihm {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.i9y806 {
  margin: 0 15px;
}

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

.n6lxur:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.yb8kce {
  margin: 0;
}

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

.yb8kce.h5dn0t li {
  width: calc(50% - 5px);
}

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

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

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

.zgspvo {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.nk34vd {
  display: flex;
}

.idgt9e {
  text-align: center;
}

.xc1w5v {
  align-items: center;
} 

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

.h9wjg2 {
  justify-content: center;
}

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

  .try1ip {
    display: inline-flex;
  }

  .zfrd5d {
    max-width: 125px;
  }

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

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

  .r0yi79 ul {
    display: block;
  }

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

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

  .e83pj4 {
    margin-top: 15px;
  }

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

  .oym1gt {
    margin-right: 0;
  }
}

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

  .rnczvz {
    margin-bottom: 30px;
  }

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

  .k2f11p {
    margin-right: 7px;
  }

  .ffr9u8 {
    width: 152px;
  }

  .i7koim,
  .yze3de {
    margin-bottom: 25px;
    text-align: center;
  }

  .r0aq3s,
  .j4ycio {
    text-align: center;
  }

  .lanqm0 {
    padding: 80px 0;
  }

  .l93gcw {
    margin: 10px 0;
  }

  .njfq5e,
  .e2wa7e {
    margin-left: auto;
    margin-right: auto;
  }

  .eizaj7 {
    max-width: 100%;
  }

  .c47qp8 {
    margin-bottom: 40px;
  }

  .g6mgxo {
    padding: 10px 0;
  }

  .zfrd5d {
    max-width: 103px;
  }

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

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

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

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

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

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

  .g6mgxo {
    padding: 6px 0;
  }

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

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

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

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

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

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

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

  .q4tqb7 .vecu5s {
    display: block;
  }

  .q4tqb7 .kpqijc {
    width: 100%;
    display: block;
  }

  .wzmvou {
    padding-top: 75px;
  }

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

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

  .ls5qn1 {
    margin: 20px 0;
  }

  .hie5j4 {
    padding: 15px 10px;
  }

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

  .bgo8pi {
    width: 100%;
  }

  .x6i4k5 {
    margin-right: 10px;
  }

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

  .i7koim,
  .l93gcw {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .o7ds3r {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .sfbqxb {
    display: block;
  }

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

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

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

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

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

  .s3pvt5,
  .p3788k {
    padding: 45px 0 60px;
  }

  .posj9b {
    display: block;
  }

  .id0bng {
    flex-direction: row;
  }

  .gj9zwk {
    margin-right: 15px;
  }

  .k87ihm {
    padding-top: 0;
  }

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

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

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

  .c47qp8 {
    padding: 10px;
  }

  .h810jc {
    padding: 20px 15px;
  }

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

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

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

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

  .c47qp8 textarea {
    height: 99px;
  }

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

  .ais1s0 {
    margin-top: 20px;
  }

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

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

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

  .id0bng {
    margin-bottom: 8px;
  }

  .jrb8je {
    flex-direction: column;
  }

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

  .jrb8je .netwdv + .vecu5s, 
  .jrb8je .netwdv + p {
    margin-top: 0;
  }

  .kpqijc {
    margin-bottom: 20px;
  }

  .fgrej2, 
  .nnb3er {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .endvoh {
    padding-left: 0;
  }

  .mzjbid {
    padding-right: 0;
  }

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

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

  .x2vpzg {
    padding-top: 47px;
  }

  .n6lxur {
    max-width: 103px;
  }

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

  .cfqbrp {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .i9y806 {
    margin: 0;
  }

  .zgspvo {
    margin-top: 15px;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.jldhpi[open] .o4llrm::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hncxhi {
  max-width: 540px;
}

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

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

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

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