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

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

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

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

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

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

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

.o53b9s {
  width: 25%;
}

.e6cl5f {
  width: 33.3333%;
}

.v6kzcv {
  width: 41.666667%;
}

.ets6o4 {
  width: 50%;
}

.yfg0mi {
  width: 100%;
}

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

.ozq1k1 {
  flex: 1;
}

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

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

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

  .ubwt0z {
    width: 33.3333%;
  }

  .bpu00r {
    width: 58.3333%;
  }

  .rj0ncz {
    width: 66.6666%;
  }

  .e57t7i {
    width: 50%;
  }

  .x7z1pr {
    width: 41.6666%;
  }

  .ntr7cp {
    flex-direction: row;
  }
}

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

  .l6ak32 {
    width: 50%;
  }

  .tdtgv3 {
    width: 58.3333%;
  }

  .bamzv0 {
    width: 41.6666%;
  }

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

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

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

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

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

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

.oy1p0p .yo73jj:first-child {
  justify-content: flex-start;
}

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

.pcb8ga:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.taumr0 {
  flex-shrink: 0;
}

.taumr0 .qkg8a8 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

.ttvg27 {
  margin-bottom: 28px;
}

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

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

.ebco3k {
  margin-top: 8px;
}

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

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

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

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

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

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

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

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

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

.bb9utk::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;
}

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

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

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

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

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

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

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

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

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

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

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

.uzfcjb.i78hig {
  background-color: var(--blue-light-color-2);
  color: var(--black-color);
}


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

.tl6u2h {
  margin: 25px 0;
}

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

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

.b5m6na p {
  margin-bottom: 0;
}

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

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

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

.xpp4yi p {
  margin-bottom: 0;
}

.pctxry {
  padding-bottom: 30px;
}

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

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

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

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

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

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

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

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

.sca9kv::before {
  display: none;
}

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

.km0dkg p {
  margin-bottom: 0;
}

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

.km0dkg ul {
  margin: 0;
}

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


.gfj1s2 .uzfcjb + p {
  margin-top: 10px;
}

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

.gfj1s2 .fbmcgy p {
  color: var(--text-color)
}

.gfj1s2 .e3eed3 {
  margin-top: 25px;
}

.fbmcgy,
.bzft2e {
  width: 50%;
}

.jelcxc {
  padding-left: 15px;
}

.kxg2q0 {
  padding-right: 15px;
}

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

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

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

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

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

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

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

.vt81po {
  margin: 20px auto 0;
}

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

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

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


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

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

.zgjvfi {
  margin: 0 15px;
}

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

.an203x:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ifnf2g {
  margin: 0;
}

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

.ifnf2g.y990h6 li {
  width: calc(50% - 5px);
}

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

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

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

.fvwl9n {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ahtf8q {
  display: flex;
}

.m4y284 {
  text-align: center;
}

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

.yrzt5d {
  align-items: center;
} 

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

.frt9bn {
  justify-content: center;
}

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

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

  .aw7w4r {
    display: inline-flex;
  }

  .an203x {
    max-width: 160px;
  }

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

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

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

  .f7t94b ul {
    display: block;
  }

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

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

  .taumr0 {
    margin-top: 15px;
  }

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

  .uiamzi {
    margin-right: 0;
  }
}

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

  .mmrf8b {
    margin-bottom: 30px;
  }

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

  .gqua02 {
    margin-right: 7px;
  }

  .q3vcy5 {
    width: 152px;
  }

  .bhh7ro,
  .t8z2nc {
    margin-bottom: 25px;
    text-align: center;
  }

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

  .uiamzi {
    display: none;
  }

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

  .nj0drx,
  .xbrjq7 {
    text-align: center;
  }

  .twpfet {
    margin: 10px 0;
  }

  .tf9a7t {
    padding: 80px 0;
  }

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

  .oadu48 {
    width: 100%;
  }

  .oy1p0p {
    padding: 10px 0;
  }

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

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

  .oy1p0p {
    padding: 6px 0;
  }

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

  .an203x {
    max-width: 168px;
  }

  .ez9ptv {
    padding-bottom: 70px;
  }

  .lz78ch {
    margin-top: 25px;
  }

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

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

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

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

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

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

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

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

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

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

  .vtlkib {
    padding-top: 75px;
  }

  .tl6u2h {
    margin: 20px 0;
  }

  .b5m6na {
    padding: 15px 10px;
  }

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

  .xzj83z {
    width: 100%;
  }

  .v2efng {
    margin-right: 10px;
  }

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

  .bhh7ro,
  .twpfet {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .sni9yh {
    padding: 28px 28px;
  }

  .nj0drx {
    margin-bottom: 20px;
  }

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

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

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

  .vt81po {
    margin-top: 20px;
  }

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

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

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

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

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

  .gfj1s2 {
    flex-direction: column;
  }

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

  .gfj1s2 .uzfcjb + p {
    margin-top: 0;
  }

  .fbmcgy, 
  .bzft2e {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .jelcxc {
    padding-left: 0;
  }

  .kxg2q0 {
    padding-right: 0;
  }

  .jasbq1 {
    padding-top: 47px;
  }

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

  .zu2577 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .zgjvfi {
    margin: 0;
  }

  .fvwl9n {
    margin-top: 15px;
  }

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

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

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

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

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

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

  .sni9yh {
    padding: 22px 20px;
  }

  .hihoxj {
    padding: 12px 20px;
  }

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

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