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

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

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

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

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

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

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

.xx1hdp {
  width: 25%;
}

.jwm4jc {
  width: 33.3333%;
}

.x4u0j6 {
  width: 41.666667%;
}

.ykskt6 {
  width: 50%;
}

.xaumbq {
  width: 100%;
}

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

.zocini {
  flex: 1;
}

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

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

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

  .x63uei {
    width: 33.3333%;
  }

  .a3ngfe {
    width: 58.3333%;
  }

  .tzsued {
    width: 66.6666%;
  }

  .v1s0jv {
    width: 50%;
  }

  .h6pkxo {
    width: 41.6666%;
  }

  .q525g1 {
    flex-direction: row;
  }
}

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

  .abzq6h {
    width: 50%;
  }

  .d72na3 {
    width: 58.3333%;
  }

  .cv28sp {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.ov1nal:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.k8ji1b {
  flex-shrink: 0;
}

.k8ji1b .kglo8e {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.hubmdt .treyf6 {
  width: calc(50% - 15px);
}

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

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

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

.treyf6::before {
  display: none;
}

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

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

.dsu84y {
  margin: 25px 0;
}

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

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

.v6e6gn p {
  margin-bottom: 0;
}

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

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

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

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

.xbe250::before {
  display: none;
}

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

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

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

.i1nv9x .oeexsu + .ko6qfa,
.i1nv9x .oeexsu + p {
  margin-top: 10px;
}

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

.to3d27,
.cmudfa {
  width: 50%;
}

.zxst9o {
  padding-left: 15px;
}

.cqomsx {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.fis8b6 {
  margin: 20px 0;
}

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

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

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

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

.ra1afh,
.fveaen {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.riciwj textarea {
  height: 155px;
}

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

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

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

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

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

.omnz57 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.upfdek {
  margin: 0 15px;
}

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

.fzpigt:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.wy679u {
  margin: 0;
}

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

.wy679u.i2n4h8 li {
  width: calc(50% - 5px);
}

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

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

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

.cqxzcl {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.jf60f4 {
  display: flex;
}

.kmhfhs {
  text-align: center;
}

.bjnpwq {
  align-items: center;
} 

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

.qu6t6m {
  justify-content: center;
}

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

  .ebhcia {
    display: inline-flex;
  }

  .ov1nal {
    max-width: 125px;
  }

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

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

  .vyisdz ul {
    display: block;
  }

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

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

  .k8ji1b {
    margin-top: 15px;
  }

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

  .hcky47 {
    margin-right: 0;
  }
}

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

  .sx6cfe {
    margin-bottom: 30px;
  }

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

  .fgkxvl {
    margin-right: 7px;
  }

  .betn8f {
    width: 152px;
  }

  .dyzjot,
  .kg2u0x {
    margin-bottom: 25px;
    text-align: center;
  }

  .hcky47 {
    display: none;
  }

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

  .xm4pqa,
  .nxjy6u {
    text-align: center;
  }

  .sfmp78 {
    margin: 10px 0;
  }

  .lz8iu8 {
    padding: 80px 0;
  }

  .fzo9hp,
  .evosou {
    margin-left: auto;
    margin-right: auto;
  }

  .ugvbfd {
    max-width: 100%;
  }

  .riciwj {
    margin-bottom: 40px;
  }

  .qs8737 {
    padding: 10px 0;
  }

  .ov1nal {
    max-width: 103px;
  }

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

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

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

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

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

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

  .qs8737 {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .hubmdt .ko6qfa {
    display: block;
  }

  .hubmdt .treyf6 {
    width: 100%;
    display: block;
  }

  .ccbpas {
    padding-top: 75px;
  }

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

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

  .dsu84y {
    margin: 20px 0;
  }

  .v6e6gn {
    padding: 15px 10px;
  }

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

  .puy4lg {
    width: 100%;
  }

  .tk5hi4 {
    margin-right: 10px;
  }

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

  .dyzjot,
  .sfmp78 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .okngic {
    padding: 20px 15px;
  }

  .xm4pqa {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .kq69jc {
    margin-top: 20px;
  }

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

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

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

  .qrl4zo {
    display: block;
  }

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

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

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

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

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

  .ra1afh,
  .fveaen {
    padding: 45px 0 60px;
  }

  .wl9j0j {
    display: block;
  }

  .s28wlc {
    flex-direction: row;
  }

  .e6mg1u {
    margin-right: 15px;
  }

  .omnz57 {
    padding-top: 0;
  }

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

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

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

  .riciwj {
    padding: 10px;
  }

  .loxoh7 {
    padding: 20px 15px;
  }

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

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

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

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

  .riciwj textarea {
    height: 99px;
  }

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

  .g30sii {
    margin-top: 20px;
  }

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

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

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

  .s28wlc {
    margin-bottom: 8px;
  }

  .i1nv9x {
    flex-direction: column;
  }

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

  .i1nv9x .oeexsu + .ko6qfa, 
  .i1nv9x .oeexsu + p {
    margin-top: 0;
  }

  .treyf6 {
    margin-bottom: 20px;
  }

  .to3d27, 
  .cmudfa {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .zxst9o {
    padding-left: 0;
  }

  .cqomsx {
    padding-right: 0;
  }

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

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

  .qulpid {
    padding-top: 47px;
  }

  .fzpigt {
    max-width: 103px;
  }

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

  .yaordo {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .upfdek {
    margin: 0;
  }

  .cqxzcl {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.lambjy[open] .h4um1e::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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