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

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

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

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

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

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

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

.arro1f {
  width: 25%;
}

.lc0y3q {
  width: 33.3333%;
}

.fss91u {
  width: 41.666667%;
}

.mcle30 {
  width: 50%;
}

.ptnyzs {
  width: 100%;
}

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

.y09rfj {
  flex: 1;
}

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

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

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

  .zmmnks {
    width: 33.3333%;
  }

  .po0b0p {
    width: 58.3333%;
  }

  .xpy0t1 {
    width: 66.6666%;
  }

  .q2o7cb {
    width: 50%;
  }

  .jexw40 {
    width: 41.6666%;
  }

  .cqxdi8 {
    flex-direction: row;
  }
}

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

  .krowcf {
    width: 50%;
  }

  .n6ufji {
    width: 58.3333%;
  }

  .guyxvl {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.tek901:hover {
  opacity: .9;
}

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

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

.t946ke.h4vmyq {
  transform: translateX(0);
}

.g6y9xk.h4vmyq {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.tahe93 {
  flex-shrink: 0;
}

.tahe93 .bqn2z4 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.us1jks {
  padding: 60px 0;
}

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

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

.l5tr9i,
.fyo4ni {
  width: calc(50% - 15px);
}

.l5tr9i .ptitte:first-child,
.fyo4ni .ptitte:last-child {
  height: 240px;
}

.l5tr9i .ptitte:last-child,
.fyo4ni .ptitte:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.qenq4v[open] .q19q3g::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.us1jks p,
.jhyglo p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.us1jks ul,
.jhyglo ul {
  list-style-type: disc;
}

.us1jks ol,
.jhyglo ol {
  list-style-type: decimal;
}

.us1jks li,
.jhyglo li {
  margin-bottom: 6px;
  padding-left: 0;
}

.us1jks li::before,
.jhyglo li::before {
  display: none;
}

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

.ai7fat.c49fx6 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.xqy89r::before {
  display: none;
}

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

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

.atwczm .khmhkw,
.atwczm p {
  color: var(--white-color);
}

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

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

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

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

.hpl34j {
  padding: 60px 0;
}

.hpl34j .ai7fat {
  margin-top: 45px;
}

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

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

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

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

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

.g3pnn7 .khmhkw,
.g3pnn7 p {
  color: var(--white-color);
}

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

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

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

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

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

.xqy89r::before {
  display: none;
}

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

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

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

.ugqd5r ul {
  margin: 0;
}

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

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

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

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

.bm6uvw {
  margin: 20px auto 0;
}

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

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

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

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

.dqzkee,
.ngk34i {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.laypzx textarea {
  height: 155px;
}

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

.laypzx.gd4s5g {
  min-height: 460px;
}

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

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

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

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

.webret {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.k7p4nl {
  margin: 0 15px;
}

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

.yc67eq:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ssyjoz {
  margin: 0;
}

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

.ssyjoz.twy89m li {
  width: calc(50% - 5px);
}

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

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

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

.j0cg27 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.mxkvmb {
  display: flex;
}

.m7opu5 {
  text-align: center;
}

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

.gvkfm5 {
  align-items: center;
} 

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

.uwzh71 {
  justify-content: center;
}

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

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

  .sgecaz {
    display: inline-flex;
  }

  .tek901,
  .yc67eq {
    max-width: 157px;
  }

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

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

  .s0y1o2 ul {
    display: block;
  }

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

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

  .tahe93 {
    margin-top: 15px;
  }

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

  .jf1w14 {
    margin-right: 0;
  }
}

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

  .u8faz1 {
    margin-bottom: 30px;
  }

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

  .uhie9d {
    margin-right: 7px;
  }

  .jdflet {
    width: 152px;
  }

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

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

  .l5tr9i .ptitte:first-child,
  .fyo4ni .ptitte:last-child {
    height: 150px;
  }

  .l5tr9i .ptitte:last-child,
  .fyo4ni .ptitte:first-child {
    height: 114px;
  }

  .jf1w14 {
    display: none;
  }

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

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

  .c8jusz,
  .rsvjfb {
    text-align: center;
  }

  .ytpsqf {
    margin: 10px 0;
  }

  .h1kolq {
    padding: 80px 0;
  }

  .uum3g5,
  .xixsyc {
    margin-left: auto;
    margin-right: auto;
  }

  .s707sh {
    max-width: 100%;
  }

  .laypzx {
    margin-bottom: 40px;
  }

  .gr58zo {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .gr58zo {
    padding: 6px 0;
  }

  .tek901,
  .yc67eq {
    max-width: 157px;
  }

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

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

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

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

  .ptitte {
    margin-bottom: 10px;
  }

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

  .l5tr9i, 
  .fyo4ni {
    width: calc(50% - 5px);
  }

  .sf69dn {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .hpl34j .ai7fat {
    margin-top: 35px;
  }

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

  .g3pnn7 .pt4c60 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .v6dght .pt4c60 {
    display: block;
  }

  .v6dght .xqy89r {
    width: 100%;
    display: block;
  }

  .t946ke {
    padding-top: 75px;
  }

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

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

  .mekm39 {
    width: 100%;
  }

  .t9wcij {
    margin-right: 10px;
  }

  .g3pnn7 .d0lzpe {
    padding: 20px 10px;
  }

  .yxc3ck,
  .ytpsqf {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .cst6a6 {
    padding: 25px;
  }

  .c8jusz {
    margin-bottom: 20px;
  }

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

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

  .jgdgbo {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .bm6uvw {
    margin-top: 20px;
  }

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

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

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

  .clqj1l {
    display: block;
  }

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

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

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

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

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

  .dqzkee,
  .ngk34i {
    padding: 45px 0 60px;
  }

  .e3kc3f {
    display: block;
  }

  .ilmtiw {
    flex-direction: row;
  }

  .s71vkg {
    margin-right: 15px;
  }

  .webret {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .laypzx textarea {
    height: 99px;
  }

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

  .qz6tq6 {
    margin-top: 20px;
  }

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

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

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

  .ilmtiw {
    margin-bottom: 8px;
  }

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

  .xqy89r {
    margin-bottom: 20px;
  }

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

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

  .tleipw {
    padding-top: 47px;
  }

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

  .lvlf4f {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .k7p4nl {
    margin: 0;
  }

  .j0cg27 {
    margin-top: 15px;
  }

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

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

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

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

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

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