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

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

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

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

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

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

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

.qh6j8m {
  width: 25%;
}

.q94t4w {
  width: 33.3333%;
}

.z8587w {
  width: 41.666667%;
}

.zyfdzh {
  width: 50%;
}

.fo7w9x {
  width: 100%;
}

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

.k3oep4 {
  flex: 1;
}

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

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

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

  .ih3hs5 {
    width: 33.3333%;
  }

  .kt7icx {
    width: 58.3333%;
  }

  .ir6zr9 {
    width: 66.6666%;
  }

  .p5y2eh {
    width: 50%;
  }

  .r83son {
    width: 41.6666%;
  }

  .pi3x7f {
    flex-direction: row;
  }
}

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

  .flbnzk {
    width: 50%;
  }

  .ng8dc6 {
    width: 58.3333%;
  }

  .c96c6g {
    width: 41.6666%;
  }

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

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

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

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

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

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

.rrwz6j .z5c15n:first-child {
  justify-content: flex-start;
}

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

.tfofqs:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.lzfnoa {
  flex-shrink: 0;
}

.lzfnoa .ai9mpl {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

.kii9cz {
  margin-bottom: 28px;
}

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

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

.qfx5os {
  margin-top: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rhq3wg.xvhfzj {
  background-color: var(--blue-light-color-2);
  color: var(--black-color);
}


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

.owfbyu {
  margin: 25px 0;
}

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

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

.gi0mg3 p {
  margin-bottom: 0;
}

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

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

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

.url6jf p {
  margin-bottom: 0;
}

.ei8j67 {
  padding-bottom: 30px;
}

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

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

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

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

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

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

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

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

.jq8y7o::before {
  display: none;
}

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

.o66bua p {
  margin-bottom: 0;
}

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

.o66bua ul {
  margin: 0;
}

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


.l72a1t .rhq3wg + p {
  margin-top: 10px;
}

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

.l72a1t .tkodol p {
  color: var(--text-color)
}

.l72a1t .lsehqs {
  margin-top: 25px;
}

.tkodol,
.zl5gbj {
  width: 50%;
}

.jkjful {
  padding-left: 15px;
}

.cze3x2 {
  padding-right: 15px;
}

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

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

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

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

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

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

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

.feiefk {
  margin: 20px auto 0;
}

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

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

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


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

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

.ygoee1 {
  margin: 0 15px;
}

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

.jnh9ki:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.rxqeoz {
  margin: 0;
}

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

.rxqeoz.r8ncaj li {
  width: calc(50% - 5px);
}

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

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

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

.lxdgth {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mq5571 {
  display: flex;
}

.fjcxn8 {
  text-align: center;
}

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

.pp06b0 {
  align-items: center;
} 

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

.fvrirs {
  justify-content: center;
}

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

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

  .opqvyl {
    display: inline-flex;
  }

  .jnh9ki {
    max-width: 160px;
  }

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

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

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

  .fyihja ul {
    display: block;
  }

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

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

  .lzfnoa {
    margin-top: 15px;
  }

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

  .sg4phm {
    margin-right: 0;
  }
}

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

  .snwuui {
    margin-bottom: 30px;
  }

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

  .z0bsfs {
    margin-right: 7px;
  }

  .tc7eq5 {
    width: 152px;
  }

  .t71o2i,
  .gji16o {
    margin-bottom: 25px;
    text-align: center;
  }

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

  .sg4phm {
    display: none;
  }

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

  .k32uuc,
  .l0lni6 {
    text-align: center;
  }

  .witnfr {
    margin: 10px 0;
  }

  .dvupzn {
    padding: 80px 0;
  }

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

  .rhipoi {
    width: 100%;
  }

  .rrwz6j {
    padding: 10px 0;
  }

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

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

  .rrwz6j {
    padding: 6px 0;
  }

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

  .jnh9ki {
    max-width: 168px;
  }

  .dk0kla {
    padding-bottom: 70px;
  }

  .m00pyf {
    margin-top: 25px;
  }

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

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

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

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

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

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

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

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

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

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

  .tk1frg {
    padding-top: 75px;
  }

  .owfbyu {
    margin: 20px 0;
  }

  .gi0mg3 {
    padding: 15px 10px;
  }

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

  .aoed9t {
    width: 100%;
  }

  .xcxw9m {
    margin-right: 10px;
  }

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

  .t71o2i,
  .witnfr {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .lia9i0 {
    padding: 28px 28px;
  }

  .k32uuc {
    margin-bottom: 20px;
  }

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

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

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

  .feiefk {
    margin-top: 20px;
  }

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

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

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

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

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

  .l72a1t {
    flex-direction: column;
  }

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

  .l72a1t .rhq3wg + p {
    margin-top: 0;
  }

  .tkodol, 
  .zl5gbj {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .jkjful {
    padding-left: 0;
  }

  .cze3x2 {
    padding-right: 0;
  }

  .e1ougf {
    padding-top: 47px;
  }

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

  .kj1kwg {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .ygoee1 {
    margin: 0;
  }

  .lxdgth {
    margin-top: 15px;
  }

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

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

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

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

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

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

  .lia9i0 {
    padding: 22px 20px;
  }

  .qjom5o {
    padding: 12px 20px;
  }

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

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