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

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

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

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

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

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

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

.vfwqhz {
  width: 25%;
}

.v744se {
  width: 33.3333%;
}

.ow6cxa {
  width: 41.666667%;
}

.ic2tjp {
  width: 50%;
}

.uehpy4 {
  width: 100%;
}

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

.o8rkz2 {
  flex: 1;
}

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

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

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

  .pznq1p {
    width: 33.3333%;
  }

  .qzbhfm {
    width: 58.3333%;
  }

  .kwypzt {
    width: 66.6666%;
  }

  .ww2upp {
    width: 50%;
  }

  .hgvvue {
    width: 41.6666%;
  }

  .ntbdd8 {
    flex-direction: row;
  }
}

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

  .vmd60l {
    width: 50%;
  }

  .hjj5il {
    width: 58.3333%;
  }

  .v73xso {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.hgvblq:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.mgu3az {
  flex-shrink: 0;
}

.mgu3az .geuie3 {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.jy39nl .tg3plu {
  width: calc(50% - 15px);
}

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

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

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

.tg3plu::before {
  display: none;
}

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

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

.fdmmc4 {
  margin: 25px 0;
}

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

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

.nikhlr p {
  margin-bottom: 0;
}

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

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

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

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

.shxcsd::before {
  display: none;
}

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

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

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

.nnk21e .vx4uss + .clxsrl,
.nnk21e .vx4uss + p {
  margin-top: 10px;
}

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

.gemfs4,
.miidfh {
  width: 50%;
}

.io5d5w {
  padding-left: 15px;
}

.euygd7 {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.brmeqg {
  margin: 20px 0;
}

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

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

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

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

.btvtqq,
.hq4uij {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.qm9y8t textarea {
  height: 155px;
}

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

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

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

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

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

.ifmeoy {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mkbi3o {
  margin: 0 15px;
}

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

.cr2kc8:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.ruvkg4 {
  margin: 0;
}

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

.ruvkg4.w3fyso li {
  width: calc(50% - 5px);
}

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

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

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

.gyrqlz {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.arp9an {
  display: flex;
}

.injdy3 {
  text-align: center;
}

.aq9bb3 {
  align-items: center;
} 

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

.cv4z1h {
  justify-content: center;
}

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

  .nba75g {
    display: inline-flex;
  }

  .hgvblq {
    max-width: 125px;
  }

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

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

  .jzz9bd ul {
    display: block;
  }

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

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

  .mgu3az {
    margin-top: 15px;
  }

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

  .fyq5q1 {
    margin-right: 0;
  }
}

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

  .fnrwsj {
    margin-bottom: 30px;
  }

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

  .qd6aui {
    margin-right: 7px;
  }

  .pa52b3 {
    width: 152px;
  }

  .dp4fvs,
  .aozspy {
    margin-bottom: 25px;
    text-align: center;
  }

  .fyq5q1 {
    display: none;
  }

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

  .rmioud,
  .yztrkn {
    text-align: center;
  }

  .du9x62 {
    margin: 10px 0;
  }

  .ms5aj1 {
    padding: 80px 0;
  }

  .p820lm,
  .f79ws6 {
    margin-left: auto;
    margin-right: auto;
  }

  .qd5nuw {
    max-width: 100%;
  }

  .qm9y8t {
    margin-bottom: 40px;
  }

  .oj27oz {
    padding: 10px 0;
  }

  .hgvblq {
    max-width: 103px;
  }

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

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

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

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

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

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

  .oj27oz {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .jy39nl .clxsrl {
    display: block;
  }

  .jy39nl .tg3plu {
    width: 100%;
    display: block;
  }

  .afv0rf {
    padding-top: 75px;
  }

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

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

  .fdmmc4 {
    margin: 20px 0;
  }

  .nikhlr {
    padding: 15px 10px;
  }

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

  .rrgy0a {
    width: 100%;
  }

  .ikfwab {
    margin-right: 10px;
  }

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

  .dp4fvs,
  .du9x62 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .xtbtbn {
    padding: 20px 15px;
  }

  .rmioud {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .tmrgt5 {
    margin-top: 20px;
  }

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

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

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

  .p6siq0 {
    display: block;
  }

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

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

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

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

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

  .btvtqq,
  .hq4uij {
    padding: 45px 0 60px;
  }

  .rcd9vo {
    display: block;
  }

  .jp1paa {
    flex-direction: row;
  }

  .rf3agj {
    margin-right: 15px;
  }

  .ifmeoy {
    padding-top: 0;
  }

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

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

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

  .qm9y8t {
    padding: 10px;
  }

  .tmar01 {
    padding: 20px 15px;
  }

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

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

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

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

  .qm9y8t textarea {
    height: 99px;
  }

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

  .wq5fd6 {
    margin-top: 20px;
  }

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

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

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

  .jp1paa {
    margin-bottom: 8px;
  }

  .nnk21e {
    flex-direction: column;
  }

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

  .nnk21e .vx4uss + .clxsrl, 
  .nnk21e .vx4uss + p {
    margin-top: 0;
  }

  .tg3plu {
    margin-bottom: 20px;
  }

  .gemfs4, 
  .miidfh {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .io5d5w {
    padding-left: 0;
  }

  .euygd7 {
    padding-right: 0;
  }

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

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

  .wm5995 {
    padding-top: 47px;
  }

  .cr2kc8 {
    max-width: 103px;
  }

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

  .zvqeul {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .mkbi3o {
    margin: 0;
  }

  .gyrqlz {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.n6hxgv[open] .x5366c::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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