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

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

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

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

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

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

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

.ojfjs8 {
  width: 25%;
}

.m2pvuw {
  width: 33.3333%;
}

.tmirxx {
  width: 41.666667%;
}

.rxqko9 {
  width: 50%;
}

.kyfya8 {
  width: 100%;
}

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

.qcjev3 {
  flex: 1;
}

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

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

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

  .f03ptt {
    width: 33.3333%;
  }

  .vbz8w1 {
    width: 58.3333%;
  }

  .v3tglc {
    width: 66.6666%;
  }

  .uutemc {
    width: 50%;
  }

  .u273ek {
    width: 41.6666%;
  }

  .ljai3j {
    flex-direction: row;
  }
}

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

  .j2so1f {
    width: 50%;
  }

  .al4750 {
    width: 58.3333%;
  }

  .cprzad {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.ro3gv2:hover {
  opacity: .9;
}

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

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

.u01l1e.uu7wt7 {
  transform: translateX(0);
}

.z592ro.uu7wt7 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.b98768 {
  flex-shrink: 0;
}

.b98768 .a1wnvr {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.quw6xv {
  padding: 60px 0;
}

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

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

.dq0doa,
.hwf3rs {
  width: calc(50% - 15px);
}

.dq0doa .duj2xu:first-child,
.hwf3rs .duj2xu:last-child {
  height: 240px;
}

.dq0doa .duj2xu:last-child,
.hwf3rs .duj2xu:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.cn822q[open] .pa13ak::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.quw6xv p,
.got22o p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.quw6xv ul,
.got22o ul {
  list-style-type: disc;
}

.quw6xv ol,
.got22o ol {
  list-style-type: decimal;
}

.quw6xv li,
.got22o li {
  margin-bottom: 6px;
  padding-left: 0;
}

.quw6xv li::before,
.got22o li::before {
  display: none;
}

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

.rf3hzl.eoiz5z {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.u6c64h::before {
  display: none;
}

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

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

.x4ajmb .mg072u,
.x4ajmb p {
  color: var(--white-color);
}

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

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

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

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

.t2ya65 {
  padding: 60px 0;
}

.t2ya65 .rf3hzl {
  margin-top: 45px;
}

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

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

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

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

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

.u8ib8i .mg072u,
.u8ib8i p {
  color: var(--white-color);
}

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

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

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

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

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

.u6c64h::before {
  display: none;
}

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

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

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

.ydzd0z ul {
  margin: 0;
}

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

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

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

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

.h5a2fd {
  margin: 20px auto 0;
}

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

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

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

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

.fdzihz,
.fl5ckd {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.xbue29 textarea {
  height: 155px;
}

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

.xbue29.nzrwgf {
  min-height: 460px;
}

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

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

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

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

.hv078t {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wn7dqk {
  margin: 0 15px;
}

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

.dc42xe:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ewv4sg {
  margin: 0;
}

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

.ewv4sg.ms6u5w li {
  width: calc(50% - 5px);
}

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

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

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

.zweg4k {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.obfdns {
  display: flex;
}

.b4mfsf {
  text-align: center;
}

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

.rsxcy4 {
  align-items: center;
} 

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

.nlhdd2 {
  justify-content: center;
}

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

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

  .qewhzv {
    display: inline-flex;
  }

  .ro3gv2,
  .dc42xe {
    max-width: 157px;
  }

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

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

  .mtdple ul {
    display: block;
  }

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

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

  .b98768 {
    margin-top: 15px;
  }

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

  .qh5exq {
    margin-right: 0;
  }
}

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

  .zhs05g {
    margin-bottom: 30px;
  }

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

  .rmfifi {
    margin-right: 7px;
  }

  .rj386t {
    width: 152px;
  }

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

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

  .dq0doa .duj2xu:first-child,
  .hwf3rs .duj2xu:last-child {
    height: 150px;
  }

  .dq0doa .duj2xu:last-child,
  .hwf3rs .duj2xu:first-child {
    height: 114px;
  }

  .qh5exq {
    display: none;
  }

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

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

  .u944wl,
  .scv09f {
    text-align: center;
  }

  .vh259a {
    margin: 10px 0;
  }

  .kckz0b {
    padding: 80px 0;
  }

  .zccx1k,
  .nkius8 {
    margin-left: auto;
    margin-right: auto;
  }

  .h6k7ew {
    max-width: 100%;
  }

  .xbue29 {
    margin-bottom: 40px;
  }

  .vrr4ke {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .vrr4ke {
    padding: 6px 0;
  }

  .ro3gv2,
  .dc42xe {
    max-width: 157px;
  }

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

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

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

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

  .duj2xu {
    margin-bottom: 10px;
  }

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

  .dq0doa, 
  .hwf3rs {
    width: calc(50% - 5px);
  }

  .p540vv {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .t2ya65 .rf3hzl {
    margin-top: 35px;
  }

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

  .u8ib8i .ov9u66 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .cnn6zo .ov9u66 {
    display: block;
  }

  .cnn6zo .u6c64h {
    width: 100%;
    display: block;
  }

  .u01l1e {
    padding-top: 75px;
  }

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

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

  .d2rmsf {
    width: 100%;
  }

  .sp7h2n {
    margin-right: 10px;
  }

  .u8ib8i .mbdatf {
    padding: 20px 10px;
  }

  .ikzu1q,
  .vh259a {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .zuyc4f {
    padding: 25px;
  }

  .u944wl {
    margin-bottom: 20px;
  }

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

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

  .ju5x9x {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .h5a2fd {
    margin-top: 20px;
  }

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

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

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

  .m8p9ms {
    display: block;
  }

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

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

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

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

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

  .fdzihz,
  .fl5ckd {
    padding: 45px 0 60px;
  }

  .poapee {
    display: block;
  }

  .lvry3p {
    flex-direction: row;
  }

  .ijxcek {
    margin-right: 15px;
  }

  .hv078t {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .xbue29 textarea {
    height: 99px;
  }

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

  .ho94vj {
    margin-top: 20px;
  }

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

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

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

  .lvry3p {
    margin-bottom: 8px;
  }

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

  .u6c64h {
    margin-bottom: 20px;
  }

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

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

  .kzg4rg {
    padding-top: 47px;
  }

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

  .vsmhee {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .wn7dqk {
    margin: 0;
  }

  .zweg4k {
    margin-top: 15px;
  }

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

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

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

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

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

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