:root {
  --violet-color: #7C67FF;
  --violet-dark-color: #4D30FF;
  --violet-light-color-1: #CDC1FF;
  --blue-light-color: #D9EAFD;
  --blue-dark-color: #1B293F;
  --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;
}

:root {
  --grid-width: 1160px;
  --grid-gutter: 15px;
}

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

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

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

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

.x2fv1b {
  width: 100%;
}

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

.wh6h6d {
  flex: 1;
}

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

@media (min-width: 992px) {
  .c8jlhc {
    width: 33.3333%;
  }

  .fmjl49 {
    width: 66.6666%;
  }

  .pjqyrn {
    flex-direction: row;
  }
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-regular.x9m1ld);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-bold.x9m1ld);
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-semibold.x9m1ld);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-italic.x9m1ld);
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-light.x9m1ld);
  font-style: normal;
  font-weight: 300;
}

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(--white-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: 32px;
  line-height: 1.3;
  margin: 1.75rem 0 0.75rem;
}

h2 {
  font-size: 26px;
  line-height: 1.35;
  margin: 1.5rem 0 0.6rem;
}

h3 {
  font-size: 21px;
  line-height: 1.4;
  margin: 1.25rem 0 0.5rem;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 1rem 0 0.4rem;
}

h5 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0.9rem 0 0.35rem;
}

h6 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0.75rem 0 0.3rem;
}

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);
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--text-color);
}

img {
  max-width: 100%;
}

a {
  color: var(--violet-color);
  line-height: 1;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}

input,
select {
  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;
}

select {
  background: 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 {
  border: 1px solid var(--text-color);
}

.l5fmrs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 34px;
  background-color: var(--violet-color);
  color: var(--white-color);
  outline: none;
  font-family: var(--primary-font), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
}

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

.a46ozh {
  position: relative;
  padding: 8px 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(139, 139, 139, 0.3);
}

.a9vgmr {
  max-width: 260px;
  width: 100%;
  transition: var(--transition);
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.a9vgmr:hover {
  opacity: .9;
}

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

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

.k0bq90.ffkdfc {
  transform: translateX(0);
}

.h53cl8.ffkdfc {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

.q5u6mc ul li a:hover {
  color: var(--violet-color);
  border-color: var(--violet-color);
}

.t2pcyb {
  flex-shrink: 0;
}

.t2pcyb .l5fmrs {
  padding-left: 45px;
  padding-right: 45px;
}

.w7zncn {
  position: relative;
  background-color: var(--violet-light-color-1);
  padding: 60px 0 45px;
}

.wc6gxd {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-color);
}

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

.wiut25 {
  padding: 60px 0 45px;
}

.wiut25 .k61czy {
  max-width: 664px;
  width: 100%;
}

.k61czy {
  margin: 0 0 30px;
  font-size: 40px;
  color: var(--black-color);
  line-height: 54px;
  font-weight: 600;
}

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

.f3r254 {
  padding: 30px 22px;
  width: 100%;
  margin: 0 auto;
}

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

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

.xplel7 {
  margin: 20px auto 0;
}

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

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

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

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

.c352kc {
  margin: 0 15px;
}

.aclrtu {
  max-width: 260px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  border: 0;
}

.aclrtu:hover {
  opacity: .9;
}

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

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

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

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

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

.mmfxmq li a:hover {
  background-color: var(--violet-dark-color);
}

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

.lv4hyr {
  margin: 0;
}

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

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

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

.oys7xg {
  margin-top: 35px;
}

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

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

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

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

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

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

.nvf6sa {
  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; }
  .nvf6sa:hover {
    opacity: 0.7; }
  .nvf6sa.ffkdfc:hover {
    opacity: 0.7; }
  .nvf6sa.ffkdfc .gbgxdm,
  .nvf6sa.ffkdfc .gbgxdm::before,
  .nvf6sa.ffkdfc .gbgxdm::after {
    background-color: var(--violet-color); }

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

.gbgxdm {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .gbgxdm, .gbgxdm::before, .gbgxdm::after {
    width: 40px;
    height: 3px;
    background-color: var(--violet-color);
    border-radius: 3px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .gbgxdm::before, .gbgxdm::after {
    content: "";
    display: block; }
  .gbgxdm::before {
    top: -10px; }
  .gbgxdm::after {
    bottom: -10px; }

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

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

.y3s1jk {
  display: flex;
}

.k0rj7w {
  align-items: center;
}

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

.v1ozy3 {
  justify-content: center;
}

@media (max-width: 1025px) {
  .nvf6sa {
    display: inline-flex;
  }

  .a9vgmr {
    max-width: 220px;
    font-size: 14px;
    white-space: normal;
  }

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

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

  .q5u6mc ul {
    display: block;
  }

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

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

  .t2pcyb {
    margin-top: 15px;
  }

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

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

  .lqx9o8 {
    margin-bottom: 30px;
  }

  .aclrtu {
    margin-bottom: 0;
    justify-content: flex-start;
    max-width: 220px;
    font-size: 14px;
    white-space: normal;
  }

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

  .vn3ii8,
  .wc6gxd {
    text-align: center;
  }

  .a46ozh {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  p,
  ul li,
  input,
  select {
    font-size: 15px;
    line-height: 25px;
  }

  ul li {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  ul li::before {
    top: 10px;
    left: 9px;
    width: 3px;
    height: 3px;
  }

  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 {
    padding: 9px 12px;
  }

  select {
    padding-right: 35px;
    background-size: 13px;
    background-position-x: calc(100% - 12px);
  }

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

  .a46ozh {
    padding: 7px 0;
  }

  .a9vgmr {
    max-width: 180px;
    font-size: 13px;
    white-space: normal;
  }

  .k0bq90 {
    padding-top: 75px;
  }

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

  .vn3ii8 {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 20px;
  }

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

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

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

  .f3r254 {
    padding: 25px;
  }

  .xplel7 {
    margin-top: 20px;
  }

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

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

  .wiut25 {
    padding: 50px 0 35px;
  }

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

  .m28eoj {
    padding-top: 47px;
  }

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

  .c352kc {
    margin: 0;
  }

  .aclrtu {
    max-width: 180px;
    font-size: 13px;
    white-space: normal;
  }

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

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

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

  .aso928 {
    margin-bottom: 20px;
  }

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

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

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

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

  .oys7xg {
    margin-top: 15px;
  }

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

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

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

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

@media (max-width: 575px) {
  .lbhh3q {
    max-width: 335px;
  }
}

/* ─── Choose your city ──────────────────────────────────────────────────────── */

.b44hha {
  padding: 2rem 0 3rem;
}

.n7c5mo {
  margin-bottom: 1.25rem;
}

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

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

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

.f5dxx7 {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.k76hom[open] .f5dxx7::after {
  transform: rotate(90deg);
}

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

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

.pkkto3 li a:hover {
  background: #f5f5f5;
}

/* ─── About page ────────────────────────────────────────────────────────────── */

.p09938 p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.nk6cn3 {
  display: flex;
  gap: 2.5rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.w1gjvb {
  flex: 1 1 220px;
}

.w1gjvb h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--black-color);
}

.w1gjvb ul {
  padding-left: 1.25rem;
  line-height: 1.9;
}

/* ─── Contact page ──────────────────────────────────────────────────────────── */

.k1xlxf {
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.c2b5a9 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eog5p3 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tgucwj {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-color);
}

.f73t2u {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--grey-medium-color);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.f73t2u:focus {
  border-color: var(--violet-color);
}

.hg69nb {
  resize: vertical;
  min-height: 130px;
}

.qjicba {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ─── Article content (home page) ───────────────────────────────────────────── */

.j16z5z {
  line-height: 1.75;
}

.j16z5z p {
  margin-bottom: 1rem;
}

.j16z5z ul,
.j16z5z ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.j16z5z li {
  margin-bottom: 0.35rem;
}

/* ─── Legal content ─────────────────────────────────────────────────────────── */


/* ─── Legal tables ──────────────────────────────────────────────────────────── */

.q6ih44 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.q6ih44 td,
.q6ih44 th {
  border: 1px solid #000;
  padding: 0.6rem 0.85rem;
  vertical-align: top;
}

.q6ih44 tr:first-child td,
.q6ih44 tr:first-child th {
  background-color: #f4f4f4;
}

.q6ih44 p {
  margin: 0 0 0.35rem;
}

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

.q6ih44 ul {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
}

.q6ih44 ul li {
  margin-bottom: 0.2rem;
}
