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

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

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

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

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

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

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

.yb7ims {
  width: 25%;
}

.we1pwt {
  width: 33.3333%;
}

.blfn1s {
  width: 41.666667%;
}

.oaqcc3 {
  width: 50%;
}

.i33vt0 {
  width: 100%;
}

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

.m5jfs4 {
  flex: 1;
}

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

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

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

  .suiwzu {
    width: 33.3333%;
  }

  .kyge76 {
    width: 58.3333%;
  }

  .vtbl1x {
    width: 66.6666%;
  }

  .st2vho {
    width: 50%;
  }

  .ijbv11 {
    width: 41.6666%;
  }

  .rgocts {
    flex-direction: row;
  }
}

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

  .dgkxsn {
    width: 50%;
  }

  .ghpx3a {
    width: 58.3333%;
  }

  .jemvw6 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.j3231r:hover {
  opacity: .9;
}

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

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

.nnwqim.sbaoh1 {
  transform: translateX(0);
}

.cz50o4.sbaoh1 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.x8kc3z {
  flex-shrink: 0;
}

.x8kc3z .z6xca5 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.vq04ak {
  padding: 60px 0;
}

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

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

.e8nq6k,
.x83ppl {
  width: calc(50% - 15px);
}

.e8nq6k .o7rwc3:first-child,
.x83ppl .o7rwc3:last-child {
  height: 240px;
}

.e8nq6k .o7rwc3:last-child,
.x83ppl .o7rwc3:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.smlbov[open] .v0iwfg::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.vq04ak p,
.m9470c p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.vq04ak ul,
.m9470c ul {
  list-style-type: disc;
}

.vq04ak ol,
.m9470c ol {
  list-style-type: decimal;
}

.vq04ak li,
.m9470c li {
  margin-bottom: 6px;
  padding-left: 0;
}

.vq04ak li::before,
.m9470c li::before {
  display: none;
}

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

.q9m6n7.kbldta {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.ouwn1w::before {
  display: none;
}

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

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

.cacxmz .espdnp,
.cacxmz p {
  color: var(--white-color);
}

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

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

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

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

.v0f5j6 {
  padding: 60px 0;
}

.v0f5j6 .q9m6n7 {
  margin-top: 45px;
}

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

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

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

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

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

.kkl7e6 .espdnp,
.kkl7e6 p {
  color: var(--white-color);
}

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

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

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

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

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

.ouwn1w::before {
  display: none;
}

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

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

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

.zf17b4 ul {
  margin: 0;
}

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

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

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

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

.v34t0a {
  margin: 20px auto 0;
}

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

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

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

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

.u2di0n,
.ov0jb5 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.z13zpz textarea {
  height: 155px;
}

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

.z13zpz.m86clf {
  min-height: 460px;
}

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

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

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

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

.xtmsda {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ogv5wv {
  margin: 0 15px;
}

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

.nsjw8b:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.tazorv {
  margin: 0;
}

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

.tazorv.bdpdxd li {
  width: calc(50% - 5px);
}

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

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

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

.n6q9by {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.gwa6si {
  display: flex;
}

.u9849i {
  text-align: center;
}

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

.cizquf {
  align-items: center;
} 

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

.akscva {
  justify-content: center;
}

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

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

  .gsmh7n {
    display: inline-flex;
  }

  .j3231r,
  .nsjw8b {
    max-width: 157px;
  }

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

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

  .cp5ghx ul {
    display: block;
  }

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

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

  .x8kc3z {
    margin-top: 15px;
  }

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

  .lmz8bc {
    margin-right: 0;
  }
}

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

  .ygrjgs {
    margin-bottom: 30px;
  }

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

  .g1a849 {
    margin-right: 7px;
  }

  .fl4vpn {
    width: 152px;
  }

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

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

  .e8nq6k .o7rwc3:first-child,
  .x83ppl .o7rwc3:last-child {
    height: 150px;
  }

  .e8nq6k .o7rwc3:last-child,
  .x83ppl .o7rwc3:first-child {
    height: 114px;
  }

  .lmz8bc {
    display: none;
  }

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

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

  .yl77fd,
  .v9eyvj {
    text-align: center;
  }

  .ijr8k7 {
    margin: 10px 0;
  }

  .pvxpbe {
    padding: 80px 0;
  }

  .kcrivf,
  .j9jubs {
    margin-left: auto;
    margin-right: auto;
  }

  .x2utwp {
    max-width: 100%;
  }

  .z13zpz {
    margin-bottom: 40px;
  }

  .iah43x {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .iah43x {
    padding: 6px 0;
  }

  .j3231r,
  .nsjw8b {
    max-width: 157px;
  }

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

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

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

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

  .o7rwc3 {
    margin-bottom: 10px;
  }

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

  .e8nq6k, 
  .x83ppl {
    width: calc(50% - 5px);
  }

  .ei347z {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .v0f5j6 .q9m6n7 {
    margin-top: 35px;
  }

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

  .kkl7e6 .t8ehat {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .r1sr68 .t8ehat {
    display: block;
  }

  .r1sr68 .ouwn1w {
    width: 100%;
    display: block;
  }

  .nnwqim {
    padding-top: 75px;
  }

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

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

  .ujpa43 {
    width: 100%;
  }

  .w8lpmw {
    margin-right: 10px;
  }

  .kkl7e6 .d8ufx3 {
    padding: 20px 10px;
  }

  .w94ohk,
  .ijr8k7 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .n4ef9i {
    padding: 25px;
  }

  .yl77fd {
    margin-bottom: 20px;
  }

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

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

  .rlw61s {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .v34t0a {
    margin-top: 20px;
  }

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

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

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

  .mdvfwc {
    display: block;
  }

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

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

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

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

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

  .u2di0n,
  .ov0jb5 {
    padding: 45px 0 60px;
  }

  .anwl8a {
    display: block;
  }

  .zs4t66 {
    flex-direction: row;
  }

  .pnabep {
    margin-right: 15px;
  }

  .xtmsda {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .z13zpz textarea {
    height: 99px;
  }

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

  .uwz9j3 {
    margin-top: 20px;
  }

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

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

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

  .zs4t66 {
    margin-bottom: 8px;
  }

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

  .ouwn1w {
    margin-bottom: 20px;
  }

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

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

  .g73dc0 {
    padding-top: 47px;
  }

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

  .qlry0g {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .ogv5wv {
    margin: 0;
  }

  .n6q9by {
    margin-top: 15px;
  }

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

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

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

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

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

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