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

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

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

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

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

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

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

.zw96gt {
  width: 25%;
}

.ty34eu {
  width: 33.3333%;
}

.ex6v45 {
  width: 41.666667%;
}

.w2blar {
  width: 50%;
}

.wgapw5 {
  width: 100%;
}

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

.hfo7id {
  flex: 1;
}

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

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

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

  .fwq609 {
    width: 33.3333%;
  }

  .kptwx5 {
    width: 58.3333%;
  }

  .ngskgi {
    width: 66.6666%;
  }

  .fexskz {
    width: 50%;
  }

  .zd820n {
    width: 41.6666%;
  }

  .dymmt5 {
    flex-direction: row;
  }
}

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

  .ch1blj {
    width: 50%;
  }

  .njxm8x {
    width: 58.3333%;
  }

  .xvte13 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.x1q9sb:hover {
  opacity: .9;
}

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

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

.afgyzn.uw0jcp {
  transform: translateX(0);
}

.n0qis3.uw0jcp {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.dyay8k {
  flex-shrink: 0;
}

.dyay8k .q8wpog {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.v7x0gl {
  padding: 60px 0;
}

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

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

.d2dd4s,
.fsldeq {
  width: calc(50% - 15px);
}

.d2dd4s .gh6ch0:first-child,
.fsldeq .gh6ch0:last-child {
  height: 240px;
}

.d2dd4s .gh6ch0:last-child,
.fsldeq .gh6ch0:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.qp509e[open] .lftl5l::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.v7x0gl p,
.g3qezz p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.v7x0gl ul,
.g3qezz ul {
  list-style-type: disc;
}

.v7x0gl ol,
.g3qezz ol {
  list-style-type: decimal;
}

.v7x0gl li,
.g3qezz li {
  margin-bottom: 6px;
  padding-left: 0;
}

.v7x0gl li::before,
.g3qezz li::before {
  display: none;
}

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

.umne38.xzhrx6 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.qq69g7::before {
  display: none;
}

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

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

.gin4yf .tpku80,
.gin4yf p {
  color: var(--white-color);
}

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

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

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

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

.b36skv {
  padding: 60px 0;
}

.b36skv .umne38 {
  margin-top: 45px;
}

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

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

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

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

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

.hqrvsc .tpku80,
.hqrvsc p {
  color: var(--white-color);
}

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

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

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

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

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

.qq69g7::before {
  display: none;
}

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

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

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

.aw1z6e ul {
  margin: 0;
}

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

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

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

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

.mr1t85 {
  margin: 20px auto 0;
}

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

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

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

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

.bhd72x,
.hk8xda {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.q0k54a textarea {
  height: 155px;
}

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

.q0k54a.z1mhvg {
  min-height: 460px;
}

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

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

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

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

.qslfoe {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr76hu {
  margin: 0 15px;
}

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

.cy22df:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.m59sce {
  margin: 0;
}

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

.m59sce.dy1ucm li {
  width: calc(50% - 5px);
}

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

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

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

.fhpd5z {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.r525l3 {
  display: flex;
}

.gj9utn {
  text-align: center;
}

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

.zw5mue {
  align-items: center;
} 

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

.sumfge {
  justify-content: center;
}

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

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

  .zpgjp6 {
    display: inline-flex;
  }

  .x1q9sb,
  .cy22df {
    max-width: 157px;
  }

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

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

  .vx9l86 ul {
    display: block;
  }

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

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

  .dyay8k {
    margin-top: 15px;
  }

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

  .qm6kq6 {
    margin-right: 0;
  }
}

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

  .dl2c3q {
    margin-bottom: 30px;
  }

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

  .b1rsn5 {
    margin-right: 7px;
  }

  .gttbac {
    width: 152px;
  }

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

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

  .d2dd4s .gh6ch0:first-child,
  .fsldeq .gh6ch0:last-child {
    height: 150px;
  }

  .d2dd4s .gh6ch0:last-child,
  .fsldeq .gh6ch0:first-child {
    height: 114px;
  }

  .qm6kq6 {
    display: none;
  }

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

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

  .ansmt8,
  .aclkgu {
    text-align: center;
  }

  .eordiy {
    margin: 10px 0;
  }

  .il8cmn {
    padding: 80px 0;
  }

  .i1htwr,
  .rffx1s {
    margin-left: auto;
    margin-right: auto;
  }

  .o9rxiy {
    max-width: 100%;
  }

  .q0k54a {
    margin-bottom: 40px;
  }

  .k0kau5 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .k0kau5 {
    padding: 6px 0;
  }

  .x1q9sb,
  .cy22df {
    max-width: 157px;
  }

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

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

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

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

  .gh6ch0 {
    margin-bottom: 10px;
  }

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

  .d2dd4s, 
  .fsldeq {
    width: calc(50% - 5px);
  }

  .yrlwo4 {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .b36skv .umne38 {
    margin-top: 35px;
  }

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

  .hqrvsc .zy3c86 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .buptc3 .zy3c86 {
    display: block;
  }

  .buptc3 .qq69g7 {
    width: 100%;
    display: block;
  }

  .afgyzn {
    padding-top: 75px;
  }

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

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

  .nj5qsy {
    width: 100%;
  }

  .azw2bb {
    margin-right: 10px;
  }

  .hqrvsc .fku2ii {
    padding: 20px 10px;
  }

  .idwo6l,
  .eordiy {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .sz2qra {
    padding: 25px;
  }

  .ansmt8 {
    margin-bottom: 20px;
  }

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

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

  .raytr0 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .mr1t85 {
    margin-top: 20px;
  }

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

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

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

  .e9os7h {
    display: block;
  }

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

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

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

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

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

  .bhd72x,
  .hk8xda {
    padding: 45px 0 60px;
  }

  .pmfqj2 {
    display: block;
  }

  .u55dxj {
    flex-direction: row;
  }

  .an4223 {
    margin-right: 15px;
  }

  .qslfoe {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .q0k54a textarea {
    height: 99px;
  }

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

  .whss6k {
    margin-top: 20px;
  }

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

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

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

  .u55dxj {
    margin-bottom: 8px;
  }

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

  .qq69g7 {
    margin-bottom: 20px;
  }

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

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

  .n76ggx {
    padding-top: 47px;
  }

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

  .gzg08v {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .mr76hu {
    margin: 0;
  }

  .fhpd5z {
    margin-top: 15px;
  }

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

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

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

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

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

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