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

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

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

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

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

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

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

.f73ocl {
  width: 25%;
}

.tod5pc {
  width: 33.3333%;
}

.jl6xar {
  width: 41.666667%;
}

.jfs4ot {
  width: 50%;
}

.rd7mz8 {
  width: 100%;
}

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

.s7cq2n {
  flex: 1;
}

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

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

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

  .j1u477 {
    width: 33.3333%;
  }

  .m13a1x {
    width: 58.3333%;
  }

  .yojsz0 {
    width: 66.6666%;
  }

  .pdfnmw {
    width: 50%;
  }

  .yrurjl {
    width: 41.6666%;
  }

  .l3mw0w {
    flex-direction: row;
  }
}

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

  .fkuz46 {
    width: 50%;
  }

  .skoohz {
    width: 58.3333%;
  }

  .fl18el {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.x5mtjt:hover {
  opacity: .9;
}

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

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

.cpb58t.i0ob7d {
  transform: translateX(0);
}

.b1umf8.i0ob7d {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.zzba1v {
  flex-shrink: 0;
}

.zzba1v .lmh90y {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.rt1mr2 {
  padding: 60px 0;
}

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

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

.o884cx,
.fl80ot {
  width: calc(50% - 15px);
}

.o884cx .i02oog:first-child,
.fl80ot .i02oog:last-child {
  height: 240px;
}

.o884cx .i02oog:last-child,
.fl80ot .i02oog:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.ctctne[open] .me4xo4::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.rt1mr2 p,
.qipxea p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.rt1mr2 ul,
.qipxea ul {
  list-style-type: disc;
}

.rt1mr2 ol,
.qipxea ol {
  list-style-type: decimal;
}

.rt1mr2 li,
.qipxea li {
  margin-bottom: 6px;
  padding-left: 0;
}

.rt1mr2 li::before,
.qipxea li::before {
  display: none;
}

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

.d7xg28.yzb1nl {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.re2l4v::before {
  display: none;
}

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

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

.gp6edq .c4l3ba,
.gp6edq p {
  color: var(--white-color);
}

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

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

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

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

.ljp5x1 {
  padding: 60px 0;
}

.ljp5x1 .d7xg28 {
  margin-top: 45px;
}

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

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

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

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

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

.s3qtat .c4l3ba,
.s3qtat p {
  color: var(--white-color);
}

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

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

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

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

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

.re2l4v::before {
  display: none;
}

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

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

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

.w4n92s ul {
  margin: 0;
}

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

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

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

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

.uitg51 {
  margin: 20px auto 0;
}

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

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

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

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

.ue0eu7,
.cvjb1q {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.by27jh textarea {
  height: 155px;
}

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

.by27jh.aitb1n {
  min-height: 460px;
}

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

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

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

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

.gbza0y {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.jvp031 {
  margin: 0 15px;
}

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

.g4gsaw:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ejpqob {
  margin: 0;
}

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

.ejpqob.ycuo3r li {
  width: calc(50% - 5px);
}

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

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

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

.bv1wmr {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.llo8hs {
  display: flex;
}

.amesq7 {
  text-align: center;
}

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

.fmq3cb {
  align-items: center;
} 

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

.rgspor {
  justify-content: center;
}

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

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

  .r77sad {
    display: inline-flex;
  }

  .x5mtjt,
  .g4gsaw {
    max-width: 157px;
  }

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

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

  .fc0y5m ul {
    display: block;
  }

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

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

  .zzba1v {
    margin-top: 15px;
  }

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

  .g8iqqh {
    margin-right: 0;
  }
}

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

  .kulkpu {
    margin-bottom: 30px;
  }

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

  .d70at9 {
    margin-right: 7px;
  }

  .uurtli {
    width: 152px;
  }

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

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

  .o884cx .i02oog:first-child,
  .fl80ot .i02oog:last-child {
    height: 150px;
  }

  .o884cx .i02oog:last-child,
  .fl80ot .i02oog:first-child {
    height: 114px;
  }

  .g8iqqh {
    display: none;
  }

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

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

  .tfvfy3,
  .mz1j3f {
    text-align: center;
  }

  .hl1yhk {
    margin: 10px 0;
  }

  .q8cnvx {
    padding: 80px 0;
  }

  .d4lae4,
  .zgx97e {
    margin-left: auto;
    margin-right: auto;
  }

  .ix6ece {
    max-width: 100%;
  }

  .by27jh {
    margin-bottom: 40px;
  }

  .o1oen8 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .o1oen8 {
    padding: 6px 0;
  }

  .x5mtjt,
  .g4gsaw {
    max-width: 157px;
  }

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

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

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

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

  .i02oog {
    margin-bottom: 10px;
  }

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

  .o884cx, 
  .fl80ot {
    width: calc(50% - 5px);
  }

  .mwzhku {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .ljp5x1 .d7xg28 {
    margin-top: 35px;
  }

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

  .s3qtat .s033hv {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .v3d4ux .s033hv {
    display: block;
  }

  .v3d4ux .re2l4v {
    width: 100%;
    display: block;
  }

  .cpb58t {
    padding-top: 75px;
  }

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

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

  .lbcget {
    width: 100%;
  }

  .w2q0ew {
    margin-right: 10px;
  }

  .s3qtat .z00evf {
    padding: 20px 10px;
  }

  .adtmqz,
  .hl1yhk {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .q5v1si {
    padding: 25px;
  }

  .tfvfy3 {
    margin-bottom: 20px;
  }

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

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

  .v46x16 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .uitg51 {
    margin-top: 20px;
  }

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

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

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

  .mrrhxg {
    display: block;
  }

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

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

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

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

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

  .ue0eu7,
  .cvjb1q {
    padding: 45px 0 60px;
  }

  .yzjju0 {
    display: block;
  }

  .jl3pvx {
    flex-direction: row;
  }

  .i2zt9h {
    margin-right: 15px;
  }

  .gbza0y {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .by27jh textarea {
    height: 99px;
  }

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

  .hvl7hc {
    margin-top: 20px;
  }

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

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

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

  .jl3pvx {
    margin-bottom: 8px;
  }

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

  .re2l4v {
    margin-bottom: 20px;
  }

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

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

  .jhyth4 {
    padding-top: 47px;
  }

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

  .ftb1ha {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .jvp031 {
    margin: 0;
  }

  .bv1wmr {
    margin-top: 15px;
  }

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

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

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

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

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

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