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

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

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

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

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

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

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

.xurilq {
  width: 25%;
}

.h6gqu4 {
  width: 33.3333%;
}

.ew4di9 {
  width: 41.666667%;
}

.m9oybl {
  width: 50%;
}

.iabywc {
  width: 100%;
}

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

.wa6ihd {
  flex: 1;
}

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

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

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

  .u5qjw1 {
    width: 33.3333%;
  }

  .vco75x {
    width: 58.3333%;
  }

  .r5cwd3 {
    width: 66.6666%;
  }

  .rp1rtj {
    width: 50%;
  }

  .sy5ykw {
    width: 41.6666%;
  }

  .ranehw {
    flex-direction: row;
  }
}

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

  .qnvnxg {
    width: 50%;
  }

  .tdb5wp {
    width: 58.3333%;
  }

  .go5d21 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.puahhy:hover {
  opacity: .9;
}

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

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

.hqrxm3.lln1sj {
  transform: translateX(0);
}

.nveuzh.lln1sj {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.pkwrjl {
  flex-shrink: 0;
}

.pkwrjl .fb0ejx {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.e4c0jq {
  padding: 60px 0;
}

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

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

.cyfsd1,
.lu90vk {
  width: calc(50% - 15px);
}

.cyfsd1 .ha4kct:first-child,
.lu90vk .ha4kct:last-child {
  height: 240px;
}

.cyfsd1 .ha4kct:last-child,
.lu90vk .ha4kct:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.v58r2e[open] .fp53j4::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.e4c0jq p,
.ltbmsl p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.e4c0jq ul,
.ltbmsl ul {
  list-style-type: disc;
}

.e4c0jq ol,
.ltbmsl ol {
  list-style-type: decimal;
}

.e4c0jq li,
.ltbmsl li {
  margin-bottom: 6px;
  padding-left: 0;
}

.e4c0jq li::before,
.ltbmsl li::before {
  display: none;
}

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

.zf8hdv.l9v7pm {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.nzxvck::before {
  display: none;
}

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

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

.a751ce .i30jfs,
.a751ce p {
  color: var(--white-color);
}

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

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

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

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

.bh53zu {
  padding: 60px 0;
}

.bh53zu .zf8hdv {
  margin-top: 45px;
}

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

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

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

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

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

.pf4n94 .i30jfs,
.pf4n94 p {
  color: var(--white-color);
}

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

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

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

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

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

.nzxvck::before {
  display: none;
}

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

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

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

.jluk61 ul {
  margin: 0;
}

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

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

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

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

.j0hryd {
  margin: 20px auto 0;
}

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

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

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

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

.biykaw,
.svabuz {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.jtxx2n textarea {
  height: 155px;
}

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

.jtxx2n.uj4xjz {
  min-height: 460px;
}

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

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

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

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

.xckbif {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pna0ex {
  margin: 0 15px;
}

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

.up4v0p:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.g205kj {
  margin: 0;
}

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

.g205kj.jizfer li {
  width: calc(50% - 5px);
}

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

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

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

.w7qan6 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.rwvecc {
  display: flex;
}

.k3ommg {
  text-align: center;
}

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

.cybi0i {
  align-items: center;
} 

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

.b4o851 {
  justify-content: center;
}

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

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

  .a91cpx {
    display: inline-flex;
  }

  .puahhy,
  .up4v0p {
    max-width: 157px;
  }

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

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

  .pov8bl ul {
    display: block;
  }

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

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

  .pkwrjl {
    margin-top: 15px;
  }

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

  .fxokhs {
    margin-right: 0;
  }
}

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

  .xc9yjq {
    margin-bottom: 30px;
  }

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

  .lu9qyw {
    margin-right: 7px;
  }

  .zs8b49 {
    width: 152px;
  }

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

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

  .cyfsd1 .ha4kct:first-child,
  .lu90vk .ha4kct:last-child {
    height: 150px;
  }

  .cyfsd1 .ha4kct:last-child,
  .lu90vk .ha4kct:first-child {
    height: 114px;
  }

  .fxokhs {
    display: none;
  }

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

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

  .zr7t8v,
  .cveved {
    text-align: center;
  }

  .nh3v9j {
    margin: 10px 0;
  }

  .lgy2zr {
    padding: 80px 0;
  }

  .oom3fq,
  .y1iwas {
    margin-left: auto;
    margin-right: auto;
  }

  .sd1ab4 {
    max-width: 100%;
  }

  .jtxx2n {
    margin-bottom: 40px;
  }

  .y9hfsu {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .y9hfsu {
    padding: 6px 0;
  }

  .puahhy,
  .up4v0p {
    max-width: 157px;
  }

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

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

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

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

  .ha4kct {
    margin-bottom: 10px;
  }

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

  .cyfsd1, 
  .lu90vk {
    width: calc(50% - 5px);
  }

  .t3pkqx {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .bh53zu .zf8hdv {
    margin-top: 35px;
  }

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

  .pf4n94 .l8ovg5 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .od78mn .l8ovg5 {
    display: block;
  }

  .od78mn .nzxvck {
    width: 100%;
    display: block;
  }

  .hqrxm3 {
    padding-top: 75px;
  }

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

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

  .yx5ztc {
    width: 100%;
  }

  .dyzypl {
    margin-right: 10px;
  }

  .pf4n94 .gc4qc0 {
    padding: 20px 10px;
  }

  .hnj811,
  .nh3v9j {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .dylgvr {
    padding: 25px;
  }

  .zr7t8v {
    margin-bottom: 20px;
  }

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

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

  .f1idz6 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .j0hryd {
    margin-top: 20px;
  }

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

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

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

  .sobl28 {
    display: block;
  }

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

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

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

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

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

  .biykaw,
  .svabuz {
    padding: 45px 0 60px;
  }

  .dl5k98 {
    display: block;
  }

  .e81bia {
    flex-direction: row;
  }

  .liiovw {
    margin-right: 15px;
  }

  .xckbif {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .jtxx2n textarea {
    height: 99px;
  }

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

  .r69vlv {
    margin-top: 20px;
  }

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

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

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

  .e81bia {
    margin-bottom: 8px;
  }

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

  .nzxvck {
    margin-bottom: 20px;
  }

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

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

  .fpbd9r {
    padding-top: 47px;
  }

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

  .v8a7ou {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .pna0ex {
    margin: 0;
  }

  .w7qan6 {
    margin-top: 15px;
  }

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

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

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

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

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

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