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

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

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

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

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

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

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

.ok4gt5 {
  width: 25%;
}

.r02l14 {
  width: 33.3333%;
}

.ng33w9 {
  width: 41.666667%;
}

.t3uk8m {
  width: 50%;
}

.jyqqo9 {
  width: 100%;
}

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

.g5p6pr {
  flex: 1;
}

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

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

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

  .ycf7ca {
    width: 33.3333%;
  }

  .sijijo {
    width: 58.3333%;
  }

  .cn9o05 {
    width: 66.6666%;
  }

  .r76vef {
    width: 50%;
  }

  .mt8tld {
    width: 41.6666%;
  }

  .qi2faw {
    flex-direction: row;
  }
}

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

  .jsndlr {
    width: 50%;
  }

  .dh4p57 {
    width: 58.3333%;
  }

  .evgbdd {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.nd7ln2:hover {
  opacity: .9;
}

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

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

.ehf740.dky3wn {
  transform: translateX(0);
}

.bhe2tg.dky3wn {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.ujvn5c {
  flex-shrink: 0;
}

.ujvn5c .mrrbsz {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.hyaz5h {
  padding: 60px 0;
}

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

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

.wacbg8,
.t73w16 {
  width: calc(50% - 15px);
}

.wacbg8 .nkx65e:first-child,
.t73w16 .nkx65e:last-child {
  height: 240px;
}

.wacbg8 .nkx65e:last-child,
.t73w16 .nkx65e:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.e6ah6e[open] .i8jbtx::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.hyaz5h p,
.hhz1my p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.hyaz5h ul,
.hhz1my ul {
  list-style-type: disc;
}

.hyaz5h ol,
.hhz1my ol {
  list-style-type: decimal;
}

.hyaz5h li,
.hhz1my li {
  margin-bottom: 6px;
  padding-left: 0;
}

.hyaz5h li::before,
.hhz1my li::before {
  display: none;
}

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

.cb4tn8.vs4kjh {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.ifa1x9::before {
  display: none;
}

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

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

.ezcphs .yhlykg,
.ezcphs p {
  color: var(--white-color);
}

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

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

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

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

.bxxte0 {
  padding: 60px 0;
}

.bxxte0 .cb4tn8 {
  margin-top: 45px;
}

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

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

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

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

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

.rb7jmf .yhlykg,
.rb7jmf p {
  color: var(--white-color);
}

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

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

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

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

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

.ifa1x9::before {
  display: none;
}

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

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

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

.kzkwsm ul {
  margin: 0;
}

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

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

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

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

.b8k0iq {
  margin: 20px auto 0;
}

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

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

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

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

.rbtphd,
.xv73h2 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.menq2a textarea {
  height: 155px;
}

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

.menq2a.x6h8f1 {
  min-height: 460px;
}

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

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

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

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

.f9omj8 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.zojrnf {
  margin: 0 15px;
}

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

.k2e5fr:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.l0fu8l {
  margin: 0;
}

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

.l0fu8l.gsfyp2 li {
  width: calc(50% - 5px);
}

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

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

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

.jp89vw {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.hi2zab {
  display: flex;
}

.pop1is {
  text-align: center;
}

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

.krdvhg {
  align-items: center;
} 

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

.egx5ne {
  justify-content: center;
}

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

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

  .j6u09m {
    display: inline-flex;
  }

  .nd7ln2,
  .k2e5fr {
    max-width: 157px;
  }

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

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

  .zng34c ul {
    display: block;
  }

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

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

  .ujvn5c {
    margin-top: 15px;
  }

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

  .d19jqr {
    margin-right: 0;
  }
}

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

  .zu23a0 {
    margin-bottom: 30px;
  }

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

  .qhfhzt {
    margin-right: 7px;
  }

  .mycr8r {
    width: 152px;
  }

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

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

  .wacbg8 .nkx65e:first-child,
  .t73w16 .nkx65e:last-child {
    height: 150px;
  }

  .wacbg8 .nkx65e:last-child,
  .t73w16 .nkx65e:first-child {
    height: 114px;
  }

  .d19jqr {
    display: none;
  }

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

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

  .xsxg9s,
  .vfwe8f {
    text-align: center;
  }

  .e0aplm {
    margin: 10px 0;
  }

  .w2wojb {
    padding: 80px 0;
  }

  .bwfmz1,
  .hhmvmf {
    margin-left: auto;
    margin-right: auto;
  }

  .h634wx {
    max-width: 100%;
  }

  .menq2a {
    margin-bottom: 40px;
  }

  .u0b328 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .u0b328 {
    padding: 6px 0;
  }

  .nd7ln2,
  .k2e5fr {
    max-width: 157px;
  }

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

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

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

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

  .nkx65e {
    margin-bottom: 10px;
  }

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

  .wacbg8, 
  .t73w16 {
    width: calc(50% - 5px);
  }

  .cskkej {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .bxxte0 .cb4tn8 {
    margin-top: 35px;
  }

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

  .rb7jmf .xrazqx {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .kmybta .xrazqx {
    display: block;
  }

  .kmybta .ifa1x9 {
    width: 100%;
    display: block;
  }

  .ehf740 {
    padding-top: 75px;
  }

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

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

  .wefuw9 {
    width: 100%;
  }

  .uy661x {
    margin-right: 10px;
  }

  .rb7jmf .sziedf {
    padding: 20px 10px;
  }

  .txaowy,
  .e0aplm {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .k6r486 {
    padding: 25px;
  }

  .xsxg9s {
    margin-bottom: 20px;
  }

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

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

  .x4m0h2 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .b8k0iq {
    margin-top: 20px;
  }

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

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

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

  .d5easn {
    display: block;
  }

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

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

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

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

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

  .rbtphd,
  .xv73h2 {
    padding: 45px 0 60px;
  }

  .eyyrd9 {
    display: block;
  }

  .ek2hm5 {
    flex-direction: row;
  }

  .u3j25f {
    margin-right: 15px;
  }

  .f9omj8 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .menq2a textarea {
    height: 99px;
  }

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

  .gx5xy8 {
    margin-top: 20px;
  }

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

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

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

  .ek2hm5 {
    margin-bottom: 8px;
  }

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

  .ifa1x9 {
    margin-bottom: 20px;
  }

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

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

  .e9pidi {
    padding-top: 47px;
  }

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

  .vqu6wl {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .zojrnf {
    margin: 0;
  }

  .jp89vw {
    margin-top: 15px;
  }

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

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

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

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

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

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