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

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

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

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

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

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

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

.rl267w {
  width: 25%;
}

.f8tbex {
  width: 33.3333%;
}

.r7segu {
  width: 41.666667%;
}

.h8qq6r {
  width: 50%;
}

.svkqp4 {
  width: 100%;
}

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

.q823mf {
  flex: 1;
}

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

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

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

  .sm0p8l {
    width: 33.3333%;
  }

  .oz2awf {
    width: 58.3333%;
  }

  .xsj6et {
    width: 66.6666%;
  }

  .vva1gk {
    width: 50%;
  }

  .p2h40i {
    width: 41.6666%;
  }

  .dxw1ds {
    flex-direction: row;
  }
}

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

  .bq9v6q {
    width: 50%;
  }

  .y9l7t8 {
    width: 58.3333%;
  }

  .uz6x21 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.o32o8i:hover {
  opacity: .9;
}

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

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

.kqp9vg.relcy8 {
  transform: translateX(0);
}

.h64yvr.relcy8 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.oj08lk {
  flex-shrink: 0;
}

.oj08lk .u16n6o {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.o6xm1v {
  padding: 60px 0;
}

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

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

.adx916,
.q35vf1 {
  width: calc(50% - 15px);
}

.adx916 .zpzl0n:first-child,
.q35vf1 .zpzl0n:last-child {
  height: 240px;
}

.adx916 .zpzl0n:last-child,
.q35vf1 .zpzl0n:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.iemkfm[open] .nhu1y2::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.o6xm1v p,
.xuar5l p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.o6xm1v ul,
.xuar5l ul {
  list-style-type: disc;
}

.o6xm1v ol,
.xuar5l ol {
  list-style-type: decimal;
}

.o6xm1v li,
.xuar5l li {
  margin-bottom: 6px;
  padding-left: 0;
}

.o6xm1v li::before,
.xuar5l li::before {
  display: none;
}

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

.cnzccv.leqxwx {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.g0gn45::before {
  display: none;
}

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

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

.d9i4mh .eqb728,
.d9i4mh p {
  color: var(--white-color);
}

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

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

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

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

.j4lbft {
  padding: 60px 0;
}

.j4lbft .cnzccv {
  margin-top: 45px;
}

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

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

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

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

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

.d9150f .eqb728,
.d9150f p {
  color: var(--white-color);
}

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

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

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

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

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

.g0gn45::before {
  display: none;
}

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

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

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

.xqtyj0 ul {
  margin: 0;
}

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

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

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

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

.iziuo6 {
  margin: 20px auto 0;
}

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

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

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

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

.hyf6ra,
.l1zx8k {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.j8i4ga textarea {
  height: 155px;
}

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

.j8i4ga.a7ehdh {
  min-height: 460px;
}

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

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

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

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

.dnap67 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.zc90mt {
  margin: 0 15px;
}

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

.xumqwt:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.yd5kq6 {
  margin: 0;
}

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

.yd5kq6.o5tbnj li {
  width: calc(50% - 5px);
}

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

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

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

.ir4usx {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.rh81n2 {
  display: flex;
}

.ik0nib {
  text-align: center;
}

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

.h8lz0x {
  align-items: center;
} 

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

.iilci2 {
  justify-content: center;
}

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

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

  .pny3yk {
    display: inline-flex;
  }

  .o32o8i,
  .xumqwt {
    max-width: 157px;
  }

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

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

  .upk6kc ul {
    display: block;
  }

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

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

  .oj08lk {
    margin-top: 15px;
  }

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

  .qm4lnd {
    margin-right: 0;
  }
}

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

  .lh2f16 {
    margin-bottom: 30px;
  }

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

  .n5kn43 {
    margin-right: 7px;
  }

  .rryxoh {
    width: 152px;
  }

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

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

  .adx916 .zpzl0n:first-child,
  .q35vf1 .zpzl0n:last-child {
    height: 150px;
  }

  .adx916 .zpzl0n:last-child,
  .q35vf1 .zpzl0n:first-child {
    height: 114px;
  }

  .qm4lnd {
    display: none;
  }

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

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

  .kkxkw9,
  .vayx1p {
    text-align: center;
  }

  .km2crk {
    margin: 10px 0;
  }

  .ijaukz {
    padding: 80px 0;
  }

  .hbtl6g,
  .y0ve7l {
    margin-left: auto;
    margin-right: auto;
  }

  .olanpl {
    max-width: 100%;
  }

  .j8i4ga {
    margin-bottom: 40px;
  }

  .xhlw43 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .xhlw43 {
    padding: 6px 0;
  }

  .o32o8i,
  .xumqwt {
    max-width: 157px;
  }

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

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

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

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

  .zpzl0n {
    margin-bottom: 10px;
  }

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

  .adx916, 
  .q35vf1 {
    width: calc(50% - 5px);
  }

  .w0jnbn {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .j4lbft .cnzccv {
    margin-top: 35px;
  }

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

  .d9150f .vdjfte {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .h2z5n2 .vdjfte {
    display: block;
  }

  .h2z5n2 .g0gn45 {
    width: 100%;
    display: block;
  }

  .kqp9vg {
    padding-top: 75px;
  }

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

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

  .j8kcg2 {
    width: 100%;
  }

  .fq2eam {
    margin-right: 10px;
  }

  .d9150f .upipux {
    padding: 20px 10px;
  }

  .mwzs2c,
  .km2crk {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .eiyytn {
    padding: 25px;
  }

  .kkxkw9 {
    margin-bottom: 20px;
  }

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

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

  .timi5t {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .iziuo6 {
    margin-top: 20px;
  }

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

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

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

  .b2uq77 {
    display: block;
  }

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

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

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

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

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

  .hyf6ra,
  .l1zx8k {
    padding: 45px 0 60px;
  }

  .hzvr6k {
    display: block;
  }

  .q5j990 {
    flex-direction: row;
  }

  .ivl510 {
    margin-right: 15px;
  }

  .dnap67 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .j8i4ga textarea {
    height: 99px;
  }

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

  .ccqvf6 {
    margin-top: 20px;
  }

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

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

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

  .q5j990 {
    margin-bottom: 8px;
  }

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

  .g0gn45 {
    margin-bottom: 20px;
  }

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

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

  .z3k3vk {
    padding-top: 47px;
  }

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

  .p3bjov {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .zc90mt {
    margin: 0;
  }

  .ir4usx {
    margin-top: 15px;
  }

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

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

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

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

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

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