/*-------------------------------------------------------------------------------------------------*/
/* PARTIALS ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* PARTIALS ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FONTS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.material-icons {
  color: white;
  font-family: "Material-Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material-Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIconsOutlined-Regular.otf") format("truetype");
}
@font-face {
  font-family: "HeadlineFont-Regular";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HeadlineFont-Italic";
  src: url("../fonts/Archivo-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Black";
  src: url("../fonts/Rufina-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Bold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-ExtraBold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Italic";
  src: url("../fonts/Rufina-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Light";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Medium";
  src: url("../fonts/Rufina-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Regular";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*-------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* THEME ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* GAME MENUS -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* HERO SCROLL ARROW ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* BUTTONS ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TEXT -------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* MISC -------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TYPOGRAPHY SETUP -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FORM AND INPUT ---------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FEATURES ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.feature {
  width: 100%;
  height: 100vh;
}
.feature[class*=f-] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature.f-01 {
  background-image: url("../img/feature_01.jpg");
}
.feature.f-02 {
  background-image: url("../img/feature_02.jpg");
}
.feature.f-03 {
  background-image: url("../img/feature_03.jpg");
}
.feature.f-04 {
  background-image: url("../img/feature_04.jpg");
}
.feature .feature-container {
  max-width: 650px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  padding: 25px;
  margin-left: auto;
  margin-right: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: perspective(1500px) rotateY(355deg);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transition: transform 1s ease 0s;
}
@media screen and (max-width: 850px) {
  .feature .feature-container {
    transform: none;
    transition: unset;
  }
}
.feature .feature-container .feature-border {
  border: 1px solid #f5f5dd;
  padding: 15px;
  padding: 25px;
}
.feature .feature-container .feature-border button {
  border: 1px solid transparent;
  height: 45px;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(180deg, #106165 0%, #072d2f 100%);
  transition: all 0.2s ease;
  cursor: pointer;
  max-width: 200px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0px;
}
.feature .feature-container .feature-border button:hover {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  box-shadow: inset 0 0 0 25px #072d2f;
}
.feature .feature-container .feature-border button.hollow {
  background: transparent;
}
.feature .feature-container .feature-border button.hollow:hover {
  border: 1px solid #fffff6;
  box-shadow: inset 0 0 0 25px transparent;
}
.feature .feature-container:hover {
  transform: perspective(3000px) rotateY(359deg);
}
@media screen and (max-width: 850px) {
  .feature .feature-container:hover {
    transform: none;
  }
}

/*-------------------------------------------------------------------------------------------------*/
/* SECTIONS ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.headline-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 250px;
}
.headline-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(circle, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.headline-01 {
  background-image: url("../img/CS_Loading__0005_MainHall_03.jpg");
}

.s-01 {
  background-image: url("../img/chronos_01.jpg");
}

.s-02 {
  background-image: url("../img/feature_02.jpg");
}

.s-03 {
  background-image: url("../img/feature_03.jpg");
}

.s-04 {
  background-image: url("../img/feature_04.jpg");
}

.s-05 {
  background-image: url("../img/feature_05.jpg");
}

.bg-support-01 {
  background: url("../img/BG01_Support_KeyArt.jpg");
  background-size: cover;
  background-position: 100%;
}

.section {
  width: 100%;
  height: 100vh;
}
.section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.73));
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.63) 5.52%, rgba(29, 16, 30, 0.74) 40.11%, rgba(13, 9, 17, 0.8) 71.43%, rgba(0, 0, 0, 0.85) 80.55%, #000000 100%);
}
.section[class*=s-] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section.s-01 {
  background-image: url("../img/chronos_01.jpg");
}
.section.s-02 {
  background-image: url("../img/feature_02.jpg");
}
.section.s-03 {
  background-image: url("../img/feature_03.jpg");
}
.section.s-04 {
  background-image: url("../img/feature_04.jpg");
}
.section .section-container {
  max-width: 650px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  padding: 25px;
  margin-left: auto;
  margin-right: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: perspective(1500px) rotateY(355deg);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transition: transform 1s ease 0s;
}
@media screen and (max-width: 850px) {
  .section .section-container {
    transform: none;
    transition: unset;
  }
}
.section .section-container .section-border {
  border: 1px solid #f5f5dd;
  padding: 15px;
  padding: 25px;
}
.section .section-container .section-border button {
  border: 1px solid transparent;
  height: 45px;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(180deg, #106165 0%, #072d2f 100%);
  transition: all 0.2s ease;
  cursor: pointer;
  max-width: 200px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0px;
}
.section .section-container .section-border button:hover {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  box-shadow: inset 0 0 0 25px #072d2f;
}
.section .section-container .section-border button.hollow {
  background: transparent;
}
.section .section-container .section-border button.hollow:hover {
  border: 1px solid #fffff6;
  box-shadow: inset 0 0 0 25px transparent;
}
.section .section-container:hover {
  transform: perspective(3000px) rotateY(359deg);
}
@media screen and (max-width: 850px) {
  .section .section-container:hover {
    transform: none;
  }
}

/*-------------------------------------------------------------------------------------------------*/
/* HERO -------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* PARTIALS ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FONTS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.material-icons {
  color: white;
  font-family: "Material-Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material-Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIconsOutlined-Regular.otf") format("truetype");
}
@font-face {
  font-family: "HeadlineFont-Regular";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HeadlineFont-Italic";
  src: url("../fonts/Archivo-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Black";
  src: url("../fonts/Rufina-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Bold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-ExtraBold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Italic";
  src: url("../fonts/Rufina-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Light";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Medium";
  src: url("../fonts/Rufina-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Regular";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*-------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* THEME ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* GAME MENUS -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* HERO SCROLL ARROW ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* BUTTONS ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TEXT -------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* MISC -------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TYPOGRAPHY SETUP -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FORM AND INPUT ---------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES */
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYOGRAPHY --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYPOGRAPHY */
.hero {
  width: 100%;
  height: 100vh;
  width: 80%;
  height: 100%;
  background-size: cover;
  color: white;
  padding: 20px;
}
.hero h1:before {
  display: none;
}
.hero h1:after {
  display: none;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(circle, rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.hero[class*=h-] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero.h-01 {
  z-index: 1;
}
.hero.h-02 {
  background-image: url("../img/feature_02.jpg");
}
.hero.h-03 {
  background-image: url("../img/feature_03.jpg");
}
.hero.h-04 {
  background-image: url("../img/feature_04.jpg");
}
.hero .hero-scroll {
  position: absolute;
  bottom: 10%;
  z-index: 9999;
}
@media only screen and (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .hero .hero-scroll {
    right: 10%;
  }
}
.hero .hero-scroll p {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  margin-left: -15px;
}
.hero .hero-scroll .hero-scroll-link {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  line-height: inherit;
  position: absolute;
  z-index: 99999;
  bottom: 0;
}
.hero .hero-scroll .arrows {
  position: relative;
  /**/
  position: absolute;
  top: 50%;
  left: 50%;
  /**/
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}
.hero .hero-scroll .arrows:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 13.3333333333px solid rgba(255, 255, 255, 0.7);
  border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0.7);
  transform: translate(13.3333333333px, 53.3333333333px) rotate(-45deg);
  animation: arrows 3s linear infinite;
}
.hero .hero-scroll .arrows:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 13.3333333333px solid rgba(255, 255, 255, 0.7);
  border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0.7);
  transform: translate(26.6666666667px, 0px) rotate(-45deg);
  animation: arrows 3s linear infinite -1.5s;
}
.hero .hero-container {
  z-index: 9999;
  width: 100%;
  text-align: center;
  max-width: 800px;
}
.hero .hero-container p {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 0.8363636364rem + 1.8181818182vw, 2rem);
  line-height: 1.5rem;
}
.hero .hero-container h1 {
  margin-bottom: 0;
  white-space: pre;
  font-size: 2.1rem;
  font-size: clamp(2.1rem, 0.3272727273rem + 8.8636363636vw, 6rem);
}
@media screen and (max-width: 850px) {
  .hero .hero-container {
    transform: none;
    transition: unset;
  }
}
.hero .hero-container .hero-border {
  border: 1px solid #f5f5dd;
  padding: 15px;
  padding: 25px;
}
.hero .hero-container button {
  border: 1px solid transparent;
  height: 45px;
  width: 100%;
  background-color: #11787E;
  color: #F2F2F2;
  transition: all 0.2s ease;
  cursor: pointer;
  max-width: 200px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.hero .hero-container button:hover {
  color: #F2F2F2;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-right: 5px solid #11787E;
  box-shadow: inset 0 0 0 25px #232529;
}
.hero .hero-container button.hollow {
  background: transparent;
  border: 1px solid #fffff6;
}
.hero .hero-container button.hollow:hover {
  border: 1px solid #fffff6;
  box-shadow: inset 0 0 0 25px transparent;
}

/*-------------------------------------------------------------------------------------------------*/
/* MODAL ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
modal-component {
  position: absolute;
  z-index: 99999;
}

.wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 1;
}

.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.m {
  overflow: hidden;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal {
  position: fixed;
  padding: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 9999;
  transition: background 0.5s ease 0.06s;
}
.modal.account .modalHeaderContainer, .modal.updatePassword .modalHeaderContainer, .modal.updateProfilePic .modalHeaderContainer, .modal.edit .modalHeaderContainer, .modal.create .modalHeaderContainer, .modal.ccpayment .modalHeaderContainer, .modal.updatepayment .modalHeaderContainer, .modal.downgrade .modalHeaderContainer, .modal.managesubscription .modalHeaderContainer {
  background: linear-gradient(180deg, #005DA0 20%, #002240 300%);
}
.modal.delete .modalHeaderContainer, .modal.delete .modalActionButton {
  background-color: #F4083E;
}
.modal.delete .modalActionButton {
  background-color: transparent;
  border: 1px solid #F4083E;
  color: #F4083E;
}
.modal.delete .modalActionButton:hover {
  color: #fff;
  background-color: #F4083E;
}
.modal.delete .modalBody .flex-column, .modal.edit .modalBody .flex-column, .modal.create .modalBody .flex-column {
  flex-flow: row;
  justify-content: space-evenly;
}
@media screen and (max-width: 850px) {
  .modal.delete .modalBody .flex-column, .modal.edit .modalBody .flex-column, .modal.create .modalBody .flex-column {
    flex-flow: column;
  }
}
.modal.showdetails .modalBody .flex-column-override {
  margin-left: 20px;
  justify-content: center;
  flex-flow: column;
}
.modal.delete .modalBody .flex-column-override {
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.modal.success .modalBody .flex-column h4 {
  margin-top: 20px;
}
.modal.success .modalBody .flex-column {
  justify-content: center;
  margin-bottom: 20px;
}
.modal.account .modalBody .userDetails p {
  margin-top: unset;
}
.modal.account .modalBody #updateUserPic {
  margin-top: 10px;
}
.modal.account .modalBody .imgframe {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  display: flex;
  flex-flow: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .modal.account .modalBody .imgframe {
    width: 100px;
    height: 100px;
  }
}
.modal.account .modalBody .imgframe img {
  max-width: 250px;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: unset !important;
     object-fit: unset !important;
}
@media screen and (max-width: 850px) {
  .modal.account .modalBody .imgframe img {
    padding: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.modalContainer {
  max-width: 800px;
  width: 100%;
  margin: auto;
  background-color: transparent;
  border-radius: 8px;
  z-index: 11;
}
.modalContainer ::-webkit-scrollbar {
  width: 15px;
}
.modalContainer ::-webkit-scrollbar-track {
  background: linear-gradient(0deg, rgb(52, 0, 81) 0%, #9a9a9a 100%);
}
.modalContainer ::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  border: 2px solid #1b1d1f;
  box-shadow: 0px 0px 0px 100000vh #1b1d1f;
}
.modalContainer ::-webkit-scrollbar-track {
  margin-top: 10px;
  margin-bottom: 10px;
}
.modalContainer.glass {
  opacity: 1;
  -webkit-backdrop-filter: brightness(63%);
  backdrop-filter: brightness(63%);
  color: #7b7c80;
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex !important;
  flex-flow: column;
}
.modalContainer.glass .modalBody {
  background: transparent;
  border-bottom: unset;
}
.modalContainer.glass .modalBody h1, .modalContainer.glass .modalBody h2, .modalContainer.glass .modalBody h3, .modalContainer.glass .modalBody h4, .modalContainer.glass .modalBody h5, .modalContainer.glass .modalBody h6 {
  margin-bottom: unset;
  color: white;
}
.modalContainer.glass .modalBody p {
  margin: unset;
  color: white;
}
.modalContainer.glass .modalBody li {
  color: white;
}
.modalContainer.glass .modalButtons {
  background: transparent;
}
.modalContainer.glass button.modalClose {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  border-radius: 50px;
}
.modalContainer.glass button.modalClose:hover {
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
}
.modalContainer.fullSize {
  max-width: 100%;
  height: 100%;
}

.modalHeaderContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 1rem;
  background-color: transparent;
  border-radius: 8px 8px 0 0;
  color: #fff;
}
.modalHeaderContainer h1, .modalHeaderContainer h2, .modalHeaderContainer h3, .modalHeaderContainer h4, .modalHeaderContainer h5, .modalHeaderContainer h6 {
  margin-bottom: unset;
}
.modalHeaderContainer p {
  margin: unset;
}

.modalHeaderContainer > .modalClose, .modalHeaderContainer > .modalActionButton {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  text-align: right;
  padding: inherit;
  text-decoration: none;
  color: #fff;
}

.modalHeaderContainer > .modalClose:hover, .modalHeaderContainer > .modalActionButton:hover {
  cursor: pointer;
}

.toggle {
  display: none;
}

.showdetails .modalContainer > .modalClose {
  position: absolute;
  z-index: 9;
  right: 0;
  padding: 15px;
}
.showdetails .modalBody {
  padding: 0;
  border-radius: 5px 5px 0 0;
  overflow-y: scroll;
}
.showdetails .modalBody .imgframe {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding: 0;
  max-height: 300px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
}
.showdetails .modalBody .imgframe p {
  color: #fff;
}
.showdetails .modalBody .saganDetails {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
.showdetails .modalBody .saganDetails p {
  line-height: 0.5rem;
  font-size: 16px;
}

.modalBody {
  background: #e1e1e2;
  position: relative;
  border: none;
  padding: 15px;
  display: flex;
  border-bottom: 1px solid #afafaf;
  flex-flow: column;
  overflow-y: scroll;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  /* MODAL FORM */
  /* END MODAL FORM */
}
.modalBody .imgframe {
  padding: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}
.modalBody img.infoicon {
  width: 20px;
  height: auto;
}
.modalBody form {
  padding: 10px;
  flex: 1;
}
.modalBody h1,
.modalBody h2,
.modalBody h3,
.modalBody h4,
.modalBody h5 {
  line-height: 1;
  color: #000000;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.modalBody ul {
  list-style-type: none;
}
.modalBody li {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
}
.modalBody #updatePasswordForm input {
  padding: 15px 15px 15px 50px;
}
.modalBody #updatePasswordForm [class*=-icon]:before {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm ::-moz-placeholder {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm ::placeholder {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm :-ms-input-placeholder {
  color: #454545;
}
.modalBody #updatePasswordForm ::-ms-input-placeholder {
  color: #454545;
}
.modalBody textarea {
  resize: none;
}
.modalBody input, .modalBody textarea, .modalBody select {
  background-color: #ffffff;
  border: 1px solid #454545;
  padding: 15px 15px 15px 15px;
  margin: 10px 0 0 0;
  width: 100%;
  color: #454545;
}
.modalBody img {
  max-width: 250px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
@media screen and (max-width: 850px) {
  .modalBody img {
    width: 100%;
    max-width: 850px;
    max-height: 250px;
  }
}
.modalBody .input-group:not(.checkbox) {
  height: unset;
}

.modalBody p {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.6181818182rem + 0.9090909091vw, 1.2rem);
}

.modalBody h1 {
  text-shadow: none;
}

.modalBody h4 {
  color: black;
}

.modalBody label {
  font-size: 0.5rem;
  font-weight: 200;
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  color: #454545;
}

.modalBody form label {
  font-size: unset;
}

.modalBody #socialCopyBtn {
  font-weight: bold;
  flex: 45%;
  padding: 0;
  margin: 0;
}

.modalBody h2 {
  color: grey;
  text-shadow: none;
  font-size: 1.5rem;
}

.modalBody p, .modalBody p a {
  color: #333;
}

.modalBody p a, .modalBody p a:hover {
  text-decoration: underline;
}

.modalButtons {
  text-align: right;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #d8d8d8;
  border-radius: 0 0 8px 8px;
}
.modalButtons button {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  min-width: 100px;
  max-width: 200px;
  width: 100%;
  border: none;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
.modalButtons button:hover {
  cursor: pointer;
}

button.modalClose {
  color: #333;
  border: 1px solid #333;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  border-radius: 50px;
}
button.modalClose:hover {
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
}

button.modalActionButton {
  color: #ff9301;
  border: 1px solid #ff9301;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
button.modalActionButton:disabled, button.modalActionButton[disabled] {
  border: 1px solid #454545;
  background-color: transparent;
  color: #454545;
}
button.modalActionButton:disabled:hover, button.modalActionButton[disabled]:hover {
  cursor: not-allowed;
  background-color: #454545;
  color: #fff;
}
button.modalActionButton:hover {
  background-color: #ff9301;
  color: #fff;
}

#modalMessage {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  right: 0;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0.9);
}
#modalMessage p {
  align-self: center;
  color: #fff;
}

.modalContainer.pushdown {
  transform: scale(0.98) translateY(-20px);
  transition: all 0.5s ease 0s;
  box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  opacity: 0;
}

.modalContainer.pushdown.show {
  box-shadow: 0px -20px 80px 0px rgba(30, 30, 30, 0.4);
  opacity: 1;
}

.modalContainer.show {
  transform: scale(1);
  transition: all 0.3s ease 0s;
}

.helpModal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.helpModal h4 {
  line-height: inherit;
  margin-top: 0.5rem;
}

.help {
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.help p {
  color: #454545;
  line-height: initial;
  margin-bottom: initial;
}

/*-------------------------------------------------------------------------------------------------*/
/* BUTTONS ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.button {
  border: 1px solid transparent;
  height: 45px;
  width: 100%;
  background-color: #11787E;
  color: #F2F2F2;
  transition: all 0.2s ease;
  cursor: pointer;
  max-width: 200px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}
.button:hover {
  color: #F2F2F2;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-right: 5px solid #11787E;
  box-shadow: inset 0 0 0 25px #232529;
}
.button.hollow {
  background: transparent;
}
.button.hollow:hover {
  border: 1px solid #fffff6;
  box-shadow: inset 0 0 0 25px transparent;
}

/*-------------------------------------------------------------------------------------------------*/
/* TRIBOX -----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.tribox-container {
  height: 100%;
  display: flex;
}
.tribox-container h1:before {
  display: none;
}
.tribox-container h1:after {
  display: none;
}
@media (max-width: 780px) {
  .tribox-container {
    height: 100vh;
    flex-flow: column;
  }
}
.tribox-container .f:after {
  margin: unset;
}
.tribox-container p {
  margin-bottom: unset;
}
.tribox-container .tribox-copy {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 20px 30px 20px;
  display: flex;
  border-radius: 8px;
}
.tribox-container .tribox-copy button {
  margin-top: 20px !important;
  margin-left: 0 !important;
}
.tribox-container .tribox-bg-01 {
  background: url("../assets/img/feature_01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.tribox-container .left-container {
  flex: 1 1 0;
}
.tribox-container .right-container {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.tribox-container .half-containers {
  flex: 1;
  overflow: hidden;
}

/*-------------------------------------------------------------------------------------------------*/
/* GALLERY ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* DEFER LOADING */
.deferImg {
  opacity: 0;
}

.deferLoaded {
  opacity: 1;
  animation: fadein 0.5s;
  -moz-animation: fadein 0.5s;
  -webkit-animation: fadein 0.5s;
}

.gallery {
  display: flex;
  padding: 2px;
  transition: 0.3s;
}
.gallery:hover .gallery__image {
  filter: grayscale(1);
}
.gallery__column {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.gallery__row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.gallery__link {
  margin: 0px;
  overflow: hidden;
}
.gallery__link:hover .gallery__image {
  filter: grayscale(0);
}
.gallery__link:hover .gallery__caption {
  opacity: 1;
}
.gallery__thumb {
  position: relative;
}
.gallery__image {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.gallery__image:hover {
  transform: scale(1.1);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: white;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  transition: 0.3s;
}

/*-------------------------------------------------------------------------------------------------*/
/* ANIMATE ELEMENTS -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#parent {
  position: relative;
}

#master {
  border-radius: 100px;
  width: 70px;
  height: 70px;
  border-style: solid;
  border-width: 10px;
  border-color: #573;
}

.animate-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.animate-elements li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate-squares 25s linear infinite;
  bottom: -150px;
}
.animate-elements li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.animate-elements li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.animate-elements li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.animate-elements li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.animate-elements li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.animate-elements li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.animate-elements li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.animate-elements li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.animate-elements li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.animate-elements li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate-squares {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/*-------------------------------------------------------------------------------------------------*/
/* CONTROLS CAROUSEL ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.dynamicSlider {
  width: 100%;
  max-width: 800px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}
.dynamicSlider .slide {
  width: 100%;
  max-width: 800px;
  height: auto;
  position: absolute;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.dynamicSlider .slide .slide-headline {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.dynamicSlider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dynamicSlider .slide video {
  display: flex;
  border-radius: 8px;
  max-width: 800px;
  flex: 1;
}
.dynamicSlider .btn {
  position: absolute;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  z-index: 10px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.dynamicSlider .btn img {
  width: 40px;
  height: 40px;
}
.dynamicSlider .btn :active {
  transform: scale(1.1);
}
.dynamicSlider .btn:hover {
  border: unset;
  background-color: unset;
}
.dynamicSlider .chevron-container {
  width: 100%;
  align-self: center;
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
}
.dynamicSlider .chevron-container .btn-prev {
  top: 45%;
  left: 0%;
}
.dynamicSlider .chevron-container .btn-next {
  top: 45%;
  right: 0%;
}
.dynamicSlider .bullets-container {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  align-self: flex-end;
  flex-direction: row-reverse;
  z-index: 1;
}
.dynamicSlider .bullet {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  color: white;
  border: 2px solid white;
  margin: 5px;
}
.dynamicSlider .bullet.bullet-filled {
  background-color: white;
}
.dynamicSlider .bullet:hover {
  cursor: pointer;
}

/*-------------------------------------------------------------------------------------------------*/
/* CAROUSEL SLIDER --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
carousel-component {
  height: 100%;
  width: 100%;
}

.carouselContainer {
  display: flex;
  justify-content: center;
  z-index: 99999;
  width: 100%;
  margin-bottom: 10px;
  height: 100%;
}
.carouselContainer button {
  margin: 10px;
  height: 35px;
  color: #fffff6;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7090909091rem + 0.4545454545vw, 1rem);
  border: 1px solid #333;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
  border-radius: 50px;
  padding: 0px 20px 0 20px;
}
.carouselContainer button:hover {
  cursor: pointer;
  border: 1px solid #333;
  background-color: #106165;
  border-right: unset;
}

.carouselSlider {
  width: 100%;
  max-width: 800px;
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
}
.carouselSlider .slide {
  width: 100%;
  max-width: 800px;
  height: 500px;
  position: absolute;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.carouselSlider .slide .slide-headline {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.carouselSlider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.carouselSlider .slide video {
  display: flex;
  border-radius: 8px;
  max-width: 800px;
  flex: 1;
}
.carouselSlider .btn {
  position: absolute;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  z-index: 10px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.carouselSlider .btn img {
  width: 40px;
  height: 40px;
}
.carouselSlider .btn :active {
  transform: scale(1.1);
}
.carouselSlider .btn:hover {
  border: unset;
  background-color: unset;
}
.carouselSlider .carousel-chevron-container {
  width: 100%;
  align-self: center;
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
}
.carouselSlider .carousel-chevron-container .btn-prev {
  top: 45%;
  left: 0%;
}
.carouselSlider .carousel-chevron-container .btn-next {
  top: 45%;
  right: 0%;
}
.carouselSlider .carousel-bullets-container {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  align-self: flex-end;
  flex-direction: row-reverse;
  z-index: 1;
}
.carouselSlider .bullet {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  color: white;
  border: 2px solid white;
  margin: 5px;
}
.carouselSlider .bullet.bullet-filled {
  background-color: white;
}
.carouselSlider .bullet:hover {
  cursor: pointer;
}

/*-------------------------------------------------------------------------------------------------*/
/* ALERT BOX --------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#alertContainer {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: center;
  height: auto;
  max-width: 450px;
  width: 100%;
  position: fixed;
  z-index: 99999;
  right: 0;
  bottom: 5%;
}

.alertBox {
  display: flex;
  align-items: center;
  margin: 10px;
  border: 1px solid #bd002c;
  background-color: #dc3545;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  z-index: 9999;
}
.alertBox.ok {
  border: 1px solid #3fbd00;
  background-color: #0a5304;
}
.alertBox.ok .close {
  background-color: #235700;
}
.alertBox.ok .close:hover {
  cursor: pointer;
  background-color: #235700;
}
.alertBox.warning {
  border: 1px solid #d2b700;
  background-color: #948100;
}
.alertBox.warning .close {
  background-color: #bdaa00;
}
.alertBox.warning .close:hover {
  cursor: pointer;
  background-color: #bdaa00;
}
.alertBox.primary {
  border: 1px solid #000dbd;
  background-color: #0d0453;
}
.alertBox.primary .close {
  background-color: #0003bd;
}
.alertBox.primary .close:hover {
  cursor: pointer;
  background-color: #0003bd;
}

.alertBox.show {
  animation: fadein 0.5s forwards;
}

.alertBox p {
  flex: 1;
  margin: 0;
  padding: 0;
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  text-align: initial;
  line-height: normal;
}

.alertBox button {
  width: initial;
  min-width: 35px;
  background-color: #bd002c;
  font-weight: bold;
}

.alertBox button.close {
  color: white;
  border: 1px solid #ffffff !important;
  border-radius: 5px;
  padding: 5px;
}
.alertBox button.close:hover {
  cursor: pointer;
  background-color: #bd002c;
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/*-------------------------------------------------------------------------------------------------*/
/* COOKIE ALERT -----------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.cookie-alert {
  position: fixed;
  display: flex;
  flex-flow: column;
  align-self: center;
  justify-content: center;
  background: #454545;
  border-radius: 8px;
  z-index: 9999;
  padding: 20px 20px 10px 20px;
  max-width: 550px;
  margin-bottom: 10px;
  margin-left: 100px;
  margin-right: 10px;
  bottom: 0;
}
@media screen and (max-width: 900px) {
  .cookie-alert {
    margin-left: initial;
    margin-right: initial;
    margin-bottom: initial;
  }
}
.cookie-alert h1 {
  color: #fffff6;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
}
.cookie-alert p {
  color: #fffff6;
  margin-bottom: initial;
  line-height: 1.2rem;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7090909091rem + 0.4545454545vw, 1rem);
}
.cookie-alert a {
  color: #fffff6;
  text-decoration: underline;
}
.cookie-alert button {
  margin: 10px 10px 10px 0;
  height: 35px;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7090909091rem + 0.4545454545vw, 1rem);
}

/*-------------------------------------------------------------------------------------------------*/
/* CONTROLS ALERT ---------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.controls-alert, .welcome-alert {
  position: fixed;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  width: 100%;
  margin-bottom: 10px;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .controls-alert, .welcome-alert {
    margin-left: initial;
    margin-right: initial;
    margin-bottom: initial;
  }
}
.controls-alert h1, .welcome-alert h1 {
  color: #fffff6;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
}
.controls-alert p, .welcome-alert p {
  color: #fffff6;
  margin-bottom: initial;
  line-height: 1.2rem;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7090909091rem + 0.4545454545vw, 1rem);
}
.controls-alert p.c, .welcome-alert p.c {
  text-align: center;
}
.controls-alert a, .welcome-alert a {
  color: #fffff6;
  text-decoration: underline;
  cursor: pointer;
}
.controls-alert button, .welcome-alert button {
  margin: 10px;
  height: 35px;
  color: #fffff6;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7090909091rem + 0.4545454545vw, 1rem);
  border: 1px solid #333;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
  border-radius: 50px;
  padding: 0px 20px 0 20px;
}
.controls-alert button:hover, .welcome-alert button:hover {
  cursor: pointer;
  border: 1px solid #333;
  background-color: #106165;
  border-right: unset;
}

/*-------------------------------------------------------------------------------------------------*/
/* NAVIGATION -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
nav {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 1px 1px rgba(0, 3, 64, 0.35);
  background: #1b1d1f;
  width: 90px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  box-shadow: 0px 0px 10px 1px #000000;
}
nav:hover {
  width: 200px;
  padding: 10px;
}
nav:hover button div:last-of-type {
  width: 100%;
  opacity: 1;
  text-align: right;
}
nav:hover button {
  cursor: pointer;
}
nav:hover button div:last-of-type {
  transition: all 0.2s ease-in-out;
  transform: perspective(1500px) rotateY(360deg);
}
nav button {
  display: flex;
  align-items: center;
  height: 50px;
  background-color: #1b1d1f;
  color: #F2F2F2;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  margin: 10px 0 10px 5px;
  transition: all ease-in-out 150ms;
  /* NAV ELEMENTS */
  /* NAV ELEMENTS */
}
nav button:hover {
  border-right: 5px solid #11787E;
  border-radius: 8px;
  background: #232529;
}
nav button .navicon {
  width: 40px;
  opacity: 1;
  margin: 10px;
  display: inline-block;
  height: 40px;
}
nav button .navicon img {
  width: 40px;
  height: 40px;
}
nav button div:last-of-type {
  width: 0;
  opacity: 0;
  margin-right: 10px;
  display: inline-table;
  transition: all 0.2s ease-in-out;
  transform: perspective(1500px) rotateY(360deg);
}
nav#nav-vertical {
  flex-flow: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}
nav#nav-vertical .nav-buttons {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  flex-flow: column;
  box-sizing: border-box;
}
nav#nav-horizontal {
  width: 100%;
  height: 70px;
}
nav .main-nav {
  width: 0;
  height: auto;
}
nav:last-of-type {
  width: 0;
  height: 0;
  z-index: 999;
}
nav:last-of-type .nav-drawer {
  margin-left: 90px;
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -9999;
  background: #141516;
  transition: all 0.6s ease-in-out;
}
nav:last-of-type .nav-drawer.show {
  z-index: 999;
  left: 0;
  width: calc(100% - 90px);
  height: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
  scrollbar-width: none;
  animation: slideUp 0.5s forwards ease-in-out;
}
nav:last-of-type .nav-drawer.show::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}
nav:last-of-type .nav-drawer > .m-40 {
  margin: unset;
}
@media screen and (max-width: 850px) {
  nav button {
    text-align: end;
    border-right: none;
    border-radius: 0px;
    background: unset;
  }
}
nav .nav-social {
  display: flex;
  flex-flow: column;
  justify-content: end;
  padding: 20px;
}
nav .nav-social img {
  min-width: 30px;
  max-width: 30px;
}
nav .nav-social img:hover {
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  nav {
    opacity: 0;
    z-index: -9999;
  }
  nav #mobilemenu {
    opacity: 1;
    z-index: 0;
  }
}

/* MOBILE PANCAKE */
a.mobile {
  display: none;
  font-size: 40px;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  height: 45px;
  position: relative;
  width: 45px;
}
a.mobile span {
  top: 50%;
  margin: -0.0625em 0 0;
  font-size: inherit;
}
a.mobile span, a.mobile span:before, a.mobile span:after {
  border-radius: 0.1em;
  content: "";
  background: white;
  display: block;
  height: 0.125em;
  left: 50%;
  margin-left: -0.375em;
  position: absolute;
  transition: 0.3s all;
  width: 0.75em;
}
a.mobile span:before {
  transform: translateY(-0.25em);
}
a.mobile span:after {
  transform: translateY(0.25em);
}
a.mobile.active span {
  animation: transition-menu-middle 0.25s 1 forwards;
}
a.mobile.active span:before {
  animation: transition-menu-top 0.25s 1 forwards;
}
a.mobile.active span:after {
  animation: transition-menu-bottom 0.25s 1 forwards;
}
@media screen and (max-width: 850px) {
  a.mobile {
    display: flex;
  }
}
@keyframes transition-menu-top {
  50% {
    transform: translateX(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
.logo, .mobileLogo {
  position: fixed;
  display: block;
  height: 80px;
  width: 80px;
  background: url(../img/logo.svg), #1b1d1f;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 99999;
  align-self: center;
  box-sizing: border-box;
  align-self: baseline;
  margin-left: 5px;
  margin-top: 5px;
  border: 5px solid #1b1d1f;
}
.logo:hover, .mobileLogo:hover {
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .logo, .mobileLogo {
    display: none;
  }
  .logo:hover, .mobileLogo:hover {
    cursor: pointer;
  }
}

.mobileLogo {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobileLogo {
    display: block;
  }
  .mobileLogo:hover {
    cursor: pointer;
  }
}

#useraccount {
  display: flex;
  position: relative;
  align-items: center;
}
#useraccount img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  padding: 2px;
}
#useraccount img:hover {
  cursor: pointer;
}
#useraccount p {
  font-size: 13px;
}
@media screen and (max-width: 1065px) {
  #useraccount p {
    display: none;
  }
}

#nav-drawer-close {
  padding: 10px;
}

/*-------------------------------------------------------------------------------------------------*/
/* NAV MOBILE -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TOGGLE MOBILE NAV */
.showNav {
  opacity: 1;
  width: 200px;
  z-index: 9999;
}
@media only screen and (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .showNav {
    width: 350px;
  }
}
@media screen and (max-width: 850px) {
  .showNav button div:last-of-type {
    width: 100%;
    opacity: 1;
    display: inline-table;
    transition: all 0.2s ease-in-out;
    transform: perspective(1500px) rotateY(360deg);
  }
}

/*-------------------------------------------------------------------------------------------------*/
/* USER PROMPTS -----------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.userPrompt {
  opacity: 1;
  -webkit-backdrop-filter: brightness(63%);
  backdrop-filter: brightness(63%);
  color: #7b7c80;
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
  border-radius: 8px;
  padding: 1.25rem;
}

/*-------------------------------------------------------------------------------------------------*/
/* FORMS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYOGRAPHY --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYPOGRAPHY */
form {
  /* NEW FORM */
}
form .input-buttons {
  margin-top: 40px;
}
form input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
form input::-webkit-caps-lock-indicator {
  visibility: hidden;
  display: none !important;
}
form input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
}
form input::-ms-clear {
  visibility: hidden;
  display: none !important;
}
form input::-ms-reveal {
  visibility: hidden;
  display: none !important;
}
form input#password[type=password] + .show-toggle:before {
  content: "\e8f4";
  color: white !important;
}
form label {
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
}
form button:hover {
  border-radius: 8px;
  cursor: pointer;
}
form input, form textarea, form select {
  box-sizing: border-box;
  background: transparent;
  border-radius: 5px;
  color: #000000;
  border: 1px solid white;
  padding: 15px 15px 15px 50px;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  display: block;
  font-size: 0.9rem;
  font-size: clamp(0.9rem, 0.7636363636rem + 0.6818181818vw, 1.2rem);
  background-color: #fffff6;
}
form input, form textarea {
  width: 100%;
}
form ::-moz-placeholder {
  color: #000000;
  opacity: 1;
}
form ::placeholder {
  color: #000000;
  opacity: 1;
}
form :-ms-input-placeholder {
  color: #000000;
}
form ::-ms-input-placeholder {
  color: #000000;
}
form .headline {
  margin-bottom: 1rem;
}
form .input-group:not(.checkbox) {
  position: relative;
  display: block;
  height: 75px;
  margin-bottom: 1rem;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
form .input-group.checkbox {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: revert;
}
form .input-group.checkbox input {
  width: 40px;
  height: 40px;
  margin: 0 20px 0 0;
}
form .round {
  position: relative;
}
form .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}
form .round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}
form .round input[type=checkbox] {
  visibility: hidden;
}
form .round input[type=checkbox]:checked + label {
  background-color: #1DB954;
  border-color: #009133;
}
form .round input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .person-icon:before {
  content: "\e8a6";
}
form .email-icon:before {
  content: "\e0be";
}
form .password-icon:before {
  content: "\e897";
}
form .message-icon:before {
  content: "\e0c9";
}
form .show-toggle:before {
  content: "\e897";
  color: red !important;
}
form .hide-toggle:before {
  content: "\e0be";
  color: green !important;
}
form [class*=-icon]:before {
  position: absolute;
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: #000000;
  top: 15px;
  left: 15px;
  z-index: 1px;
}
form [class*=-toggle]:before {
  position: absolute;
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: red;
  top: 15px;
  right: 45px;
}
form input#password[type=text] + .show-toggle:before {
  content: "\e8f5";
  color: white !important;
}
form input#password[type=password] + .show-toggle:before {
  content: "\e8f4";
  color: white !important;
}
form button {
  background-color: #1b1d1f;
  color: #F2F2F2;
  border: none;
  width: 50%;
  align-self: center;
  margin: 50px 0 50px 0;
  max-width: 250px;
  width: 100%;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  flex-grow: 1;
  margin: 10px;
  width: 50%;
  padding: 10px;
  transition: all ease-in-out 150ms;
}
form button:hover {
  border-right: 5px solid #11787E;
  border-radius: 0px;
  background: #232529;
  cursor: pointer;
}
form button:disabled, form button[disabled] {
  border: none;
  background-color: #1b1d1f;
  color: #666666;
  cursor: not-allowed;
}
form .clearField > [data-clear-input] {
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  display: none;
  position: absolute;
  right: 0;
  height: 100%;
  font-weight: bold;
  padding: 0 0.2em;
  cursor: pointer;
}
form .clearField > [data-clear-input]:before {
  content: "\e5cd";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}
form .clearField > input::-ms-clear {
  display: none;
}
form .showPassword > [data-show-input] {
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  display: none;
  position: absolute;
  right: 0;
  height: 100%;
  font-weight: bold;
  padding: 0 0.2em;
  cursor: pointer;
}
form .showPassword > [data-show-input]:before {
  content: "\e8f4";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}
form .showPassword > [data-show-input].hidePassword:before {
  content: "\e8f5";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}
form .showPassword > input::-ms-clear {
  display: none;
}
form .title {
  margin-bottom: 2rem;
}
form .hidden {
  display: none;
}
form .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
  pointer-events: none;
  z-index: 2;
}
form .icon.icon-success {
  fill: #1DB954;
}
form .icon.icon-error {
  fill: #FF0033;
}
form .icon.icon-question {
  fill: #ff0033;
  position: absolute;
  z-index: 0;
  pointer-events: all;
  top: unset;
  right: unset;
}
form .icon.icon-showhide {
  fill: #FFFFFF;
  right: 40px;
}
form .label {
  font-weight: bold;
  display: block;
  color: #F2F2F2;
  margin-bottom: 0.25rem;
}
form .input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  line-height: 1.25;
  background: transparent;
  border-radius: 5px;
  color: #000000;
  border: 1px solid white;
  padding: 15px 15px 15px 50px;
  font-size: 0.9rem;
  font-size: clamp(0.9rem, 0.7636363636rem + 0.6818181818vw, 1.2rem);
  display: block;
  background-color: #fffff6;
}
form .input::-moz-placeholder {
  color: #a0aec0;
}
form .input::placeholder {
  color: #a0aec0;
}
form .input.input-error {
  border: 1px solid #F4083E;
}
form .input.input-error:focus {
  border: 1px solid #F4083E;
}
form .input:focus {
  outline: none;
  border: 1px solid #a0aec0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  background-clip: padding-box;
}
form textarea::-moz-placeholder {
  color: #a0aec0;
}
form textarea::placeholder {
  color: #a0aec0;
}
form .error-message {
  font-size: 0.85rem;
  font-size: clamp(0.85rem, 0.7818181818rem + 0.3409090909vw, 1rem);
  color: red;
}
form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #F2F2F2 inset;
  -webkit-text-fill-color: #000000;
}
form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #F2F2F2 inset;
  -webkit-text-fill-color: #000000;
}
form .slideUp {
  animation: slide-up 0.4s ease;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYOGRAPHY --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLEX MIXINS ------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FONTS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.material-icons {
  color: white;
  font-family: "Material-Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material-Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIconsOutlined-Regular.otf") format("truetype");
}
@font-face {
  font-family: "HeadlineFont-Regular";
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HeadlineFont-Italic";
  src: url("../fonts/Archivo-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Black";
  src: url("../fonts/Rufina-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Bold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-ExtraBold";
  src: url("../fonts/Rufina-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Italic";
  src: url("../fonts/Rufina-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Light";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Medium";
  src: url("../fonts/Rufina-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Regular";
  src: url("../fonts/Rufina-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*-------------------------------------------------------------------------------------------------*/
/* FEATURED EXHIBIT SCROLLER ----------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#featured-exhibits-scroller .scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#featured-exhibits-scroller .scrolling-wrapper-flexbox .cardscroll {
  flex: 0 0 auto;
}
#featured-exhibits-scroller .scrolling-wrapper::-webkit-scrollbar {
  display: none;
}
#featured-exhibits-scroller .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#featured-exhibits-scroller .card {
  flex: 1 1 500px;
  box-sizing: border-box;
  margin: 1rem 0.25em;
}
#featured-exhibits-scroller .card img {
  max-height: 200px;
  height: 100%;
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}
#featured-exhibits-scroller .card-image {
  top: 0;
}
#featured-exhibits-scroller .card-title {
  text-align: center;
  color: #6e6e6e;
}
#featured-exhibits-scroller .card-title sub {
  font-size: 15px;
}
#featured-exhibits-scroller .card-title h3 {
  color: #4c4c4c;
  margin-top: 1.2rem;
}
#featured-exhibits-scroller .card-title p {
  color: #6e6e6e;
}
#featured-exhibits-scroller .cards-centered {
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  #featured-exhibits-scroller .card {
    max-width: calc(30% - 1em);
  }
}
@media screen and (min-width: 960px) {
  #featured-exhibits-scroller .card {
    max-width: calc(33% - 1em);
  }
}

#featured-exhibits-scroller {
  overflow-x: hidden;
  background-color: transparent;
}

#featured-exhibits-scroller .card-container {
  padding: 0;
  margin: 0;
}

#featured-exhibits-scroller a {
  text-decoration: none;
}

#featured-exhibits-scroller .cards {
  display: flex;
  padding: 0.4rem;
  margin-bottom: 0.2rem;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #featured-exhibits-scroller .cards {
    width: 100%;
  }
}
@media screen and (min-width: 640px) {
  #featured-exhibits-scroller .cards {
    width: 35%;
  }
}
@media screen and (min-width: 896px) {
  #featured-exhibits-scroller .cards {
    width: 33.3%;
  }
}
@media screen and (min-width: 960px) {
  #featured-exhibits-scroller .cards {
    width: 33%;
  }
}
@media screen and (min-width: 1250px) {
  #featured-exhibits-scroller .cards {
    width: 25%;
  }
}
@media screen and (min-width: 1400px) {
  #featured-exhibits-scroller .cards {
    width: 30%;
  }
}
@media screen and (min-width: 1800px) {
  #featured-exhibits-scroller .cards {
    width: 30%;
  }
}
@media screen and (min-width: 2200px) {
  #featured-exhibits-scroller .cards {
    width: 30%;
  }
}

#featured-exhibits-scroller .card-item a:nth-of-type(2) {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#featured-exhibits-scroller .cards .card-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: black;
  width: 100%;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s;
}

#featured-exhibits-scroller .cards .card-item:hover {
  cursor: pointer;
}

#featured-exhibits-scroller .cards .card-item:hover .card-image {
  filter: contrast(100%);
  transform: scale(1.1);
  opacity: 1;
}

#featured-exhibits-scroller .cards .card-image-container {
  display: block;
  overflow: hidden;
}

#featured-exhibits-scroller .cards .card-info {
  display: flex;
  padding: 0.2rem;
  line-height: 1.5em;
  background-color: black;
}

#featured-exhibits-scroller .cards .card-profile-img {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  flex: 0 1 auto;
}

#section_community > .container > .row > .row {
  position: relative;
}

#featured-exhibits-scroller:before {
  content: "";
  background-image: url(../images/purple_dots.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  z-index: -1;
  right: 90%;
}

#featured-exhibits-scroller .cards .card-title {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  flex: 1;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.1em;
  color: white;
  margin-bottom: 0.2em;
  padding: 0.2rem;
  word-break: break-word;
}

#featured-exhibits-scroller .cards .card-user {
  border-radius: 50px;
  border: 1px solid #454545;
  width: 35px;
  height: 35px;
  margin: 0.2rem;
}

#featured-exhibits-scroller .cards .card-user-name {
  font-weight: normal;
  font-size: 14px;
}

#featured-exhibits-scroller .cards .card-publish-date {
  font-size: 12px;
  font-weight: normal;
  color: #7C7C7C;
}

#featured-exhibits-scroller .cards .card-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), transform 0.5s;
}

#featured-exhibits-scroller .cards .card-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media screen and (min-width: 640px) {
  #featured-exhibits-scroller .cards .card-image::before {
    padding-top: 66.6%;
  }
}

#featured-exhibits-scroller .cards .card-icon-container {
  font-size: 16px;
  display: flex;
  justify-items: center;
  align-items: flex-start;
  align-self: flex-start;
  padding: 0 5px 0 0;
}

#featured-exhibits-scroller .cards .card-kicount-icon,
.cards .card-rating-icon {
  width: 20px;
  height: 20px;
  margin: 0.2rem;
}

.video {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  z-index: 0;
  color: #fff;
}

.video_container:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(145deg, rgba(0, 93, 160, 0.8) 0%, rgba(0, 34, 64, 0.8) 5.52%, rgba(5, 61, 103, 0.8) 40.11%, rgba(0, 34, 64, 0.8) 71.43%, #005da0 100%);
}

.video .header-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 100px 15px;
  text-align: center;
  z-index: 1;
}

.video .header-content .header-content-inner h1, .video .header-content .header-content-inner h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.video .header-content .header-content-inner hr {
  margin: 10px auto;
}

.video .header-content .header-content-inner p {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.video video {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

.video .mobile {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("../videos/main/chronosphere_hero_video_cover.jpg");
  background-position: 50% 50%;
  background-size: cover;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
}

.video .appstore_icons {
  margin-top: 5%;
}

.video .appstore_icons a:hover {
  transition: filter 0.2s ease-in-out;
}

.video .appstore_icons a:hover {
  filter: invert(15%);
}

.video_scroll {
  position: absolute;
  right: 8%;
  bottom: 4%;
  transform: rotate(-90deg) translate3d(100%, 50%, 0);
  transform-origin: right bottom;
  z-index: 2;
}

.video_scroll_link {
  font-family: objektiv-mk3, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  padding-right: 180px;
  text-decoration: none;
  line-height: inherit;
}

.video_scroll_link:after {
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  width: 150px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
}

@media (min-width: 768px) {
  .video {
    min-height: 100%;
  }
  .video .header-content {
    position: absolute;
    top: 50%;
    padding: 0 50px;
    transform: translateY(-50%);
  }
  .video .header-content .header-content-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
  }
  .video .header-content .header-content-inner p {
    margin-right: auto;
    margin-left: auto;
    max-width: 80%;
    font-size: 18px;
  }
}
/*-------------------------------------------------------------------------------------------------*/
/* CIRCLE CARDS -----------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 0.2fr));
  grid-gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.card {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  max-width: 350px;
  border-radius: 8px;
  margin: 100px 20px 20px 20px;
  color: white;
  background: linear-gradient(180deg, rgb(99, 99, 99) 0%, rgb(37, 37, 37) 70%);
  /*-------------------------------------------------------------------------------------------------*/
  /* CARD THEMES ------------------------------------------------------------------------------------*/
  /*-------------------------------------------------------------------------------------------------*/
  /*-------------------------------------------------------------------------------------------------*/
  /* END CARD THEMES --------------------------------------------------------------------------------*/
  /*-------------------------------------------------------------------------------------------------*/
}
.card.theme_signature {
  background: linear-gradient(180deg, rgb(200, 134, 5) 0%, rgb(153, 110, 23) 70%);
}
.card.theme_signature .card-button button {
  background: linear-gradient(rgba(200, 134, 5, 0.5), rgba(153, 110, 23, 0.5)), linear-gradient(black, black);
}
.card.theme_signature .card-button button:hover {
  background: linear-gradient(rgba(200, 134, 5, 0.4), rgba(153, 110, 23, 0.4)), linear-gradient(black, black);
}
.card.theme_signature .card-image-placeholder:before {
  border: 10px solid #6b4d10;
}
.card.theme_roman {
  background: linear-gradient(180deg, rgb(142, 49, 14) 0%, rgb(87, 24, 0) 70%);
}
.card.theme_roman .card-button button {
  background: linear-gradient(rgba(144, 50, 14, 0.5), rgba(144, 50, 14, 0.5)), linear-gradient(black, black);
}
.card.theme_roman .card-button button:hover {
  background: linear-gradient(rgba(144, 50, 14, 0.4), rgba(144, 50, 14, 0.4)), linear-gradient(black, black);
}
.card.theme_roman .card-image-placeholder:before {
  border: 10px solid #571800;
}
.card.theme_egypt {
  background: linear-gradient(180deg, rgb(239, 207, 131) 0%, rgb(167, 145, 93) 70%);
}
.card.theme_egypt .card-button button {
  background: linear-gradient(rgba(239, 207, 131, 0.5), rgba(239, 207, 131, 0.5)), linear-gradient(black, black);
}
.card.theme_egypt .card-button button:hover {
  background: linear-gradient(rgba(239, 207, 131, 0.4), rgba(239, 207, 131, 0.4)), linear-gradient(black, black);
}
.card.theme_egypt .card-image-placeholder:before {
  border: 10px solid #a7915d;
}
.card.theme_italian {
  background: linear-gradient(180deg, rgb(96, 141, 217) 0%, rgb(58, 83, 128) 70%);
}
.card.theme_italian .card-button button {
  transition: all 0.2s ease-in-out;
  background: linear-gradient(rgba(96, 141, 217, 0.5), rgba(96, 141, 217, 0.5)), linear-gradient(black, black);
}
.card.theme_italian .card-button button:hover {
  background: linear-gradient(rgba(96, 141, 217, 0.4), rgba(96, 141, 217, 0.4)), linear-gradient(black, black);
}
.card.theme_italian .card-image-placeholder:before {
  border: 10px solid #4463BE;
}

.card-image {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -100px;
}

.card-image-placeholder {
  position: relative;
  width: 200px;
  height: 200px;
  align-self: center;
  overflow: hidden;
  border-radius: 50%;
  background: #454545;
}
.card-image-placeholder:after {
  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 220px;
  position: absolute;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  animation: shimmer 4s infinite ease-in-out;
}

.card-image-placeholder:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: 10px solid #1b1d1f;
  border-radius: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  left: -8px;
  bottom: 0px;
  z-index: 1;
}

.card-image-placeholder img {
  width: 200px;
  height: 200px;
  position: absolute;
}

.card-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-width: 250px;
  width: 100%;
  height: 100%;
  margin-top: 100px;
  overflow: hidden;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.card-information {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  height: 100%;
  padding: 20px 20px 20px 20px;
}

.card-information p {
  text-align: center;
}

.card-button {
  display: flex;
  align-content: center;
  justify-content: center;
  color: white;
  padding-top: 20px;
  margin-top: auto;
}
.card-button button {
  padding: 10px 15px 10px 15px;
  border-radius: 8px;
  background: #454545;
  color: white;
  border: none;
}
.card-button button:hover {
  cursor: pointer;
  background: linear-gradient(rgba(69, 69, 69, 0.4), rgba(69, 69, 69, 0.4)), linear-gradient(black, black);
}

.card-button:hover {
  cursor: pointer;
}

.card-button button:disabled, .card-button button[disabled] {
  cursor: not-allowed;
}

@keyframes shimmer {
  20%, 100% {
    transform: translateX(-100%);
  }
  0% {
    transform: translateX(100%);
  }
  10% {
    transform: translateX(-100%);
  }
}
/*-------------------------------------------------------------------------------------------------*/
/* SWIPER -----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 50vh;
}
#swiper .container {
  width: 100%;
  height: 100%;
}
#swiper .swiper-card {
  width: 100%;
  height: 45%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 30px 0 0 0;
  transition: transform 400ms;
  opacity: 0.5;
  box-shadow: none;
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
}
#swiper .quote-icon {
  position: absolute;
  z-index: 0;
  opacity: 0.05;
  left: 3%;
  top: 0;
}
#swiper .avatar {
  width: 120px;
  height: 120px;
  border-radius: 150px;
  border: 5px solid #f9fafe;
  box-shadow: 0 0 50px #ccc;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-60px, -60px);
  z-index: 1;
}
#swiper .header {
  margin: 0 0 0 0;
  text-align: center;
  z-index: 1;
}
#swiper .name {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  margin: 0;
}
#swiper .title {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  font-weight: 400;
  margin: 5px 0 0 0;
  padding: 0 5px;
  color: #fffff6;
}
#swiper .quote-container {
  margin: 0;
  height: 100%;
  z-index: 1;
  padding: 15px 30px 30px 30px;
  overflow: hidden;
}
#swiper .quote {
  width: 100%;
  height: 95%;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  text-align: center;
  color: #fffff6;
  margin: 0;
}
#swiper .swiper {
  width: 100%;
  height: 100%;
}
#swiper .swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
#swiper .swiper-slide-active {
  z-index: 1;
}
#swiper .swiper-slide-active .swiper-card {
  box-shadow: 0 8px 30px -7px #c9dff0;
  opacity: 1;
  transform: scale(1.5);
  background-color: rgb(50, 51, 55);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
}
#swiper .swiper {
  margin-left: auto;
  margin-right: auto;
}
#swiper .swiper-button-next:focus,
#swiper .swiper-button-prev:focus {
  outline: none;
}
#swiper .swiper-button-next, #swiper .swiper-button-prev {
  color: #fffff6;
}
#swiper .swiper-pagination-bullet-active {
  background: white;
}
@media (max-height: 400px) {
  #swiper .header {
    margin: 40px 0 0 0;
  }
  #swiper .name {
    font-size: 12px;
  }
  #swiper .title {
    font-size: 10px;
  }
  #swiper .quote-container {
    padding: 5px 20px 20px 20px;
  }
  #swiper .quote-icon {
    width: 75px;
    height: 75px;
  }
  #swiper .avatar {
    width: 100px;
    height: 100px;
    transform: translate(-50px, -50px);
  }
}

/*-------------------------------------------------------------------------------------------------*/
/* GAME MENUS -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#game-menus {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  right: 0;
  top: 0;
  margin: 20px;
  /* HOVER STATE */
}
#game-menus ol {
  text-align: center;
  display: flex;
}
#game-menus li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(27, 29, 31);
  border-top: 2px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
  max-width: 50px;
}
#game-menus ol > li:first-of-type {
  max-width: 50px;
  /*  padding: 10px 5px 10px 10px; */
  padding: 10px 25px 10px 35px;
  border-radius: 150px 0 0 150px;
  background-color: rgb(27, 29, 31);
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border-left: 2px solid rgba(255, 255, 255, 0.04);
  border-top: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
}
#game-menus li > button {
  display: flex;
  justify-content: center;
  flex-flow: column;
  color: white;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0;
  padding: 0;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgb(27, 29, 31)));
  box-shadow: inset 0px 1px 0px rgb(255, 255, 255), 0px 1px 3px rgba(0, 0, 0, 0.3);
  outline: none;
  border: 1px solid #444;
}
#game-menus li > button img {
  width: 30px;
}
#game-menus li > div {
  display: flex;
  justify-content: center;
  flex-flow: column;
  border: 1px solid white;
  color: white;
  background-color: #999999;
  border-radius: 50px;
  width: 35px;
  height: 35px;
}
#game-menus button.audioControl.on {
  background: url("../img/audio-off-white.svg"), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgb(27, 29, 31))) !important;
}
#game-menus button.audioControl.on:hover {
  background: url("../img/audio-off-white.svg"), -webkit-gradient(linear, left top, left bottom, from(#11787E), to(rgb(27, 29, 31))) !important;
}
#game-menus button.audioControl.off {
  background: url("../img/audio-on-white.svg"), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgb(27, 29, 31))) !important;
}
#game-menus button.audioControl.off:hover {
  background: url("../img/audio-on-white.svg"), -webkit-gradient(linear, left top, left bottom, from(#11787E), to(rgb(27, 29, 31))) !important;
}
#game-menus li > div:hover, #game-menus li > button:hover {
  background-color: #11787E;
  cursor: pointer;
}
#game-menus ol > li:last-of-type {
  max-width: 50px;
  padding: 10px 35px 10px 25px;
  border-radius: 0 150px 150px 0;
  background-color: rgb(27, 29, 31);
  background-color: rgba(50, 51, 55, 0);
  background-image: linear-gradient(rgba(225, 225, 225, 0.12), rgba(225, 225, 225, 0.02));
  border-top: 2px solid rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14) rgba(255, 255, 255, 0.04) #131212;
  border-bottom: 2px solid rgba(255, 255, 255, 0.04);
  border-right: 2px solid rgba(255, 255, 255, 0.04);
}
#game-menus li:not(li:first-of-type):not(li:last-of-type) {
  padding: 10px 25px 10px 25px;
}

/*-------------------------------------------------------------------------------------------------*/
/* UNITY ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
unity-component {
  position: absolute;
}

#unity {
  width: 0;
  height: 0;
  margin-left: 90px;
  display: none;
}
@media screen and (max-width: 850px) {
  #unity {
    margin-left: unset;
  }
}

.aspectRatio {
  position: relative;
  height: 0;
  width: 100%;
  background: transparent;
}

.aspectratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99vh;
  align-items: center;
  justify-content: center;
}

#gameContainer {
  height: 100vh;
  width: calc(100vw - 90px);
  overflow: hidden;
}
#gameContainer.fullscreen {
  width: calc(100vw - 0px) !important;
}
#gameContainer #canvas {
  width: calc(100vw - 90px);
  height: 100%;
}
#gameContainer #canvas.fullscreen {
  width: calc(100vw - 0px) !important;
}

.fullscreen {
  width: calc(100vw - 0px) !important;
  margin-left: unset !important;
}

@media (max-width: 850px) {
  #gameContainer {
    width: 100vw !important;
  }
  #gameContainer #canvas {
    width: 100vw !important;
  }
}
#coverPage, .coverGradient {
  display: flex;
  flex-flow: column;
  width: calc(100vw - 90px);
  height: 100vh;
  position: fixed;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #45484d 0%, #000000 100%);
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (max-width: 850px) {
  #coverPage, .coverGradient {
    width: 100%;
  }
}

.coverImage {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.loaderImage {
  position: absolute;
  width: 110px;
  height: 110px;
}

.loader {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 99vh;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 50px;
  height: 50px;
  background: none;
}
.spinner .path {
  stroke: rgb(172, 203, 234);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
#quotes {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 40px 20px 20px;
  width: auto;
  right: 0;
  top: 60%;
  position: absolute;
  display: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#quotes p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
}

#swOverlay, #editor, .loader, #coverPage #unity {
  display: none;
}

/*-------------------------------------------------------------------------------------------------*/
/* FOOTER -----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
footer {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #454545;
  position: relative;
}

.footer-wrap {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .footer-wrap {
    flex-flow: column;
  }
}

footer a, footer sub, footer a:visited {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  color: #F2F2F2;
  font-size: 16px;
  text-decoration: none;
  white-space: normal;
  line-height: unset;
  margin: 0 10px 0 10px;
  padding: 5px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s ease-in-out;
}

footer .link {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
}

footer a.cta {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 5px 10px 5px 10px;
  border-radius: 50px;
  border: 2px solid #7E73E5;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
}

footer .logo, footer .mobileLogo {
  display: block;
  position: relative;
  background: url(../img/logo.svg);
  border: none;
  height: 65px;
  margin: 0 10px 0 15px;
  background-size: 100% 100%;
}

footer a:hover {
  border-bottom: 2px solid #3DDFFF;
}

.footerLinks, #copyright {
  display: flex;
}

.footerLinks {
  flex-wrap: wrap;
  flex-flow: column;
}

.footerLinks div {
  padding-bottom: 10px;
  padding-top: 10px;
}

.footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------------------------------------------------------------------------------*/
/* TOOLTIP ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.tooltip {
  display: inline-block;
  position: absolute;
  text-align: left;
  animation: bounce 1s ease forwards;
}
.tooltip ul {
  list-style-type: circle;
}
.tooltip li {
  display: list-item;
  line-height: initial;
  font-size: 15px;
}

.tooltip .top p, .tooltip .top h4 {
  line-height: initial;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  color: black;
  font-size: 15px;
}

.tooltip .top h4 {
  text-shadow: none;
  font-size: 15px;
}

.tooltip .top {
  min-width: 200px;
  text-align: left;
  transform: translate(-50%, -100%);
  padding: 15px 15px;
  color: #444444;
  background-color: #EEEEEE;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip:hover .top {
  display: block;
}

.tooltip .top i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #EEEEEE;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/*-------------------------------------------------------------------------------------------------*/
/* ANIMATIONS -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* AOS ANIMATIONS */
[data-aos=example-anim1] {
  transform: skewX(45deg);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=example-anim1].aos-animate {
  transform: skewX(0);
  opacity: 1;
}

[data-aos=example-anim2] {
  transform: translate(330, 330);
  opacity: 0;
  right: 0;
  transition-property: transform, opacity;
}
[data-aos=example-anim2].aos-animate {
  transform: translate(-30, -30);
  opacity: 1;
}

.animatthis {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

/* LOADER */
.loader-ring {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
}

.loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  margin: 0px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.loader-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.loader-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.loader-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* END LOADER */
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation: slideInRight 0.5s forwards ease-in-out;
  display: flex !important;
}

.bounce {
  animation: bounce 2s forwards ease-in-out;
}

.fadein {
  animation: fadein 0.5s forwards ease-in-out;
}

.fadeout {
  animation: fadeout 0.5s forwards ease-in-out;
}

.slideup {
  animation: slideUp 0.5s forwards ease-in-out;
}

.fadeUp {
  animation: fadeUp 0.5s forwards ease-in-out;
}

@keyframes anglein {
  0% {
    transform: perspective(1000px) rotateY(50deg);
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease-in;
  }
}
@keyframes bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.5);
  }
  30% {
    transform: scale(1, 1) translateY(-2px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.show {
  animation: fadein 0.2s forwards;
}

.hide {
  opacity: 0;
  width: 0;
  height: 0;
}

.angle {
  animation-name: perspective;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

@keyframes perspective {
  0% {
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    transform: perspective(500px) rotateY(5deg);
  }
}
/* LOADER SPINNER */
#useraccount .spinner {
  animation: rotate 2s linear infinite;
  z-index: 999999;
  width: 25px;
  height: 25px;
  animation: rotate 2s linear infinite;
  z-index: 999999;
  background: none;
}
#useraccount .spinner .path {
  stroke: rgb(172, 203, 234);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes arrows {
  0% {
    border-left: 13.3333333333px solid rgba(255, 255, 255, 0);
    border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0);
    transform: translate(-6.6666666667px, -26.6666666667px) rotate(-45deg);
  }
  10%, 90% {
    border-left: 13.3333333333px solid rgba(255, 255, 255, 0);
    border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0);
  }
  50% {
    border-left: 13.3333333333px solid rgba(255, 255, 255, 0.7);
    border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0.7);
    transform: translate(-6.6666666667px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 13.3333333333px solid rgba(255, 255, 255, 0);
    border-bottom: 13.3333333333px solid rgba(255, 255, 255, 0);
    transform: translate(-6.6666666667px, 26.6666666667px) rotate(-45deg);
  }
}
/* UNITY LOADING ANIMATIONS */
.fadein-bars {
  position: relative;
  width: 100%;
  height: 100%;
}

.fadein-bars::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  animation: fadein-bar-top-animation 0.5s forwards;
}

.fadein-bars::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: -20px;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  animation: fadein-bar-bottom-animation 0.5s forwards;
}

@keyframes fadein-bar-top-animation {
  0% {
    height: 0px;
  }
  100% {
    height: 25%;
  }
}
@keyframes fadein-bar-bottom-animation {
  0% {
    height: 0px;
  }
  100% {
    bottom: -20px;
    height: 25%;
  }
}
/* END UNITY LOADING ANIMATIONS */
/*-------------------------------------------------------------------------------------------------*/
/* PRIVACY ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#privacy_policy ul {
  margin-bottom: 20px;
}

#privacy_policy h1, #privacy_policy h2, #privacy_policy h3, #privacy_policy h4, #gdpr h1, #gdpr h2, #gdpr h3, #gdpr h4, #copyright_legal h1, #copyright_legal h2, #copyright_legal h3, #copyright_legal h4, #status_code h1, #status_code h2, #status_code h3, #status_code h4, #eula h1, #eula h2, #eula h3, #eula h4 {
  color: #fffff6;
}

#privacy_policy p, #privacy_policy li, #gdpr p, #gdpr li, #copyright_legal p, #copyright_legal li, #status_code p, #status_code li, #eula p, #eula li {
  color: #fffff6;
}

#privacy_policy a, #privacy_policy a:hover, #privacy_policy a:visited, #gdpr a, #gdpr a:hover, #gdpr a:visited, #copyright_legal a, #copyright_legal a:hover, #copyright_legal a:visited, #status_code a, #status_code a:hover, #status_code a:visited, #eula a, #eula a:hover, #eula a:visited {
  color: #fffff6;
}

/*-------------------------------------------------------------------------------------------------*/
/* HELPERS ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.flex {
  display: flex;
}

.flex-column {
  flex-flow: column;
}

.flex-row {
  flex-flow: row;
}

.f {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  align-content: start;
}

.f:after {
  display: block;
  content: "";
  margin: 10px;
  flex: 999 999 auto;
}

.f-item {
  width: 100%;
  flex: 1 1 auto;
  margin: 10px;
}

.f-grow {
  flex: 1 1 auto;
}

.align-base {
  align-items: baseline;
}

.align-center {
  align-items: center;
}

.align-c-center {
  align-content: center;
}

.wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-flow: column;
}

.j-center {
  justify-content: center;
  align-items: center;
}

.j-between {
  justify-content: space-between;
}

.j-start {
  justify-content: start;
}

.j-end {
  justify-content: end;
}

.j-around {
  justify-content: space-around;
}

.j-even {
  justify-content: space-evenly;
}

.flex-1 {
  flex: 1;
}

.a-self-start {
  margin-top: auto;
  align-self: flex-start !important;
}

.a-self-c {
  align-self: center;
}

.a-self-r {
  align-self: right;
}

.a-self-l {
  align-self: left;
}

.a-self-end {
  align-self: end;
}

.a-items-c {
  align-items: center;
}

.a-items-r {
  align-items: flex-end;
}

.a-items-l {
  align-items: flex-start;
}

.m-bottom {
  margin-bottom: 1.5rem;
}

.m-top {
  margin-top: 1.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.sponsor {
  height: 30px;
}

.img-circle {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px;
  overflow: hidden;
  border-radius: 50%;
}
.img-circle:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: 10px solid #90320e;
  border-radius: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  left: -8px;
  top: -8px;
}
.img-circle:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: 10px solid #90320e;
  border-radius: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  left: -8px;
  bottom: 0px;
  z-index: 1;
}
.img-circle img {
  width: 356px;
  height: 200px;
  left: -74px;
  position: absolute;
}

.img-150 {
  max-width: 150px;
  height: auto;
}

.img-40 {
  width: auto;
  max-height: 35px;
  height: 35px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.errorBox {
  border: 1px solid #F4083E;
  background-color: #F4083E;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 25px 0px 25px 0px;
  animation: fadein 0.2s forwards;
}
.errorBox p {
  font-size: 0.85rem;
  font-size: clamp(0.85rem, 0.7818181818rem + 0.3409090909vw, 1rem);
  line-height: normal;
}

.pos-abs {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.vh-100 {
  height: 100vh;
}

.wh-100 {
  width: 100%;
  height: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.row.reverse {
  flex-direction: row-reverse;
}

.col {
  /*  margin: 15px; */
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
@media screen and (min-width: 800px) {
  .col {
    flex: 1;
  }
}

.col-2 {
  -moz-column-count: 2;
  column-count: 2;
}

.col-3 {
  -moz-column-count: 3;
  column-count: 3;
}

.headerTransparent {
  width: 100%;
  position: absolute;
  z-index: 1;
  background: transparent;
}

.t-center {
  text-align: center;
}

.p-0 {
  padding: 0;
}

.pr-300 {
  padding-right: 300px;
}

.m-0 {
  margin: 0;
}

.mw-800 {
  max-width: 800px;
}

.mw-50 {
  max-width: 50%;
}

.mh-480 {
  min-height: 480px;
}

.mh-240 {
  min-height: 240px;
}

.new {
  top: 0;
  right: 0;
  padding: 5px;
  border-radius: 8px;
  background: #11787E;
  margin: 8px;
}
.new p {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
}

.mp-l-0 {
  margin-left: 200px;
}

.mp-l-1 {
  margin-left: 201px;
}

.mp-l-2 {
  margin-left: 202px;
}

.mp-l-3 {
  margin-left: 203px;
}

.mp-l-4 {
  margin-left: 204px;
}

.mp-l-5 {
  margin-left: 205px;
}

.mp-l-6 {
  margin-left: 206px;
}

.mp-l-7 {
  margin-left: 207px;
}

.mp-l-8 {
  margin-left: 208px;
}

.mp-l-9 {
  margin-left: 209px;
}

.mp-l-10 {
  margin-left: 210px;
}

.mp-l-11 {
  margin-left: 211px;
}

.mp-l-12 {
  margin-left: 212px;
}

.mp-l-13 {
  margin-left: 213px;
}

.mp-l-14 {
  margin-left: 214px;
}

.mp-l-15 {
  margin-left: 215px;
}

.mp-l-16 {
  margin-left: 216px;
}

.mp-l-17 {
  margin-left: 217px;
}

.mp-l-18 {
  margin-left: 218px;
}

.mp-l-19 {
  margin-left: 219px;
}

.mp-l-20 {
  margin-left: 220px;
}

.p-0 {
  padding: 0px !important;
}

.p-1 {
  padding: 1px !important;
}

.p-2 {
  padding: 2px !important;
}

.p-3 {
  padding: 3px !important;
}

.p-4 {
  padding: 4px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-6 {
  padding: 6px !important;
}

.p-7 {
  padding: 7px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-9 {
  padding: 9px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-11 {
  padding: 11px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-13 {
  padding: 13px !important;
}

.p-14 {
  padding: 14px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-17 {
  padding: 17px !important;
}

.p-18 {
  padding: 18px !important;
}

.p-19 {
  padding: 19px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-21 {
  padding: 21px !important;
}

.p-22 {
  padding: 22px !important;
}

.p-23 {
  padding: 23px !important;
}

.p-24 {
  padding: 24px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-26 {
  padding: 26px !important;
}

.p-27 {
  padding: 27px !important;
}

.p-28 {
  padding: 28px !important;
}

.p-29 {
  padding: 29px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-31 {
  padding: 31px !important;
}

.p-32 {
  padding: 32px !important;
}

.p-33 {
  padding: 33px !important;
}

.p-34 {
  padding: 34px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-36 {
  padding: 36px !important;
}

.p-37 {
  padding: 37px !important;
}

.p-38 {
  padding: 38px !important;
}

.p-39 {
  padding: 39px !important;
}

.p-40 {
  padding: 40px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 1px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pt-3 {
  padding-top: 3px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

.pt-7 {
  padding-top: 7px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-9 {
  padding-top: 9px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-11 {
  padding-top: 11px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-13 {
  padding-top: 13px !important;
}

.pt-14 {
  padding-top: 14px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-17 {
  padding-top: 17px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pt-19 {
  padding-top: 19px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-21 {
  padding-top: 21px !important;
}

.pt-22 {
  padding-top: 22px !important;
}

.pt-23 {
  padding-top: 23px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-26 {
  padding-top: 26px !important;
}

.pt-27 {
  padding-top: 27px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pt-29 {
  padding-top: 29px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-31 {
  padding-top: 31px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pt-33 {
  padding-top: 33px !important;
}

.pt-34 {
  padding-top: 34px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.pt-37 {
  padding-top: 37px !important;
}

.pt-38 {
  padding-top: 38px !important;
}

.pt-39 {
  padding-top: 39px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-1 {
  padding-left: 1px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pl-3 {
  padding-left: 3px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-6 {
  padding-left: 6px !important;
}

.pl-7 {
  padding-left: 7px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pl-9 {
  padding-left: 9px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-11 {
  padding-left: 11px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pl-13 {
  padding-left: 13px !important;
}

.pl-14 {
  padding-left: 14px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pl-17 {
  padding-left: 17px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pl-19 {
  padding-left: 19px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-21 {
  padding-left: 21px !important;
}

.pl-22 {
  padding-left: 22px !important;
}

.pl-23 {
  padding-left: 23px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-26 {
  padding-left: 26px !important;
}

.pl-27 {
  padding-left: 27px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.pl-29 {
  padding-left: 29px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-31 {
  padding-left: 31px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pl-33 {
  padding-left: 33px !important;
}

.pl-34 {
  padding-left: 34px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.pl-37 {
  padding-left: 37px !important;
}

.pl-38 {
  padding-left: 38px !important;
}

.pl-39 {
  padding-left: 39px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-1 {
  padding-right: 1px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.pr-3 {
  padding-right: 3px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-6 {
  padding-right: 6px !important;
}

.pr-7 {
  padding-right: 7px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pr-9 {
  padding-right: 9px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-11 {
  padding-right: 11px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.pr-13 {
  padding-right: 13px !important;
}

.pr-14 {
  padding-right: 14px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.pr-17 {
  padding-right: 17px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

.pr-19 {
  padding-right: 19px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-21 {
  padding-right: 21px !important;
}

.pr-22 {
  padding-right: 22px !important;
}

.pr-23 {
  padding-right: 23px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-26 {
  padding-right: 26px !important;
}

.pr-27 {
  padding-right: 27px !important;
}

.pr-28 {
  padding-right: 28px !important;
}

.pr-29 {
  padding-right: 29px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-31 {
  padding-right: 31px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.pr-33 {
  padding-right: 33px !important;
}

.pr-34 {
  padding-right: 34px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.pr-37 {
  padding-right: 37px !important;
}

.pr-38 {
  padding-right: 38px !important;
}

.pr-39 {
  padding-right: 39px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 1px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pb-7 {
  padding-bottom: 7px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-9 {
  padding-bottom: 9px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-11 {
  padding-bottom: 11px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pb-13 {
  padding-bottom: 13px !important;
}

.pb-14 {
  padding-bottom: 14px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-17 {
  padding-bottom: 17px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pb-19 {
  padding-bottom: 19px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-21 {
  padding-bottom: 21px !important;
}

.pb-22 {
  padding-bottom: 22px !important;
}

.pb-23 {
  padding-bottom: 23px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-26 {
  padding-bottom: 26px !important;
}

.pb-27 {
  padding-bottom: 27px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.pb-29 {
  padding-bottom: 29px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-31 {
  padding-bottom: 31px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pb-33 {
  padding-bottom: 33px !important;
}

.pb-34 {
  padding-bottom: 34px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.pb-37 {
  padding-bottom: 37px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.pb-39 {
  padding-bottom: 39px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.m-0 {
  margin: 0px !important;
}

.m-1 {
  margin: 1px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-3 {
  margin: 3px !important;
}

.m-4 {
  margin: 4px !important;
}

.m-5 {
  margin: 5px !important;
}

.m-6 {
  margin: 6px !important;
}

.m-7 {
  margin: 7px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-9 {
  margin: 9px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-11 {
  margin: 11px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-13 {
  margin: 13px !important;
}

.m-14 {
  margin: 14px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-17 {
  margin: 17px !important;
}

.m-18 {
  margin: 18px !important;
}

.m-19 {
  margin: 19px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-21 {
  margin: 21px !important;
}

.m-22 {
  margin: 22px !important;
}

.m-23 {
  margin: 23px !important;
}

.m-24 {
  margin: 24px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-26 {
  margin: 26px !important;
}

.m-27 {
  margin: 27px !important;
}

.m-28 {
  margin: 28px !important;
}

.m-29 {
  margin: 29px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-31 {
  margin: 31px !important;
}

.m-32 {
  margin: 32px !important;
}

.m-33 {
  margin: 33px !important;
}

.m-34 {
  margin: 34px !important;
}

.m-35 {
  margin: 35px !important;
}

.m-36 {
  margin: 36px !important;
}

.m-37 {
  margin: 37px !important;
}

.m-38 {
  margin: 38px !important;
}

.m-39 {
  margin: 39px !important;
}

.m-40 {
  margin: 40px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-7 {
  margin-top: 7px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-9 {
  margin-top: 9px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-11 {
  margin-top: 11px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-13 {
  margin-top: 13px !important;
}

.mt-14 {
  margin-top: 14px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-17 {
  margin-top: 17px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-19 {
  margin-top: 19px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-21 {
  margin-top: 21px !important;
}

.mt-22 {
  margin-top: 22px !important;
}

.mt-23 {
  margin-top: 23px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-26 {
  margin-top: 26px !important;
}

.mt-27 {
  margin-top: 27px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mt-29 {
  margin-top: 29px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-31 {
  margin-top: 31px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-33 {
  margin-top: 33px !important;
}

.mt-34 {
  margin-top: 34px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.mt-37 {
  margin-top: 37px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.mt-39 {
  margin-top: 39px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-1 {
  margin-left: 1px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.ml-7 {
  margin-left: 7px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.ml-9 {
  margin-left: 9px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-11 {
  margin-left: 11px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.ml-13 {
  margin-left: 13px !important;
}

.ml-14 {
  margin-left: 14px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-17 {
  margin-left: 17px !important;
}

.ml-18 {
  margin-left: 18px !important;
}

.ml-19 {
  margin-left: 19px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-21 {
  margin-left: 21px !important;
}

.ml-22 {
  margin-left: 22px !important;
}

.ml-23 {
  margin-left: 23px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-26 {
  margin-left: 26px !important;
}

.ml-27 {
  margin-left: 27px !important;
}

.ml-28 {
  margin-left: 28px !important;
}

.ml-29 {
  margin-left: 29px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-31 {
  margin-left: 31px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.ml-33 {
  margin-left: 33px !important;
}

.ml-34 {
  margin-left: 34px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.ml-37 {
  margin-left: 37px !important;
}

.ml-38 {
  margin-left: 38px !important;
}

.ml-39 {
  margin-left: 39px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-1 {
  margin-right: 1px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mr-7 {
  margin-right: 7px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-9 {
  margin-right: 9px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-11 {
  margin-right: 11px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mr-13 {
  margin-right: 13px !important;
}

.mr-14 {
  margin-right: 14px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-17 {
  margin-right: 17px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.mr-19 {
  margin-right: 19px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-21 {
  margin-right: 21px !important;
}

.mr-22 {
  margin-right: 22px !important;
}

.mr-23 {
  margin-right: 23px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-26 {
  margin-right: 26px !important;
}

.mr-27 {
  margin-right: 27px !important;
}

.mr-28 {
  margin-right: 28px !important;
}

.mr-29 {
  margin-right: 29px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-31 {
  margin-right: 31px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mr-33 {
  margin-right: 33px !important;
}

.mr-34 {
  margin-right: 34px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.mr-37 {
  margin-right: 37px !important;
}

.mr-38 {
  margin-right: 38px !important;
}

.mr-39 {
  margin-right: 39px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-11 {
  margin-bottom: 11px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-17 {
  margin-bottom: 17px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-19 {
  margin-bottom: 19px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-21 {
  margin-bottom: 21px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.mb-23 {
  margin-bottom: 23px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.mb-27 {
  margin-bottom: 27px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-29 {
  margin-bottom: 29px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-31 {
  margin-bottom: 31px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-33 {
  margin-bottom: 33px !important;
}

.mb-34 {
  margin-bottom: 34px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.mb-37 {
  margin-bottom: 37px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.mb-39 {
  margin-bottom: 39px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.show {
  display: block !important;
  width: 100%;
  height: 100%;
  position: absolute;
}

.show-flex {
  display: flex;
}

.hide {
  display: none !important;
}

.d-none {
  display: none;
}

.h-0 {
  height: auto;
}

.h-50 {
  height: 50%;
}

.h-70 {
  height: 70%;
}

.h-auto {
  height: auto;
}

.r-0 {
  right: 0;
}

.l-0 {
  left: 0;
}

.t-0 {
  top: 0;
}

.b-0 {
  bottom: 0;
}

.link {
  background: none !important;
  border: none;
  padding: 10px 0 10px 0;
  text-decoration: none;
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  margin: 0px 20px 0px 20px;
  transition: border-bottom 0.2s ease-in-out;
}
.link:hover {
  cursor: pointer;
  border-bottom: 1px solid #ffffff;
}

.comingsoon {
  border: 1px solid #fffff6;
  color: #fffff6;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  margin-top: 20px;
  padding: 10px 15px 10px 15px;
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  border-radius: 8px;
}

.codeSnippet {
  border-radius: 5px;
  background-color: #3b3b3b;
  padding: 15px;
  color: white;
  position: relative;
}
.codeSnippet .copyCode {
  position: absolute;
  top: 0;
  right: 0;
}
.codeSnippet .copyCode :hover {
  cursor: pointer;
}
.codeSnippet .copyCode img {
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  border: 0;
}

.mobile-show {
  display: flex;
}
@media (min-width: 800px) {
  .mobile-show {
    display: none;
  }
}

.centerModel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.spacer-1 {
  height: 1vw;
  width: 100%;
}

.spacer-2 {
  height: 2vw;
  width: 100%;
}

.spacer-3 {
  height: 3vw;
  width: 100%;
}

.spacer-4 {
  height: 4vw;
  width: 100%;
}

.spacer-5 {
  height: 5vw;
  width: 100%;
}

.spacer-6 {
  height: 6vw;
  width: 100%;
}

.spacer-7 {
  height: 7vw;
  width: 100%;
}

.spacer-8 {
  height: 8vw;
  width: 100%;
}

.spacer-9 {
  height: 9vw;
  width: 100%;
}

.spacer-10 {
  height: 10vw;
  width: 100%;
}

@media (max-width: 500px) {
  .flex-column-m {
    flex-flow: column;
  }
  .j-center-m {
    justify-content: center;
    align-items: center;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: black;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html html {
    scroll-behavior: auto;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "HeadlineFont-Regular", Arial, Helvetica, sans-serif;
  color: #F2F2F2;
  margin-bottom: 1.9rem;
  line-height: initial;
}

h1 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.0909090909rem + 2.0454545455vw, 2.4rem);
  position: relative;
}

h2 {
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.3181818182rem + 0.2840909091vw, 1.5rem);
}

h3 {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1931818182rem + 0.2840909091vw, 1.375rem);
}

h4 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2840909091vw, 1.25rem);
}

h5 {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7897727273rem + 0.4261363636vw, 1.0625rem);
}

span {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
}

p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  margin-bottom: 30px;
  line-height: 1.5rem;
  inline-size: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

strong {
  font-family: "MainFont-Medium", Arial, Helvetica, sans-serif;
}

button {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  font-family: "MainFont-Medium", Arial, Helvetica, sans-serif;
}

button[exhibit-id]:disabled, button[exhibit-id][disabled] {
  border: none;
  background-color: #1b1d1f;
  color: #666666;
  cursor: not-allowed;
}

input {
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
}

sub {
  font-size: 0.6rem;
  font-size: clamp(0.6rem, 0.5318181818rem + 0.3409090909vw, 0.75rem);
  color: #fffff6;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
  margin-top: 0;
}

a {
  font-weight: bold;
  color: #F2F2F2;
  text-decoration: underline;
  font-family: "MainFont-Bold", Arial, Helvetica, sans-serif;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}

hr {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 50%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

ul {
  list-style-type: none;
}

/*-------------------------------------------------------------------------------------------------*/
/* HTML MARKUP ------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
* {
  scrollbar-width: auto;
  scrollbar-color: #9a9a9a #1b1d1f;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background: linear-gradient(0deg, rgb(52, 0, 81) 0%, #9a9a9a 100%);
}

body::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  border: 2px solid #1b1d1f;
  box-shadow: 0px 0px 0px 100000vh #1b1d1f;
}

body::-webkit-scrollbar-track {
  margin-top: 10px;
  margin-bottom: 10px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #141516;
}

body {
  transition: all 0.5s ease-in-out;
  font: 100%;
  margin: 0px;
  padding: 0px;
  line-height: 1.5rem;
  display: flex;
  flex-direction: column;
  animation: fadein ease 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

img {
  align-self: center;
}

.container {
  width: 100%;
}
@media screen and (max-width: 850px) {
  .container {
    margin-top: 70px;
  }
}

.container-mw {
  max-width: 1440px;
  width: 100%;
}

#main {
  margin: 0px 0px 0px 90px;
}
@media screen and (max-width: 850px) {
  #main {
    margin: unset;
  }
}
#main .button {
  background-color: #1b1d1f;
  color: #F2F2F2;
  border: none;
  width: 50%;
  align-self: center;
  margin: 50px 0 50px 0;
  max-width: 250px;
  width: 100%;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  flex-grow: 1;
  margin: 10px;
  padding: 10px;
  transition: all ease-in-out 150ms;
}
#main .button:hover {
  border-right: 5px solid #11787E;
  border-radius: 8px;
  background: #232529;
  cursor: pointer;
}
#main .button:disabled, #main .button[disabled] {
  border: none;
  background-color: #1b1d1f;
  color: #666666;
  cursor: not-allowed;
}

section {
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
  height: auto;
  width: auto;
  overflow: hidden;
}
section div.embelish:before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  left: -25px;
  position: absolute;
  top: -15px;
  z-index: -1;
}
section div.embelish:after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(20, 21, 22);
  display: block;
  left: -12px;
  position: absolute;
  top: -10px;
  z-index: -1;
}
section.s-bg {
  background: #232529;
}
section.s-bg div.embelish:before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: block;
  left: -25px;
  position: absolute;
  top: -15px;
  z-index: -1;
}
section.s-bg div.embelish:after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #232529;
  display: block;
  left: -12px;
  position: absolute;
  top: -10px;
  z-index: -1;
}
section.s-bg-02 {
  background: #1b1d20;
}

[class*=patternoverlay] {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  display: block;
}

[class*=content] {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  position: relative;
}
[class*=content] .svg {
  height: 100%;
  width: 100%;
  height: 100vh;
  display: block;
  border: 0;
  opacity: 0.01;
}
@media screen and (max-width: 850px) {
  [class*=content] {
    margin-left: unset;
  }
}

.section:first-child:after, .section:last-child:after {
  content: "";
  align-self: stretch;
  border: 3px solid transparent;
  -o-border-image: linear-gradient(357deg, #000000, #4f438e, #000000) 1;
     border-image: linear-gradient(357deg, #000000, #4f438e, #000000) 1;
}

section:has(div.hero):after, section:has(div.end):after {
  content: "";
  align-self: stretch;
  position: absolute;
  width: 90%;
  margin: 0px 0px 0px 90px;
  bottom: -15%;
  height: 15%;
  background-color: transparent;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0), inset 20px 0 80px #000, inset -20px 0 80px #000, inset 20px 0 300px #000, inset -20px 0 300px #000, 0 0 50px #8c8c8c, -10px 0 80px #000, 10px 0 80px #000;
}
@media screen and (max-width: 900px) {
  section:has(div.hero):after, section:has(div.end):after {
    margin-left: unset;
    width: 100%;
  }
}

#legal a {
  margin: 0 10px 0 10px;
}/*# sourceMappingURL=main.css.map */