/* === main.css === */
/* inlined: ../css/vars.css */
:root {
  --blue-color: #133E87;
  --blue-medium-color: #608BC1;
  --blue-light-color: #A6BFDE;
  --blue-light-color-2: #CBDCEB;
  --yellow-light-color: #F3F3E0;
  --text-color: #272727;
  --black-color: #252525;
  --black-color-2: #171B1D;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;
  --grey-light-color: #F9F9F9;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}
/* inlined: ../css/grid.css */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.zxqhw1 {
  width: 25%;
}

.wo8pop {
  width: 33.3333%;
}

.pxligl {
  width: 41.666667%;
}

.ljqpph {
  width: 50%;
}

.sn944c {
  width: 100%;
}

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

.npkxj3 {
  flex: 1;
}

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

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

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

  .qqyz50 {
    width: 33.3333%;
  }

  .hm7lv0 {
    width: 58.3333%;
  }

  .votth8 {
    width: 66.6666%;
  }

  .tzs06p {
    width: 50%;
  }

  .uw4is9 {
    width: 41.6666%;
  }

  .sc64vy {
    flex-direction: row;
  }
}

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

  .frapav {
    width: 50%;
  }

  .hsffei {
    width: 58.3333%;
  }

  .si35nx {
    width: 41.6666%;
  }

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

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

  .abet4z {
    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(--black-color);
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 24px;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
  margin: 48px 0 14px;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
  margin: 36px 0 10px;
}

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

h5 {
  font-size: 16px;
  line-height: 1.4;
  margin: 24px 0 6px;
}

h6 {
  font-size: 14px;
  line-height: 1.4;
  margin: 20px 0 6px;
}

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: 14px 16px;
  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-medium-color);
}

.rnrpu6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--blue-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.rnrpu6:hover,
.rnrpu6:active {
  background-color: var(--blue-medium-color);
  text-decoration: none;
}

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

.qy8k52 .g0egu9:first-child {
  justify-content: flex-start;
}

.hg8rd5 {
  transition: var(--transition);
  border: 0;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  padding-right: 16px;
}

.hg8rd5:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.hwww21 {
  flex-shrink: 0;
}

.hwww21 .rnrpu6 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

/* ─── Choose Your City ──────────────────────────────────────────── */

/* ─── Contact Form ──────────────────────────────────────────────── */

.l8yfnq {
  margin-bottom: 28px;
}

.stvlsx {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ywucg0 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 6px;
}

.nd5t5f {
  margin-top: 8px;
}

/* ─── Choose Your City ──────────────────────────────────────────── */

.kucpod {
  padding: 60px 0 70px;
  background-color: #f5f7fb;
}

.z0t7qs {
  font-size: 26px;
  font-weight: 700;
  color: var(--black-color);
  margin: 0 0 32px;
}

.ir628m {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.wtxp7s {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.wtxp7s:hover {
  box-shadow: 0 4px 16px rgba(19, 62, 135, 0.10);
}

.wtxp7s[open] {
  border-color: var(--blue-color, #133E87);
}

.pqpwrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-color, #133E87);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pqpwrp::-webkit-details-marker {
  display: none;
}

.pqpwrp::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue-color, #133E87);
  border-bottom: 2px solid var(--blue-color, #133E87);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}

.wtxp7s[open] .pqpwrp::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.jrgngu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #e0e6f0;
}

.jrgngu li {
  border-bottom: 1px solid #f0f3f8;
}

.jrgngu li:nth-last-child(-n+2) {
  border-bottom: none;
}

.jrgngu li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jrgngu li a:hover {
  background: #f0f5ff;
  color: var(--blue-color, #133E87);
}

.vtya3u p {
  margin-bottom: 18px;
}

.vtya3u h1:not(:first-child),
.vtya3u h2,
.vtya3u h3,
.vtya3u h4,
.vtya3u h5,
.vtya3u h6 {
  margin-top: 40px;
}

.vtya3u h2 + p,
.vtya3u h3 + p,
.vtya3u h4 + p {
  margin-top: 0;
}

.lzc02b {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
}

.z8e50p {
  margin: 0 0 20px;
  font-size: 24px;
  display: inline-block;
  font-weight: 600;
  line-height: 32px;
  background-color: var(--blue-medium-color);
  color: var(--white-color);
  padding: 5px 20px;
}

.z8e50p.jw0zo7 {
  background-color: var(--blue-light-color-2);
  color: var(--black-color);
}


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

.l4k3in {
  margin: 25px 0;
}

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

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

.al58qb p {
  margin-bottom: 0;
}

.tntu2v {
  padding: 50px 0 120px;
  background-color: var(--blue-medium-color);
}

.y42cx8 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -95px -15px 30px;
}

.neagyc {
  padding: 30px 20px;
  width: calc(25% - 30px);
  margin: 0 15px 30px;
  text-align: center;
  border: 1px solid var(--blue-medium-color);
  background-color: var(--grey-light-color);
}

.neagyc p {
  margin-bottom: 0;
}

.jvlicz {
  padding-bottom: 30px;
}

.gz80cb {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 35px -15px 0;
}

.rqwex1 {
  padding: 25px 20px;
  width: calc(33.3333% - 30px);
  margin: 0 15px 30px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--yellow-light-color);
  background-color: var(--grey-light-color);
}

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

.a1tn5q {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw1w13 {
  padding: 50px 0 30px;
  background-color: var(--blue-light-color-2);
}

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

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

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

.iqnpoc::before {
  display: none;
}

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

.gs9jty p {
  margin-bottom: 0;
}

.gs9jty ul li {
  margin-bottom: 0;
}

.gs9jty ul {
  margin: 0;
}

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


.duwhp1 .z8e50p + p {
  margin-top: 10px;
}

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

.duwhp1 .eoqe0v p {
  color: var(--text-color)
}

.duwhp1 .yaae77 {
  margin-top: 25px;
}

.eoqe0v,
.cy4tek {
  width: 50%;
}

.e3zny4 {
  padding-left: 15px;
}

.tj3brs {
  padding-right: 15px;
}

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

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

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

.v7nvo9 {
  width: 100%;
  max-width: 520px;
  background-color: var(--white-color);
  text-align: center;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(19, 62, 135, 0.10);
}

.ayvszo {
  padding: 32px 48px;
  width: 100%;
  margin: 0 auto;
}

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

.yxvaq6 {
  padding: 16px 44px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--yellow-light-color);
}

.bb9pek {
  margin: 20px auto 0;
}

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

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

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


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

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

.ld0oo0 {
  margin: 0 15px;
}

.y7qkhb {
  max-width: 254px;
  width: 100%;
  font-weight: 700;
  color: #fff;
  align-self: flex-start;
}

.y7qkhb:hover {
  opacity: .9;
}

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

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

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

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

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

.y4sdcx li a:hover {
  background-color: var(--blue-light-color);
}

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

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

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

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

.b18ns6 {
  margin: 0;
}

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

.b18ns6.ktgyli li {
  width: calc(50% - 5px);
}

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

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

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

.v1pzaw {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.yspcwr {
  display: flex;
}

.vinxrm {
  text-align: center;
}

.eiv9ky {
  color: var(--white-color);
}

.rppa7d {
  align-items: center;
} 

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

.w2w4tp {
  justify-content: center;
}

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

@media (max-width: 1025px) {
  .wd44p0 ul li {
    margin-right: 25px;
  }

  .mhjnvl {
    display: inline-flex;
  }

  .y7qkhb {
    max-width: 160px;
  }

  .hg8rd5 {
    font-size: 14px;
    max-width: none;
  }

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

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

  .wd44p0 ul {
    display: block;
  }

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

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

  .hwww21 {
    margin-top: 15px;
  }

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

  .s8i80t {
    margin-right: 0;
  }
}

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

  .v156ww {
    margin-bottom: 30px;
  }

  .y7qkhb {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .ogxrpw {
    margin-right: 7px;
  }

  .s0f1ek {
    width: 152px;
  }

  .lzc02b,
  .ez20nb {
    margin-bottom: 25px;
    text-align: center;
  }

  .lzc02b {
    float: none;
    margin-right: 0;
  }

  .s8i80t {
    display: none;
  }

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

  .pl0fb4,
  .v83lp2 {
    text-align: center;
  }

  .ej1h9g {
    margin: 10px 0;
  }

  .zmf8y1 {
    padding: 80px 0;
  }

  .neagyc {
    width: calc(50% - 30px);
  }

  .rqwex1 {
    width: 100%;
  }

  .qy8k52 {
    padding: 10px 0;
  }

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

@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: 28px;
    line-height: 1.25;
    margin: 0 0 20px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.3;
    margin: 36px 0 12px;
  }

  h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 28px 0 8px;
  }

  h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 22px 0 6px;
  }

  h5 {
    font-size: 15px;
    line-height: 1.4;
    margin: 18px 0 6px;
  }

  h6 {
    font-size: 14px;
    line-height: 1.4;
    margin: 16px 0 6px;
  }

  input, 
  select, 
  textarea {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

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

  .qy8k52 {
    padding: 6px 0;
  }

  .hg8rd5 {
    font-size: 13px;
    max-width: none;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    padding-right: 10px;
  }

  .y7qkhb {
    max-width: 168px;
  }

  .tntu2v {
    padding-bottom: 70px;
  }

  .gz80cb {
    margin-top: 25px;
  }

  .rqwex1 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 15px;
    margin-bottom: 20px;
  }

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

  .a1tn5q {
    max-width: 45px;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .y42cx8 {
    margin-top: -50px;
  }

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

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

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

  .sw1w13 {
    padding: 30px 0 10px;
  }

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

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

  .pk6q0k {
    padding-top: 75px;
  }

  .l4k3in {
    margin: 20px 0;
  }

  .al58qb {
    padding: 15px 10px;
  }

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

  .wkj3rn {
    width: 100%;
  }

  .v5n8z7 {
    margin-right: 10px;
  }

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

  .lzc02b,
  .ej1h9g {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .v7nvo9 select {
    padding: 14px 15px;
  }

  .yxvaq6 {
    font-size: 24px;
    line-height: 32px;
    padding: 14px 28px;
  }

  .ayvszo {
    padding: 28px 28px;
  }

  .pl0fb4 {
    margin-bottom: 20px;
  }

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

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

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

  .bb9pek {
    margin-top: 20px;
  }

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

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

  .v83lp2 {
    font-size: 15px;
    line-height: 25px;
  }
  
  .r982tx {
    padding: 19px 0;
  }

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

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

  .duwhp1 {
    flex-direction: column;
  }

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

  .duwhp1 .z8e50p + p {
    margin-top: 0;
  }

  .eoqe0v, 
  .cy4tek {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .e3zny4 {
    padding-left: 0;
  }

  .tj3brs {
    padding-right: 0;
  }

  .cp3knp {
    padding-top: 47px;
  }

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

  .l6bwbx {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .ld0oo0 {
    margin: 0;
  }

  .v1pzaw {
    margin-top: 15px;
  }

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

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

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

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

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

  .v7nvo9 {
    max-width: 100%;
    border-radius: 12px;
  }

  .ayvszo {
    padding: 22px 20px;
  }

  .yxvaq6 {
    padding: 12px 20px;
  }

  input,
  select,
  textarea {
    padding: 14px 14px;
    font-size: 16px;
  }
}

/* from style.css */
.avw6v2{text-align:center!important;}
