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

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

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

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

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

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

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

.jxbugw {
  width: 25%;
}

.lscx8e {
  width: 33.3333%;
}

.oyioxq {
  width: 41.666667%;
}

.mbsa4q {
  width: 50%;
}

.z6qbzi {
  width: 100%;
}

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

.q4uxl0 {
  flex: 1;
}

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

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

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

  .ozyato {
    width: 33.3333%;
  }

  .fs50e6 {
    width: 58.3333%;
  }

  .o8ih8d {
    width: 66.6666%;
  }

  .h8br7u {
    width: 50%;
  }

  .w7ly35 {
    width: 41.6666%;
  }

  .srswpf {
    flex-direction: row;
  }
}

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

  .bxh6pz {
    width: 50%;
  }

  .nsykmn {
    width: 58.3333%;
  }

  .ywjx2l {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.cetu4t:hover {
  opacity: .9;
}

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

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

.teerew.g870jw {
  transform: translateX(0);
}

.vi8gn2.g870jw {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.hidc76 {
  flex-shrink: 0;
}

.hidc76 .stw54l {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.b57gws {
  padding: 60px 0;
}

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

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

.vt8axy,
.se5yxy {
  width: calc(50% - 15px);
}

.vt8axy .d8w9z3:first-child,
.se5yxy .d8w9z3:last-child {
  height: 240px;
}

.vt8axy .d8w9z3:last-child,
.se5yxy .d8w9z3:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.mn1qo3[open] .snulay::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.b57gws p,
.mmhq1l p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.b57gws ul,
.mmhq1l ul {
  list-style-type: disc;
}

.b57gws ol,
.mmhq1l ol {
  list-style-type: decimal;
}

.b57gws li,
.mmhq1l li {
  margin-bottom: 6px;
  padding-left: 0;
}

.b57gws li::before,
.mmhq1l li::before {
  display: none;
}

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

.zd56dz.q6457e {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.tn2b8x::before {
  display: none;
}

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

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

.yjtk0u .cty5ic,
.yjtk0u p {
  color: var(--white-color);
}

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

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

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

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

.kn4rgr {
  padding: 60px 0;
}

.kn4rgr .zd56dz {
  margin-top: 45px;
}

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

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

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

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

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

.f23ogw .cty5ic,
.f23ogw p {
  color: var(--white-color);
}

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

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

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

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

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

.tn2b8x::before {
  display: none;
}

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

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

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

.ds2plj ul {
  margin: 0;
}

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

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

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

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

.b4k6cj {
  margin: 20px auto 0;
}

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

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

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

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

.iwn08b,
.zkohm5 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.mx9lgk textarea {
  height: 155px;
}

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

.mx9lgk.q81vgl {
  min-height: 460px;
}

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

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

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

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

.rei9fa {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.p4h9qh {
  margin: 0 15px;
}

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

.ii5ox2:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.dlikzb {
  margin: 0;
}

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

.dlikzb.gkc63g li {
  width: calc(50% - 5px);
}

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

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

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

.mib0wl {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.ley7tb {
  display: flex;
}

.dgeoy7 {
  text-align: center;
}

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

.xo7eu6 {
  align-items: center;
} 

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

.j92t9z {
  justify-content: center;
}

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

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

  .c9c9vv {
    display: inline-flex;
  }

  .cetu4t,
  .ii5ox2 {
    max-width: 157px;
  }

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

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

  .uy88u1 ul {
    display: block;
  }

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

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

  .hidc76 {
    margin-top: 15px;
  }

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

  .wvwaez {
    margin-right: 0;
  }
}

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

  .v3igb1 {
    margin-bottom: 30px;
  }

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

  .b0hpfi {
    margin-right: 7px;
  }

  .hzo1l8 {
    width: 152px;
  }

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

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

  .vt8axy .d8w9z3:first-child,
  .se5yxy .d8w9z3:last-child {
    height: 150px;
  }

  .vt8axy .d8w9z3:last-child,
  .se5yxy .d8w9z3:first-child {
    height: 114px;
  }

  .wvwaez {
    display: none;
  }

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

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

  .guc2sn,
  .w93nue {
    text-align: center;
  }

  .yvbqic {
    margin: 10px 0;
  }

  .tdt2ny {
    padding: 80px 0;
  }

  .pui94p,
  .w9c7ue {
    margin-left: auto;
    margin-right: auto;
  }

  .l68vav {
    max-width: 100%;
  }

  .mx9lgk {
    margin-bottom: 40px;
  }

  .uet0pa {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .uet0pa {
    padding: 6px 0;
  }

  .cetu4t,
  .ii5ox2 {
    max-width: 157px;
  }

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

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

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

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

  .d8w9z3 {
    margin-bottom: 10px;
  }

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

  .vt8axy, 
  .se5yxy {
    width: calc(50% - 5px);
  }

  .ba25rx {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .kn4rgr .zd56dz {
    margin-top: 35px;
  }

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

  .f23ogw .owu0sp {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .lhva1q .owu0sp {
    display: block;
  }

  .lhva1q .tn2b8x {
    width: 100%;
    display: block;
  }

  .teerew {
    padding-top: 75px;
  }

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

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

  .l6mi5q {
    width: 100%;
  }

  .dq3l9a {
    margin-right: 10px;
  }

  .f23ogw .qphhgy {
    padding: 20px 10px;
  }

  .z0vvbq,
  .yvbqic {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .th0qrh {
    padding: 25px;
  }

  .guc2sn {
    margin-bottom: 20px;
  }

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

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

  .ry10na {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .b4k6cj {
    margin-top: 20px;
  }

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

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

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

  .zk9sr2 {
    display: block;
  }

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

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

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

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

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

  .iwn08b,
  .zkohm5 {
    padding: 45px 0 60px;
  }

  .qs55w3 {
    display: block;
  }

  .jdtv36 {
    flex-direction: row;
  }

  .nvcfhq {
    margin-right: 15px;
  }

  .rei9fa {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .mx9lgk textarea {
    height: 99px;
  }

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

  .ygz1sv {
    margin-top: 20px;
  }

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

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

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

  .jdtv36 {
    margin-bottom: 8px;
  }

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

  .tn2b8x {
    margin-bottom: 20px;
  }

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

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

  .y7e9jt {
    padding-top: 47px;
  }

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

  .fj7xqm {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .p4h9qh {
    margin: 0;
  }

  .mib0wl {
    margin-top: 15px;
  }

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

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

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

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

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

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