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

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

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

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

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

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

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

.at83zv {
  width: 25%;
}

.u0eq4q {
  width: 33.3333%;
}

.x5ztnq {
  width: 41.666667%;
}

.t6wrtt {
  width: 50%;
}

.t15n8t {
  width: 100%;
}

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

.ijqqju {
  flex: 1;
}

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

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

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

  .j5myga {
    width: 33.3333%;
  }

  .ald0fx {
    width: 58.3333%;
  }

  .a18ai3 {
    width: 66.6666%;
  }

  .j2c9dv {
    width: 50%;
  }

  .ilodvn {
    width: 41.6666%;
  }

  .qpda2j {
    flex-direction: row;
  }
}

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

  .rjxpxi {
    width: 50%;
  }

  .su676j {
    width: 58.3333%;
  }

  .wff4ko {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.r5xeiy:hover {
  opacity: .9;
}

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

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

.jlpmzq.is-active {
  transform: translateX(0);
}

.kh8kmp.is-active {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.aib9qk {
  flex-shrink: 0;
}

.aib9qk .loj735 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.h1d64w {
  padding: 60px 0;
}

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

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

.a91iew,
.qt0iia {
  width: calc(50% - 15px);
}

.a91iew .tjssfh:first-child,
.qt0iia .tjssfh:last-child {
  height: 240px;
}

.a91iew .tjssfh:last-child,
.qt0iia .tjssfh:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.qk5yhe[open] .bza1t4::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.h1d64w p,
.w2loot p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.h1d64w ul,
.w2loot ul {
  list-style-type: disc;
}

.h1d64w ol,
.w2loot ol {
  list-style-type: decimal;
}

.h1d64w li,
.w2loot li {
  margin-bottom: 6px;
  padding-left: 0;
}

.h1d64w li::before,
.w2loot li::before {
  display: none;
}

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

.fd9170.xei720 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.moc74m::before {
  display: none;
}

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

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

.o1d6v3 .a2zg09,
.o1d6v3 p {
  color: var(--white-color);
}

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

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

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

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

.xir9j8 {
  padding: 60px 0;
}

.xir9j8 .fd9170 {
  margin-top: 45px;
}

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

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

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

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

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

.x2mfto .a2zg09,
.x2mfto p {
  color: var(--white-color);
}

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

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

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

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

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

.moc74m::before {
  display: none;
}

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

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

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

.v3sywm ul {
  margin: 0;
}

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

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

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

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

.ubluyv {
  margin: 20px auto 0;
}

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

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

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

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

.i43270,
.gjqc4j {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.yk0n31 textarea {
  height: 155px;
}

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

.yk0n31.c7w2kz {
  min-height: 460px;
}

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

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

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

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

.wykfxy {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.eeofy0 {
  margin: 0 15px;
}

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

.un4cmk:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.jumf5h {
  margin: 0;
}

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

.jumf5h.d1010v li {
  width: calc(50% - 5px);
}

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

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

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

.melkcy {
  margin-top: 35px;
}

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

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

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

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

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

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

.dgwzk3:hover {
  opacity: 0.7;
}

.dgwzk3.is-active:hover {
  opacity: 0.7;
}

.dgwzk3.is-active .qblwcv,
.dgwzk3.is-active .qblwcv::before,
.dgwzk3.is-active .qblwcv::after {
  background-color: var(--blue-dark-color);
}

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

.qblwcv {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.qblwcv,
.qblwcv::before,
.qblwcv::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;
}

.qblwcv::before,
.qblwcv::after {
  content: "";
  display: block;
}

.qblwcv::before {
  top: -10px;
}

.qblwcv::after {
  bottom: -10px;
}

.l5io0j .qblwcv {
  top: 2px;
}

.l5io0j .qblwcv::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.l5io0j .qblwcv::after {
  top: 20px;
}

.l5io0j.is-active .qblwcv {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.l5io0j.is-active .qblwcv::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.l5io0j.is-active .qblwcv::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

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

.nzkpbh {
  display: flex;
}

.necvvh {
  text-align: center;
}

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

.yir0qv {
  align-items: center;
}

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

.stt4ua {
  justify-content: center;
}

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

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

  .dgwzk3 {
    display: inline-flex;
  }

  .r5xeiy,
  .un4cmk {
    max-width: 157px;
  }

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

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

  .x53eo9 ul {
    display: block;
  }

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

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

  .aib9qk {
    margin-top: 15px;
  }

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

  .hjet9l {
    margin-right: 0;
  }
}

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

  .c9u99d {
    margin-bottom: 30px;
  }

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

  .lpvmds {
    margin-right: 7px;
  }

  .fs1ezy {
    width: 152px;
  }

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

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

  .a91iew .tjssfh:first-child,
  .qt0iia .tjssfh:last-child {
    height: 150px;
  }

  .a91iew .tjssfh:last-child,
  .qt0iia .tjssfh:first-child {
    height: 114px;
  }

  .hjet9l {
    display: none;
  }

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

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

  .dkenas,
  .w2yx99 {
    text-align: center;
  }

  .oudpuv {
    margin: 10px 0;
  }

  .b4n204 {
    padding: 80px 0;
  }

  .t63f8f,
  .lx1gk8 {
    margin-left: auto;
    margin-right: auto;
  }

  .ye0qcs {
    max-width: 100%;
  }

  .yk0n31 {
    margin-bottom: 40px;
  }

  .zgcqdv {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .zgcqdv {
    padding: 6px 0;
  }

  .r5xeiy,
  .un4cmk {
    max-width: 157px;
  }

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

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

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

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

  .tjssfh {
    margin-bottom: 10px;
  }

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

  .a91iew,
  .qt0iia {
    width: calc(50% - 5px);
  }

  .v2jxgp {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .xir9j8 .fd9170 {
    margin-top: 35px;
  }

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

  .x2mfto .x913ot {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .ftfflx .x913ot {
    display: block;
  }

  .ftfflx .moc74m {
    width: 100%;
    display: block;
  }

  .jlpmzq {
    padding-top: 75px;
  }

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

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

  .jcwuhm {
    width: 100%;
  }

  .aw6ckl {
    margin-right: 10px;
  }

  .x2mfto .zg4ej2 {
    padding: 20px 10px;
  }

  .ixuifb,
  .oudpuv {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .yywm0i {
    padding: 25px;
  }

  .dkenas {
    margin-bottom: 20px;
  }

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

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

  .gpdgyu {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .ubluyv {
    margin-top: 20px;
  }

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

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

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

  .z9kgem {
    display: block;
  }

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

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

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

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

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

  .i43270,
  .gjqc4j {
    padding: 45px 0 60px;
  }

  .wdc2sf {
    display: block;
  }

  .e7aglz {
    flex-direction: row;
  }

  .rbgz8k {
    margin-right: 15px;
  }

  .wykfxy {
    padding-top: 0;
  }

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

  .e7aglz span {
    font-size: 14px;
    line-height: 19px;
  }

  .ph59wo {
    padding: 19px 0;
  }

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

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

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

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

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

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

  .yk0n31 textarea {
    height: 99px;
  }

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

  .nebbk3 {
    margin-top: 20px;
  }

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

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

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

  .e7aglz {
    margin-bottom: 8px;
  }

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

  .moc74m {
    margin-bottom: 20px;
  }

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

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

  .t6tjlt {
    padding-top: 47px;
  }

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

  .yqgbud {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .eeofy0 {
    margin: 0;
  }

  .melkcy {
    margin-top: 15px;
  }

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

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

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

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

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

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

/* ===== Payday Loan Alternatives ===== */
  .booull {
    padding: 30px 0 60px;
  }

  .booull h2,
  .h4z7ym h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-dark-color);
    letter-spacing: -0.4px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 16px;
  }

  .booull h2::before,
  .h4z7ym h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--green-color);
    border-radius: 4px;
  }

  .d9badh {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(33, 53, 85, 0.07);
    border: 1px solid var(--grey-medium-color);
  }

  .b89rw5 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    line-height: 24px;
    background-color: var(--white-color);
  }

  .b89rw5 thead tr {
    background-color: var(--blue-dark-color);
    color: var(--white-color);
  }

  .b89rw5 th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-color);
    border-bottom: 2px solid var(--blue-color);
  }

  .b89rw5 th:first-child {
    border-top-left-radius: 11px;
  }

  .b89rw5 th:last-child {
    border-top-right-radius: 11px;
  }

  .b89rw5 td {
    padding: 16px 20px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 22px;
    border-bottom: 1px solid #ECECEC;
    vertical-align: middle;
    transition: background-color 0.2s ease;
  }

  .b89rw5 tbody tr:last-child td {
    border-bottom: none;
  }

  .b89rw5 tbody tr:nth-child(even) {
    background-color: #FAF8F5;
  }

  .b89rw5 tbody tr:hover td {
    background-color: rgba(233, 216, 205, 0.3);
  }

  .ew0ixe {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--green-color) 0%, var(--green-dark-color) 100%);
    color: var(--white-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 153, 144, 0.25);
  }

  @media (max-width: 767px) {
    .d9badh {
      border: none;
      box-shadow: none;
      background: transparent;
      overflow-x: visible;
    }

    .b89rw5 thead {
      display: none;
    }

    .b89rw5,
    .b89rw5 tbody,
    .b89rw5 tr,
    .b89rw5 td {
      display: block;
      width: 100%;
    }

    .b89rw5 tbody tr {
      background-color: var(--white-color) !important;
      border: 1px solid var(--grey-medium-color);
      border-radius: 12px;
      margin-bottom: 14px;
      padding: 12px 16px;
      box-shadow: 0 4px 15px rgba(33, 53, 85, 0.05);
    }

    .b89rw5 td {
      border-bottom: 1px dashed #EAEAEA;
      padding: 10px 0 10px 42%;
      position: relative;
      min-height: 38px;
      display: flex;
      align-items: center;
    }

    .b89rw5 td:last-child {
      border-bottom: none;
    }

    .b89rw5 td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 38%;
      font-weight: 700;
      font-size: 13px;
      color: var(--blue-dark-color);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
  }

/* ===== Payday Loans Near Me — map section ===== */

.h4z7ym {
  padding: 20px 0 70px;
}

.al98mc {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(33, 53, 85, 0.08);
  border: 1px solid var(--grey-medium-color);
  line-height: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.al98mc:hover {
  box-shadow: 0 14px 35px rgba(33, 53, 85, 0.12);
}

.al98mc iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 767px) {
  .al98mc iframe {
    height: 300px;
  }
}

/* ===== Useful Links Section ===== */
.u04uak {
  padding: 50px 0 70px;
  background-color: var(--sandy-color, #E9D8CD);
  border-top: 1px solid var(--grey-medium-color, #DADADA);
}

.h5eshg {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark-color, #213555);
  letter-spacing: -0.5px;
}

.mw7xtj {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.mw7xtj li::before {
  display: none;
  content: none;
}

.mw7xtj li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: var(--white-color);
  border: 1px solid var(--grey-medium-color, #DADADA);
  border-radius: 8px;
  color: var(--text-color, #272727);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 5px rgba(33, 53, 85, 0.03);
}

.mw7xtj li a::after {
  content: "→";
  margin-left: 12px;
  font-size: 16px;
  color: var(--green-color, #009990);
  transition: transform 0.25s ease;
  font-weight: 700;
}

.mw7xtj li a:hover {
  background-color: var(--white-color);
  color: var(--green-dark-color, #0E6A65);
  border-color: var(--green-color, #009990);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 153, 144, 0.08);
}

.mw7xtj li a:hover::after {
  transform: translateX(4px);
}