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

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

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

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

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

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

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

.fkpy7m {
  width: 25%;
}

.wyc04w {
  width: 33.3333%;
}

.mc22w2 {
  width: 41.666667%;
}

.uddotb {
  width: 50%;
}

.cydevt {
  width: 100%;
}

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

.cti6bh {
  flex: 1;
}

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

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

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

  .qfop5u {
    width: 33.3333%;
  }

  .qawkd8 {
    width: 58.3333%;
  }

  .orgtzd {
    width: 66.6666%;
  }

  .jndy4r {
    width: 50%;
  }

  .aw3hpl {
    width: 41.6666%;
  }

  .tp302i {
    flex-direction: row;
  }
}

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

  .komhy1 {
    width: 50%;
  }

  .yxbkib {
    width: 58.3333%;
  }

  .i0xylz {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.rnyoc1:hover {
  opacity: .9;
}

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

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

.sld822.fjkmid {
  transform: translateX(0);
}

.f0qa83.fjkmid {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.ust1j8 {
  flex-shrink: 0;
}

.ust1j8 .uqjj9t {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.j3caor {
  padding: 60px 0;
}

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

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

.hs67ww,
.vguils {
  width: calc(50% - 15px);
}

.hs67ww .jjogkq:first-child,
.vguils .jjogkq:last-child {
  height: 240px;
}

.hs67ww .jjogkq:last-child,
.vguils .jjogkq:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.w697d6[open] .wguoei::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.j3caor p,
.d5jmrr p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.j3caor ul,
.d5jmrr ul {
  list-style-type: disc;
}

.j3caor ol,
.d5jmrr ol {
  list-style-type: decimal;
}

.j3caor li,
.d5jmrr li {
  margin-bottom: 6px;
  padding-left: 0;
}

.j3caor li::before,
.d5jmrr li::before {
  display: none;
}

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

.p5xux1.c1tfp1 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.su6fjn::before {
  display: none;
}

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

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

.cdia5t .tnaf77,
.cdia5t p {
  color: var(--white-color);
}

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

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

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

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

.tw4kgf {
  padding: 60px 0;
}

.tw4kgf .p5xux1 {
  margin-top: 45px;
}

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

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

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

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

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

.vnambb .tnaf77,
.vnambb p {
  color: var(--white-color);
}

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

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

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

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

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

.su6fjn::before {
  display: none;
}

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

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

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

.jh3z5e ul {
  margin: 0;
}

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

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

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

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

.wp2qk7 {
  margin: 20px auto 0;
}

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

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

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

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

.qpwtwv,
.n4706b {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.k2j4pq textarea {
  height: 155px;
}

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

.k2j4pq.fef3lq {
  min-height: 460px;
}

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

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

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

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

.pcxee2 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.vn9ldr {
  margin: 0 15px;
}

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

.gop80t:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.xs4cak {
  margin: 0;
}

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

.xs4cak.fgyx47 li {
  width: calc(50% - 5px);
}

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

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

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

.jkfz7x {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.m61b74 {
  display: flex;
}

.jpauol {
  text-align: center;
}

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

.t5yv30 {
  align-items: center;
} 

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

.vdtyy7 {
  justify-content: center;
}

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

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

  .mm17yr {
    display: inline-flex;
  }

  .rnyoc1,
  .gop80t {
    max-width: 157px;
  }

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

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

  .q7ribf ul {
    display: block;
  }

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

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

  .ust1j8 {
    margin-top: 15px;
  }

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

  .w5fwa2 {
    margin-right: 0;
  }
}

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

  .m65t5d {
    margin-bottom: 30px;
  }

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

  .owcoeo {
    margin-right: 7px;
  }

  .ypnrl3 {
    width: 152px;
  }

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

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

  .hs67ww .jjogkq:first-child,
  .vguils .jjogkq:last-child {
    height: 150px;
  }

  .hs67ww .jjogkq:last-child,
  .vguils .jjogkq:first-child {
    height: 114px;
  }

  .w5fwa2 {
    display: none;
  }

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

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

  .x9oyl6,
  .gsm3dx {
    text-align: center;
  }

  .p17v57 {
    margin: 10px 0;
  }

  .lhrco9 {
    padding: 80px 0;
  }

  .zw34o4,
  .dn224f {
    margin-left: auto;
    margin-right: auto;
  }

  .cnsafh {
    max-width: 100%;
  }

  .k2j4pq {
    margin-bottom: 40px;
  }

  .dcuhbl {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .dcuhbl {
    padding: 6px 0;
  }

  .rnyoc1,
  .gop80t {
    max-width: 157px;
  }

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

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

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

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

  .jjogkq {
    margin-bottom: 10px;
  }

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

  .hs67ww, 
  .vguils {
    width: calc(50% - 5px);
  }

  .q0vvq6 {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .tw4kgf .p5xux1 {
    margin-top: 35px;
  }

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

  .vnambb .w0cgug {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .ufc0fg .w0cgug {
    display: block;
  }

  .ufc0fg .su6fjn {
    width: 100%;
    display: block;
  }

  .sld822 {
    padding-top: 75px;
  }

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

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

  .exwvp2 {
    width: 100%;
  }

  .gvze88 {
    margin-right: 10px;
  }

  .vnambb .k9kyxv {
    padding: 20px 10px;
  }

  .u2v4do,
  .p17v57 {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .gaeri2 {
    padding: 25px;
  }

  .x9oyl6 {
    margin-bottom: 20px;
  }

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

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

  .px06b8 {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .wp2qk7 {
    margin-top: 20px;
  }

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

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

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

  .qwwfo5 {
    display: block;
  }

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

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

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

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

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

  .qpwtwv,
  .n4706b {
    padding: 45px 0 60px;
  }

  .w8dr12 {
    display: block;
  }

  .n3hlkj {
    flex-direction: row;
  }

  .m0zqvd {
    margin-right: 15px;
  }

  .pcxee2 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .k2j4pq textarea {
    height: 99px;
  }

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

  .xsp200 {
    margin-top: 20px;
  }

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

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

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

  .n3hlkj {
    margin-bottom: 8px;
  }

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

  .su6fjn {
    margin-bottom: 20px;
  }

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

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

  .kk98y9 {
    padding-top: 47px;
  }

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

  .ue6w5g {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .vn9ldr {
    margin: 0;
  }

  .jkfz7x {
    margin-top: 15px;
  }

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

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

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

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

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

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