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

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

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

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

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

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

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

.oo1fe0 {
  width: 25%;
}

.oug5qx {
  width: 33.3333%;
}

.g3qjyu {
  width: 41.666667%;
}

.p37tq2 {
  width: 50%;
}

.kxocwm {
  width: 100%;
}

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

.twj8n6 {
  flex: 1;
}

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

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

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

  .j1kixg {
    width: 33.3333%;
  }

  .drjrwc {
    width: 58.3333%;
  }

  .j9gto3 {
    width: 66.6666%;
  }

  .tcdtno {
    width: 50%;
  }

  .cf8324 {
    width: 41.6666%;
  }

  .ayxwx5 {
    flex-direction: row;
  }
}

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

  .uc4hz4 {
    width: 50%;
  }

  .twuds4 {
    width: 58.3333%;
  }

  .c8bben {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.jb0bec:hover {
  opacity: .9;
}

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

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

.mxberu.c4qghr {
  transform: translateX(0);
}

.a1vo3q.c4qghr {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.rapi0t {
  flex-shrink: 0;
}

.rapi0t .qfb9i7 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.ad38hd {
  padding: 60px 0;
}

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

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

.t7k3yf,
.amt6pg {
  width: calc(50% - 15px);
}

.t7k3yf .ht40az:first-child,
.amt6pg .ht40az:last-child {
  height: 240px;
}

.t7k3yf .ht40az:last-child,
.amt6pg .ht40az:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.klfa7b[open] .vtwqor::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.ad38hd p,
.if9vsm p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.ad38hd ul,
.if9vsm ul {
  list-style-type: disc;
}

.ad38hd ol,
.if9vsm ol {
  list-style-type: decimal;
}

.ad38hd li,
.if9vsm li {
  margin-bottom: 6px;
  padding-left: 0;
}

.ad38hd li::before,
.if9vsm li::before {
  display: none;
}

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

.woje7i.grkmsp {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.v6ul5p::before {
  display: none;
}

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

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

.aik7gy .ymztyt,
.aik7gy p {
  color: var(--white-color);
}

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

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

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

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

.dm83do {
  padding: 60px 0;
}

.dm83do .woje7i {
  margin-top: 45px;
}

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

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

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

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

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

.pchm58 .ymztyt,
.pchm58 p {
  color: var(--white-color);
}

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

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

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

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

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

.v6ul5p::before {
  display: none;
}

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

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

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

.l3p93x ul {
  margin: 0;
}

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

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

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

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

.spmycr {
  margin: 20px auto 0;
}

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

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

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

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

.akfpkd,
.rhmn68 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.l8n24w textarea {
  height: 155px;
}

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

.l8n24w.blq1ip {
  min-height: 460px;
}

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

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

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

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

.yf893c {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fmvm6h {
  margin: 0 15px;
}

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

.hctxpz:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.mqadpx {
  margin: 0;
}

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

.mqadpx.kitzto li {
  width: calc(50% - 5px);
}

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

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

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

.kf15v1 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.ga787r {
  display: flex;
}

.z4tozx {
  text-align: center;
}

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

.f91jtt {
  align-items: center;
} 

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

.gy6vbv {
  justify-content: center;
}

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

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

  .l48mu9 {
    display: inline-flex;
  }

  .jb0bec,
  .hctxpz {
    max-width: 157px;
  }

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

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

  .i3400a ul {
    display: block;
  }

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

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

  .rapi0t {
    margin-top: 15px;
  }

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

  .hwmk4g {
    margin-right: 0;
  }
}

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

  .icbfzb {
    margin-bottom: 30px;
  }

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

  .ulu0dl {
    margin-right: 7px;
  }

  .bpdehf {
    width: 152px;
  }

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

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

  .t7k3yf .ht40az:first-child,
  .amt6pg .ht40az:last-child {
    height: 150px;
  }

  .t7k3yf .ht40az:last-child,
  .amt6pg .ht40az:first-child {
    height: 114px;
  }

  .hwmk4g {
    display: none;
  }

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

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

  .mgz8rg,
  .gvg8j0 {
    text-align: center;
  }

  .lqnk98 {
    margin: 10px 0;
  }

  .muf1xq {
    padding: 80px 0;
  }

  .g181jq,
  .efiyrg {
    margin-left: auto;
    margin-right: auto;
  }

  .j99t6c {
    max-width: 100%;
  }

  .l8n24w {
    margin-bottom: 40px;
  }

  .ltna4s {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .ltna4s {
    padding: 6px 0;
  }

  .jb0bec,
  .hctxpz {
    max-width: 157px;
  }

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

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

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

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

  .ht40az {
    margin-bottom: 10px;
  }

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

  .t7k3yf, 
  .amt6pg {
    width: calc(50% - 5px);
  }

  .guvnhj {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .dm83do .woje7i {
    margin-top: 35px;
  }

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

  .pchm58 .wwr7bi {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .l7ell1 .wwr7bi {
    display: block;
  }

  .l7ell1 .v6ul5p {
    width: 100%;
    display: block;
  }

  .mxberu {
    padding-top: 75px;
  }

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

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

  .v4vpxy {
    width: 100%;
  }

  .qege4g {
    margin-right: 10px;
  }

  .pchm58 .ruhgzt {
    padding: 20px 10px;
  }

  .fwsack,
  .lqnk98 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .j5uo5e {
    padding: 25px;
  }

  .mgz8rg {
    margin-bottom: 20px;
  }

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

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

  .pi747y {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .spmycr {
    margin-top: 20px;
  }

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

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

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

  .w9wcxm {
    display: block;
  }

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

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

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

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

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

  .akfpkd,
  .rhmn68 {
    padding: 45px 0 60px;
  }

  .yu6fid {
    display: block;
  }

  .ufgbbw {
    flex-direction: row;
  }

  .hu8295 {
    margin-right: 15px;
  }

  .yf893c {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .l8n24w textarea {
    height: 99px;
  }

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

  .pji9pg {
    margin-top: 20px;
  }

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

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

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

  .ufgbbw {
    margin-bottom: 8px;
  }

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

  .v6ul5p {
    margin-bottom: 20px;
  }

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

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

  .uspiif {
    padding-top: 47px;
  }

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

  .qu23qn {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .fmvm6h {
    margin: 0;
  }

  .kf15v1 {
    margin-top: 15px;
  }

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

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

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

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

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

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