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

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

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

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

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

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

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

.mf8hlb {
  width: 25%;
}

.dj7bgb {
  width: 33.3333%;
}

.wvvcl0 {
  width: 41.666667%;
}

.tw0d1v {
  width: 50%;
}

.cei6nr {
  width: 100%;
}

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

.f0t98b {
  flex: 1;
}

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

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

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

  .bx196x {
    width: 33.3333%;
  }

  .bb9hvy {
    width: 58.3333%;
  }

  .yztoxv {
    width: 66.6666%;
  }

  .im3810 {
    width: 50%;
  }

  .hvrfoa {
    width: 41.6666%;
  }

  .aw13k6 {
    flex-direction: row;
  }
}

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

  .j3r0et {
    width: 50%;
  }

  .j5e6c2 {
    width: 58.3333%;
  }

  .kkbiby {
    width: 41.6666%;
  }

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

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

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

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

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

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

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

.hh1f8o:hover {
  opacity: .9;
}

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

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

.ij3aoo.gnsxg3 {
  transform: translateX(0);
}

.gh82e3.gnsxg3 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.bd15mc {
  flex-shrink: 0;
}

.bd15mc .vkw03h {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

.ssw3co {
  padding: 60px 0;
}

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

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

.co7tgp,
.aejqw7 {
  width: calc(50% - 15px);
}

.co7tgp .jelx26:first-child,
.aejqw7 .jelx26:last-child {
  height: 240px;
}

.co7tgp .jelx26:last-child,
.aejqw7 .jelx26:first-child {
  height: 140px;
}

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

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

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

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

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

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

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

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

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

.ievc2l[open] .yi29uf::after {
  transform: rotate(90deg);
}

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

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

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

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

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

.ssw3co p,
.dk85ic p {
  margin: 0 0 18px;
}

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

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

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

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

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

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

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

.ssw3co ul,
.dk85ic ul {
  list-style-type: disc;
}

.ssw3co ol,
.dk85ic ol {
  list-style-type: decimal;
}

.ssw3co li,
.dk85ic li {
  margin-bottom: 6px;
  padding-left: 0;
}

.ssw3co li::before,
.dk85ic li::before {
  display: none;
}

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

.crlmys.rqx5lg {
  background-color: var(--white-color);
  color: var(--black-color);
}

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

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

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

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

.kwhit0::before {
  display: none;
}

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

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

.khzdba .indzq3,
.khzdba p {
  color: var(--white-color);
}

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

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

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

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

.c50ucx {
  padding: 60px 0;
}

.c50ucx .crlmys {
  margin-top: 45px;
}

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

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

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

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

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

.t56l2v .indzq3,
.t56l2v p {
  color: var(--white-color);
}

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

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

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

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

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

.kwhit0::before {
  display: none;
}

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

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

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

.mo3uct ul {
  margin: 0;
}

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

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

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

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

.ig0dpv {
  margin: 20px auto 0;
}

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

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

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

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

.ea1caj,
.ueoz3n {
  padding: 70px 0 80px;
}

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

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

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

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

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

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

.cj4ues textarea {
  height: 155px;
}

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

.cj4ues.v5u9uu {
  min-height: 460px;
}

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

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

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

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

.s4a2l0 {
  padding-top: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.eo2d2v {
  margin: 0 15px;
}

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

.pq8870:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

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

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

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

.d2xex8 {
  margin: 0;
}

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

.d2xex8.y8wgjz li {
  width: calc(50% - 5px);
}

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

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

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

.zjn7t4 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.q0nw7e {
  display: flex;
}

.q56ki9 {
  text-align: center;
}

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

.uk3vnv {
  align-items: center;
} 

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

.nzey8k {
  justify-content: center;
}

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

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

  .xb2fti {
    display: inline-flex;
  }

  .hh1f8o,
  .pq8870 {
    max-width: 157px;
  }

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

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

  .t5q65t ul {
    display: block;
  }

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

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

  .bd15mc {
    margin-top: 15px;
  }

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

  .pe5q99 {
    margin-right: 0;
  }
}

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

  .m1dhju {
    margin-bottom: 30px;
  }

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

  .oq47xd {
    margin-right: 7px;
  }

  .lcmz1r {
    width: 152px;
  }

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

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

  .co7tgp .jelx26:first-child,
  .aejqw7 .jelx26:last-child {
    height: 150px;
  }

  .co7tgp .jelx26:last-child,
  .aejqw7 .jelx26:first-child {
    height: 114px;
  }

  .pe5q99 {
    display: none;
  }

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

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

  .zqcsxe,
  .dgbt7o {
    text-align: center;
  }

  .r8hpvu {
    margin: 10px 0;
  }

  .ow7adh {
    padding: 80px 0;
  }

  .wdukfh,
  .ktvs12 {
    margin-left: auto;
    margin-right: auto;
  }

  .p01hnz {
    max-width: 100%;
  }

  .cj4ues {
    margin-bottom: 40px;
  }

  .crqjz2 {
    padding: 10px 0;
  }

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

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

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

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

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

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

  .crqjz2 {
    padding: 6px 0;
  }

  .hh1f8o,
  .pq8870 {
    max-width: 157px;
  }

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

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

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

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

  .jelx26 {
    margin-bottom: 10px;
  }

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

  .co7tgp, 
  .aejqw7 {
    width: calc(50% - 5px);
  }

  .dux2ed {
    margin-bottom: 15px;
  }

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

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

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

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

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

  .c50ucx .crlmys {
    margin-top: 35px;
  }

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

  .t56l2v .ntivn6 {
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 20px 10px;
  }

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

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

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

  .qup6se .ntivn6 {
    display: block;
  }

  .qup6se .kwhit0 {
    width: 100%;
    display: block;
  }

  .ij3aoo {
    padding-top: 75px;
  }

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

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

  .o9qw1e {
    width: 100%;
  }

  .kvsbwb {
    margin-right: 10px;
  }

  .t56l2v .k2nnuv {
    padding: 20px 10px;
  }

  .ed2bt2,
  .r8hpvu {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .cebore {
    padding: 25px;
  }

  .zqcsxe {
    margin-bottom: 20px;
  }

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

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

  .bvfkgf {
    margin-bottom: 50px;
  }

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

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

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

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

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

  .ig0dpv {
    margin-top: 20px;
  }

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

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

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

  .ac7s6l {
    display: block;
  }

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

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

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

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

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

  .ea1caj,
  .ueoz3n {
    padding: 45px 0 60px;
  }

  .ms2r8b {
    display: block;
  }

  .ed6nm2 {
    flex-direction: row;
  }

  .c5ww48 {
    margin-right: 15px;
  }

  .s4a2l0 {
    padding-top: 0;
  }

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

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

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

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

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

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

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

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

  .cj4ues textarea {
    height: 99px;
  }

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

  .j52oo7 {
    margin-top: 20px;
  }

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

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

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

  .ed6nm2 {
    margin-bottom: 8px;
  }

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

  .kwhit0 {
    margin-bottom: 20px;
  }

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

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

  .kc67dj {
    padding-top: 47px;
  }

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

  .m2q081 {
    margin-bottom: 20px;
  }

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

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

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

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

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

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

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

  .eo2d2v {
    margin: 0;
  }

  .zjn7t4 {
    margin-top: 15px;
  }

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

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

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

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

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

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