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

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

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

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

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

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

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

.j2a6gd {
  width: 25%;
}

.e2l158 {
  width: 33.3333%;
}

.nfbrcc {
  width: 41.666667%;
}

.odh56a {
  width: 50%;
}

.or75qf {
  width: 100%;
}

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

.b0xnb5 {
  flex: 1;
}

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

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

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

  .ok22vo {
    width: 33.3333%;
  }

  .pqqj87 {
    width: 58.3333%;
  }

  .gz52qk {
    width: 66.6666%;
  }

  .isfzqu {
    width: 50%;
  }

  .qzq90y {
    width: 41.6666%;
  }

  .x41xha {
    flex-direction: row;
  }
}

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

  .w0uppx {
    width: 50%;
  }

  .zr71eg {
    width: 58.3333%;
  }

  .ojkio2 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.c82pwh:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.uka5r0 {
  flex-shrink: 0;
}

.uka5r0 .dbp424 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.wq1uiz .qgwrqp {
  width: calc(50% - 15px);
}

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

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

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

.qgwrqp::before {
  display: none;
}

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

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

.d6r2ig {
  margin: 25px 0;
}

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

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

.ypqc0t p {
  margin-bottom: 0;
}

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

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

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

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

.srrfg3::before {
  display: none;
}

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

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

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

.ag26tf .rwhcym + .dez2qn,
.ag26tf .rwhcym + p {
  margin-top: 10px;
}

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

.pbd39e,
.f21hci {
  width: 50%;
}

.xq7pag {
  padding-left: 15px;
}

.gkbzri {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.je9udb {
  margin: 20px 0;
}

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

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

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

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

.mrmzel,
.pb0i1o {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.y2b0vi textarea {
  height: 155px;
}

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

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

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

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

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

.iy6eha {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.zx4y1r {
  margin: 0 15px;
}

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

.cr4ssy:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.s0u7fw {
  margin: 0;
}

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

.s0u7fw.c93un9 li {
  width: calc(50% - 5px);
}

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

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

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

.nqxso2 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.r531l7 {
  display: flex;
}

.jx6uo8 {
  text-align: center;
}

.kesxql {
  align-items: center;
} 

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

.nlevcm {
  justify-content: center;
}

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

  .n9t7j4 {
    display: inline-flex;
  }

  .c82pwh {
    max-width: 125px;
  }

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

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

  .v97epx ul {
    display: block;
  }

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

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

  .uka5r0 {
    margin-top: 15px;
  }

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

  .f88mgj {
    margin-right: 0;
  }
}

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

  .bk8qgg {
    margin-bottom: 30px;
  }

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

  .mkge60 {
    margin-right: 7px;
  }

  .bp23br {
    width: 152px;
  }

  .sv3kjy,
  .gagwc2 {
    margin-bottom: 25px;
    text-align: center;
  }

  .f88mgj {
    display: none;
  }

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

  .bm64cy,
  .pt446v {
    text-align: center;
  }

  .ae92sg {
    margin: 10px 0;
  }

  .k6xhxo {
    padding: 80px 0;
  }

  .eydqtj,
  .osaysa {
    margin-left: auto;
    margin-right: auto;
  }

  .qdprby {
    max-width: 100%;
  }

  .y2b0vi {
    margin-bottom: 40px;
  }

  .t45sx3 {
    padding: 10px 0;
  }

  .c82pwh {
    max-width: 103px;
  }

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

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

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

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

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

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

  .t45sx3 {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .wq1uiz .dez2qn {
    display: block;
  }

  .wq1uiz .qgwrqp {
    width: 100%;
    display: block;
  }

  .c1zces {
    padding-top: 75px;
  }

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

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

  .d6r2ig {
    margin: 20px 0;
  }

  .ypqc0t {
    padding: 15px 10px;
  }

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

  .gkslpc {
    width: 100%;
  }

  .lrdzlw {
    margin-right: 10px;
  }

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

  .sv3kjy,
  .ae92sg {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .g3uma4 {
    padding: 20px 15px;
  }

  .bm64cy {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .n1y14d {
    margin-top: 20px;
  }

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

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

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

  .kd0rhq {
    display: block;
  }

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

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

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

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

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

  .mrmzel,
  .pb0i1o {
    padding: 45px 0 60px;
  }

  .qcohi8 {
    display: block;
  }

  .pi98vl {
    flex-direction: row;
  }

  .ju17q7 {
    margin-right: 15px;
  }

  .iy6eha {
    padding-top: 0;
  }

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

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

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

  .y2b0vi {
    padding: 10px;
  }

  .qtrly9 {
    padding: 20px 15px;
  }

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

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

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

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

  .y2b0vi textarea {
    height: 99px;
  }

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

  .nm2ov5 {
    margin-top: 20px;
  }

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

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

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

  .pi98vl {
    margin-bottom: 8px;
  }

  .ag26tf {
    flex-direction: column;
  }

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

  .ag26tf .rwhcym + .dez2qn, 
  .ag26tf .rwhcym + p {
    margin-top: 0;
  }

  .qgwrqp {
    margin-bottom: 20px;
  }

  .pbd39e, 
  .f21hci {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .xq7pag {
    padding-left: 0;
  }

  .gkbzri {
    padding-right: 0;
  }

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

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

  .suoywl {
    padding-top: 47px;
  }

  .cr4ssy {
    max-width: 103px;
  }

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

  .fq2ea0 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .zx4y1r {
    margin: 0;
  }

  .nqxso2 {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.i0x60h[open] .m2ynut::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gyuo0j {
  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) {
  .exgch5 thead {
    display: none;
  }

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

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

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

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

  .exgch5 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 ===== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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