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

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

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

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

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

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

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

.f2rs4s {
  width: 25%;
}

.ivy2w2 {
  width: 33.3333%;
}

.lrl4p6 {
  width: 41.666667%;
}

.ewknp6 {
  width: 50%;
}

.iouub1 {
  width: 100%;
}

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

.nzy4nv {
  flex: 1;
}

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

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

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

  .fn0vdo {
    width: 33.3333%;
  }

  .fpkq2o {
    width: 58.3333%;
  }

  .e139hn {
    width: 66.6666%;
  }

  .v5idup {
    width: 50%;
  }

  .cs6t8d {
    width: 41.6666%;
  }

  .l0gcxt {
    flex-direction: row;
  }
}

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

  .l66z7b {
    width: 50%;
  }

  .k3squr {
    width: 58.3333%;
  }

  .nxfr5o {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.v4hu4w:hover {
  opacity: .9;
}

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

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

.yx2wx2.waox3d {
  transform: translateX(0);
}

.l05xg7.waox3d {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.pxb1e8 {
  flex-shrink: 0;
}

.pxb1e8 .lu8liv {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.gfx6ro {
  padding: 60px 0;
}

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

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

.kk5lps,
.mf6zma {
  width: calc(50% - 15px);
}

.kk5lps .guitu2:first-child,
.mf6zma .guitu2:last-child {
  height: 240px;
}

.kk5lps .guitu2:last-child,
.mf6zma .guitu2:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.k8mnrw[open] .l4qiq2::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.gfx6ro p,
.kcgzaq p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.gfx6ro ul,
.kcgzaq ul {
  list-style-type: disc;
}

.gfx6ro ol,
.kcgzaq ol {
  list-style-type: decimal;
}

.gfx6ro li,
.kcgzaq li {
  margin-bottom: 6px;
  padding-left: 0;
}

.gfx6ro li::before,
.kcgzaq li::before {
  display: none;
}

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

.jfl3v8.ntvywp {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.gy3l54::before {
  display: none;
}

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

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

.lj8b45 .s0w70q,
.lj8b45 p {
  color: var(--white-color);
}

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

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

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

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

.ss0hap {
  padding: 60px 0;
}

.ss0hap .jfl3v8 {
  margin-top: 45px;
}

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

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

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

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

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

.uv8jsg .s0w70q,
.uv8jsg p {
  color: var(--white-color);
}

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

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

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

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

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

.gy3l54::before {
  display: none;
}

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

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

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

.l9j32e ul {
  margin: 0;
}

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

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

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

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

.ig6mgo {
  margin: 20px auto 0;
}

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

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

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

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

.e5yj1h,
.x5534w {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.xp8djd textarea {
  height: 155px;
}

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

.xp8djd.s0hj4w {
  min-height: 460px;
}

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

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

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

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

.r93ks0 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.yap852 {
  margin: 0 15px;
}

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

.b9iv32:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.wypomm {
  margin: 0;
}

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

.wypomm.t7lcsh li {
  width: calc(50% - 5px);
}

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

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

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

.x4593m {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.jrd8bw {
  display: flex;
}

.y3nsym {
  text-align: center;
}

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

.qavf3n {
  align-items: center;
} 

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

.jzkyh3 {
  justify-content: center;
}

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

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

  .vk1djj {
    display: inline-flex;
  }

  .v4hu4w,
  .b9iv32 {
    max-width: 157px;
  }

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

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

  .qr68yt ul {
    display: block;
  }

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

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

  .pxb1e8 {
    margin-top: 15px;
  }

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

  .n24inv {
    margin-right: 0;
  }
}

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

  .heots5 {
    margin-bottom: 30px;
  }

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

  .bopse7 {
    margin-right: 7px;
  }

  .u31vd3 {
    width: 152px;
  }

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

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

  .kk5lps .guitu2:first-child,
  .mf6zma .guitu2:last-child {
    height: 150px;
  }

  .kk5lps .guitu2:last-child,
  .mf6zma .guitu2:first-child {
    height: 114px;
  }

  .n24inv {
    display: none;
  }

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

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

  .m2lck3,
  .odcj5o {
    text-align: center;
  }

  .noemiz {
    margin: 10px 0;
  }

  .rkm4cc {
    padding: 80px 0;
  }

  .m9ibwt,
  .ah4by5 {
    margin-left: auto;
    margin-right: auto;
  }

  .sz8ged {
    max-width: 100%;
  }

  .xp8djd {
    margin-bottom: 40px;
  }

  .hk5216 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .hk5216 {
    padding: 6px 0;
  }

  .v4hu4w,
  .b9iv32 {
    max-width: 157px;
  }

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

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

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

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

  .guitu2 {
    margin-bottom: 10px;
  }

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

  .kk5lps, 
  .mf6zma {
    width: calc(50% - 5px);
  }

  .xv05io {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .ss0hap .jfl3v8 {
    margin-top: 35px;
  }

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

  .uv8jsg .lyt0a0 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .dut5i5 .lyt0a0 {
    display: block;
  }

  .dut5i5 .gy3l54 {
    width: 100%;
    display: block;
  }

  .yx2wx2 {
    padding-top: 75px;
  }

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

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

  .unpy6k {
    width: 100%;
  }

  .dwk27f {
    margin-right: 10px;
  }

  .uv8jsg .i104mh {
    padding: 20px 10px;
  }

  .x3cdar,
  .noemiz {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .n3shq0 {
    padding: 25px;
  }

  .m2lck3 {
    margin-bottom: 20px;
  }

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

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

  .j25pvw {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .ig6mgo {
    margin-top: 20px;
  }

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

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

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

  .h3di14 {
    display: block;
  }

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

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

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

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

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

  .e5yj1h,
  .x5534w {
    padding: 45px 0 60px;
  }

  .kpoig6 {
    display: block;
  }

  .ecwd2o {
    flex-direction: row;
  }

  .qaxarh {
    margin-right: 15px;
  }

  .r93ks0 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .xp8djd textarea {
    height: 99px;
  }

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

  .grdm6f {
    margin-top: 20px;
  }

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

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

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

  .ecwd2o {
    margin-bottom: 8px;
  }

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

  .gy3l54 {
    margin-bottom: 20px;
  }

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

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

  .apuhpd {
    padding-top: 47px;
  }

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

  .daoi7j {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .yap852 {
    margin: 0;
  }

  .x4593m {
    margin-top: 15px;
  }

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

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

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

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

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

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