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

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

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

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

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

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

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

.n36j8z {
  width: 25%;
}

.ueaxth {
  width: 33.3333%;
}

.ycd9pu {
  width: 41.666667%;
}

.uu3046 {
  width: 50%;
}

.cb5dc1 {
  width: 100%;
}

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

.sugxnj {
  flex: 1;
}

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

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

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

  .qwkgxa {
    width: 33.3333%;
  }

  .i9accw {
    width: 58.3333%;
  }

  .bi8y8b {
    width: 66.6666%;
  }

  .l3o72e {
    width: 50%;
  }

  .axthvy {
    width: 41.6666%;
  }

  .k5mknc {
    flex-direction: row;
  }
}

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

  .j66t8k {
    width: 50%;
  }

  .foygls {
    width: 58.3333%;
  }

  .ebnweb {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.scqwwi:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.izo9sc {
  flex-shrink: 0;
}

.izo9sc .zpvp42 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.zs16qp .yzonxd {
  width: calc(50% - 15px);
}

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

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

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

.yzonxd::before {
  display: none;
}

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

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

.yzfplf {
  margin: 25px 0;
}

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

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

.dw9m3o p {
  margin-bottom: 0;
}

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

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

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

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

.gegxnp::before {
  display: none;
}

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

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

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

.oa2l71 .vl3bk3 + .nbmt4k,
.oa2l71 .vl3bk3 + p {
  margin-top: 10px;
}

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

.xk23zp,
.slgtlu {
  width: 50%;
}

.ayw865 {
  padding-left: 15px;
}

.j39ict {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.kvtyhh {
  margin: 20px 0;
}

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

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

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

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

.xaadty,
.ppoh66 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.beh2bm textarea {
  height: 155px;
}

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

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

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

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

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

.v4buki {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.rtvcl6 {
  margin: 0 15px;
}

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

.wjx2qn:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.yzyg96 {
  margin: 0;
}

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

.yzyg96.ql3ewf li {
  width: calc(50% - 5px);
}

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

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

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

.a3tpog {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.webts4 {
  display: flex;
}

.lp52lg {
  text-align: center;
}

.pnv0ax {
  align-items: center;
} 

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

.q2jvih {
  justify-content: center;
}

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

  .uaedif {
    display: inline-flex;
  }

  .scqwwi {
    max-width: 125px;
  }

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

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

  .yh731y ul {
    display: block;
  }

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

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

  .izo9sc {
    margin-top: 15px;
  }

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

  .c0pio7 {
    margin-right: 0;
  }
}

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

  .n0vbcr {
    margin-bottom: 30px;
  }

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

  .zpvakv {
    margin-right: 7px;
  }

  .yxp4vy {
    width: 152px;
  }

  .csekge,
  .jpp1hm {
    margin-bottom: 25px;
    text-align: center;
  }

  .c0pio7 {
    display: none;
  }

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

  .p1rgeh,
  .u52zuh {
    text-align: center;
  }

  .y82eqn {
    margin: 10px 0;
  }

  .ofd67o {
    padding: 80px 0;
  }

  .yh1arm,
  .zu5qiq {
    margin-left: auto;
    margin-right: auto;
  }

  .cjh602 {
    max-width: 100%;
  }

  .beh2bm {
    margin-bottom: 40px;
  }

  .msupg3 {
    padding: 10px 0;
  }

  .scqwwi {
    max-width: 103px;
  }

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

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

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

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

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

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

  .msupg3 {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .zs16qp .nbmt4k {
    display: block;
  }

  .zs16qp .yzonxd {
    width: 100%;
    display: block;
  }

  .q3882m {
    padding-top: 75px;
  }

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

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

  .yzfplf {
    margin: 20px 0;
  }

  .dw9m3o {
    padding: 15px 10px;
  }

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

  .dv3rje {
    width: 100%;
  }

  .z9xon8 {
    margin-right: 10px;
  }

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

  .csekge,
  .y82eqn {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .l4xoxm {
    padding: 20px 15px;
  }

  .p1rgeh {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .g1a5mm {
    margin-top: 20px;
  }

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

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

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

  .tsfhl8 {
    display: block;
  }

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

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

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

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

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

  .xaadty,
  .ppoh66 {
    padding: 45px 0 60px;
  }

  .da7hgi {
    display: block;
  }

  .ult3z7 {
    flex-direction: row;
  }

  .crg3m2 {
    margin-right: 15px;
  }

  .v4buki {
    padding-top: 0;
  }

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

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

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

  .beh2bm {
    padding: 10px;
  }

  .mmat7z {
    padding: 20px 15px;
  }

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

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

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

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

  .beh2bm textarea {
    height: 99px;
  }

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

  .o88wjs {
    margin-top: 20px;
  }

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

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

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

  .ult3z7 {
    margin-bottom: 8px;
  }

  .oa2l71 {
    flex-direction: column;
  }

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

  .oa2l71 .vl3bk3 + .nbmt4k, 
  .oa2l71 .vl3bk3 + p {
    margin-top: 0;
  }

  .yzonxd {
    margin-bottom: 20px;
  }

  .xk23zp, 
  .slgtlu {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .ayw865 {
    padding-left: 0;
  }

  .j39ict {
    padding-right: 0;
  }

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

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

  .naey6y {
    padding-top: 47px;
  }

  .wjx2qn {
    max-width: 103px;
  }

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

  .tsz3sx {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .rtvcl6 {
    margin: 0;
  }

  .a3tpog {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.okyjhl[open] .lhflw9::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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