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

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

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

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

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

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

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

.mpdnxf {
  width: 25%;
}

.zldywf {
  width: 33.3333%;
}

.vg8jyr {
  width: 41.666667%;
}

.jo1zg8 {
  width: 50%;
}

.uixgly {
  width: 100%;
}

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

.exn2gw {
  flex: 1;
}

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

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

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

  .jalvr5 {
    width: 33.3333%;
  }

  .k6i6f6 {
    width: 58.3333%;
  }

  .t680fj {
    width: 66.6666%;
  }

  .dkyawv {
    width: 50%;
  }

  .q340e0 {
    width: 41.6666%;
  }

  .bbgpww {
    flex-direction: row;
  }
}

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

  .nx1xus {
    width: 50%;
  }

  .gd59la {
    width: 58.3333%;
  }

  .otyuya {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.qfyvvc:hover {
  opacity: .9;
}

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

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

.wlrk7x.cqgo1q {
  transform: translateX(0);
}

.n8x2wm.cqgo1q {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.x4qm1m {
  flex-shrink: 0;
}

.x4qm1m .zqy07u {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.ak8c5j {
  padding: 60px 0;
}

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

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

.aakl9g,
.lx2nz3 {
  width: calc(50% - 15px);
}

.aakl9g .d3ivj1:first-child,
.lx2nz3 .d3ivj1:last-child {
  height: 240px;
}

.aakl9g .d3ivj1:last-child,
.lx2nz3 .d3ivj1:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.f9l9ug[open] .zapcfq::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.ak8c5j p,
.f6iyok p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.ak8c5j ul,
.f6iyok ul {
  list-style-type: disc;
}

.ak8c5j ol,
.f6iyok ol {
  list-style-type: decimal;
}

.ak8c5j li,
.f6iyok li {
  margin-bottom: 6px;
  padding-left: 0;
}

.ak8c5j li::before,
.f6iyok li::before {
  display: none;
}

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

.rvdcxv.u2x8ip {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.f5ctn1::before {
  display: none;
}

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

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

.l4agba .jwt3z3,
.l4agba p {
  color: var(--white-color);
}

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

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

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

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

.glckww {
  padding: 60px 0;
}

.glckww .rvdcxv {
  margin-top: 45px;
}

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

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

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

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

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

.vyba80 .jwt3z3,
.vyba80 p {
  color: var(--white-color);
}

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

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

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

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

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

.f5ctn1::before {
  display: none;
}

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

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

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

.ngrdtg ul {
  margin: 0;
}

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

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

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

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

.edeme2 {
  margin: 20px auto 0;
}

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

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

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

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

.txb7ru,
.pp8app {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.zp9ztp textarea {
  height: 155px;
}

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

.zp9ztp.pntdf5 {
  min-height: 460px;
}

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

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

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

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

.zx08zd {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m6d5x9 {
  margin: 0 15px;
}

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

.s9w1x3:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.dy149x {
  margin: 0;
}

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

.dy149x.xlw6s5 li {
  width: calc(50% - 5px);
}

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

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

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

.gqp9o7 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.h1ghyz {
  display: flex;
}

.o70ejt {
  text-align: center;
}

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

.y6bqw2 {
  align-items: center;
} 

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

.ww8dmw {
  justify-content: center;
}

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

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

  .let1ng {
    display: inline-flex;
  }

  .qfyvvc,
  .s9w1x3 {
    max-width: 157px;
  }

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

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

  .ebnwsu ul {
    display: block;
  }

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

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

  .x4qm1m {
    margin-top: 15px;
  }

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

  .ga25x0 {
    margin-right: 0;
  }
}

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

  .vn757i {
    margin-bottom: 30px;
  }

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

  .risqiy {
    margin-right: 7px;
  }

  .d22tqa {
    width: 152px;
  }

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

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

  .aakl9g .d3ivj1:first-child,
  .lx2nz3 .d3ivj1:last-child {
    height: 150px;
  }

  .aakl9g .d3ivj1:last-child,
  .lx2nz3 .d3ivj1:first-child {
    height: 114px;
  }

  .ga25x0 {
    display: none;
  }

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

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

  .k5cj8z,
  .in3ov4 {
    text-align: center;
  }

  .wwn5q9 {
    margin: 10px 0;
  }

  .rtdyc7 {
    padding: 80px 0;
  }

  .lfddkr,
  .lcb1rf {
    margin-left: auto;
    margin-right: auto;
  }

  .ah59zv {
    max-width: 100%;
  }

  .zp9ztp {
    margin-bottom: 40px;
  }

  .xkjoga {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .xkjoga {
    padding: 6px 0;
  }

  .qfyvvc,
  .s9w1x3 {
    max-width: 157px;
  }

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

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

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

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

  .d3ivj1 {
    margin-bottom: 10px;
  }

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

  .aakl9g, 
  .lx2nz3 {
    width: calc(50% - 5px);
  }

  .uup7h0 {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .glckww .rvdcxv {
    margin-top: 35px;
  }

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

  .vyba80 .rvtlnr {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .yb05op .rvtlnr {
    display: block;
  }

  .yb05op .f5ctn1 {
    width: 100%;
    display: block;
  }

  .wlrk7x {
    padding-top: 75px;
  }

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

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

  .rs1b1p {
    width: 100%;
  }

  .md1eh0 {
    margin-right: 10px;
  }

  .vyba80 .i8lhib {
    padding: 20px 10px;
  }

  .vd7iy3,
  .wwn5q9 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .q099r8 {
    padding: 25px;
  }

  .k5cj8z {
    margin-bottom: 20px;
  }

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

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

  .bvyxhr {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .edeme2 {
    margin-top: 20px;
  }

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

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

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

  .l4cdck {
    display: block;
  }

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

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

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

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

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

  .txb7ru,
  .pp8app {
    padding: 45px 0 60px;
  }

  .gllmx7 {
    display: block;
  }

  .im9e0c {
    flex-direction: row;
  }

  .d1pqj2 {
    margin-right: 15px;
  }

  .zx08zd {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .zp9ztp textarea {
    height: 99px;
  }

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

  .coaz3o {
    margin-top: 20px;
  }

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

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

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

  .im9e0c {
    margin-bottom: 8px;
  }

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

  .f5ctn1 {
    margin-bottom: 20px;
  }

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

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

  .baw3wz {
    padding-top: 47px;
  }

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

  .y6zwwk {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .m6d5x9 {
    margin: 0;
  }

  .gqp9o7 {
    margin-top: 15px;
  }

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

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

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

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

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

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