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

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

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

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

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

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

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

.akn8ir {
  width: 25%;
}

.x72p65 {
  width: 33.3333%;
}

.wthfns {
  width: 41.666667%;
}

.je5605 {
  width: 50%;
}

.ob63cg {
  width: 100%;
}

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

.mpoobn {
  flex: 1;
}

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

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

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

  .fdny5v {
    width: 33.3333%;
  }

  .coz1jo {
    width: 58.3333%;
  }

  .e3jy5y {
    width: 66.6666%;
  }

  .dobqai {
    width: 50%;
  }

  .k190p0 {
    width: 41.6666%;
  }

  .pcutvu {
    flex-direction: row;
  }
}

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

  .kpwb8f {
    width: 50%;
  }

  .b2dyjx {
    width: 58.3333%;
  }

  .l6ou95 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.sqs0ty:hover {
  opacity: .9;
}

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

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

.hrt6cp.mu7a8l {
  transform: translateX(0);
}

.z1qu0b.mu7a8l {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.r460k6 {
  flex-shrink: 0;
}

.r460k6 .np4mll {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.fk63rc {
  padding: 60px 0;
}

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

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

.hvteg6,
.glaxjd {
  width: calc(50% - 15px);
}

.hvteg6 .r55kpt:first-child,
.glaxjd .r55kpt:last-child {
  height: 240px;
}

.hvteg6 .r55kpt:last-child,
.glaxjd .r55kpt:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.uj7zms[open] .cf6gzb::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.fk63rc p,
.mxu61r p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.fk63rc ul,
.mxu61r ul {
  list-style-type: disc;
}

.fk63rc ol,
.mxu61r ol {
  list-style-type: decimal;
}

.fk63rc li,
.mxu61r li {
  margin-bottom: 6px;
  padding-left: 0;
}

.fk63rc li::before,
.mxu61r li::before {
  display: none;
}

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

.kuwf73.lla3ch {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.dj6iyc::before {
  display: none;
}

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

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

.ktioez .rng2rm,
.ktioez p {
  color: var(--white-color);
}

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

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

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

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

.s54z5p {
  padding: 60px 0;
}

.s54z5p .kuwf73 {
  margin-top: 45px;
}

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

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

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

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

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

.k5b8aw .rng2rm,
.k5b8aw p {
  color: var(--white-color);
}

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

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

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

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

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

.dj6iyc::before {
  display: none;
}

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

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

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

.ar2o6h ul {
  margin: 0;
}

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

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

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

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

.pj9bdk {
  margin: 20px auto 0;
}

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

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

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

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

.q3ec7d,
.r8jzq9 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.d0c0nu textarea {
  height: 155px;
}

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

.d0c0nu.xjmpq6 {
  min-height: 460px;
}

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

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

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

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

.ef9ati {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wv042f {
  margin: 0 15px;
}

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

.tzo3t9:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.d1wl61 {
  margin: 0;
}

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

.d1wl61.dfrh55 li {
  width: calc(50% - 5px);
}

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

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

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

.ynqwb9 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.vq7n0w {
  display: flex;
}

.ssqwzn {
  text-align: center;
}

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

.bnhgml {
  align-items: center;
} 

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

.vmwcrp {
  justify-content: center;
}

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

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

  .kjzqi1 {
    display: inline-flex;
  }

  .sqs0ty,
  .tzo3t9 {
    max-width: 157px;
  }

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

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

  .qdnmi7 ul {
    display: block;
  }

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

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

  .r460k6 {
    margin-top: 15px;
  }

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

  .dy4m1b {
    margin-right: 0;
  }
}

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

  .i4md7s {
    margin-bottom: 30px;
  }

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

  .y96plm {
    margin-right: 7px;
  }

  .ggst9m {
    width: 152px;
  }

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

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

  .hvteg6 .r55kpt:first-child,
  .glaxjd .r55kpt:last-child {
    height: 150px;
  }

  .hvteg6 .r55kpt:last-child,
  .glaxjd .r55kpt:first-child {
    height: 114px;
  }

  .dy4m1b {
    display: none;
  }

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

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

  .n23g8m,
  .r0y4h0 {
    text-align: center;
  }

  .y3w27b {
    margin: 10px 0;
  }

  .lxx60w {
    padding: 80px 0;
  }

  .njz7m7,
  .x4ljpi {
    margin-left: auto;
    margin-right: auto;
  }

  .xel75p {
    max-width: 100%;
  }

  .d0c0nu {
    margin-bottom: 40px;
  }

  .t931oc {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .t931oc {
    padding: 6px 0;
  }

  .sqs0ty,
  .tzo3t9 {
    max-width: 157px;
  }

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

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

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

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

  .r55kpt {
    margin-bottom: 10px;
  }

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

  .hvteg6, 
  .glaxjd {
    width: calc(50% - 5px);
  }

  .a9rx1d {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .s54z5p .kuwf73 {
    margin-top: 35px;
  }

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

  .k5b8aw .juzrig {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .cag9dw .juzrig {
    display: block;
  }

  .cag9dw .dj6iyc {
    width: 100%;
    display: block;
  }

  .hrt6cp {
    padding-top: 75px;
  }

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

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

  .atgpdw {
    width: 100%;
  }

  .crce1m {
    margin-right: 10px;
  }

  .k5b8aw .avx8gn {
    padding: 20px 10px;
  }

  .mx04mz,
  .y3w27b {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .k9rvsz {
    padding: 25px;
  }

  .n23g8m {
    margin-bottom: 20px;
  }

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

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

  .qg4niy {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .pj9bdk {
    margin-top: 20px;
  }

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

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

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

  .svpvhc {
    display: block;
  }

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

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

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

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

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

  .q3ec7d,
  .r8jzq9 {
    padding: 45px 0 60px;
  }

  .lqaj2x {
    display: block;
  }

  .s8lsrg {
    flex-direction: row;
  }

  .ensc5c {
    margin-right: 15px;
  }

  .ef9ati {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .d0c0nu textarea {
    height: 99px;
  }

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

  .oda7dx {
    margin-top: 20px;
  }

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

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

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

  .s8lsrg {
    margin-bottom: 8px;
  }

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

  .dj6iyc {
    margin-bottom: 20px;
  }

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

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

  .ta63n7 {
    padding-top: 47px;
  }

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

  .obxmvi {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .wv042f {
    margin: 0;
  }

  .ynqwb9 {
    margin-top: 15px;
  }

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

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

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

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

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

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