:root {
  --violet-color: #C70039;
  --violet-dark-color: #A0012E;
  --violet-light-color-1: #C08261;
  --blue-light-color: #E2C799;
  --blue-dark-color: #2B2B2B;
  --yellow-color: #F2ECBE;
  --yellow-light-color: #F6F3DC;
  --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;
}

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

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

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

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

.zblaba {
  width: 100%;
}

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

.ij7vzr {
  flex: 1;
}

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

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

  .rkql8v {
    width: 66.6666%;
  }

  .csvp89 {
    flex-direction: row;
  }
}

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

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

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

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

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

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

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

.dhwssl {
  position: relative;
  padding: 14px 0;
  background-color: var(--yellow-color);
}

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

.g2jykv:hover {
  opacity: .9;
}

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

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

.b6xfaq.kbs6m3 {
  transform: translateX(0);
}

.hsbr57.kbs6m3 {
  opacity: 1;
  z-index: 9;
}

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

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

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

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

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

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

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

.h4teuh {
  flex-shrink: 0;
}

.h4teuh .b13c3j {
  padding-left: 45px;
  padding-right: 45px;
}

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

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

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

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

.zfmz8s .d30bai {
  max-width: 664px;
  width: 100%;
}

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

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

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

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

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

.marvld {
  margin: 20px auto 0;
}

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

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

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

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

.y7zvpe {
  margin: 0 15px;
}

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

.td7oeh:hover {
  opacity: .9;
}

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

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

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

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

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

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

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

.m7nzl2 {
  margin: 0;
}

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

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

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

.kxhh1t {
  margin-top: 35px;
}

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

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

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

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

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

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

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

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

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

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

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

.qc8w6m {
  display: flex;
}

.c8o5xz {
  align-items: center;
}

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

.eught1 {
  justify-content: center;
}

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

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

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

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

  .ifhxlu ul {
    display: block;
  }

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

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

  .h4teuh {
    margin-top: 15px;
  }

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

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

  .kwkt4o {
    margin-bottom: 30px;
  }

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

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

  .xfpzwc,
  .jx4nnm {
    text-align: center;
  }

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

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

  .dhwssl {
    padding: 7px 0;
  }

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

  .b6xfaq {
    padding-top: 75px;
  }

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

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

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

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

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

  .gt4rm9 {
    padding: 25px;
  }

  .marvld {
    margin-top: 20px;
  }

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

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

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

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

  .hzk0cn {
    padding-top: 47px;
  }

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

  .y7zvpe {
    margin: 0;
  }

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

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

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

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

  .c2gozc {
    margin-bottom: 20px;
  }

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

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

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

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

  .kxhh1t {
    margin-top: 15px;
  }

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

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

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

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

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

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

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

.gp9lni {
  margin-bottom: 1.25rem;
}

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

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

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

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

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

.hhkt6j[open] .w8d3k2::after {
  transform: rotate(90deg);
}

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

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

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

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

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

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

.frknaz {
  flex: 1 1 220px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.eqat2s {
  line-height: 1.75;
}

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

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

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

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


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

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

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

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

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

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

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

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