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

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

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

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

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

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

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

.on4549 {
  width: 25%;
}

.yibukl {
  width: 33.3333%;
}

.xjkqde {
  width: 41.666667%;
}

.m3oaaw {
  width: 50%;
}

.rbgwve {
  width: 100%;
}

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

.z0fwqj {
  flex: 1;
}

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

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

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

  .z1v00u {
    width: 33.3333%;
  }

  .kteaht {
    width: 58.3333%;
  }

  .mxrbdx {
    width: 66.6666%;
  }

  .z6b2pd {
    width: 50%;
  }

  .gvea9c {
    width: 41.6666%;
  }

  .b8yzpq {
    flex-direction: row;
  }
}

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

  .a2ct4s {
    width: 50%;
  }

  .gt1gv7 {
    width: 58.3333%;
  }

  .ve1e1y {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.oa769p:hover {
  opacity: .9;
}

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

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

.rjly51.fsnd7i {
  transform: translateX(0);
}

.l7y11e.fsnd7i {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.ybcwyq {
  flex-shrink: 0;
}

.ybcwyq .p9o68i {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.vb7qiv {
  padding: 60px 0;
}

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

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

.e3ar80,
.y9i0ug {
  width: calc(50% - 15px);
}

.e3ar80 .e349u1:first-child,
.y9i0ug .e349u1:last-child {
  height: 240px;
}

.e3ar80 .e349u1:last-child,
.y9i0ug .e349u1:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.j2h97m[open] .ornegh::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.vb7qiv p,
.q15e6i p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.vb7qiv ul,
.q15e6i ul {
  list-style-type: disc;
}

.vb7qiv ol,
.q15e6i ol {
  list-style-type: decimal;
}

.vb7qiv li,
.q15e6i li {
  margin-bottom: 6px;
  padding-left: 0;
}

.vb7qiv li::before,
.q15e6i li::before {
  display: none;
}

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

.lch4yk.ro2auj {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.s3gam4::before {
  display: none;
}

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

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

.nz78dk .ebs8le,
.nz78dk p {
  color: var(--white-color);
}

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

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

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

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

.ozjtzi {
  padding: 60px 0;
}

.ozjtzi .lch4yk {
  margin-top: 45px;
}

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

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

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

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

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

.mbonnn .ebs8le,
.mbonnn p {
  color: var(--white-color);
}

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

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

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

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

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

.s3gam4::before {
  display: none;
}

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

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

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

.djn3ho ul {
  margin: 0;
}

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

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

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

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

.v7y7k3 {
  margin: 20px auto 0;
}

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

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

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

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

.sqo7jj,
.w8ewkf {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.u1pgfe textarea {
  height: 155px;
}

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

.u1pgfe.tam3mr {
  min-height: 460px;
}

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

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

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

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

.kjdzcb {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.epkqkg {
  margin: 0 15px;
}

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

.linkxj:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.s1b6pq {
  margin: 0;
}

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

.s1b6pq.ytf2ny li {
  width: calc(50% - 5px);
}

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

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

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

.p9w5bi {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.br4957 {
  display: flex;
}

.md1gx8 {
  text-align: center;
}

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

.ov79n3 {
  align-items: center;
} 

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

.xs10ou {
  justify-content: center;
}

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

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

  .n4a3dd {
    display: inline-flex;
  }

  .oa769p,
  .linkxj {
    max-width: 157px;
  }

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

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

  .wajm4p ul {
    display: block;
  }

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

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

  .ybcwyq {
    margin-top: 15px;
  }

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

  .v2jcpo {
    margin-right: 0;
  }
}

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

  .d4liex {
    margin-bottom: 30px;
  }

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

  .ugikgq {
    margin-right: 7px;
  }

  .kq8dot {
    width: 152px;
  }

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

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

  .e3ar80 .e349u1:first-child,
  .y9i0ug .e349u1:last-child {
    height: 150px;
  }

  .e3ar80 .e349u1:last-child,
  .y9i0ug .e349u1:first-child {
    height: 114px;
  }

  .v2jcpo {
    display: none;
  }

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

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

  .j87a3a,
  .d23xl5 {
    text-align: center;
  }

  .a4ucpq {
    margin: 10px 0;
  }

  .vjxhhs {
    padding: 80px 0;
  }

  .ad7526,
  .kg0zcw {
    margin-left: auto;
    margin-right: auto;
  }

  .uon7eu {
    max-width: 100%;
  }

  .u1pgfe {
    margin-bottom: 40px;
  }

  .pxq0lq {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .pxq0lq {
    padding: 6px 0;
  }

  .oa769p,
  .linkxj {
    max-width: 157px;
  }

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

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

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

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

  .e349u1 {
    margin-bottom: 10px;
  }

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

  .e3ar80, 
  .y9i0ug {
    width: calc(50% - 5px);
  }

  .c1y01s {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .ozjtzi .lch4yk {
    margin-top: 35px;
  }

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

  .mbonnn .i9a9uf {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .pptsao .i9a9uf {
    display: block;
  }

  .pptsao .s3gam4 {
    width: 100%;
    display: block;
  }

  .rjly51 {
    padding-top: 75px;
  }

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

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

  .wwuioo {
    width: 100%;
  }

  .vvksf4 {
    margin-right: 10px;
  }

  .mbonnn .qbu6ic {
    padding: 20px 10px;
  }

  .cy3xxr,
  .a4ucpq {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .qaho8h {
    padding: 25px;
  }

  .j87a3a {
    margin-bottom: 20px;
  }

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

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

  .uyr2sz {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .v7y7k3 {
    margin-top: 20px;
  }

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

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

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

  .t41w66 {
    display: block;
  }

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

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

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

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

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

  .sqo7jj,
  .w8ewkf {
    padding: 45px 0 60px;
  }

  .lz5h09 {
    display: block;
  }

  .a3u3sf {
    flex-direction: row;
  }

  .e40xix {
    margin-right: 15px;
  }

  .kjdzcb {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .u1pgfe textarea {
    height: 99px;
  }

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

  .de5cfy {
    margin-top: 20px;
  }

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

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

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

  .a3u3sf {
    margin-bottom: 8px;
  }

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

  .s3gam4 {
    margin-bottom: 20px;
  }

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

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

  .b2fz8o {
    padding-top: 47px;
  }

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

  .wuybks {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .epkqkg {
    margin: 0;
  }

  .p9w5bi {
    margin-top: 15px;
  }

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

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

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

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

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

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