html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

* {
  box-sizing: border-box;
}

.hide-mobile {
  display: unset !important;
}

.hide-desktop {
  display: none !important;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
}
html body {
  /*a {
  	color: unset;
  	transition: font-weight .2s ease-in-out;
  	text-decoration: none;
  	position: relative;
  	&::after {
  		transition: width .2s ease-in-out;
  		content: "";
  		background: $whiteGrey;
  		position: absolute;
  		bottom: 0;
  		left: 0;
  		height: 2px;
  		width: 0;
  	}
  	&:not(.no-hover):not(.button):not(.btn):hover, &:not(.no-hover):not(.button):not(.btn):focus-visible {
  		&::after {
  			width: 100%;
  		}
  	}
  }*/
}
html body .alert {
  position: fixed;
  bottom: 2rem;
  background-color: white;
  border: 1px solid rgb(120, 120, 120);
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
html body .alert.alert-success {
  color: rgb(51, 165, 0);
}
html body a {
  color: unset;
  transition: font-weight 0.2s ease-in-out;
  text-decoration: none;
}
html body a:not(.no-hover):not(.btn):hover, html body a:not(.no-hover):not(.btn):focus-visible {
  font-weight: bold;
}
html body h1, html body h2 {
  color: #6F6A74;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
}
html body h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
html body h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
html body p, html body label, html body input, html body textarea, html body ol, html body ul, html body td {
  color: #515157;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
html body p.small, html body label.small, html body input.small, html body textarea.small, html body ol.small, html body ul.small, html body td.small {
  font-size: 1rem;
}
html body p.big, html body label.big, html body input.big, html body textarea.big, html body ol.big, html body ul.big, html body td.big {
  font-size: 2.5rem;
}
html body p a::after, html body label a::after, html body input a::after, html body textarea a::after, html body ol a::after, html body ul a::after, html body td a::after {
  background: #515157;
}
html body p:last-child {
  margin-bottom: 0;
}
html body table.small td {
  font-size: 1rem;
}
html body label, html body input, html body textarea {
  margin-bottom: 0;
}
html body textarea {
  min-height: 15rem;
}
html body *:focus-visible {
  outline: 5px solid #515157;
}
html body strong, html body b {
  font-weight: bold;
}
html body span.regular {
  font-weight: normal;
}
html body .button {
  color: #515157;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
  transition: font-weight 0.2s ease-in-out;
}
html body .button::after {
  transition: width 0.2s ease-in-out;
  content: "";
  background: #E5E5E5;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.5rem;
  width: 13rem;
}
html body .button:hover, html body .button.active, html body .button:focus-visible {
  cursor: pointer;
  font-weight: bold;
}
html body .button:hover::after, html body .button.active::after, html body .button:focus-visible::after {
  width: 15.5rem;
}
html body .btn {
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background: none;
  border: 2px solid #515157;
  color: #515157;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding: 0.5rem 1rem;
}
html body .btn:hover {
  cursor: pointer;
  background: #515157;
  color: white;
}
html body .btn-primary {
  color: white;
  border-color: white;
}
html body .btn-primary:hover, html body .btn-primary:focus-visible {
  color: #515157;
  background: white;
}
html body #cta {
  position: fixed;
  right: 0;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 5;
}
html body #cta #back-to-top:hover {
  cursor: pointer;
}
html body #cta #back-to-top:hover svg path {
  d: path("M19.054,0,0,21.9v1.6L19.054,1.6V2.847L0,24.752v1.6l19.054-21.9V5.695L0,27.6v1.6L19.054,7.3V8.543L0,30.447v1.6l19.054-21.9,19.054,21.9V21.9Z");
}
html body #cta #contact:hover a {
  cursor: pointer;
}
html body #cta #contact:hover a p {
  margin-top: 1rem;
  height: 161.483px;
}
html body #cta div {
  background: #656363;
  border: 1px solid white;
  padding: 1rem 1rem;
  width: 100%;
}
html body #cta #back-to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
html body #cta #back-to-top svg path {
  transition: 0.2s ease-in-out;
}
html body #cta #contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body #cta #contact a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
html body #cta #contact a p {
  font-size: 1.5rem;
  transition: 0.2s ease-in-out;
  margin-bottom: 0;
  color: white;
  height: 0;
}
html body #cta #contact a p .rotated {
  position: relative;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  white-space: nowrap;
  display: inline-block;
  overflow: visible;
}
html body .margin-right-inner-container {
  margin-right: calc((100vw - 1088px) / 2);
}
@media screen and (max-width: 1168px) {
  html body .margin-right-inner-container {
    margin-right: 2rem;
  }
}
html body .margin-left-inner-container {
  margin-left: calc((100vw - 1088px) / 2);
}
@media screen and (max-width: 1168px) {
  html body .margin-left-inner-container {
    margin-left: 2rem;
  }
}
html body .margin-right-outer-container {
  margin-right: calc((100vw - 1640px) / 2);
}
@media screen and (max-width: 1720px) {
  html body .margin-right-outer-container {
    margin-right: 2rem;
  }
}
html body .margin-left-outer-container {
  margin-left: calc((100vw - 1640px) / 2);
}
@media screen and (max-width: 1720px) {
  html body .margin-left-outer-container {
    margin-left: 2rem;
  }
}
html body .padding-right-inner-container {
  padding-right: calc((100vw - 1088px) / 2);
}
@media screen and (max-width: 1168px) {
  html body .padding-right-inner-container {
    padding-right: 2rem;
  }
}
html body .padding-left-inner-container {
  padding-left: calc((100vw - 1088px) / 2);
}
@media screen and (max-width: 1168px) {
  html body .padding-left-inner-container {
    padding-left: 2rem;
  }
}
html body .padding-right-outer-container {
  padding-right: calc((100vw - 1640px) / 2);
}
@media screen and (max-width: 1720px) {
  html body .padding-right-outer-container {
    padding-right: 2rem;
  }
}
html body .padding-left-outer-container {
  padding-left: calc((100vw - 1640px) / 2);
}
@media screen and (max-width: 1720px) {
  html body .padding-left-outer-container {
    padding-left: 2rem;
  }
}
html body .block {
  transition: transform 0.75s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
html body .block.visible {
  visibility: visible !important;
}
html body .block:not(.visible) {
  transform: translateY(3rem);
  opacity: 0;
}
html body #hamburger {
  display: none;
}
html body header#mobile-header {
  display: none;
}
html body header#desktop-header {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 2rem;
  justify-content: space-between;
  align-content: flex-start;
  gap: 2rem;
  z-index: 5;
}
html body header#desktop-header nav {
  margin-left: auto;
  height: 100%;
}
html body header#desktop-header nav ul {
  font-size: 1.25rem;
  display: flex;
  gap: 2rem;
  box-sizing: content-box;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  background-color: rgba(101, 99, 99, 0.9);
  margin-bottom: 0;
}
html body header#desktop-header nav ul li {
  font-weight: normal;
}
html body header#desktop-header nav ul li a {
  color: #FFFFFF;
}
html body header#desktop-header nav ul li a::after {
  background: white;
}
html body header#desktop-header nav ul li a::after {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
}
html body header#desktop-header nav ul li ul {
  padding-top: 1rem;
  padding-bottom: 0;
  display: flex;
  margin-right: -100vw;
  padding-left: 0;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  width: max-content;
  position: relative;
}
html body header#desktop-header nav ul li:nth-of-type(1) ul li:nth-of-type(1) a, html body header#desktop-header nav ul li:nth-of-type(1) ul li:nth-of-type(6) a, html body header#desktop-header nav ul li:nth-of-type(1) ul li:nth-of-type(11) a {
  font-weight: bold;
}
html body header#desktop-header nav ul li:hover > a, html body header#desktop-header nav ul li.active > a {
  font-weight: bold;
}
html body section.content-header #logo {
  position: fixed;
  display: block;
  top: 2rem;
}
html body section.content-header #logo img {
  height: 225px;
  width: 100%;
  max-height: 14rem;
}
html body section.content-header .headerblock {
  height: 45rem;
}
html body section.content-header .headerblock video {
  position: fixed;
  width: 100%;
  height: 45rem;
  object-fit: cover;
  object-position: top center;
  z-index: -999;
}
html body section.content-header .headerblock img {
  position: fixed;
  width: 100%;
  height: 45rem;
  object-fit: cover;
  object-position: top center;
  z-index: -999;
}
html body section.content-header .swiperheaderblock {
  height: 45rem;
  z-index: unset;
}
html body section.content-header .swiperheaderblock .swiper-wrapper {
  z-index: -1;
}
html body section.content-header .swiperheaderblock img {
  position: static;
  width: 100%;
  height: 45rem;
  object-fit: cover;
  object-position: center;
}
html body section.content-header .swiperheaderblock .swiper-button-next::after, html body section.content-header .swiperheaderblock .swiper-button-prev::after {
  color: white;
}
html body section#over-video {
  background-color: white;
}
html body section#content {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
html body section#content ul {
  margin: 0;
  padding-left: 10px;
  list-style-type: "-";
}
html body section#content ul li {
  padding-left: 10px;
}
html body section#content .block {
  scroll-margin-top: 3rem;
}
html body section#content .icon-container {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #656363;
}
html body section#content .icon-container .icon {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
html body section#content .icon-container .icon .ci svg {
  fill: white;
}
html body section#content .icon-container.dark {
  background-color: white;
}
html body section#content .icon-container.dark .icon .ci svg {
  fill: #656363;
}
html body section#content .text-container:not(:last-child) {
  margin-bottom: 4.5rem;
}
html body section#content .text-container.no-margin-bottom {
  margin-bottom: 0;
}
html body section#content .text-container.openable-container {
  margin-bottom: 1rem;
}
html body section#content .text-container.dark {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #656363;
}
html body section#content .text-container.dark p, html body section#content .text-container.dark ul, html body section#content .text-container.dark ol, html body section#content .text-container.dark h1, html body section#content .text-container.dark h2 {
  color: white;
}
html body section#content .text-container.dark p a::after, html body section#content .text-container.dark ul a::after, html body section#content .text-container.dark ol a::after, html body section#content .text-container.dark h1 a::after, html body section#content .text-container.dark h2 a::after {
  background: white;
}
html body section#content .text-container.image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body section#content .text-container.image p {
  margin-bottom: 0;
  width: 100%;
}
html body section#content .text-container.image p img {
  width: 100%;
  height: auto;
}
html body section#content .text-container.image-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body section#content .text-container.image-full p {
  margin-bottom: 0;
  width: 100%;
}
html body section#content .text-container.image-full p img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  max-height: 60vh;
}
html body section#content .text-container .openable-opener {
  transition: font-weight 0.2s ease-in-out;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
}
html body section#content .text-container .openable-opener .open {
  transform: rotate(90deg);
}
html body section#content .text-container .openable-opener:hover {
  font-weight: bold;
  cursor: pointer;
}
html body section#content .text-container .openable-content {
  display: none;
}
html body section#content .button-container {
  margin-bottom: 3rem;
}
html body section#content .divider {
  height: 0.5rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
html body section#content .divider.divider-grey {
  background-color: #E5E5E5;
}
html body section#content .offers-block-container {
  margin-bottom: 2.5rem;
}
html body section#content .offers-block-container .offers-block-anchor {
  transform: translateY(-150px);
}
html body section#content .offers-block-container .offers-block-offers-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
}
@media screen and (max-width: 1399px) {
  html body section#content .offers-block-container .offers-block-offers-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a {
  display: block;
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a p {
  margin-top: 0.5rem;
  padding-bottom: 1.5rem;
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a:hover p, html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a:focus-visible p {
  font-weight: bold;
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a:hover p:after, html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a:focus-visible p:after {
  width: 15.5rem;
}
html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a svg {
  display: none;
}
html body section#content .contact-block-container {
  margin-bottom: 2.5rem;
}
html body section#content .contact-block-container .contact-block-contacts-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
}
html body section#content .contact-block-container .contact-block-contacts-container .contact-block-contact-container {
  padding: 1.25rem;
  background-color: #656363;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
html body section#content .contact-block-container .contact-block-contacts-container .contact-block-contact-container p {
  color: white;
  margin-bottom: 0;
}
html body section#content .auth {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2.5rem;
  background-color: #656363;
  padding: 2rem 0;
}
html body section#content .auth p, html body section#content .auth label, html body section#content .auth ol, html body section#content .auth ul, html body section#content .auth h1, html body section#content .auth h2 {
  color: white;
}
html body section#content .auth form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
html body section#content .auth form fieldset {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
html body section#content .auth form .form-field {
  width: 100%;
}
html body section#content .auth form .form-field label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
html body section#content .auth form .help-block ul {
  margin-bottom: 0;
}
html body section#content .auth form .help-block.with-errors ul {
  color: #912e2e;
}
html body section#content .reference-filter-title {
  display: none;
}
@media screen and (min-width: 1400px) {
  html body section#content .reference-filter-title {
    display: block;
  }
}
html body section#content .reference-filter-open {
  display: none;
}
@media screen and (max-width: 1399px) {
  html body section#content .reference-filter-open {
    display: block;
  }
}
html body section#content .reference-filter-container {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
}
@media screen and (max-width: 1399px) {
  html body section#content .reference-filter-container {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
html body section#content .reference-filter-container p {
  margin-top: 0.5rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
}
html body section#content .reference-filter-container p:hover:after, html body section#content .reference-filter-container p:focus-visible:after, html body section#content .reference-filter-container p.active:after {
  width: 15.5rem;
}
html body section#content .reference-entities-container {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
html body section#content .reference-entities-container.detail-page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
html body section#content .reference-entities-container .reference-entity {
  position: relative;
}
html body section#content .reference-entities-container .reference-entity img {
  width: 100%;
  height: 100%;
  object-position: top center;
  object-fit: cover;
}
html body section#content .reference-entities-container .reference-entity .hover-vignette {
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(101, 99, 99, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body section#content .reference-entities-container .reference-entity .hover-vignette p {
  text-align: center;
  color: white;
  margin-bottom: 0;
}
html body section#content .reference-entities-container .reference-entity .hover-vignette svg {
  display: none;
}
html body section#content .reference-entities-container .reference-entity:hover {
  cursor: pointer;
}
html body section#content .reference-entities-container .reference-entity:hover .hover-vignette {
  opacity: 1;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview {
  outline: none !important;
  width: 80vw;
  height: 75vh;
  min-height: 800px;
  border: 1px solid #515157;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
  cursor: default;
  padding: 3rem;
}
@media screen and (max-width: 1720px) {
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview {
    width: calc(100vw - 4rem);
  }
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview:open {
  display: flex;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview::backdrop {
  background-color: rgba(101, 99, 99, 0.45);
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog {
  align-self: flex-end;
  width: 50px;
  height: 50px;
  position: relative;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog:before, html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog:after {
  position: absolute;
  left: 23.4375px;
  content: " ";
  height: 51.5625px;
  width: 3.125px;
  background-color: #515157;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog:before {
  transform: rotate(45deg);
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog:after {
  transform: rotate(-45deg);
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header .close-dialog:hover {
  cursor: pointer;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
  height: 100%;
  overflow: hidden;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider {
  width: 140%;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider img {
  object-position: top center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider .swiper-button-prev, html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider .swiper-button-next {
  outline: none;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider .swiper-button-next::after, html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider .swiper-button-prev::after {
  color: white;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  align-items: stretch;
  align-self: stretch;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog {
  align-self: flex-end;
  width: 50px;
  height: 50px;
  position: relative;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog:before, html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog:after {
  position: absolute;
  left: 23.4375px;
  content: " ";
  height: 51.5625px;
  width: 3.125px;
  background-color: #515157;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog:before {
  transform: rotate(45deg);
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog:after {
  transform: rotate(-45deg);
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog:hover {
  cursor: pointer;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .reference-description {
  align-self: stretch;
  overflow-y: auto;
  overflow-x: hidden;
}
html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .reference-description p, html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .reference-description ul li {
  font-size: 1rem;
}
html body footer {
  position: relative;
}
html body footer .footer-contact-form {
  background-color: #656363;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("/Custom/img/logos_background.png");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  margin-bottom: 2.5rem;
}
html body footer .footer-contact-form p, html body footer .footer-contact-form label, html body footer .footer-contact-form ol, html body footer .footer-contact-form ul, html body footer .footer-contact-form h1, html body footer .footer-contact-form h2 {
  color: white;
}
html body footer .footer-contact-form form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
html body footer .footer-contact-form form .form-field {
  width: 100%;
}
html body footer .footer-contact-form form .form-field label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
html body footer .footer-contact-form form .help-block ul {
  margin-bottom: 0;
}
html body footer .footer-contact-form form .help-block.with-errors ul {
  color: #912e2e;
}
html body footer .footer-content {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #656363;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 8rem;
}
html body footer .footer-content p, html body footer .footer-content ul, html body footer .footer-content ol, html body footer .footer-content h1, html body footer .footer-content h2 {
  color: white;
}
html body footer .footer-content p a::after, html body footer .footer-content ul a::after, html body footer .footer-content ol a::after, html body footer .footer-content h1 a::after, html body footer .footer-content h2 a::after {
  background: white;
}
html body footer .footer-content #footer-logo {
  display: block;
  margin-bottom: 1.5rem;
}
html body footer .footer-content #footer-logo img {
  width: 100%;
  height: auto;
  object-position: center center;
  object-fit: cover;
}
html body footer .footer-content .footer-infos ul {
  margin: 0;
  list-style-type: none;
}
html body footer .footer-content .footer-infos ul li {
  margin-left: 8px;
}
html body footer .footer-content .footer-infos ul li::before {
  content: "-";
  margin-left: -12px;
}
html body footer .footer-content .footer-infos p:last-child {
  margin-bottom: 0;
}
html body footer .footer-content .footer-text ul {
  margin: 0;
  list-style-type: none;
}
html body footer .footer-content .footer-text ul li {
  margin-left: 8px;
}
html body footer .footer-content .footer-text ul li::before {
  content: "-";
  margin-left: -12px;
}
html body footer .footer-content .footer-text p {
  margin-bottom: 0;
}
html body footer .footer-content nav ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
}
html body footer .footer-content nav ul li a::after {
  background: white;
}
html body footer #maps {
  height: 36rem;
  background: #E5E5E5;
}
html body footer #legal {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
html body footer #legal ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 1239px) {
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 1109px) {
  html {
    font-size: 16px;
  }
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview:modal {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
    min-height: 100vh;
    min-width: 100vw;
  }
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-header {
    display: flex;
    margin-bottom: 2rem;
  }
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content {
    flex-direction: column;
  }
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .slider {
    width: 100%;
    min-height: 40vh;
  }
  html body section#content .reference-entities-container .reference-entity .reference-detail-preview .dialog-content .reference-sidebar .close-dialog {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 16px;
  }
  html .hide-mobile {
    display: none !important;
  }
  html .hide-desktop {
    display: unset !important;
  }
  html body #hamburger {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    z-index: 7;
    background-color: transparent;
    border: none;
    outline: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    height: 39px;
    width: 48px;
    padding: 0;
  }
  html body #hamburger .line {
    display: block;
    height: 6px;
    width: 100%;
    background-color: white;
  }
  html body #hamburger .line.line1 {
    transform-origin: 0% 0%;
    transition: rotate 0.4s ease-in-out, transform 0.4s ease-in-out, background-color 0.2s ease-in-out;
  }
  html body #hamburger .line.line2 {
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  html body #hamburger .line.line3 {
    transform-origin: 0% 100%;
    transition: rotate 0.4s ease-in-out, transform 0.4s ease-in-out, background-color 0.2s ease-in-out;
  }
  html body #hamburger:hover {
    cursor: pointer;
  }
  html body #hamburger.active {
    position: fixed;
  }
  html body #hamburger.active .line.line1 {
    rotate: 45deg;
  }
  html body #hamburger.active .line.line2 {
    transform: scaleY(0);
  }
  html body #hamburger.active .line.line3 {
    rotate: -45deg;
  }
  html body header#desktop-header {
    display: none;
  }
  html body header#mobile-header {
    display: flex;
    flex-flow: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 6;
    justify-content: space-between;
    align-items: flex-start;
    transition: transform 0.2s ease-in-out;
    transform: translateX(-100%);
    background-color: #656363;
    padding: 10rem 2.5rem;
  }
  html body header#mobile-header a img {
    max-width: 30vw;
    height: auto;
    width: 100%;
  }
  html body header#mobile-header nav {
    z-index: 6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  html body header#mobile-header nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: white;
  }
  html body header#mobile-header nav ul li a {
    font-size: 2rem;
  }
  html body header#mobile-header .contact {
    z-index: 6;
    justify-content: end;
  }
  html body header#mobile-header .contact #logo {
    display: block;
    margin-bottom: 1.5rem;
  }
  html body header#mobile-header .contact #logo img {
    display: block;
    width: 50vw;
  }
  html body header#mobile-header .contact p {
    color: white;
    margin: 0;
    line-height: 1.75;
  }
  html body header#mobile-header.active {
    transform: translateX(0);
  }
  html body section#content .reference-entities-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html body section#content .reference-entities-container.detail-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  html body footer .footer-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  html body footer .footer-content nav {
    display: none;
  }
}
@media screen and (max-width: 829px) {
  html body footer .footer-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  html body section#content .icon-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
  html body section#content .reference-filter-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  html body section#content .reference-entities-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  html body section#content .reference-entities-container .reference-entity {
    cursor: pointer;
  }
  html body section#content .reference-entities-container .reference-entity img {
    height: auto;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette {
    position: static;
    opacity: 1;
    height: auto;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    margin-top: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette p {
    text-align: left;
    color: #515157;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    transition: font-weight 0.2s ease-in-out;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette p::after {
    transition: width 0.2s ease-in-out;
    content: "";
    background: #E5E5E5;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.5rem;
    width: 13rem;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette p:hover, html body section#content .reference-entities-container .reference-entity .hover-vignette p:focus-visible {
    cursor: pointer;
    font-weight: bold;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette p:hover::after, html body section#content .reference-entities-container .reference-entity .hover-vignette p:focus-visible::after {
    width: 15.5rem;
  }
  html body section#content .reference-entities-container .reference-entity .hover-vignette svg {
    display: block;
    justify-self: flex-start;
    width: 30%;
  }
  html body section#content .reference-entities-container.detail-page {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  html body section#content .offers-block-container .offers-block-offers-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a img {
    display: none;
  }
  html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a p {
    width: 60%;
  }
  html body section#content .offers-block-container .offers-block-offers-container .offers-block-offer-container a svg {
    justify-self: flex-start;
    display: block;
    width: 30%;
  }
  html body footer .footer-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
  }
  html body footer .footer-content #footer-logo {
    max-width: 50vw;
  }
  html body footer .footer-content .footer-text {
    grid-column-start: unset;
    grid-column-end: unset;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  html {
    font-size: 12px;
  }
  html body header#mobile-header a img {
    max-width: 50vw;
    height: auto;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
