/* ===== VARIABLES ===== */
:root {
  --green-color: #009990;
  --green-dark-color: #0E6A65;
  --blue-color: #3E5879;
  --blue-dark-color: #213555;
  --sandy-color: #E9D8CD;
  --body-color: #FFFDF9;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}

/* ===== GRID ===== */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.e009hv {
  width: 25%;
}

.nvlqv2 {
  width: 33.3333%;
}

.m93oz3 {
  width: 41.666667%;
}

.wwb5ul {
  width: 50%;
}

.ck53hw {
  width: 100%;
}

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

.e8m9c9 {
  flex: 1;
}

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

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

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

  .jle2bc {
    width: 33.3333%;
  }

  .z9b2u0 {
    width: 58.3333%;
  }

  .wy5zdt {
    width: 66.6666%;
  }

  .f2tby3 {
    width: 50%;
  }

  .biw5ot {
    width: 41.6666%;
  }

  .dj5hp0 {
    flex-direction: row;
  }
}

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

  .nqg3kh {
    width: 50%;
  }

  .fsmcz6 {
    width: 58.3333%;
  }

  .qaoyk1 {
    width: 41.6666%;
  }

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

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

  .wofote {
    flex-direction: row;
  }
}

/* ===== MAIN ===== */

* {
  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(--body-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: 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: #F5F5F5;
  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: #F5F5F5;
  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-dark-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-dark-color);
}

.pvfm16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--green-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);
}

.pvfm16:hover,
.pvfm16:active {
  background-color: var(--green-dark-color);
  text-decoration: none;
}

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

.ogeneh {
  max-width: 258px;
  width: 100%;
  transition: var(--transition);
  border: 0;
  font-weight: 600;
}

.ogeneh:hover {
  opacity: .9;
}

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

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

.crez76.zkddc6 {
  transform: translateX(0);
}

.v8dhcm.zkddc6 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.xi6r9l {
  flex-shrink: 0;
}

.xi6r9l .pvfm16 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.dkb832 {
  padding: 60px 0;
}

.ovc3dl {
  margin: 5px 0 20px;
}

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

.jg7gxk,
.pguynk {
  width: calc(50% - 15px);
}

.jg7gxk .yfe3js:first-child,
.pguynk .yfe3js:last-child {
  height: 240px;
}

.jg7gxk .yfe3js:last-child,
.pguynk .yfe3js:first-child {
  height: 140px;
}

.yfe3js {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 30px;
  background-color: var(--blue-color);
}

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

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

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

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

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

.luvwbu {
  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-dark-color);
  background-color: var(--sandy-color);
  transition: background-color var(--transition);
}

.luvwbu:hover {
  background-color: #dccfc3;
}

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

.uq9xcj[open] .luvwbu::after {
  transform: rotate(90deg);
}

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

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

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

.nzpqwd li a:hover {
  background: var(--body-color);
  color: var(--blue-dark-color);
}

/* ===== CONTENT TYPOGRAPHY (s-intro + article-content) ===== */
.dkb832,
.mjn2lk {
  line-height: 1.7;
}

.dkb832 p,
.mjn2lk p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.dkb832 ul,
.mjn2lk ul {
  list-style-type: disc;
}

.dkb832 ol,
.mjn2lk ol {
  list-style-type: decimal;
}

.dkb832 li,
.mjn2lk li {
  margin-bottom: 6px;
  padding-left: 0;
}

.dkb832 li::before,
.mjn2lk li::before {
  display: none;
}

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

.mj5jxq.md2oqx {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

.as0qqk {
  font-family: 'Oldenburg';
  text-align: center;
  font-size: 30px;
  line-height: 37px;
  min-width: 26px;
  margin-right: 20px;
}

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

.hpuyhf::before {
  display: none;
}

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

.aa3qui {
  padding: 50px 0 80px;
  background-color: var(--blue-color);
}

.aa3qui .hdfyrv,
.aa3qui p {
  color: var(--white-color);
}

.tqbvkl {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--white-color);
}

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

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

.m70q6j p {
  color: var(--black-color);
  margin-bottom: 0;
}

.w1jng4 {
  padding: 60px 0;
}

.w1jng4 .mj5jxq {
  margin-top: 45px;
}

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

.wxpp5l {
  padding: 20px 25px;
  width: calc(33.3333% - 30px);
  margin: 0 15px 30px;
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
}

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

.ouapit {
  float: right;
  margin-left: 30px;
  margin-top: 20px;
}

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

.f7zpnc .hdfyrv,
.f7zpnc p {
  color: var(--white-color);
}

.f7zpnc .q57w9w {
  background-color: var(--white-color);
  padding: 20px 25px;
  margin: 10px 0 30px;
}

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

.q57w9w {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

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

.hpuyhf::before {
  display: none;
}

.qzwtag {
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quq7kw p {
  margin-bottom: 0;
  color: var(--black-color);
}

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

.quq7kw ul {
  margin: 0;
}

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

.a182k1 {
  padding: 30px 20px;
  width: 100%;
  margin: 0 auto;
}

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

.ub1b4t {
  padding: 12px 24px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--sandy-color);
}

.m5az53 {
  margin: 20px auto 0;
}

.gus5ph {
  font-size: 11px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.hdfyrv {
  margin: 0 0 24px;
  font-size: 34px;
  color: var(--black-color);
  line-height: 1.25;
  font-weight: 600;
}

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

.jl2fev,
.jr66i2 {
  padding: 70px 0 80px;
}

.tv74fc {
  max-width: 565px;
  width: 100%;
  margin: 0 auto 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 20px 0 rgba(142, 142, 142, 0.3);
}

.idlkqp {
  padding: 30px 82px 40px;
}

.kba1dn {
  padding: 15px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--sandy-color);
  margin: 0;
  text-align: center;
}

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

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

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

.tv74fc textarea {
  height: 155px;
}

.eng6fb {
  margin: 25px auto 0;
  max-width: 335px;
}

.tv74fc.ladv8d {
  min-height: 460px;
}

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

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

.gmen9r {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

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

.c91uiw {
  padding-top: 2px;
}

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

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

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

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

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

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

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

.z3w7bb {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  width: 100%;
  max-width: 495px;
} 

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

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

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

.b4mtnd {
  padding-top: 60px;
  background-color: var(--blue-dark-color);
}

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

.qwz4hy {
  margin: 0 15px;
}

.m2er6m {
  max-width: 254px;
  width: 100%;
  font-weight: 600;
  color: var(--white-color);
}

.m2er6m:hover {
  opacity: .9;
}

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

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

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

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

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

.u1xz7u li a:hover {
  background-color: var(--green-dark-color);
}

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

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

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

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

.v0su0c {
  margin: 0;
}

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

.v0su0c.vsa3fh li {
  width: calc(50% - 5px);
}

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

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

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

.wrxs8k {
  margin-top: 35px;
}

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

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

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

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

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

.d2ycdz {
  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; }
  .d2ycdz:hover {
    opacity: 0.7; }
  .d2ycdz.zkddc6:hover {
    opacity: 0.7; }
  .d2ycdz.zkddc6 .x5ez2n,
  .d2ycdz.zkddc6 .x5ez2n::before,
  .d2ycdz.zkddc6 .x5ez2n::after {
    background-color: var(--blue-dark-color); }

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

.x5ez2n {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .x5ez2n, .x5ez2n::before, .x5ez2n::after {
    width: 40px;
    height: 3px;
    background-color: var(--blue-dark-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .x5ez2n::before, .x5ez2n::after {
    content: "";
    display: block; }
  .x5ez2n::before {
    top: -10px; }
  .x5ez2n::after {
    bottom: -10px; }

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

.qr567q.zkddc6 .x5ez2n {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .qr567q.zkddc6 .x5ez2n::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .qr567q.zkddc6 .x5ez2n::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

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

.kdv358 {
  display: flex;
}

.hejx8v {
  text-align: center;
}

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

.p9bzzn {
  align-items: center;
} 

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

.fy7lg7 {
  justify-content: center;
}

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

/* ===== MEDIA ===== */
@media (max-width: 1025px) {
  .oiqcs4 ul li {
    margin-right: 25px;
  }

  .d2ycdz {
    display: inline-flex;
  }

  .ogeneh,
  .m2er6m {
    max-width: 157px;
  }

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

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

  .oiqcs4 ul {
    display: block;
  }

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

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

  .xi6r9l {
    margin-top: 15px;
  }

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

  .x90s2s {
    margin-right: 0;
  }
}

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

  .hgemv0 {
    margin-bottom: 30px;
  }

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

  .hq2xj8 {
    margin-right: 7px;
  }

  .mh33e0 {
    width: 152px;
  }

  .jd5q98 {
    margin-bottom: 25px;
    text-align: center;
  }

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

  .jg7gxk .yfe3js:first-child,
  .pguynk .yfe3js:last-child {
    height: 150px;
  }

  .jg7gxk .yfe3js:last-child,
  .pguynk .yfe3js:first-child {
    height: 114px;
  }

  .x90s2s {
    display: none;
  }

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

  .ouapit {
    float: none;
    margin: 0 0 25px;
    text-align: center;
  }

  .ml8if6,
  .oix9g6 {
    text-align: center;
  }

  .pk8o1g {
    margin: 10px 0;
  }

  .yngav0 {
    padding: 80px 0;
  }

  .z3w7bb,
  .gmen9r {
    margin-left: auto;
    margin-right: auto;
  }

  .lyp5i4 {
    max-width: 100%;
  }

  .tv74fc {
    margin-bottom: 40px;
  }

  .azonsv {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .azonsv {
    padding: 6px 0;
  }

  .ogeneh,
  .m2er6m {
    max-width: 157px;
  }

  .w1jng4 {
    padding: 50px 0 80px;
  }

  .njbc3o {
    margin-top: -90px;
  }

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

  .qzwtag {
    max-width: 21px;
    margin-right: 10px;
  }

  .yfe3js {
    margin-bottom: 10px;
  }

  .yfe3js img {
    max-width: 40%;
  }

  .jg7gxk, 
  .pguynk {
    width: calc(50% - 5px);
  }

  .ck9bwd {
    margin-bottom: 15px;
  }

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

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

  .aa3qui {
    padding: 40px 0 64px;
  }

  .tqbvkl {
    padding: 20px 15px;
    margin-top: 20px;
  }

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

  .w1jng4 .mj5jxq {
    margin-top: 35px;
  }

  .ouapit {
    max-width: 300px;
    margin: 0 auto 25px;
  }

  .f7zpnc .q57w9w {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

  .as0qqk {
    font-size: 24px;
    line-height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 21px;
  }

  .ohobp4 {
    margin-right: 10px;
    max-width: 15px;
  }

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

  .j92nj1 .q57w9w {
    display: block;
  }

  .j92nj1 .hpuyhf {
    width: 100%;
    display: block;
  }

  .crez76 {
    padding-top: 75px;
  }

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

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

  .uksup5 {
    width: 100%;
  }

  .nhhwfi {
    margin-right: 10px;
  }

  .f7zpnc .vtjowd {
    padding: 20px 10px;
  }

  .jd5q98,
  .pk8o1g {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .a182k1 {
    padding: 25px;
  }

  .ml8if6 {
    margin-bottom: 20px;
  }

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

  .dkb832 h5 {
    margin-top: 40px;
  }

  .epeqna {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .m5az53 {
    margin-top: 20px;
  }

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

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

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

  .jv0fl5 {
    display: block;
  }

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

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

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

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

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

  .jl2fev,
  .jr66i2 {
    padding: 45px 0 60px;
  }

  .rh2kwp {
    display: block;
  }

  .v966ap {
    flex-direction: row;
  }

  .vhcg2w {
    margin-right: 15px;
  }

  .c91uiw {
    padding-top: 0;
  }

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

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

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

  .kba1dn {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 25px;
  }

  .idlkqp {
    padding: 25px 25px 30px;
  }

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

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

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

  .tv74fc textarea {
    height: 99px;
  }

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

  .eng6fb {
    margin-top: 20px;
  }

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

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

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

  .v966ap {
    margin-bottom: 8px;
  }

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

  .hpuyhf {
    margin-bottom: 20px;
  }

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

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

  .b4mtnd {
    padding-top: 47px;
  }

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

  .p81h0p {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .qwz4hy {
    margin: 0;
  }

  .wrxs8k {
    margin-top: 15px;
  }

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

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

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

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

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

  .dd9c2r {
    max-width: 335px;
  }
}
