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

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

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

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

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

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

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

.z28jxu {
  width: 25%;
}

.hoctib {
  width: 33.3333%;
}

.sbbi2r {
  width: 41.666667%;
}

.op60zz {
  width: 50%;
}

.kox9ys {
  width: 100%;
}

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

.i2om06 {
  flex: 1;
}

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

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

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

  .iu4v7m {
    width: 33.3333%;
  }

  .hopq13 {
    width: 58.3333%;
  }

  .xgqzye {
    width: 66.6666%;
  }

  .u8e9rm {
    width: 50%;
  }

  .l84tbx {
    width: 41.6666%;
  }

  .ckf3ei {
    flex-direction: row;
  }
}

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

  .ymbma9 {
    width: 50%;
  }

  .lpqqaw {
    width: 58.3333%;
  }

  .zx8cip {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.xlxl2h:hover {
  opacity: .9;
}

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

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

.k2j89e.ffglb8 {
  transform: translateX(0);
}

.xnoes4.ffglb8 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.hbwqm0 {
  flex-shrink: 0;
}

.hbwqm0 .i9h81c {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.t0aj5b {
  padding: 60px 0;
}

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

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

.jywn1c,
.b8zog1 {
  width: calc(50% - 15px);
}

.jywn1c .p7kgvw:first-child,
.b8zog1 .p7kgvw:last-child {
  height: 240px;
}

.jywn1c .p7kgvw:last-child,
.b8zog1 .p7kgvw:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.n3sig9[open] .gttlri::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.t0aj5b p,
.ffyjua p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.t0aj5b ul,
.ffyjua ul {
  list-style-type: disc;
}

.t0aj5b ol,
.ffyjua ol {
  list-style-type: decimal;
}

.t0aj5b li,
.ffyjua li {
  margin-bottom: 6px;
  padding-left: 0;
}

.t0aj5b li::before,
.ffyjua li::before {
  display: none;
}

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

.mgpm20.qhm09c {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.wl6y05::before {
  display: none;
}

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

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

.lj2g49 .nwn9lx,
.lj2g49 p {
  color: var(--white-color);
}

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

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

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

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

.zr7hxv {
  padding: 60px 0;
}

.zr7hxv .mgpm20 {
  margin-top: 45px;
}

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

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

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

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

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

.w8efhk .nwn9lx,
.w8efhk p {
  color: var(--white-color);
}

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

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

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

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

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

.wl6y05::before {
  display: none;
}

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

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

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

.vlx5bi ul {
  margin: 0;
}

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

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

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

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

.g8qamt {
  margin: 20px auto 0;
}

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

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

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

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

.gnohqy,
.mewij8 {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.wi6jtq textarea {
  height: 155px;
}

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

.wi6jtq.z0nd09 {
  min-height: 460px;
}

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

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

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

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

.rgmstw {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.m33ic4 {
  margin: 0 15px;
}

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

.gqy448:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.ue2rvj {
  margin: 0;
}

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

.ue2rvj.rq2dr3 li {
  width: calc(50% - 5px);
}

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

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

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

.qgv5na {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.isbqvk {
  display: flex;
}

.wl6m15 {
  text-align: center;
}

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

.pn0tzo {
  align-items: center;
} 

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

.l4myg9 {
  justify-content: center;
}

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

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

  .tdbesy {
    display: inline-flex;
  }

  .xlxl2h,
  .gqy448 {
    max-width: 157px;
  }

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

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

  .t5ha7p ul {
    display: block;
  }

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

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

  .hbwqm0 {
    margin-top: 15px;
  }

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

  .fa14dr {
    margin-right: 0;
  }
}

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

  .utum28 {
    margin-bottom: 30px;
  }

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

  .ttkwh2 {
    margin-right: 7px;
  }

  .vd11zg {
    width: 152px;
  }

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

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

  .jywn1c .p7kgvw:first-child,
  .b8zog1 .p7kgvw:last-child {
    height: 150px;
  }

  .jywn1c .p7kgvw:last-child,
  .b8zog1 .p7kgvw:first-child {
    height: 114px;
  }

  .fa14dr {
    display: none;
  }

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

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

  .f8kbs3,
  .xf8pnd {
    text-align: center;
  }

  .ieodgh {
    margin: 10px 0;
  }

  .mtuah8 {
    padding: 80px 0;
  }

  .qwfa2z,
  .na85d6 {
    margin-left: auto;
    margin-right: auto;
  }

  .ul7uu3 {
    max-width: 100%;
  }

  .wi6jtq {
    margin-bottom: 40px;
  }

  .tai0d5 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .tai0d5 {
    padding: 6px 0;
  }

  .xlxl2h,
  .gqy448 {
    max-width: 157px;
  }

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

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

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

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

  .p7kgvw {
    margin-bottom: 10px;
  }

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

  .jywn1c, 
  .b8zog1 {
    width: calc(50% - 5px);
  }

  .dhqj36 {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .zr7hxv .mgpm20 {
    margin-top: 35px;
  }

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

  .w8efhk .wmuumk {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .emifpx .wmuumk {
    display: block;
  }

  .emifpx .wl6y05 {
    width: 100%;
    display: block;
  }

  .k2j89e {
    padding-top: 75px;
  }

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

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

  .o23udq {
    width: 100%;
  }

  .piejiy {
    margin-right: 10px;
  }

  .w8efhk .yxudwl {
    padding: 20px 10px;
  }

  .g190z6,
  .ieodgh {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .jb2p2k {
    padding: 25px;
  }

  .f8kbs3 {
    margin-bottom: 20px;
  }

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

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

  .ue8av1 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .g8qamt {
    margin-top: 20px;
  }

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

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

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

  .cdkmsa {
    display: block;
  }

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

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

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

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

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

  .gnohqy,
  .mewij8 {
    padding: 45px 0 60px;
  }

  .zqogw0 {
    display: block;
  }

  .g6nw00 {
    flex-direction: row;
  }

  .p334h0 {
    margin-right: 15px;
  }

  .rgmstw {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .wi6jtq textarea {
    height: 99px;
  }

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

  .q82mfs {
    margin-top: 20px;
  }

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

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

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

  .g6nw00 {
    margin-bottom: 8px;
  }

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

  .wl6y05 {
    margin-bottom: 20px;
  }

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

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

  .rckq3h {
    padding-top: 47px;
  }

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

  .bamjya {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .m33ic4 {
    margin: 0;
  }

  .qgv5na {
    margin-top: 15px;
  }

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

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

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

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

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

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