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

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

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

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

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

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

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

.jnxrwl {
  width: 25%;
}

.dwdx46 {
  width: 33.3333%;
}

.u65vdl {
  width: 41.666667%;
}

.qw54tx {
  width: 50%;
}

.c7nc3o {
  width: 100%;
}

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

.dwczlq {
  flex: 1;
}

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

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

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

  .oli8of {
    width: 33.3333%;
  }

  .gj0fjw {
    width: 58.3333%;
  }

  .cl71z8 {
    width: 66.6666%;
  }

  .p1wy4q {
    width: 50%;
  }

  .i2xam9 {
    width: 41.6666%;
  }

  .dkt3p8 {
    flex-direction: row;
  }
}

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

  .ohj9tk {
    width: 50%;
  }

  .z6o2vw {
    width: 58.3333%;
  }

  .m6kltb {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.pwix8i:hover {
  opacity: .9;
}

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

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

.r1o6c0.b5159g {
  transform: translateX(0);
}

.cnkh1u.b5159g {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.y7x8ds {
  flex-shrink: 0;
}

.y7x8ds .idnkv1 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.fdk89e {
  padding: 60px 0;
}

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

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

.lt9bgl,
.iz0213 {
  width: calc(50% - 15px);
}

.lt9bgl .wxsqtp:first-child,
.iz0213 .wxsqtp:last-child {
  height: 240px;
}

.lt9bgl .wxsqtp:last-child,
.iz0213 .wxsqtp:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.w7hn9l[open] .n2d3ai::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.fdk89e p,
.a0iofi p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.fdk89e ul,
.a0iofi ul {
  list-style-type: disc;
}

.fdk89e ol,
.a0iofi ol {
  list-style-type: decimal;
}

.fdk89e li,
.a0iofi li {
  margin-bottom: 6px;
  padding-left: 0;
}

.fdk89e li::before,
.a0iofi li::before {
  display: none;
}

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

.ujdqhh.t6fny9 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.hjtmx6::before {
  display: none;
}

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

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

.t38sc2 .nfach7,
.t38sc2 p {
  color: var(--white-color);
}

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

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

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

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

.j3rl1b {
  padding: 60px 0;
}

.j3rl1b .ujdqhh {
  margin-top: 45px;
}

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

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

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

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

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

.jz0j4l .nfach7,
.jz0j4l p {
  color: var(--white-color);
}

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

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

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

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

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

.hjtmx6::before {
  display: none;
}

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

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

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

.o2xxr3 ul {
  margin: 0;
}

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

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

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

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

.s2v2m2 {
  margin: 20px auto 0;
}

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

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

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

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

.x253rn,
.wrint8 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.vuyob5 textarea {
  height: 155px;
}

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

.vuyob5.ktdasn {
  min-height: 460px;
}

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

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

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

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

.f5mdaz {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.l3g702 {
  margin: 0 15px;
}

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

.tyzp7s:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.hchkrp {
  margin: 0;
}

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

.hchkrp.c5salu li {
  width: calc(50% - 5px);
}

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

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

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

.z7wlg6 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.xh2qds {
  display: flex;
}

.rpahfu {
  text-align: center;
}

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

.ufcmvu {
  align-items: center;
} 

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

.rl9ohl {
  justify-content: center;
}

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

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

  .weinrd {
    display: inline-flex;
  }

  .pwix8i,
  .tyzp7s {
    max-width: 157px;
  }

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

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

  .teugw9 ul {
    display: block;
  }

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

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

  .y7x8ds {
    margin-top: 15px;
  }

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

  .f7umld {
    margin-right: 0;
  }
}

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

  .gvkv57 {
    margin-bottom: 30px;
  }

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

  .tqqzvd {
    margin-right: 7px;
  }

  .rf1jqu {
    width: 152px;
  }

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

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

  .lt9bgl .wxsqtp:first-child,
  .iz0213 .wxsqtp:last-child {
    height: 150px;
  }

  .lt9bgl .wxsqtp:last-child,
  .iz0213 .wxsqtp:first-child {
    height: 114px;
  }

  .f7umld {
    display: none;
  }

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

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

  .evw1od,
  .f5v0mc {
    text-align: center;
  }

  .skigjt {
    margin: 10px 0;
  }

  .n2w4c5 {
    padding: 80px 0;
  }

  .l7ofr7,
  .tb55ms {
    margin-left: auto;
    margin-right: auto;
  }

  .jofy2q {
    max-width: 100%;
  }

  .vuyob5 {
    margin-bottom: 40px;
  }

  .fk3gyt {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .fk3gyt {
    padding: 6px 0;
  }

  .pwix8i,
  .tyzp7s {
    max-width: 157px;
  }

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

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

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

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

  .wxsqtp {
    margin-bottom: 10px;
  }

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

  .lt9bgl, 
  .iz0213 {
    width: calc(50% - 5px);
  }

  .wyw9pa {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .j3rl1b .ujdqhh {
    margin-top: 35px;
  }

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

  .jz0j4l .ayvn4n {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .lkq3mb .ayvn4n {
    display: block;
  }

  .lkq3mb .hjtmx6 {
    width: 100%;
    display: block;
  }

  .r1o6c0 {
    padding-top: 75px;
  }

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

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

  .u64g6m {
    width: 100%;
  }

  .q12uan {
    margin-right: 10px;
  }

  .jz0j4l .odbyzl {
    padding: 20px 10px;
  }

  .oze3rs,
  .skigjt {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .wziuht {
    padding: 25px;
  }

  .evw1od {
    margin-bottom: 20px;
  }

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

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

  .jggsy3 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .s2v2m2 {
    margin-top: 20px;
  }

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

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

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

  .hi5vs2 {
    display: block;
  }

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

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

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

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

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

  .x253rn,
  .wrint8 {
    padding: 45px 0 60px;
  }

  .b7phgc {
    display: block;
  }

  .ztpp23 {
    flex-direction: row;
  }

  .dezjgm {
    margin-right: 15px;
  }

  .f5mdaz {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .vuyob5 textarea {
    height: 99px;
  }

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

  .mdn6t9 {
    margin-top: 20px;
  }

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

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

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

  .ztpp23 {
    margin-bottom: 8px;
  }

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

  .hjtmx6 {
    margin-bottom: 20px;
  }

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

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

  .f81exh {
    padding-top: 47px;
  }

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

  .rnoqi8 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .l3g702 {
    margin: 0;
  }

  .z7wlg6 {
    margin-top: 15px;
  }

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

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

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

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

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

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