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

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

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

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

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

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

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

.lfy70x {
  width: 25%;
}

.q68ent {
  width: 33.3333%;
}

.sodtck {
  width: 41.666667%;
}

.s2x9l7 {
  width: 50%;
}

.afyf7b {
  width: 100%;
}

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

.xnmarx {
  flex: 1;
}

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

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

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

  .xp0uu7 {
    width: 33.3333%;
  }

  .i9k8wj {
    width: 58.3333%;
  }

  .pbrmi3 {
    width: 66.6666%;
  }

  .oftb7f {
    width: 50%;
  }

  .mx45uz {
    width: 41.6666%;
  }

  .atcob8 {
    flex-direction: row;
  }
}

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

  .ia8cug {
    width: 50%;
  }

  .co8eak {
    width: 58.3333%;
  }

  .su35i6 {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.vetibm:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.b1bv3y {
  flex-shrink: 0;
}

.b1bv3y .mpc5jc {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

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

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

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

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

.yxvu6p .oi5ue0 {
  width: calc(50% - 15px);
}

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

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

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

.oi5ue0::before {
  display: none;
}

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

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

.njcw8c {
  margin: 25px 0;
}

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

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

.u0ub39 p {
  margin-bottom: 0;
}

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

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

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

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

.uowuan::before {
  display: none;
}

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

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

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

.feg021 .fmhban + .hwhz0t,
.feg021 .fmhban + p {
  margin-top: 10px;
}

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

.n1d9e1,
.q4tcr3 {
  width: 50%;
}

.sqk092 {
  padding-left: 15px;
}

.zfgamr {
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

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

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

.m98xi4 {
  margin: 20px 0;
}

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

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

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

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

.q107ou,
.ukwjgg {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.d712e9 textarea {
  height: 155px;
}

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

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

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

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

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

.goctvr {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.bbv783 {
  margin: 0 15px;
}

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

.ophye1:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

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

.zbigvt {
  margin: 0;
}

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

.zbigvt.k0zlfk li {
  width: calc(50% - 5px);
}

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

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

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

.o2r2qt {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.v62150 {
  display: flex;
}

.p56ds8 {
  text-align: center;
}

.xa46jo {
  align-items: center;
} 

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

.ebom8b {
  justify-content: center;
}

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

  .rn9gow {
    display: inline-flex;
  }

  .vetibm {
    max-width: 125px;
  }

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

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

  .evvqg7 ul {
    display: block;
  }

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

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

  .b1bv3y {
    margin-top: 15px;
  }

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

  .b0swpa {
    margin-right: 0;
  }
}

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

  .jp1pik {
    margin-bottom: 30px;
  }

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

  .n9ukkn {
    margin-right: 7px;
  }

  .wmt35h {
    width: 152px;
  }

  .qqtr9g,
  .pyu9vp {
    margin-bottom: 25px;
    text-align: center;
  }

  .b0swpa {
    display: none;
  }

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

  .gz4xpt,
  .u2i2yk {
    text-align: center;
  }

  .uom04r {
    margin: 10px 0;
  }

  .w2futi {
    padding: 80px 0;
  }

  .jtr8xj,
  .ymzsvo {
    margin-left: auto;
    margin-right: auto;
  }

  .erfr95 {
    max-width: 100%;
  }

  .d712e9 {
    margin-bottom: 40px;
  }

  .ohi82u {
    padding: 10px 0;
  }

  .vetibm {
    max-width: 103px;
  }

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

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

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

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

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

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

  .ohi82u {
    padding: 6px 0;
  }

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

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

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

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

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

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

  .yxvu6p .hwhz0t {
    display: block;
  }

  .yxvu6p .oi5ue0 {
    width: 100%;
    display: block;
  }

  .odbdgg {
    padding-top: 75px;
  }

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

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

  .njcw8c {
    margin: 20px 0;
  }

  .u0ub39 {
    padding: 15px 10px;
  }

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

  .firwzn {
    width: 100%;
  }

  .op27ir {
    margin-right: 10px;
  }

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

  .qqtr9g,
  .uom04r {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .dpev71 {
    padding: 20px 15px;
  }

  .gz4xpt {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

  .ac2ray {
    margin-top: 20px;
  }

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

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

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

  .ruhj2p {
    display: block;
  }

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

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

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

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

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

  .q107ou,
  .ukwjgg {
    padding: 45px 0 60px;
  }

  .ufbopt {
    display: block;
  }

  .gk3dhi {
    flex-direction: row;
  }

  .alkooc {
    margin-right: 15px;
  }

  .goctvr {
    padding-top: 0;
  }

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

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

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

  .d712e9 {
    padding: 10px;
  }

  .e4961i {
    padding: 20px 15px;
  }

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

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

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

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

  .d712e9 textarea {
    height: 99px;
  }

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

  .f0l9if {
    margin-top: 20px;
  }

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

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

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

  .gk3dhi {
    margin-bottom: 8px;
  }

  .feg021 {
    flex-direction: column;
  }

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

  .feg021 .fmhban + .hwhz0t, 
  .feg021 .fmhban + p {
    margin-top: 0;
  }

  .oi5ue0 {
    margin-bottom: 20px;
  }

  .n1d9e1, 
  .q4tcr3 {
    width: 100%;
    padding: 40px 15px 20px 15px;
  }

  .sqk092 {
    padding-left: 0;
  }

  .zfgamr {
    padding-right: 0;
  }

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

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

  .gr4da0 {
    padding-top: 47px;
  }

  .ophye1 {
    max-width: 103px;
  }

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

  .aqy9im {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .bbv783 {
    margin: 0;
  }

  .o2r2qt {
    margin-top: 15px;
  }

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.blou1k[open] .d1xih9::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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