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

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

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

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

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

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

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

.gsvimd {
  width: 25%;
}

.m7cks3 {
  width: 33.3333%;
}

.kra77r {
  width: 41.666667%;
}

.e3y6wm {
  width: 50%;
}

.ubcyol {
  width: 100%;
}

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

.znacsd {
  flex: 1;
}

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

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

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

  .qapcvc {
    width: 33.3333%;
  }

  .di783g {
    width: 58.3333%;
  }

  .bv5jhg {
    width: 66.6666%;
  }

  .veahnq {
    width: 50%;
  }

  .u0ri4r {
    width: 41.6666%;
  }

  .rqyd9y {
    flex-direction: row;
  }
}

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

  .wwah7h {
    width: 50%;
  }

  .jvxnsa {
    width: 58.3333%;
  }

  .yz3qmh {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.gzctqa:hover {
  opacity: .9;
}

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

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

.xdlkng.i6i90z {
  transform: translateX(0);
}

.z8xktw.i6i90z {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.mcd05z {
  flex-shrink: 0;
}

.mcd05z .lpxrls {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.idqo9b {
  padding: 60px 0;
}

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

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

.tb5jjg,
.en91gj {
  width: calc(50% - 15px);
}

.tb5jjg .pmjla0:first-child,
.en91gj .pmjla0:last-child {
  height: 240px;
}

.tb5jjg .pmjla0:last-child,
.en91gj .pmjla0:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.ppxnqq[open] .w5tw81::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.idqo9b p,
.sxgp4v p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.idqo9b ul,
.sxgp4v ul {
  list-style-type: disc;
}

.idqo9b ol,
.sxgp4v ol {
  list-style-type: decimal;
}

.idqo9b li,
.sxgp4v li {
  margin-bottom: 6px;
  padding-left: 0;
}

.idqo9b li::before,
.sxgp4v li::before {
  display: none;
}

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

.kbpxh9.vb48v8 {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.ot86en::before {
  display: none;
}

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

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

.esavaw .x5drr7,
.esavaw p {
  color: var(--white-color);
}

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

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

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

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

.v6sssf {
  padding: 60px 0;
}

.v6sssf .kbpxh9 {
  margin-top: 45px;
}

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

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

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

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

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

.au46zq .x5drr7,
.au46zq p {
  color: var(--white-color);
}

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

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

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

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

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

.ot86en::before {
  display: none;
}

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

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

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

.vyxk72 ul {
  margin: 0;
}

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

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

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

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

.bgo1yf {
  margin: 20px auto 0;
}

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

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

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

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

.ifjcpt,
.nxw8ba {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.qiezxj textarea {
  height: 155px;
}

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

.qiezxj.k3xk07 {
  min-height: 460px;
}

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

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

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

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

.qmism2 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.spk3ew {
  margin: 0 15px;
}

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

.h4tru1:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.z6b37p {
  margin: 0;
}

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

.z6b37p.mxh2wm li {
  width: calc(50% - 5px);
}

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

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

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

.o73unv {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.ogxx33 {
  display: flex;
}

.rbcds1 {
  text-align: center;
}

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

.o8dccu {
  align-items: center;
} 

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

.oo7cl5 {
  justify-content: center;
}

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

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

  .qwk2i4 {
    display: inline-flex;
  }

  .gzctqa,
  .h4tru1 {
    max-width: 157px;
  }

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

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

  .sm4bdt ul {
    display: block;
  }

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

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

  .mcd05z {
    margin-top: 15px;
  }

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

  .i4oc2h {
    margin-right: 0;
  }
}

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

  .j22sa7 {
    margin-bottom: 30px;
  }

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

  .hn89mh {
    margin-right: 7px;
  }

  .ameach {
    width: 152px;
  }

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

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

  .tb5jjg .pmjla0:first-child,
  .en91gj .pmjla0:last-child {
    height: 150px;
  }

  .tb5jjg .pmjla0:last-child,
  .en91gj .pmjla0:first-child {
    height: 114px;
  }

  .i4oc2h {
    display: none;
  }

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

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

  .opdhun,
  .baolbr {
    text-align: center;
  }

  .m0zl3u {
    margin: 10px 0;
  }

  .sidti6 {
    padding: 80px 0;
  }

  .m91oex,
  .ye82no {
    margin-left: auto;
    margin-right: auto;
  }

  .yrzinv {
    max-width: 100%;
  }

  .qiezxj {
    margin-bottom: 40px;
  }

  .t3qizj {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .t3qizj {
    padding: 6px 0;
  }

  .gzctqa,
  .h4tru1 {
    max-width: 157px;
  }

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

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

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

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

  .pmjla0 {
    margin-bottom: 10px;
  }

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

  .tb5jjg, 
  .en91gj {
    width: calc(50% - 5px);
  }

  .sw33e5 {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .v6sssf .kbpxh9 {
    margin-top: 35px;
  }

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

  .au46zq .bjvs08 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .aswy6t .bjvs08 {
    display: block;
  }

  .aswy6t .ot86en {
    width: 100%;
    display: block;
  }

  .xdlkng {
    padding-top: 75px;
  }

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

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

  .luqifo {
    width: 100%;
  }

  .xdq379 {
    margin-right: 10px;
  }

  .au46zq .q07hxy {
    padding: 20px 10px;
  }

  .icz1yf,
  .m0zl3u {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .lmz5ys {
    padding: 25px;
  }

  .opdhun {
    margin-bottom: 20px;
  }

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

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

  .yizebc {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .bgo1yf {
    margin-top: 20px;
  }

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

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

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

  .vjnmo7 {
    display: block;
  }

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

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

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

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

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

  .ifjcpt,
  .nxw8ba {
    padding: 45px 0 60px;
  }

  .j4lix6 {
    display: block;
  }

  .lau2wf {
    flex-direction: row;
  }

  .t0hedk {
    margin-right: 15px;
  }

  .qmism2 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .qiezxj textarea {
    height: 99px;
  }

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

  .hj4rhj {
    margin-top: 20px;
  }

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

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

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

  .lau2wf {
    margin-bottom: 8px;
  }

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

  .ot86en {
    margin-bottom: 20px;
  }

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

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

  .k9xq7i {
    padding-top: 47px;
  }

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

  .d2p8ah {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .spk3ew {
    margin: 0;
  }

  .o73unv {
    margin-top: 15px;
  }

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

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

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

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

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

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