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

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

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

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

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

.q2m8pd {
  width: 100%;
}

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

.iwfjrn {
  flex: 1;
}

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

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

  .nvom3h {
    width: 66.6666%;
  }

  .ii5g63 {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .f6c0ci {
    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.xnk2mf);
  font-style: normal;
  font-weight: 400;
}

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

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

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

@font-face {
  font-family: open-sans;
  src: url(../fonts/opensans-light.xnk2mf);
  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);
}

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

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

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

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

.vbvclp:hover {
  opacity: .9;
}

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

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

.ffpftq.rjezyv {
  transform: translateX(0);
}

.l1y0fu.rjezyv {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.sljsms {
  flex-shrink: 0;
}

.sljsms .c23rav {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

.gmr2x8 .a6erf8 {
  max-width: 664px;
  width: 100%;
}

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

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

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

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

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

.w9hvwg {
  margin: 20px auto 0;
}

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

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

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

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

.v0qpec {
  margin: 0 15px;
}

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

.lag359:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

.sv3v3y {
  margin: 0;
}

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

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

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

.nu2836 {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.vcmwuo {
  display: flex;
}

.tckkeh {
  align-items: center;
}

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

.d8mt5g {
  justify-content: center;
}

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

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

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

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

  .yjh389 ul {
    display: block;
  }

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

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

  .sljsms {
    margin-top: 15px;
  }

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

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

  .lkacb2 {
    margin-bottom: 30px;
  }

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

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

  .p1lwsv,
  .k8pawr {
    text-align: center;
  }

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

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

  .ewfy2c {
    padding: 7px 0;
  }

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

  .ffpftq {
    padding-top: 75px;
  }

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

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

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

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

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

  .ku7816 {
    padding: 25px;
  }

  .w9hvwg {
    margin-top: 20px;
  }

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

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

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

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

  .yx8auw {
    padding-top: 47px;
  }

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

  .v0qpec {
    margin: 0;
  }

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

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

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

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

  .fu2w23 {
    margin-bottom: 20px;
  }

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

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

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

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

  .nu2836 {
    margin-top: 15px;
  }

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

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

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

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

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

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

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

.ci9jdj {
  margin-bottom: 1.25rem;
}

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

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

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

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

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

.znulht[open] .upgtcn::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

.kgkyx1 {
  flex: 1 1 220px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gsic06 {
  line-height: 1.75;
}

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

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

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

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


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

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

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

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

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

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

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

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