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

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

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

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

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

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

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

.w9b8m7 {
  width: 25%;
}

.j34i8a {
  width: 33.3333%;
}

.kbx4b3 {
  width: 41.666667%;
}

.tnwrdf {
  width: 50%;
}

.eltm5o {
  width: 100%;
}

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

.pa7p8u {
  flex: 1;
}

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

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

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

  .u6bul1 {
    width: 33.3333%;
  }

  .b5blv2 {
    width: 58.3333%;
  }

  .plt8yh {
    width: 66.6666%;
  }

  .mes5yz {
    width: 50%;
  }

  .giuzz9 {
    width: 41.6666%;
  }

  .oybxo9 {
    flex-direction: row;
  }
}

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

  .mjcpr3 {
    width: 50%;
  }

  .nxu9iu {
    width: 58.3333%;
  }

  .alho81 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.j7b4in:hover {
  opacity: .9;
}

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

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

.lp1imr.iy3isc {
  transform: translateX(0);
}

.l79som.iy3isc {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.seh11n {
  flex-shrink: 0;
}

.seh11n .pqwjxz {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.dxlx2i {
  padding: 60px 0;
}

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

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

.waul97,
.woe9pr {
  width: calc(50% - 15px);
}

.waul97 .zmsxqc:first-child,
.woe9pr .zmsxqc:last-child {
  height: 240px;
}

.waul97 .zmsxqc:last-child,
.woe9pr .zmsxqc:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.mhhyvs[open] .f9ot2r::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.dxlx2i p,
.f1gueb p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.dxlx2i ul,
.f1gueb ul {
  list-style-type: disc;
}

.dxlx2i ol,
.f1gueb ol {
  list-style-type: decimal;
}

.dxlx2i li,
.f1gueb li {
  margin-bottom: 6px;
  padding-left: 0;
}

.dxlx2i li::before,
.f1gueb li::before {
  display: none;
}

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

.ajpnp9.u598uq {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.k3ksgb::before {
  display: none;
}

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

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

.yx21wq .k4j8y5,
.yx21wq p {
  color: var(--white-color);
}

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

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

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

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

.rvexuw {
  padding: 60px 0;
}

.rvexuw .ajpnp9 {
  margin-top: 45px;
}

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

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

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

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

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

.mycw8l .k4j8y5,
.mycw8l p {
  color: var(--white-color);
}

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

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

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

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

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

.k3ksgb::before {
  display: none;
}

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

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

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

.vynxx3 ul {
  margin: 0;
}

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

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

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

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

.v5awf3 {
  margin: 20px auto 0;
}

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

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

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

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

.jkdz4j,
.guryrn {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.qcbtj2 textarea {
  height: 155px;
}

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

.qcbtj2.ddkz7g {
  min-height: 460px;
}

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

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

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

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

.fbf2pc {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.oiwea2 {
  margin: 0 15px;
}

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

.cnd63k:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ouoe5e {
  margin: 0;
}

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

.ouoe5e.m3unse li {
  width: calc(50% - 5px);
}

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

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

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

.gd5vie {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.gwzqi8 {
  display: flex;
}

.enp399 {
  text-align: center;
}

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

.udzoyf {
  align-items: center;
} 

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

.wif8ku {
  justify-content: center;
}

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

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

  .onylqm {
    display: inline-flex;
  }

  .j7b4in,
  .cnd63k {
    max-width: 157px;
  }

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

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

  .jdqs88 ul {
    display: block;
  }

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

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

  .seh11n {
    margin-top: 15px;
  }

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

  .vvcjs9 {
    margin-right: 0;
  }
}

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

  .f62o1b {
    margin-bottom: 30px;
  }

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

  .rhgcse {
    margin-right: 7px;
  }

  .z13pwq {
    width: 152px;
  }

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

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

  .waul97 .zmsxqc:first-child,
  .woe9pr .zmsxqc:last-child {
    height: 150px;
  }

  .waul97 .zmsxqc:last-child,
  .woe9pr .zmsxqc:first-child {
    height: 114px;
  }

  .vvcjs9 {
    display: none;
  }

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

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

  .wifyuh,
  .yq4y6f {
    text-align: center;
  }

  .olzdnq {
    margin: 10px 0;
  }

  .ciaqeq {
    padding: 80px 0;
  }

  .jxnqi4,
  .xhogm3 {
    margin-left: auto;
    margin-right: auto;
  }

  .o5wq6g {
    max-width: 100%;
  }

  .qcbtj2 {
    margin-bottom: 40px;
  }

  .vxctze {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .vxctze {
    padding: 6px 0;
  }

  .j7b4in,
  .cnd63k {
    max-width: 157px;
  }

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

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

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

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

  .zmsxqc {
    margin-bottom: 10px;
  }

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

  .waul97, 
  .woe9pr {
    width: calc(50% - 5px);
  }

  .dtkyxs {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .rvexuw .ajpnp9 {
    margin-top: 35px;
  }

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

  .mycw8l .la6c7o {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .n1sg87 .la6c7o {
    display: block;
  }

  .n1sg87 .k3ksgb {
    width: 100%;
    display: block;
  }

  .lp1imr {
    padding-top: 75px;
  }

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

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

  .kp6aqi {
    width: 100%;
  }

  .p3wdd9 {
    margin-right: 10px;
  }

  .mycw8l .xecpzc {
    padding: 20px 10px;
  }

  .uw1sem,
  .olzdnq {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .nb6bed {
    padding: 25px;
  }

  .wifyuh {
    margin-bottom: 20px;
  }

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

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

  .ntsutm {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .v5awf3 {
    margin-top: 20px;
  }

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

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

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

  .nglf8j {
    display: block;
  }

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

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

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

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

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

  .jkdz4j,
  .guryrn {
    padding: 45px 0 60px;
  }

  .mkpzx4 {
    display: block;
  }

  .rpit8i {
    flex-direction: row;
  }

  .wmw8dg {
    margin-right: 15px;
  }

  .fbf2pc {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .qcbtj2 textarea {
    height: 99px;
  }

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

  .ofll4x {
    margin-top: 20px;
  }

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

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

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

  .rpit8i {
    margin-bottom: 8px;
  }

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

  .k3ksgb {
    margin-bottom: 20px;
  }

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

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

  .fi24f3 {
    padding-top: 47px;
  }

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

  .uw3q8r {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .oiwea2 {
    margin: 0;
  }

  .gd5vie {
    margin-top: 15px;
  }

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

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

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

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

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

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