/* ===== VARIABLES ===== */
:root {
  --green-color: #009990;
  --green-dark-color: #0E6A65;
  --blue-color: #3E5879;
  --blue-dark-color: #213555;
  --sandy-color: #E9D8CD;
  --body-color: #FFFDF9;
  --text-color: #272727;
  --black-color: #252525;
  --white-color: #fff;
  --grey-color: #9E9E9E;
  --grey-medium-color: #DADADA;

  --primary-font: 'Open Sans';

  --transition: all .3s ease-in-out;
}

/* ===== GRID ===== */
:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

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

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

.hhcnc3 {
  width: 25%;
}

.c4dkpx {
  width: 33.3333%;
}

.gc857s {
  width: 41.666667%;
}

.b2qh7r {
  width: 50%;
}

.rijokc {
  width: 100%;
}

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

.pj6ale {
  flex: 1;
}

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

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

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

  .a71eid {
    width: 33.3333%;
  }

  .wy3d0t {
    width: 58.3333%;
  }

  .slpqww {
    width: 66.6666%;
  }

  .tyfjps {
    width: 50%;
  }

  .izifcw {
    width: 41.6666%;
  }

  .qca107 {
    flex-direction: row;
  }
}

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

  .d2chna {
    width: 50%;
  }

  .fgnee2 {
    width: 58.3333%;
  }

  .wc3c0b {
    width: 41.6666%;
  }

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

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

  .cp2v18 {
    flex-direction: row;
  }
}

/* ===== MAIN ===== */

* {
  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(--body-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(--black-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: #F5F5F5;
  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: #F5F5F5;
  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-dark-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-dark-color);
}

.pi4sxy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--green-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

.pi4sxy:hover,
.pi4sxy:active {
  background-color: var(--green-dark-color);
  text-decoration: none;
}

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

.rd4cif {
  max-width: 258px;
  width: 100%;
  transition: var(--transition);
  border: 0;
  font-weight: 600;
}

.rd4cif:hover {
  opacity: .9;
}

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

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

.r3iodc.evo98m {
  transform: translateX(0);
}

.ecsp1t.evo98m {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.qsjowm {
  flex-shrink: 0;
}

.qsjowm .pi4sxy {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.p8i8t4 {
  padding: 60px 0;
}

.dila48 {
  margin: 5px 0 20px;
}

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

.w923o9,
.jzzf9n {
  width: calc(50% - 15px);
}

.w923o9 .tbk8h3:first-child,
.jzzf9n .tbk8h3:last-child {
  height: 240px;
}

.w923o9 .tbk8h3:last-child,
.jzzf9n .tbk8h3:first-child {
  height: 140px;
}

.tbk8h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 30px;
  background-color: var(--blue-color);
}

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

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

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

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

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

.i7jryg {
  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-dark-color);
  background-color: var(--sandy-color);
  transition: background-color var(--transition);
}

.i7jryg:hover {
  background-color: #dccfc3;
}

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

.ybf9u7[open] .i7jryg::after {
  transform: rotate(90deg);
}

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

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

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

.mx3hs7 li a:hover {
  background: var(--body-color);
  color: var(--blue-dark-color);
}

/* ===== CONTENT TYPOGRAPHY (s-intro + article-content) ===== */
.p8i8t4,
.rf6a4v {
  line-height: 1.7;
}

.p8i8t4 p,
.rf6a4v p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.p8i8t4 ul,
.rf6a4v ul {
  list-style-type: disc;
}

.p8i8t4 ol,
.rf6a4v ol {
  list-style-type: decimal;
}

.p8i8t4 li,
.rf6a4v li {
  margin-bottom: 6px;
  padding-left: 0;
}

.p8i8t4 li::before,
.rf6a4v li::before {
  display: none;
}

.ika54f {
  margin: 0 0 20px;
  font-size: 24px;
  display: inline-block;
  font-weight: 600;
  line-height: 32px;
  background-color: var(--blue-color);
  color: var(--white-color);
  padding: 5px 20px;
}

.ika54f.dpyw5z {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

.s9wkuu {
  font-family: 'Oldenburg';
  text-align: center;
  font-size: 30px;
  line-height: 37px;
  min-width: 26px;
  margin-right: 20px;
}

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

.arxhom::before {
  display: none;
}

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

.onhcix {
  padding: 50px 0 80px;
  background-color: var(--blue-color);
}

.onhcix .lra103,
.onhcix p {
  color: var(--white-color);
}

.ecfkm6 {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--white-color);
}

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

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

.anxgnn p {
  color: var(--black-color);
  margin-bottom: 0;
}

.vno0wa {
  padding: 60px 0;
}

.vno0wa .ika54f {
  margin-top: 45px;
}

.rcm1j1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: -115px -15px 0;
}

.egch8t {
  padding: 20px 25px;
  width: calc(33.3333% - 30px);
  margin: 0 15px 30px;
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
}

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

.vw7qnn {
  float: right;
  margin-left: 30px;
  margin-top: 20px;
}

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

.i3k5z2 .lra103,
.i3k5z2 p {
  color: var(--white-color);
}

.i3k5z2 .gfmg4v {
  background-color: var(--white-color);
  padding: 20px 25px;
  margin: 10px 0 30px;
}

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

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

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

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

.arxhom::before {
  display: none;
}

.a9vt1r {
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ij61bf p {
  margin-bottom: 0;
  color: var(--black-color);
}

.ij61bf ul li {
  margin-bottom: 0;
}

.ij61bf ul {
  margin: 0;
}

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

.h6139n {
  padding: 30px 20px;
  width: 100%;
  margin: 0 auto;
}

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

.h5u2nx {
  padding: 12px 24px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--sandy-color);
}

.iydir5 {
  margin: 20px auto 0;
}

.m62qaz {
  font-size: 11px;
  line-height: 15px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 335px;
  text-align: center;
  font-weight: 300;
  color: var(--text-color);
}

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

.lra103 {
  margin: 0 0 24px;
  font-size: 34px;
  color: var(--black-color);
  line-height: 1.25;
  font-weight: 600;
}

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

.z8zx0s,
.g4k1c8 {
  padding: 70px 0 80px;
}

.hw0p9n {
  max-width: 565px;
  width: 100%;
  margin: 0 auto 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 20px 0 rgba(142, 142, 142, 0.3);
}

.cktvd3 {
  padding: 30px 82px 40px;
}

.h4v4yb {
  padding: 15px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black-color);
  background-color: var(--sandy-color);
  margin: 0;
  text-align: center;
}

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

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

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

.hw0p9n textarea {
  height: 155px;
}

.rkvoiv {
  margin: 25px auto 0;
  max-width: 335px;
}

.hw0p9n.idv2yh {
  min-height: 460px;
}

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

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

.lvg9jt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  max-width: 495px;
  width: 100%;
}

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

.npmpok {
  padding-top: 2px;
}

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

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

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

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

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

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

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

.f0nwst {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  border: 1px solid var(--blue-color);
  padding: 20px 25px;
  width: 100%;
  max-width: 495px;
} 

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

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

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

.xuqj3n {
  padding-top: 60px;
  background-color: var(--blue-dark-color);
}

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

.vqbqhf {
  margin: 0 15px;
}

.i9z8mt {
  max-width: 254px;
  width: 100%;
  font-weight: 600;
  color: var(--white-color);
}

.i9z8mt:hover {
  opacity: .9;
}

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

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

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

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

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

.g53glk li a:hover {
  background-color: var(--green-dark-color);
}

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

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

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

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

.zgfbxo {
  margin: 0;
}

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

.zgfbxo.aasn0s li {
  width: calc(50% - 5px);
}

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

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

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

.x0eaz4 {
  margin-top: 35px;
}

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

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

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

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

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

.zkm1wm {
  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; }
  .zkm1wm:hover {
    opacity: 0.7; }
  .zkm1wm.evo98m:hover {
    opacity: 0.7; }
  .zkm1wm.evo98m .rth0cx,
  .zkm1wm.evo98m .rth0cx::before,
  .zkm1wm.evo98m .rth0cx::after {
    background-color: var(--blue-dark-color); }

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

.rth0cx {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .rth0cx, .rth0cx::before, .rth0cx::after {
    width: 40px;
    height: 3px;
    background-color: var(--blue-dark-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .rth0cx::before, .rth0cx::after {
    content: "";
    display: block; }
  .rth0cx::before {
    top: -10px; }
  .rth0cx::after {
    bottom: -10px; }

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

.mco0mv.evo98m .rth0cx {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .mco0mv.evo98m .rth0cx::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .mco0mv.evo98m .rth0cx::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

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

.v6kwh2 {
  display: flex;
}

.k9buy1 {
  text-align: center;
}

.t8vvgb {
  color: var(--white-color);
}

.ckvi5m {
  align-items: center;
} 

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

.s5z4m5 {
  justify-content: center;
}

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

/* ===== MEDIA ===== */
@media (max-width: 1025px) {
  .pgd7nd ul li {
    margin-right: 25px;
  }

  .zkm1wm {
    display: inline-flex;
  }

  .rd4cif,
  .i9z8mt {
    max-width: 157px;
  }

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

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

  .pgd7nd ul {
    display: block;
  }

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

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

  .qsjowm {
    margin-top: 15px;
  }

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

  .ar1xni {
    margin-right: 0;
  }
}

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

  .mad2ic {
    margin-bottom: 30px;
  }

  .i9z8mt {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .dpu0pl {
    margin-right: 7px;
  }

  .reeo7v {
    width: 152px;
  }

  .l9dzcl {
    margin-bottom: 25px;
    text-align: center;
  }

  .l9dzcl {
    float: none;
    margin-right: 0;
  }

  .w923o9 .tbk8h3:first-child,
  .jzzf9n .tbk8h3:last-child {
    height: 150px;
  }

  .w923o9 .tbk8h3:last-child,
  .jzzf9n .tbk8h3:first-child {
    height: 114px;
  }

  .ar1xni {
    display: none;
  }

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

  .vw7qnn {
    float: none;
    margin: 0 0 25px;
    text-align: center;
  }

  .vm1897,
  .ctjcoj {
    text-align: center;
  }

  .dqyt1w {
    margin: 10px 0;
  }

  .ln1sjr {
    padding: 80px 0;
  }

  .f0nwst,
  .lvg9jt {
    margin-left: auto;
    margin-right: auto;
  }

  .eme1p0 {
    max-width: 100%;
  }

  .hw0p9n {
    margin-bottom: 40px;
  }

  .zp48cr {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .zp48cr {
    padding: 6px 0;
  }

  .rd4cif,
  .i9z8mt {
    max-width: 157px;
  }

  .vno0wa {
    padding: 50px 0 80px;
  }

  .rcm1j1 {
    margin-top: -90px;
  }

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

  .a9vt1r {
    max-width: 21px;
    margin-right: 10px;
  }

  .tbk8h3 {
    margin-bottom: 10px;
  }

  .tbk8h3 img {
    max-width: 40%;
  }

  .w923o9, 
  .jzzf9n {
    width: calc(50% - 5px);
  }

  .w4zf6u {
    margin-bottom: 15px;
  }

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

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

  .onhcix {
    padding: 40px 0 64px;
  }

  .ecfkm6 {
    padding: 20px 15px;
    margin-top: 20px;
  }

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

  .vno0wa .ika54f {
    margin-top: 35px;
  }

  .vw7qnn {
    max-width: 300px;
    margin: 0 auto 25px;
  }

  .i3k5z2 .gfmg4v {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

  .s9wkuu {
    font-size: 24px;
    line-height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 21px;
  }

  .cng24f {
    margin-right: 10px;
    max-width: 15px;
  }

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

  .uwfi45 .gfmg4v {
    display: block;
  }

  .uwfi45 .arxhom {
    width: 100%;
    display: block;
  }

  .r3iodc {
    padding-top: 75px;
  }

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

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

  .x97n6v {
    width: 100%;
  }

  .mjbhie {
    margin-right: 10px;
  }

  .i3k5z2 .xruu1v {
    padding: 20px 10px;
  }

  .l9dzcl,
  .dqyt1w {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .h6139n {
    padding: 25px;
  }

  .vm1897 {
    margin-bottom: 20px;
  }

  .p8i8t4 {
    padding: 40px 0 35px;
  }

  .p8i8t4 h5 {
    margin-top: 40px;
  }

  .eaz7wb {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .iydir5 {
    margin-top: 20px;
  }

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

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

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

  .b4v8i9 {
    display: block;
  }

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

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

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

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

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

  .z8zx0s,
  .g4k1c8 {
    padding: 45px 0 60px;
  }

  .b4ra4x {
    display: block;
  }

  .i6w4b0 {
    flex-direction: row;
  }

  .wxl7j8 {
    margin-right: 15px;
  }

  .npmpok {
    padding-top: 0;
  }

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

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

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

  .h4v4yb {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 25px;
  }

  .cktvd3 {
    padding: 25px 25px 30px;
  }

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

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

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

  .hw0p9n textarea {
    height: 99px;
  }

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

  .rkvoiv {
    margin-top: 20px;
  }

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

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

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

  .i6w4b0 {
    margin-bottom: 8px;
  }

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

  .arxhom {
    margin-bottom: 20px;
  }

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

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

  .xuqj3n {
    padding-top: 47px;
  }

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

  .rk869d {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .vqbqhf {
    margin: 0;
  }

  .x0eaz4 {
    margin-top: 15px;
  }

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

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

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

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

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

  .bc7p96 {
    max-width: 335px;
  }
}
