.highlighted .tabs {
  pointer-events: none;
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 110;
}
.highlighted .tabs .nav-tabs {
  border: none;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.highlighted .tabs .nav-tabs li {
  pointer-events: all;
  float: none;
  display: inline-block;
  margin: 10px 5px 0;
  border: none;
}
.highlighted .tabs .nav-tabs li a {
  background-color: #333333;
  color: white;
  border-radius: 30px;
  padding: 8px 30px 8px 25px;
  font-weight: 700;
  border: none;
  -webkit-text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  -moz-text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  -ms-text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  -o-text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.highlighted .tabs .nav-tabs li a:hover {
  background-color: white;
  color: #333333;
  border: none;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
}
.highlighted .tabs .nav-tabs li.active a {
  cursor: default;
  background-color: white;
  color: #333333;
  border: none;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -ms-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 800px) {
  .highlighted nav.tabs {
    left: auto;
    right: 10px;
    width: auto;
  }
  .highlighted nav.tabs .nav-tabs {
    position: relative;
    border: none;
    background-color: #333333;
    color: white;
    border-radius: 20px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
    -ms-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
    -o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6);
  }
  .highlighted nav.tabs .nav-tabs li {
    pointer-events: none;
    display: none;
    width: 100%;
  }
  .highlighted nav.tabs .nav-tabs:after {
    position: relative;
    content: "";
    background-image: url(../assets/img/svg/edit-icon-dark.svg);
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    height: 30px !important;
    width: 30px !important;
  }
  .highlighted nav.tabs .nav-tabs:hover {
    margin-left: 10px;
    padding-bottom: 40px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .highlighted nav.tabs .nav-tabs:hover li {
    pointer-events: unset;
    display: block;
  }
  .highlighted nav.tabs .nav-tabs:hover li:last-child {
    margin-bottom: 20px;
  }
  .highlighted nav.tabs .nav-tabs:hover:after {
    position: absolute;
    bottom: 10px;
  }
  nav.tabs .highlighted nav.tabs .nav-tabs:hover {
    left: 10px;
  }
}
.highlighted .highlighted {
  position: fixed;
  bottom: 80px;
  z-index: 100;
  left: 50%;
  width: 60%;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.highlighted .highlighted .alert {
  position: relative;
  padding: 0.75rem 1.25rem 1rem;
  cursor: pointer;
}
.highlighted .close:focus,
.highlighted .close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
  border: none;
  outline: none;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html::-ms-clear {
  display: none;
}
html::-webkit-scrollbar-track {
  display: none;
  position: absolute;
  background: transparent !important;
}
html::-webkit-scrollbar {
  width: 8px;
  background: transparent repeat-y !important;
}
html::-webkit-scrollbar-thumb {
  background-color: rgba(102, 102, 102, 0.3);
  opacity: 0.6;
  border-radius: 4px;
}
html.no-overflow {
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8faff;
  max-width: 100vw;
  min-height: 100vh;
}
body::-ms-clear {
  display: none;
}
body::-webkit-scrollbar-track {
  display: none;
  position: absolute;
  background: transparent !important;
}
body::-webkit-scrollbar {
  width: 8px;
  background: transparent repeat-y !important;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(102, 102, 102, 0.3);
  opacity: 0.6;
  border-radius: 4px;
}
body a, body span {
  color: #5876aa;
}
body a:hover, body span:hover {
  color: #121a38;
}

#page .header.header-front a, #page .header.header-front span {
  color: #5876aa;
}
#page .header.header-front a:hover, #page .header.header-front span:hover {
  color: #121a38;
}
#page .header:not(.header-front) {
  background-color: #5876aa;
}
#page .header:not(.header-front) a, #page .header:not(.header-front) span {
  color: white;
}
#page .header:not(.header-front) a:hover, #page .header:not(.header-front) span:hover {
  color: #121a38;
}
#page .header .menu--main .menu-item--expanded .dropdown-menu {
  border: 0px;
  border-radius: 0px;
  background: #f8faff;
}
#page .header .menu--main .menu-item--expanded .dropdown-menu .dropdown-item.active {
  background: #5876aa;
  color: white;
}
#page .header .block-pwa-add-to-home-screen:has(.hidden) {
  display: none;
}
#page .header .block-pwa-add-to-home-screen .pwa-a2hs-active button {
  background-color: #121a38;
  border: 1px solid #121a38;
  color: white;
  border-radius: 32px;
  font-size: 14px;
  padding: 8px 16px;
}
#page .site-footer {
  background-color: #121a38;
}

.node--type-landing-page .banner-container .image-container {
  height: 400px;
  background-position: center !important;
  background-size: cover !important;
}
.node--type-landing-page .banner-container .image-container .text-container {
  padding: 50px;
}
.node--type-landing-page .banner-container .image-container .text-container .title {
  font-size: 62px;
  color: white;
  padding: 60px;
}
@media only screen and (max-width: 990px) {
  .node--type-landing-page .banner-container .image-container .text-container .title {
    text-align: center;
    padding: 60px 0px;
    font-size: 40px;
  }
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta {
  display: flex;
  justify-content: space-around;
  margin: 30px 0px;
  flex-wrap: wrap;
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item {
  width: 25%;
}
@media only screen and (max-width: 990px) {
  .node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item {
    width: 50%;
  }
}
@media only screen and (max-width: 690px) {
  .node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item {
    width: 100%;
  }
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item .cta-card .image-card {
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  width: 325px;
  height: 200px;
  padding: 0px;
}
@media only screen and (max-width: 690px) {
  .node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item .cta-card .image-card {
    width: 100%;
  }
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item .cta-card .image-card a {
  background: linear-gradient(45deg, #121a38, transparent);
  height: 100%;
  width: 100%;
  padding: 19px 32px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 28px;
  color: white;
  position: relative;
  cursor: pointer;
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item .cta-card .image-card a:hover {
  color: #cccccc;
}
.node--type-landing-page .node__content .paragraph--type--cta-block .field--name-field-cta > .field__item .cta-card .image-card a.clicked {
  opacity: 1;
}

.node--type-ar-object .ar-object-title {
  font-size: 62px;
  color: white;
  padding: 60px;
}
.node--type-ar-object .node__content .poster-image {
  height: 800px;
  width: auto;
}
.node--type-ar-object .node__content model-viewer {
  height: 800px;
  width: auto;
}
.node--type-ar-object .node__content model-viewer button {
  font-family: "calibri";
}
.node--type-ar-object .node__content model-viewer button.ar-button {
  background-color: #f8faff;
  border-radius: 4px;
  border: none;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
}
.node--type-ar-object .node__content model-viewer button.hotspot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: none;
  background-color: #5876aa;
  box-sizing: border-box;
  color: #fff;
}
.node--type-ar-object .node__content model-viewer button.hotspot .annotation {
  background-color: #888888;
  position: absolute;
  transform: translate(10px, 10px);
  border-radius: 10px;
  padding: 10px;
}
.node--type-ar-object .node__content model-viewer button.hotspot[data-visibility-attribute=red] {
  background-color: red;
}
.node--type-ar-object .node__content model-viewer button.hotspot[data-visibility-attribute=invisible] {
  --min-hotspot-opacity: 0;
}
.node--type-ar-object .node__content model-viewer button.hotspot.hotspot-dot {
  border: 1px solid #5876aa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  background: #fff;
  --min-hotspot-opacity: 0;
}
.node--type-ar-object .node__content model-viewer button.hotspot.hotspot-dot.show {
  --min-hotspot-opacity: 1;
}
.node--type-ar-object .node__content model-viewer button.hotspot.hotspot-dim {
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 700;
  max-width: 128px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  width: max-content;
  height: max-content;
  transform: translate3d(-50%, -50%, 0);
  --min-hotspot-opacity: 0;
}
.node--type-ar-object .node__content model-viewer button.hotspot.hotspot-dim.show {
  --min-hotspot-opacity: 1;
}
.node--type-ar-object .node__content model-viewer .slider {
  text-align: center;
  overflow: hidden;
  position: absolute;
  bottom: 16px;
  width: 100%;
}
.node--type-ar-object .node__content model-viewer .slider .slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.node--type-ar-object .node__content model-viewer .slider .slides .slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  border-radius: 10px;
  border: none;
  display: flex;
  border: 2px solid #121a38;
  background-color: #fff;
}
.node--type-ar-object .node__content model-viewer .slider .slides .slide.selected {
  border: 2px solid #5876aa;
  background-color: #5876aa;
  color: #fff;
  font-weight: bold;
}
.node--type-ar-object .node__content model-viewer .slider .slides .slide span {
  margin: auto;
}
.node--type-ar-object .node__content model-viewer .color-controls {
  margin: 10px 0 0 10px;
}
.node--type-ar-object .node__content model-viewer .color-controls .color {
  border-radius: 5px;
  border: 2px solid #121a38;
  background-color: #fff;
}
.node--type-ar-object .node__content model-viewer .color-controls .color.selected {
  border: 2px solid #5876aa;
  background-color: #5876aa;
  color: #fff;
  font-weight: bold;
}
.node--type-ar-object .node__content model-viewer .variants-controls {
  margin: 10px 0 0 10px;
}
.node--type-ar-object .node__content model-viewer .variants-controls > div {
  display: flex;
}
.node--type-ar-object .node__content model-viewer .variants-controls > div h4 {
  margin: auto;
  margin-right: 10px;
}
.node--type-ar-object .node__content model-viewer .variants-controls > div select {
  border-radius: 5px;
  background: #5876aa;
  color: white;
}
.node--type-ar-object .node__content model-viewer .variants-controls > div select option {
  color: #121a38;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .node--type-ar-object .node__content model-viewer {
    flex-direction: column;
  }
  .node--type-ar-object .node__content model-viewer .variants-controls > div h4 {
    margin-left: 0px;
  }
  .node--type-ar-object .node__content model-viewer .color-controls {
    display: flex;
    flex-direction: column;
    width: 100px;
  }
  .node--type-ar-object .node__content model-viewer .color-controls .color {
    margin-bottom: 3px;
  }
}

.view-ar-objects .view-header .text-container {
  padding: 50px;
}
.view-ar-objects .view-header .text-container .title {
  font-size: 62px;
  color: #333333;
  padding: 60px;
}
@media only screen and (max-width: 990px) {
  .view-ar-objects .view-header .text-container .title {
    text-align: center;
    padding: 60px 0px;
    font-size: 40px;
  }
}
.view-ar-objects .view-content .node--type-ar-object > a {
  display: flex;
  flex-direction: column;
  padding: 30px;
  text-decoration: none;
  text-align: center;
}
.view-ar-objects .view-content .node--type-ar-object > a .node__content {
  border: 1px solid #4f575e;
  border-radius: 5px;
  height: 200px;
}
.view-ar-objects .view-content .node--type-ar-object > a .node__content .field--name-field-poster .field--name-field-media-image {
  float: none;
  margin: 0px;
}
.view-ar-objects .view-content .node--type-ar-object > a .node__content .field--name-field-poster .field--name-field-media-image img {
  margin: auto;
  display: block;
  width: auto;
  height: 200px;
}
.view-ar-objects .view-content .node--type-ar-object > a:hover span {
  color: #121a38;
}

.marker-based-ar {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  overflow: hidden;
}

body {
  margin: 0px !important;
}
body video {
  right: 0px;
  left: unset !important;
  height: 100vh !important;
  max-width: unset;
}
body .main-content__container {
  padding: 0px;
}
body .main-content__container .grid-full {
  display: block;
}
