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

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

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

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

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

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

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

.xb3gn9 {
  width: 25%;
}

.p9cjti {
  width: 33.3333%;
}

.a3smh3 {
  width: 41.666667%;
}

.sblx4o {
  width: 50%;
}

.krj9km {
  width: 100%;
}

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

.cvp7fi {
  flex: 1;
}

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

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

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

  .jidpls {
    width: 33.3333%;
  }

  .uknrea {
    width: 58.3333%;
  }

  .e3maky {
    width: 66.6666%;
  }

  .vuqprt {
    width: 50%;
  }

  .jgkkfa {
    width: 41.6666%;
  }

  .zw5sh9 {
    flex-direction: row;
  }
}

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

  .vchi1h {
    width: 50%;
  }

  .sgzef6 {
    width: 58.3333%;
  }

  .ky6c35 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.js6iel:hover {
  opacity: .9;
}

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

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

.ck0z9h.oje9te {
  transform: translateX(0);
}

.x3drpc.oje9te {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.ct6vjr {
  flex-shrink: 0;
}

.ct6vjr .uev4a9 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.hgp2zi {
  padding: 60px 0;
}

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

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

.h8lxj7,
.lt5w8b {
  width: calc(50% - 15px);
}

.h8lxj7 .bfvk98:first-child,
.lt5w8b .bfvk98:last-child {
  height: 240px;
}

.h8lxj7 .bfvk98:last-child,
.lt5w8b .bfvk98:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.skb7vg[open] .dyrgq6::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.hgp2zi p,
.z6kay2 p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.hgp2zi ul,
.z6kay2 ul {
  list-style-type: disc;
}

.hgp2zi ol,
.z6kay2 ol {
  list-style-type: decimal;
}

.hgp2zi li,
.z6kay2 li {
  margin-bottom: 6px;
  padding-left: 0;
}

.hgp2zi li::before,
.z6kay2 li::before {
  display: none;
}

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

.ke16c8.utfro6 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.q7m1sq::before {
  display: none;
}

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

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

.c52lwh .k4iuug,
.c52lwh p {
  color: var(--white-color);
}

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

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

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

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

.c48ivx {
  padding: 60px 0;
}

.c48ivx .ke16c8 {
  margin-top: 45px;
}

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

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

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

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

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

.hbgr6q .k4iuug,
.hbgr6q p {
  color: var(--white-color);
}

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

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

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

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

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

.q7m1sq::before {
  display: none;
}

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

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

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

.jucbxo ul {
  margin: 0;
}

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

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

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

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

.j8zwxw {
  margin: 20px auto 0;
}

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

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

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

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

.n6il5f,
.a2rbek {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.nanqgn textarea {
  height: 155px;
}

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

.nanqgn.de65k7 {
  min-height: 460px;
}

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

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

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

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

.k3bjlc {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.xtpnep {
  margin: 0 15px;
}

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

.bzrbap:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.mf09ju {
  margin: 0;
}

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

.mf09ju.f9wj81 li {
  width: calc(50% - 5px);
}

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

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

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

.zwbfeg {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.soa3v6 {
  display: flex;
}

.nuxt2m {
  text-align: center;
}

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

.ronfw1 {
  align-items: center;
} 

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

.asg11j {
  justify-content: center;
}

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

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

  .d6da31 {
    display: inline-flex;
  }

  .js6iel,
  .bzrbap {
    max-width: 157px;
  }

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

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

  .cgck47 ul {
    display: block;
  }

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

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

  .ct6vjr {
    margin-top: 15px;
  }

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

  .amy1ek {
    margin-right: 0;
  }
}

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

  .z0qt7f {
    margin-bottom: 30px;
  }

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

  .pqrw2z {
    margin-right: 7px;
  }

  .o8lx1h {
    width: 152px;
  }

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

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

  .h8lxj7 .bfvk98:first-child,
  .lt5w8b .bfvk98:last-child {
    height: 150px;
  }

  .h8lxj7 .bfvk98:last-child,
  .lt5w8b .bfvk98:first-child {
    height: 114px;
  }

  .amy1ek {
    display: none;
  }

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

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

  .r8baer,
  .jq6kld {
    text-align: center;
  }

  .tgoq12 {
    margin: 10px 0;
  }

  .wz253j {
    padding: 80px 0;
  }

  .zq2yat,
  .t2n9ap {
    margin-left: auto;
    margin-right: auto;
  }

  .de7zka {
    max-width: 100%;
  }

  .nanqgn {
    margin-bottom: 40px;
  }

  .ozpec9 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .ozpec9 {
    padding: 6px 0;
  }

  .js6iel,
  .bzrbap {
    max-width: 157px;
  }

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

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

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

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

  .bfvk98 {
    margin-bottom: 10px;
  }

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

  .h8lxj7, 
  .lt5w8b {
    width: calc(50% - 5px);
  }

  .tl12yy {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .c48ivx .ke16c8 {
    margin-top: 35px;
  }

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

  .hbgr6q .c4d689 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .ou913x .c4d689 {
    display: block;
  }

  .ou913x .q7m1sq {
    width: 100%;
    display: block;
  }

  .ck0z9h {
    padding-top: 75px;
  }

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

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

  .vl38l1 {
    width: 100%;
  }

  .bszvbm {
    margin-right: 10px;
  }

  .hbgr6q .sdsdud {
    padding: 20px 10px;
  }

  .adi2sr,
  .tgoq12 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .yjludy {
    padding: 25px;
  }

  .r8baer {
    margin-bottom: 20px;
  }

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

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

  .uv2hi6 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .j8zwxw {
    margin-top: 20px;
  }

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

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

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

  .we4tws {
    display: block;
  }

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

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

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

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

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

  .n6il5f,
  .a2rbek {
    padding: 45px 0 60px;
  }

  .b3d583 {
    display: block;
  }

  .vj60o9 {
    flex-direction: row;
  }

  .rp30yk {
    margin-right: 15px;
  }

  .k3bjlc {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .nanqgn textarea {
    height: 99px;
  }

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

  .yqqgb9 {
    margin-top: 20px;
  }

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

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

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

  .vj60o9 {
    margin-bottom: 8px;
  }

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

  .q7m1sq {
    margin-bottom: 20px;
  }

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

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

  .p4i18v {
    padding-top: 47px;
  }

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

  .h1sivm {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .xtpnep {
    margin: 0;
  }

  .zwbfeg {
    margin-top: 15px;
  }

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

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

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

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

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

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