/* === main.css === */
/* inlined: vars.css */
:root {
  --blue-color: #195B71;
  --blue-medium-color: #2F7187;
  --blue-light-color: #E5ECEF;
  --red-color: #D75345;
  --red-light-color: #DC6B5F;
  --green-color: #A6B900;
  --green-light-color: #F6F8E5;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;
  --grey-light-color: #F9F9F9;
  --header-color: #FFF7EA;
  --grey-bg-color: #F0F4F5;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}
/* inlined: grid.css */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.ou9f92 {
  width: 25%;
}

.fvnoxt {
  width: 33.3333%;
}

.g5pxdu {
  width: 41.666667%;
}

.fdoole {
  width: 50%;
}

.nbitgy {
  width: 100%;
}

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

.hc4x6v {
  flex: 1;
}

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

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

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

  .r0u19b {
    width: 33.3333%;
  }

  .u8u9vu {
    width: 58.3333%;
  }

  .k2zhpw {
    width: 66.6666%;
  }

  .w5fepk {
    width: 50%;
  }

  .ep09ks {
    width: 41.6666%;
  }

  .xxj104 {
    flex-direction: row;
  }
}

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

  .m1uklg {
    width: 50%;
  }

  .mdueyw {
    width: 58.3333%;
  }

  .k3wd20 {
    width: 41.6666%;
  }

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

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

  .s77n80 {
    flex-direction: row;
  }
}

* {
  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(--white-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(--blue-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: var(--grey-light-color);
  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: var(--grey-light-color);
  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-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-color);
}

.kd0y3p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--red-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  border-radius: 30px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.kd0y3p:hover,
.kd0y3p:active {
  background-color: var(--red-light-color);
  text-decoration: none;
}

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

.cc3zm8 {
  max-width: 168px;
  width: 100%;
  transition: var(--transition);
  border: 0;
}

.cc3zm8:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.p76wma {
  flex-shrink: 0;
}

.p76wma .kd0y3p {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.xnn1fz {
  padding: 70px 0 45px;
}

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

.ttkd5q p {
  color: var(--white-color);
}

.r9bvj3 {
  margin: 0 0 30px;
  font-size: 24px;
  display: inline-block;
  line-height: 32px;
  background-color: var(--green-color);
  color: var(--white-color);
  padding: 5px 20px;
}

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

.ttkd5q .d5eib5 {
  width: calc(50% - 15px);
}

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

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

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

.d5eib5::before {
  display: none;
}

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

.wot17r {
  padding: 50px 0 45px;
  background-color: var(--blue-light-color);
}

.czkeb3 {
  margin: 25px 0;
}

.fu29ra {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: var(--green-light-color);
  padding: 15px 20px;
  margin-bottom: 14px;
}

.nvbctt {
  margin-top: 2px;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fu29ra p {
  margin-bottom: 0;
}

.hj03vd {
  padding: 60px 0 40px;
  background-color: var(--grey-bg-color);
}

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

.cgr335 {
  margin: 15px 0 0;
  padding: 0;
  list-style-type: none;
}

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

.quuqer::before {
  display: none;
}

.cccqu7 {
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gi4uax {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  color: var(--white-color);
}

.gi4uax .r9bvj3 + .ci037z,
.gi4uax .r9bvj3 + p {
  margin-top: 10px;
}

.gi4uax p {
  color: var(--white-color);
}

.gtijkm,
.guxwf4 {
  width: 50%;
}

.j1otcw {
  padding-left: 15px;
}

.bjhs08 {
  padding-right: 15px;
}

.gtijkm {
  padding: 50px 30px 25px 0;
  padding-left: calc((100% - (var(--grid-width) + var(--grid-gutter) * 2)) / 2);
  background-color: var(--blue-medium-color);
}

.guxwf4 {
  padding: 50px 0 25px 30px;
  padding-right: calc((100% - (var(--grid-width) + var(--grid-gutter) * 2)) / 2);
  background-color: var(--blue-color);
}

.ujnn3u {
  padding: 60px 0 95px;
}

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

.l8an7g {
  padding: 30px 25px;
  width: 100%;
  margin: 0 auto;
}

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

.rg1yqx {
  padding: 12px 40px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
}

.w4ok6i {
  margin: 20px auto 0;
  max-width: 240px;
}

.w6yupv {
  font-size: 12px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.y83plm {
  margin: 20px 0;
}

.y83plm li {
  padding-left: 43px;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}

.y83plm li::before {
  width: 28px;
  height: 28px;
  left: 0;
  top: 1px; 
  border-radius: 5px;
  background: url(../images/check-icon.svg) no-repeat center var(--green-color);
}

.ncl025 {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--blue-color);
  line-height: 54px;
  font-weight: 600;
}

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

.x3ktng,
.rkmad4 {
  padding: 70px 0 80px;
}

.oap7d3 {
  padding: 25px 30px;
  max-width: 565px;
  width: 100%;
  border-radius: 10px;
  margin: 0 auto 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 20px 0 rgba(37, 37, 37, 0.3);
}

.fuvimo {
  padding: 20px 52px;
  background-color: var(--grey-light-color);
  border: 1px solid var(--green-color);
}

.s8dgup {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black-color);
  margin: 0 0 25px;
  text-align: center;
}

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

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

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

.oap7d3 textarea {
  height: 155px;
}

.pyg4ff {
  margin: 25px auto 0;
  max-width: 240px;
}

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

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

.qdsngq {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  background-color: var(--grey-light-color);
  border: 1px solid var(--green-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

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

.c73h97 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

.i1q79t {
  padding-top: 60px;
  background-color: var(--black-color);
}

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

.d0mlmc {
  margin: 0 15px;
}

.lyp665 {
  max-width: 168px;
  width: 100%;
}

.lyp665:hover {
  opacity: .9;
}

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

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

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

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

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

.x2vvbr li a svg path {
  transition: var(--transition);
}

.x2vvbr li a:hover svg path {
  fill: var(--blue-color);
}

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

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

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

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

.us4n7v {
  margin: 0;
}

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

.us4n7v.xtqce4 li {
  width: calc(50% - 5px);
}

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

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

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

.m9mxl2 {
  margin-top: 35px;
}

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

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

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

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

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

.ewnns7 {
  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; }
  .ewnns7:hover {
    opacity: 0.7; }
  .ewnns7.is-active:hover {
    opacity: 0.7; }
  .ewnns7.is-active .wxxb1j,
  .ewnns7.is-active .wxxb1j::before,
  .ewnns7.is-active .wxxb1j::after {
    background-color: var(--blue-color); }

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

.wxxb1j {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .wxxb1j, .wxxb1j::before, .wxxb1j::after {
    width: 40px;
    height: 3px;
    background-color: var(--blue-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .wxxb1j::before, .wxxb1j::after {
    content: "";
    display: block; }
  .wxxb1j::before {
    top: -10px; }
  .wxxb1j::after {
    bottom: -10px; }

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

.rnhwti.is-active .wxxb1j {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .rnhwti.is-active .wxxb1j::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .rnhwti.is-active .wxxb1j::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

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

.ktdmlk {
  display: flex;
}

.gv6lu5 {
  text-align: center;
}

.b8kqa3 {
  align-items: center;
} 

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

.a0jru2 {
  justify-content: center;
}

.jqxct9 {
  justify-content: flex-start;
}
/* inlined: media.css */
@media (max-width: 1025px) {
  .eefyhw ul li {
    margin-right: 25px;
  }

  .ewnns7 {
    display: inline-flex;
  }

  .cc3zm8 {
    max-width: 125px;
  }

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

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

  .eefyhw ul {
    display: block;
  }

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

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

  .p76wma {
    margin-top: 15px;
  }

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

  .vw9328 {
    margin-right: 0;
  }
}

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

  .sj7tr9 {
    margin-bottom: 30px;
  }

  .lyp665 {
    margin-bottom: 0;
    justify-content: flex-start;
    max-width: 125px;
  }

  .bri90c {
    margin-right: 7px;
  }

  .lxvr5m {
    width: 152px;
  }

  .d654q1,
  .j503eg {
    margin-bottom: 25px;
    text-align: center;
  }

  .vw9328 {
    display: none;
  }

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

  .dcfye9,
  .bjkkwm {
    text-align: center;
  }

  .v31zqa {
    margin: 10px 0;
  }

  .y5736b {
    padding: 80px 0;
  }

  .d7q8nj,
  .qdsngq {
    margin-left: auto;
    margin-right: auto;
  }

  .ifbf0t {
    max-width: 100%;
  }

  .oap7d3 {
    margin-bottom: 40px;
  }

  .x9ci6r {
    padding: 10px 0;
  }

  .cc3zm8 {
    max-width: 103px;
  }

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

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

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

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

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

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

  .x9ci6r {
    padding: 6px 0;
  }

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

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

  .hj03vd {
    padding: 50px 0 45px;
  }

  .cccqu7 {
    margin-right: 15px;
    max-width: 20px;
  }

  .ujnn3u {
    padding: 50px 0 65px;
  }

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

  .ttkd5q .ci037z {
    display: block;
  }

  .ttkd5q .d5eib5 {
    width: 100%;
    display: block;
  }

  .kk8uxm {
    padding-top: 75px;
  }

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

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

  .czkeb3 {
    margin: 20px 0;
  }

  .fu29ra {
    padding: 15px 10px;
  }

  .nvbctt {
    max-width: 21px;
    margin-right: 10px;
    margin-top: 5px;
  }

  .iq4gi1 {
    width: 100%;
  }

  .zveco5 {
    margin-right: 10px;
  }

  .j503eg {
    max-width: 331px;
    margin-left: auto;
    margin-right: auto;
  }

  .d654q1,
  .v31zqa {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .l8an7g {
    padding: 20px 15px;
  }

  .dcfye9 {
    margin-bottom: 20px;
  }

  .xnn1fz {
    padding: 50px 0 35px;
  }

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

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

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

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

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

  .w4ok6i {
    margin-top: 20px;
  }

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

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

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

  .ef08lc {
    display: block;
  }

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

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

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

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

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

  .x3ktng,
  .rkmad4 {
    padding: 45px 0 60px;
  }

  .py0psd {
    display: block;
  }

  .tbtoor {
    flex-direction: row;
  }

  .u32l8f {
    margin-right: 15px;
  }

  .c73h97 {
    padding-top: 0;
  }

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

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

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

  .oap7d3 {
    padding: 10px;
  }

  .fuvimo {
    padding: 20px 15px;
  }

  .s8dgup {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

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

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

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

  .oap7d3 textarea {
    height: 99px;
  }

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

  .pyg4ff {
    margin-top: 20px;
  }

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

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

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

  .tbtoor {
    margin-bottom: 8px;
  }

  .gi4uax {
    flex-direction: column;
  }

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

  .gi4uax .r9bvj3 + .ci037z, 
  .gi4uax .r9bvj3 + p {
    margin-top: 0;
  }

  .d5eib5 {
    margin-bottom: 20px;
  }

  .gtijkm, 
  .guxwf4 {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .j1otcw {
    padding-left: 0;
  }

  .bjhs08 {
    padding-right: 0;
  }

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

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

  .i1q79t {
    padding-top: 47px;
  }

  .lyp665 {
    max-width: 103px;
  }

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

  .iiwr3l {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .d0mlmc {
    margin: 0;
  }

  .m9mxl2 {
    margin-top: 15px;
  }

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

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

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

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

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

  .ul4s6u {
    max-width: 100%;
  }
}


/* ===== PACK7 CUSTOM STYLES ===== */

/* Текстовый логотип — переопределяем SVG-стили из base */
.cc3zm8 {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 20px;
  color: var(--black-color);
  text-decoration: none;
}
.cc3zm8:hover {
  opacity: 1;
  color: var(--blue-color);
  text-decoration: none;
}
.lyp665 {
  max-width: none !important;
  width: auto;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-color);
  text-decoration: none;
}
.lyp665:hover {
  color: var(--blue-light-color);
  text-decoration: none;
  opacity: 1;
}

/* Footer top — выравниваем по центру (нет address-блока) */
.sj7tr9 {
  align-items: center;
}

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

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

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

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

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

.l5nnok {
  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-color);
  background-color: var(--blue-light-color);
  transition: background-color var(--transition);
  margin: 0;
}

.l5nnok:hover {
  background-color: #b8cfd8;
}

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

.ddyf2f[open] .l5nnok::after {
  transform: rotate(90deg);
}

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

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

.nhtiqd li {
  margin: 0;
  padding: 0;
}

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

.nhtiqd li a:hover {
  background: var(--grey-bg-color);
  color: var(--blue-medium-color);
  text-decoration: none;
}

/* ===== ARTICLE CONTENT TYPOGRAPHY ===== */
.eqr2jw {
  line-height: 1.7;
}

.eqr2jw p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.eqr2jw ul {
  list-style-type: disc;
}

.eqr2jw ol {
  list-style-type: decimal;
}

.eqr2jw li {
  margin-bottom: 6px;
  padding-left: 0;
}

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

/* ===== DISCLAIMER paragraph spacing ===== */
.b7v57c p + p {
  margin-top: 8px;
}

/* ===== Payday Loan Alternatives — businesses table ===== */

.sl1lxs {
  padding: 20px 0 60px;
  background-color: var(--grey-bg-color);
}

.sl1lxs h2 {
  margin-top: 40px;
}

.cui7nq {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(25, 91, 113, 0.10);
}

.v7w3aw {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--white-color);
}

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

.v7w3aw th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--white-color);
  white-space: nowrap;
}

.v7w3aw td {
  padding: 13px 18px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 22px;
  border-bottom: 1px solid var(--grey-medium-color);
  vertical-align: top;
}

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

.v7w3aw tbody tr:nth-child(even) {
  background-color: var(--grey-light-color);
}

.v7w3aw tbody tr:hover {
  background-color: var(--blue-light-color);
  transition: background-color 0.2s ease;
}

.dqc46n {
  display: inline-block;
  padding: 3px 10px;
  background-color: var(--green-color);
  color: var(--white-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .v7w3aw thead {
    display: none;
  }

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

  .v7w3aw tr {
    border-bottom: 2px solid var(--blue-light-color);
    padding: 10px 0;
  }

  .v7w3aw tr:last-child {
    border-bottom: none;
  }

  .v7w3aw td {
    border-bottom: none;
    padding: 6px 16px;
    position: relative;
    padding-left: 45%;
    min-height: 28px;
  }

  .v7w3aw td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 6px;
    width: 40%;
    font-weight: 600;
    font-size: 13px;
    color: var(--blue-color);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
}

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

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

.bcib38 h2 {
  margin-top: 40px;
}

.g138ga {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(25, 91, 113, 0.12);
  border: 1px solid var(--grey-medium-color);
  line-height: 0;
}

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

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

/* ===== Useful Links Section ===== */
.qtcslk {
  padding: 50px 0 70px;
  background-color: var(--grey-bg-color);
  border-top: 1px solid var(--grey-medium-color);
}

.y25r2k {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color, #195b71);
  letter-spacing: -0.5px;
}

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

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

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

.thcgrx 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, #e0e7ec);
  border-radius: 8px;
  color: var(--text-color, #333);
  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(25, 91, 113, 0.03);
}

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

.thcgrx li a:hover {
  background-color: var(--white-color);
  color: var(--primary-color, #195b71);
  border-color: var(--primary-color, #195b71);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 91, 113, 0.08);
}

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