@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700;900&display=swap");
body, html {
  font-family: "Mulish", sans-serif;
  height: 100%;
  width: 100%;
  position: relative;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

main {
  overflow-x: hidden;
}

@keyframes BOUNCE {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes LOADER {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.frame {
  width: 1440px;
  height: auto;
  margin: 0px auto;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .frame {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .frame {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media only screen and (max-width: 850px) {
  .frame {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 650px) {
  .frame {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 550px) {
  .frame {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 390px) {
  .frame {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.content-bottom.active .frame, .content-bottom.fade .frame, .content-top.active .frame, .content-top.fade .frame {
  opacity: 1;
  transform: translateY(0px);
}
.content-bottom .frame, .content-top .frame {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease-in-out 0.2s;
}

.content {
  padding: 100px 0px;
}

.content-line {
  border-top: solid 1px #c6c8cc;
}

.content-dark {
  background: #14161b;
}

.content-grey {
  background: #d9dcdf;
}

.content-header-flex.space-between {
  display: flex;
  justify-content: space-between;
}

.content-filter {
  position: relative;
}
.content-filter button {
  background: none;
  border: none;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: 10vmax;
  border: solid 2px #14161b;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: all 0.1s ease-in-out;
}
.content-filter button:hover {
  background: #f9f9f9;
}
.content-filter button.active {
  background: #10d0d0;
  color: #ffffff;
  border-color: #10d0d0;
}
.content-filter button.active i {
  color: #ffffff;
}
.content-filter button i {
  font-size: 1rem;
  color: #10d0d0;
  transition: all 0.1s ease-in-out;
}
.content-filter .filter-container {
  position: absolute;
  top: 58px;
  z-index: 200;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  border: solid 2px #14161b;
  padding: 10px;
  gap: 4px;
  width: 100%;
  text-align: center;
  display: none;
}
.content-filter .filter-container.active {
  display: flex;
}
.content-filter .filter-container p {
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.content-filter .filter-container span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #10d0d0;
  border: solid 2px #14161b;
  cursor: pointer;
  text-align: center;
  padding: 2px;
  border-radius: 10px;
}
.content-filter .filter-container span.active {
  background: #10d0d0 !important;
  color: #ffffff;
}
.content-filter .filter-container span:hover {
  background: #f9f9f9;
}

.content-header {
  text-align: center;
  margin-bottom: 50px;
}
.content-header.left {
  text-align: left;
}
.content-header h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 900;
}
.content-header p {
  font-weight: 400;
  color: #10d0d0;
  font-size: 1.2rem;
}

.btn {
  padding: 20px 30px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 30px;
  border-width: 2px;
  border-style: solid;
}
.btn:hover {
  background: none;
}

.btn-blue {
  background: #10d0d0;
  color: #ffffff;
  border-color: #10d0d0;
}
.btn-blue:hover {
  color: #10d0d0;
}

@media only screen and (max-width: 750px) {
  .content {
    padding: 80px 0px;
  }
  .content-header {
    margin-bottom: 30px;
  }
  .content-header h2 {
    font-size: 1.4rem;
  }
  .content-header p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 590px) {
  .content-header-flex.space-between {
    flex-direction: column;
    gap: 0px;
  }
  .content-filter {
    margin-bottom: 20px;
  }
  .content-filter button {
    width: 100%;
    justify-content: center;
  }
  .content-filter .filter-container {
    box-shadow: 0px 20px 25px -8px rgba(23, 25, 37, 0.5803921569);
  }
}
.nav {
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 800;
  transition: background 0.3s ease-in-out;
  background: none;
}
.nav.active, .nav.page-active {
  background: #000000;
}
.nav.active .nav-links, .nav.page-active .nav-links {
  padding: 30px 0px;
}
.nav.active .nav-socials, .nav.page-active .nav-socials {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100px);
  transition: all 0.2s ease-in-out;
}
.nav.active .nav-logo, .nav.page-active .nav-logo {
  opacity: 1;
  transform: translateX(0px);
  transition: all 0.2s ease-in-out 0.2s;
}
.nav .frame {
  display: flex;
  justify-content: space-between;
}
.nav .nav-links {
  display: flex;
  align-items: center;
  padding: 50px 0px;
  transition: all 0.2s ease-in-out 0.1s;
}
.nav .nav-links a + a {
  margin-left: 40px;
}
.nav .nav-links a {
  color: #ffffff;
  padding: 10px;
  font-size: 0.8em;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 300;
  transition: opacity 0.4s ease-in-out 0.1s, color 0.4s ease-in-out 0.1s;
}
.nav .nav-links a.active::after {
  width: 100%;
}
.nav .nav-links a:hover, .nav .nav-links a.active {
  color: #10d0d0;
}
.nav .nav-links a:hover::after, .nav .nav-links a.active::after {
  width: 100%;
}
.nav .nav-links a::after {
  content: "";
  margin: 0px auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 40px;
  height: 1px;
  background: #10d0d0;
  width: 0%;
  z-index: -1;
  transition: all 0.2s ease-in-out 0.1s;
}
.nav .nav-socials {
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out 0.1s;
  z-index: 200;
}
.nav .nav-socials a + a {
  margin-left: 10px;
}
.nav .nav-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: solid 2px #ffffff;
  color: #ffffff;
  border-radius: 50%;
}
.nav .nav-socials a:hover {
  background: #10d0d0;
  color: #ffffff;
  border-color: #10d0d0;
}
.nav .nav-logo {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.2s ease-in-out;
  transform: translateX(100px);
  opacity: 0;
}
.nav .nav-logo img {
  height: 65px;
}

@media only screen and (min-width: 1024px) {
  .nav-landing .frame {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
  }
  .nav-landing .frame.fade {
    transform: translateY(0%);
    opacity: 1;
  }
  .page-active.fade .nav-links, .page-active.fade .nav-logo {
    opacity: 1 !important;
    transform: translateX(0px) !important;
  }
  .page-active .nav-links {
    transition: all 0.2s ease-in-out 0.2s !important;
    opacity: 0;
    transform: translateX(50px);
  }
  .page-active .nav-logo {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
  }
}
@media only screen and (max-width: 1600px) {
  .nav .nav-links a + a {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .nav .nav-links a + a {
    margin-left: 15px;
  }
  .nav .nav-links a {
    font-size: 0.7rem;
  }
  .nav .nav-logo img {
    height: 55px;
  }
}
@media only screen and (max-width: 1024px) {
  .nav {
    padding: 30px;
  }
  .nav .nav-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 40px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
  }
  .nav .nav-links a + a {
    margin-left: 0px;
  }
  .nav .nav-links a {
    font-size: 1.2rem;
  }
  .nav .nav-links a:hover, .nav .nav-links a.active {
    color: #14161b;
  }
  .nav .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transition: all 0.2s ease-in-out 0.2s;
  }
}
@media only screen and (max-width: 420px) {
  .nav .nav-logo img {
    height: 50px;
  }
  .nav .nav-socials a + a {
    margin-left: 6px;
  }
  .nav .nav-socials a {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 340px) {
  .nav .nav-logo img {
    height: 45px;
  }
}
.socials {
  float: left;
  margin-left: 80px;
  top: 0px;
}
.socials a {
  background: #ffffff;
  width: 45px;
  display: inline-block;
  margin: 0px 5px;
  text-align: center;
  border-radius: 0px 0px 20px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: -150px;
}
.socials a:hover {
  background: #10d0d0;
}
.socials a:hover i {
  color: #ffffff;
}
.socials a i {
  padding: 54px 0px;
  color: #000000;
  font-size: 1.4em;
}

.header {
  height: 100vh;
  width: 100%;
  z-index: 100;
  background: #000000;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-logo {
  width: 300px;
  height: auto;
  z-index: 100;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateY(50px);
}
.header .header-logo.fade {
  opacity: 1;
  transform: translateY(0px);
}
.header .header-mouse {
  width: 40px;
  height: auto;
  position: absolute;
  z-index: 100;
  bottom: 50px;
  cursor: pointer;
  animation: BOUNCE 1s infinite;
  -webkit-animation: BOUNCE 1s infinite;
}
.header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  position: absolute;
  opacity: 0;
  transition: all 1.5s ease-in-out;
}
.header video.fade {
  opacity: 1;
}

.page-header {
  display: flex;
  flex-direction: column;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #14161b;
  align-items: center;
  justify-content: center;
}
.page-header .page-header-details {
  position: relative;
  z-index: 200;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.7s ease-in-out;
  opacity: 0;
  transform: translateY(-20px);
}
.page-header .page-header-details.fade {
  opacity: 1;
  transform: translateY(0px);
}
.page-header p {
  color: #ffffff;
  letter-spacing: 5px;
  margin-left: 5px;
  font-weight: 700;
}
.page-header h2 {
  color: #10d0d0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2.2rem;
}
.page-header img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.page-header img.fade {
  opacity: 0.3;
}

@media only screen and (max-width: 1280px) {
  .header .header-logo {
    width: 280px;
  }
}
@media only screen and (max-width: 950px) {
  .header .header-logo {
    width: 250px;
  }
}
@media only screen and (max-width: 670px) {
  .header .header-logo {
    width: 200px;
  }
  .page-header {
    height: 220px;
  }
  .page-header h2 {
    font-size: 1.8rem;
    margin-top: -20px;
  }
  .page-header p {
    font-size: 0.8rem;
  }
}
#termine.active .termine-list {
  opacity: 1;
  transform: translateY(0px);
}
#termine .termine-list {
  transition: all 0.3s ease-in-out 0.4s;
  opacity: 0;
  transform: translateY(100px);
}

.content-termine .frame {
  transition: all 0.3s ease-in-out 0.4s;
  opacity: 0;
  transform: translateY(100px);
}
.content-termine.active .frame {
  opacity: 1;
  transform: translateY(0px);
}

.termine-list {
  margin-top: 0px;
}
.termine-list .item + .item {
  border-top: dashed 1px #696e7a;
}
.termine-list .item {
  display: flex;
  justify-content: space-between;
  padding: 25px 0px;
}
.termine-list .item .item-details .date {
  font-weight: 900;
  margin-right: 20px;
}
.termine-list .item .item-details .title {
  margin-right: 5px;
}
.termine-list .item .item-details .type {
  border-left: solid 1px #696e7a;
  padding-left: 6px;
}
.termine-list .item .item-links a + a {
  margin-left: 10px;
}
.termine-list .item .item-links a {
  padding: 8px 20px;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.6rem;
  letter-spacing: 1px;
  border-style: solid;
  border-width: 2px;
}
.termine-list .item .item-links a.location {
  background: #14161b;
  border-color: #14161b;
}
.termine-list .item .item-links a.location:hover {
  background: none;
  color: #14161b;
}
.termine-list .item .item-links a.info {
  background: #10d0d0;
  border-color: #10d0d0;
}
.termine-list .item .item-links a.info:hover {
  background: none;
  color: #10d0d0;
}
.termine-list .item .item-links a.info-disable {
  background: #c6c8cc;
  color: #696e7a;
  border-color: #c6c8cc;
}
.termine-list .item .item-links a.info-disable:hover {
  background: #c6c8cc;
  color: #696e7a;
  border-color: #c6c8cc;
}

.termin-details {
  border-top: solid 1px #c6c8cc;
  border-bottom: solid 1px #c6c8cc;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.termin-details p {
  text-transform: uppercase;
  margin: 0px 20px;
  font-weight: 700;
}
.termin-details p span {
  color: #10d0d0;
  font-weight: 900;
}

@media only screen and (max-width: 1080px) {
  .termine-list {
    margin-top: 40px;
  }
  .termine-list .item {
    flex-direction: column;
    padding: 20px 20px;
  }
  .termine-list .item .item-details {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .termine-list .item .item-links {
    text-align: center;
    margin: 10px 0px 10px 0px;
  }
}
@media only screen and (max-width: 720px) {
  .termin-details {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  .termin-details p {
    margin: 2px 0px;
  }
}
@media only screen and (max-width: 590px) {
  .termine-list {
    margin-top: 0px;
  }
  .termine-list .item {
    padding: 25px 0px 25px 0px;
  }
  .termine-list .item .item-details .date {
    display: block;
    font-size: 1.1rem;
  }
  .termine-list .item .item-links a + a {
    margin-left: 0;
    margin-top: 6px;
  }
  .termine-list .item .item-links a {
    width: 100%;
    padding: 10px 20px;
    display: block;
  }
}
#locations {
  background: #14161b;
  height: 600px;
}

.location-wrapper {
  padding-left: 70px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.location-grid .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.location-grid .item:hover img {
  transform: scale(1.4);
}
.location-grid .item h2 {
  z-index: 100;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
}
.location-grid .item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  opacity: 0.5;
  transition: all 0.8s ease-out;
}

.location-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  background: #10d0d0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.location-nav div {
  position: relative;
  display: flex;
  align-items: center;
}
.location-nav div:hover span {
  background: #14161b;
  color: #10d0d0;
}
.location-nav div:hover h4 {
  opacity: 1;
}
.location-nav h4 {
  position: absolute;
  left: 70px;
  background: #000000;
  color: #10d0d0;
  font-size: 0.7rem;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 900;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
}
.location-nav span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 10px 0px;
  border-radius: 50%;
  cursor: pointer;
  color: #10d0d0;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1440px) {
  #locations {
    height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-wrapper {
    padding-left: 0px;
  }
  .location-nav {
    top: auto;
    right: 0;
    flex-direction: row;
    padding: 17px;
  }
  .location-nav div {
    justify-content: center;
  }
  .location-nav span {
    margin: 0px 8px;
  }
  .location-nav h4 {
    position: absolute;
    left: auto;
    top: -60px;
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 620px) {
  .location-grid .item h2 {
    font-size: 1.5rem;
  }
  .location-nav {
    padding: 12px;
  }
  .location-nav span {
    margin: 0px 4px;
    height: 40px;
    width: 40px;
    font-size: 0.9rem;
  }
  .location-nav h4 {
    position: absolute;
    left: auto;
    top: -50px;
    padding: 10px 15px;
  }
}
.emotion {
  background: #14161b;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.emotion .details {
  z-index: 100;
  position: relative;
  text-align: center;
  padding: 0px 30px;
}
.emotion p {
  color: #10d0d0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.emotion a {
  display: inline-block;
  margin-top: 20px;
}
.emotion h2 {
  letter-spacing: 8px;
  color: #ffffff;
  font-size: 2em;
  text-transform: uppercase;
  z-index: 200;
}
.emotion .emotion-inner {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 1005;
}
.emotion img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.6;
  filter: saturate(30%);
  opacity: 0.2;
}

@media only screen and (max-width: 1280px) {
  .emotion {
    height: 400px;
  }
  .emotion h2 {
    font-size: 1.8rem;
  }
  .emotion-page h2 {
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 1024px) {
  .emotion a {
    font-size: 0.6rem;
  }
}
@media only screen and (max-width: 960px) {
  .emotion-page h2 {
    letter-spacing: 2px;
  }
  .emotion-page p {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .emotion {
    height: 320px;
  }
  .emotion h2 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 620px) {
  .emotion h2 {
    font-size: 1.4rem;
  }
  .emotion-page h2 {
    letter-spacing: 0px;
  }
  .emotion-page p {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 520px) {
  .emotion {
    height: 280px;
  }
  .emotion h2 {
    font-size: 1.1rem;
    letter-spacing: 5px;
  }
  .emotion-page h2 {
    letter-spacing: 0px !important;
  }
  .emotion-page p {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 450px) {
  .emotion {
    height: 240px;
  }
  .emotion img {
    width: 120%;
    height: 120%;
  }
  .emotion h2 {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
}
#streaming {
  text-align: center;
}

.streaming-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0px 80px 0px;
}
.streaming-list.active .item {
  opacity: 1;
  transform: translateX(0px);
}
.streaming-list .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  margin: 30px 0px;
  opacity: 0;
  transform: translateX(-50px);
}
.streaming-list .item:nth-child(1) {
  transition: all 0.4s ease-in-out 0.7s;
}
.streaming-list .item:nth-child(2) {
  transition: all 0.4s ease-in-out 0.5s;
}
.streaming-list .item:nth-child(3) {
  transition: all 0.4s ease-in-out 0.3s;
}
.streaming-list .item:nth-child(4) {
  transition: all 0.4s ease-in-out 0.1s;
}
.streaming-list .item:hover span {
  transform: scale(1.1);
}
.streaming-list .item:hover h2 {
  color: #10d0d0;
}
.streaming-list .item span {
  height: 120px;
  width: 120px;
  display: flex;
  background: #10d0d0;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.47, 1.64, 0.41, 1.8);
}
.streaming-list .item span::after {
  content: "";
  width: 110%;
  height: 110%;
  border: solid 5px #10d0d0;
  position: absolute;
  border-radius: 50%;
}
.streaming-list .item span i {
  font-size: 2.5rem;
  color: #ffffff;
}
.streaming-list .item h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}
.streaming-list .item p {
  color: #696e7a;
}

@media only screen and (max-width: 1290px) {
  .streaming-list {
    grid-template-columns: repeat(auto-fill, minmax(190px, 250px));
    justify-content: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 590px) {
  .streaming-list {
    margin: 30px 0px 60px 0px;
  }
  .streaming-list .item span {
    height: 100px;
    width: 100px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 460px) {
  .streaming-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 5px;
  }
  .streaming-list .item:nth-child(1) {
    transition: all 0.4s ease-in-out 0.1s;
  }
  .streaming-list .item:nth-child(2) {
    transition: all 0.4s ease-in-out 0.3s;
  }
  .streaming-list .item:nth-child(3) {
    transition: all 0.4s ease-in-out 0.5s;
  }
  .streaming-list .item:nth-child(4) {
    transition: all 0.4s ease-in-out 0.7s;
  }
}
.google-maps-wrapper {
  background: #14161b;
  height: 600px;
  position: relative;
}
.google-maps-wrapper.active .popup-bubble-content {
  transform: translate(-50%, -100%);
  opacity: 1;
}
.google-maps-wrapper.active .popup-bubble-anchor::after {
  bottom: -17px;
  opacity: 1;
}
.google-maps-wrapper #google-maps-container {
  height: 100%;
}

.popup-tip-anchor {
  height: 0;
  position: absolute;
}

.popup-bubble-anchor {
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
}
.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  z-index: 1;
  visibility: visible;
  left: 0;
  bottom: 0px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 18px solid #14161b;
  transition: all 0.4s ease-in-out 0.5s;
  opacity: 0;
}

.popup-bubble-content {
  position: absolute;
  z-index: 2;
  display: block;
  top: 0;
  left: 0;
  width: auto;
  transition: all 0.4s ease-in-out 0.3s;
  opacity: 0;
  transform: translate(-50%, 0%);
  background: #14161b;
  padding: 30px;
  border-radius: 15px;
  white-space: nowrap;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}
.popup-bubble-content .popup-details {
  border-top: dashed 1px #ffffff;
  padding-top: 10px;
  margin-top: 10px;
}
.popup-bubble-content h2 {
  color: #10d0d0;
}
.popup-bubble-content p {
  line-height: 170%;
}
.popup-bubble-content p i {
  margin-right: 5px;
}
.popup-bubble-content p a {
  color: #10d0d0;
}
.popup-bubble-content p a:hover {
  color: #ffffff;
}

@media only screen and (max-width: 400px) {
  .popup-bubble-content {
    padding: 20px;
  }
}
#kontakt {
  background: #14161b;
  color: #ffffff;
  position: relative;
}
#kontakt.clip {
  margin-top: 100px;
}
#kontakt.clip::before {
  content: "";
  background: #14161b;
  position: absolute;
  top: -400px;
  height: 400px;
  width: 100%;
  clip-path: polygon(100% 70%, 0 100%, 100% 100%);
  z-index: 200;
}
#kontakt .kontakt-grid {
  margin: 80px 0px 70px 0px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 90px;
}
#kontakt .kontakt-grid.active .kontakt-form {
  transform: translateX(0px);
  opacity: 1;
}
#kontakt .kontakt-grid.active .kontakt-details {
  transform: translateX(0px);
  opacity: 1;
}
#kontakt h3 {
  font-size: 1.1em;
  margin-bottom: 60px;
  color: #10d0d0;
  transition: all 0.3s ease-in-out;
}

.kontakt-form, .kontakt-details {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.kontakt-form {
  transform: translateX(-100px);
}

.kontakt-details {
  transform: translateX(100px);
}
.kontakt-details .details-list .item + .item {
  border-top: dashed 1px #696e7a;
}
.kontakt-details .details-list .item {
  padding: 40px 0px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.kontakt-details .details-list .item:first-child {
  padding-top: 20px;
}
.kontakt-details .details-list .item:hover i {
  color: #ffffff;
}
.kontakt-details .details-list .item:hover .item-content {
  transform: translateX(10px);
}
.kontakt-details .details-list .item:hover .item-content h4 {
  color: #10d0d0;
}
.kontakt-details .details-list .item .item-content {
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}
.kontakt-details .details-list .item .item-content h4 {
  transition: all 0.2s ease-in-out;
}
.kontakt-details .details-list .item i {
  font-size: 2.3rem;
  margin-right: 25px;
  color: #10d0d0;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1440px) {
  #kontakt .kontakt-grid {
    gap: 60px;
  }
  .kontakt-details .details-list .item i {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  #kontakt {
    padding: 70px 0px;
  }
  #kontakt h3 {
    text-align: center;
    background: #26282e;
    padding: 20px;
    border-radius: 40px;
  }
  #kontakt .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-form {
    order: 2;
  }
  .kontakt-details .details-list {
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .kontakt-details .details-list .item {
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 750px) {
  #kontakt h3 {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 590px) {
  #kontakt h3 {
    margin-bottom: 40px;
  }
  #kontakt .kontakt-grid {
    margin: 65px 0px 30px 0px;
  }
  .kontakt-details .details-list {
    margin-bottom: 0px;
  }
  .kontakt-details .details-list .item .item-content p {
    font-size: 0.9rem;
  }
  .kontakt-details .details-list .item i {
    font-size: 1.5rem;
  }
}
form {
  opacity: 1;
  transition: all 0.4s ease-in-out 0.2s;
}
form .form-item-error {
  margin-top: 3px;
  color: #10d0d0;
  font-size: 0.7rem;
  height: 20px;
  display: flex;
}
form .form-item + .form-item {
  margin-top: 12px;
}
form label {
  font-size: 0.7rem;
  font-weight: 900;
  display: block;
  margin: 0px 0px 3px 5px;
  text-transform: uppercase;
}
form textarea {
  height: 300px;
  resize: none;
}
form input, form textarea {
  width: 100%;
  padding: 15px 20px;
  border: solid 4px #26282e;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9em;
  font-family: "Mulish", sans-serif;
  color: #696e7a;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #26282e;
}
form input:focus, form textarea:focus {
  border-color: #10d0d0;
  background: #ffffff;
  color: #14161b;
}
form button {
  border: solid 2px #10d0d0;
  color: #10d0d0;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  margin-top: 20px;
  border-radius: 30px;
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-family: "Mulish", sans-serif;
  background: none;
}
form button:hover {
  color: #ffffff;
  background: #10d0d0;
}

@media only screen and (max-width: 1024px) {
  form button {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 750px) {
  form button {
    width: 100%;
  }
}
@media only screen and (max-width: 620px) {
  form label {
    font-size: 0.6rem;
  }
  form input, form textarea {
    padding: 15px 10px;
    font-size: 0.8rem;
  }
  form textarea {
    height: 230px;
  }
}
footer {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  background: #000000;
}
footer p {
  color: #ffffff;
  text-align: center;
  border-top: solid 1px #10d0d0;
  font-size: 0.6em;
  padding: 70px 0px;
}
footer .frame {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-links a + a {
  margin-left: 40px;
}
footer .footer-links a {
  color: #ffffff;
  font-size: 0.8rem;
}
footer .footer-links a:hover {
  color: #10d0d0;
}
footer .footer-social {
  display: flex;
}
footer .footer-social a + a {
  margin-left: 20px;
}
footer .footer-social a {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: solid 2px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-social a:hover {
  border: solid 2px #10d0d0;
}
footer .footer-social a:hover i {
  color: #10d0d0;
}
footer .footer-social a i {
  color: #ffffff;
  font-size: 1.1em;
  transition: color 0.3s ease-in-out;
}

@media only screen and (max-width: 1280px) {
  .footer .footer-social a + a {
    margin-left: 20px;
  }
  .footer .footer-social a {
    height: 45px;
    width: 45px;
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 920px) {
  .footer .frame {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .footer .footer-links a {
    font-size: 0.7rem;
  }
  .footer .footer-social a {
    height: 40px;
    width: 40px;
    font-size: 0.8rem;
  }
  .footer .footer-social a + a {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 590px) {
  .footer p {
    padding: 50px 0px;
    font-size: 0.5rem;
    letter-spacing: 3px;
  }
  .footer .frame {
    flex-direction: column;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .footer .footer-social {
    margin-bottom: 30px;
  }
  .footer .footer-links {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-links a + a {
    margin-left: 0px;
  }
  .footer .footer-links a {
    margin: 10px 0px;
  }
}
#termine-view {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background: #ffffff;
  opacity: 0.97;
}
#termine-view #close-view {
  position: absolute;
  top: 50px;
  right: 90px;
  cursor: pointer;
}
#termine-view #close-view:hover i {
  color: #000000;
}
#termine-view #close-view i {
  color: #10d0d0;
  font-size: 2.2em;
  transition: all 0.3s ease-in-out;
}
#termine-view #termine-view-grid {
  display: grid;
  grid-template-columns: 60%;
  justify-content: center;
  margin-top: 150px;
}
#termine-view #termine-view-grid div.last-entry h1 {
  margin-bottom: 2px;
}
#termine-view #termine-view-grid div.last-entry .date-title h3 {
  margin-bottom: 5px;
  color: #10d0d0;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 1px;
}

@media only screen and (max-width: 1250px) {
  #termine-view #termine-view-grid {
    grid-template-columns: 80%;
  }
}
@media only screen and (max-width: 1200px) {
  #termine-view #close-view {
    top: 40px;
    right: 60px;
  }
  #termine-view #termine-view-grid div.last-entry p {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 750px) {
  #termine-view #close-view {
    top: 30px;
    right: 30px;
  }
  #termine-view #close-view i {
    font-size: 1.8em;
  }
  #termine-view #termine-view-grid {
    margin-top: 110px;
    grid-template-columns: 85%;
  }
  #termine-view #termine-view-grid div.last-entry p {
    font-size: 1em;
  }
  #termine-view #termine-view-grid div.last-entry .date-title h3 {
    font-size: 0.85em;
  }
}
@media only screen and (max-width: 430px) {
  #termine-view #close-view {
    top: 15px;
    right: 15px;
  }
  #termine-view #termine-view-grid {
    margin-top: 70px;
    grid-template-columns: 90%;
  }
  #termine-view #termine-view-grid div.last-entry p {
    font-size: 0.95em;
  }
}
.post-center {
  text-align: center;
}

.location-post + .location-post {
  margin-top: 30px;
}

.post-left .content-header, .post-left .post {
  text-align: left !important;
}

.post h2 {
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: #10d0d0;
}
.post h1 {
  font-weight: 900;
  margin-bottom: 35px;
  font-size: 1.6rem;
  color: #10d0d0;
}
.post h3 {
  color: #14161b;
  font-weight: 700;
  margin-bottom: 5px;
}
.post h4 {
  color: #10d0d0;
  margin-bottom: 5px;
}
.post h5 {
  font-weight: 900;
  color: #696e7a;
}
.post ul, .post ol {
  margin-left: 14px;
}
.post p, .post ul li, .post ol li {
  font-size: 1rem;
  line-height: 210%;
  color: #696e7a;
}
.post p a, .post ul li a, .post ol li a {
  font-weight: 900;
  color: #10d0d0;
}
.post p a:hover, .post ul li a:hover, .post ol li a:hover {
  color: #14161b;
}

@media only screen and (max-width: 750px) {
  .post {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .post p {
    font-size: 0.9rem;
    line-height: 190%;
  }
}
.ueber-uns-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 20px;
  transition: all 0.4s ease-in-out 0.1s;
  opacity: 0;
  transform: translateY(100px);
}
.ueber-uns-list.active {
  opacity: 1;
  transform: translateY(0px);
}
.ueber-uns-list .item {
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background: #26282e;
  padding: 0px 50px;
  height: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.ueber-uns-list .item:hover::after {
  height: 100%;
}
.ueber-uns-list .item:hover img {
  transform: scale(1.4);
}
.ueber-uns-list .item:hover .details {
  transform: translateX(-100%);
  opacity: 0;
}
.ueber-uns-list .item:hover a {
  transform: translateX(0);
  opacity: 1;
}
.ueber-uns-list .item::after {
  content: "";
  background: #10d0d0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  height: 0%;
  transition: all 0.2s ease-in-out;
}
.ueber-uns-list .item .details {
  position: relative;
  z-index: 200;
  transition: all 0.3s ease-in-out;
}
.ueber-uns-list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  transition: all 0.6s ease-in-out;
}
.ueber-uns-list .item h4 {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 900;
  color: #10d0d0;
}
.ueber-uns-list .item p {
  color: #ffffff;
  line-height: 150%;
  margin-top: 20px;
}
.ueber-uns-list .item a {
  color: #ffffff;
  border-color: #ffffff;
  position: absolute;
  z-index: 200;
  transform: translateX(150%);
  opacity: 0;
}
.ueber-uns-list .item a:hover {
  background: #ffffff;
  color: #10d0d0;
}

@media only screen and (max-width: 1024px) {
  .ueber-uns-list .item {
    height: 330px;
  }
}
@media only screen and (max-width: 750px) {
  .ueber-uns-list {
    margin-top: 50px;
  }
  .ueber-uns-list .item {
    height: 290px;
  }
}
@media only screen and (max-width: 460px) {
  .ueber-uns-list {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
  .ueber-uns-list .item {
    padding: 0px 20px;
  }
  .ueber-uns-list .item p {
    font-size: 0.9rem;
  }
}
.images, .videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 10px;
  margin-top: 40px;
}
.images .img, .images .video, .videos .img, .videos .video {
  height: 220px;
  overflow: hidden;
  border-radius: 30px;
  background: #14161b;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.images .img i, .images .video i, .videos .img i, .videos .video i {
  z-index: 200;
  color: #ffffff;
  font-size: 2.4rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
  pointer-events: none;
}
.images .img:hover, .images .video:hover, .videos .img:hover, .videos .video:hover {
  cursor: pointer;
}
.images .img:hover img, .images .video:hover img, .videos .img:hover img, .videos .video:hover img {
  filter: none;
  transform: scale(1.2);
  opacity: 1;
}
.images .img:hover i, .images .video:hover i, .videos .img:hover i, .videos .video:hover i {
  opacity: 1;
  transform: scale(1);
}
.images .img img, .images .video img, .videos .img img, .videos .video img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

#videos {
  background: #e8ebf0;
}
#videos i {
  opacity: 1;
  transform: scale(1);
}

#tech .frame.active .downloads {
  transform: translateX(0px);
  opacity: 1;
}

.downloads {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.4s ease-in-out 0.1s;
}
.downloads a + a {
  margin-top: 10px;
}
.downloads a {
  display: flex;
  padding: 20px 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 30px;
  border: solid 1px #c6c8cc;
  color: #ffffff;
}
.downloads a:hover {
  background: #10d0d0;
  border-color: #10d0d0;
}
.downloads a:hover i {
  color: #ffffff;
}
.downloads a:hover span {
  transform: translateX(10px);
}
.downloads a span {
  color: #14161b;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}
.downloads a i {
  color: #14161b;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 620px) {
  .downloads a {
    padding: 20px 30px;
  }
  .downloads a span {
    font-size: 0.8rem;
  }
}
.options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}
.options .option {
  color: #10d0d0;
  border: solid 2px #10d0d0;
  display: flex;
  border-radius: 30px;
  padding: 20px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.options .option i {
  margin-right: 12px;
  font-size: 1.3rem;
}
.options .option:hover {
  background: #14161b;
  color: #10d0d0;
  border-color: #14161b;
}
.options .option.active {
  background: #10d0d0;
  color: #ffffff;
  border: solid 2px #10d0d0;
}

.option-select article {
  display: none;
}
.option-select article.active {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .options .option {
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 750px) {
  .options {
    grid-template-columns: 1fr;
    justify-content: center;
    margin-bottom: 60px;
    gap: 10px;
  }
}
.showcase-content {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.showcase-content::after {
  content: "";
  height: 50%;
  background: #d9dcdf;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.showcase {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
}

.showcase-big {
  overflow: hidden;
  background: #14161b;
  height: 100%;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 10px 40px 40px 0px rgba(0, 0, 0, 0.45);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.showcase-big:hover .controls span.next, .showcase-big:hover .controls span.prev {
  transform: translateX(0px);
  opacity: 1;
}
.showcase-big:hover .zoom {
  opacity: 1;
}
.showcase-big .zoom {
  position: absolute;
  color: #ffffff;
  font-size: 1.5rem;
  top: 20px;
  right: 30px;
  z-index: 200;
  padding: 15px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.showcase-big .zoom:hover {
  color: #10d0d0;
}
.showcase-big .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 200;
  position: absolute;
  padding: 0px 20px;
  left: 0px;
  right: 0px;
}
.showcase-big .controls span {
  padding: 10px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.showcase-big .controls span:hover {
  color: #10d0d0;
}
.showcase-big .controls span.next {
  transform: translateX(100%);
}
.showcase-big .controls span.prev {
  transform: translateX(-100%);
}
.showcase-big img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.showcase-big img.active {
  opacity: 1;
}

.showcase-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.showcase-items .item {
  background: #14161b;
  height: 180px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.showcase-items .item.active {
  background: #10d0d0;
}
.showcase-items .item.active img {
  opacity: 0.4 !important;
}
.showcase-items .item:hover img {
  filter: none;
  opacity: 1;
}
.showcase-items .item img {
  position: absolute;
  top: 0;
  left: 0;
  object-position: center center;
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.2;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1600px) {
  .showcase {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }
}
@media only screen and (max-width: 1380px) {
  .showcase {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
  }
  .showcase-items .item {
    height: 160px;
  }
}
@media only screen and (max-width: 1280px) {
  .showcase {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .showcase-content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .showcase-big .controls span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1150px) {
  .showcase {
    grid-template-columns: 1fr;
  }
  .showcase-content {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .showcase-big {
    order: 1;
    height: 500px;
  }
  .showcase-items {
    order: 2;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}
@media only screen and (max-width: 890px) {
  .showcase-big {
    height: 400px;
  }
}
@media only screen and (max-width: 580px) {
  .showcase-big {
    height: 300px;
  }
  .showcase-big .zoom {
    font-size: 1.2rem;
    top: 10px;
    right: 15px;
  }
  .showcase-content::after {
    height: 80%;
  }
  .showcase-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .showcase-items .item {
    height: 120px;
  }
}
@media only screen and (max-width: 450px) {
  .showcase {
    gap: 30px;
  }
  .showcase-big {
    height: 260px;
  }
  .showcase-items {
    gap: 5px;
  }
  .showcase-items .item {
    height: 100px;
    border-radius: 20px;
  }
}
.button-list {
  border-radius: 40px;
  margin-top: 60px;
  background: #14161b;
  padding: 30px;
  text-align: center;
}
.button-list p {
  color: #ffffff;
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 25px;
  padding: 0px 10px;
  line-height: 100%;
}
.button-list p strong {
  color: #10d0d0;
}
.button-list .item .item-links a {
  padding: 20px 30px;
  justify-content: center;
  display: inline-flex;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.6rem;
  letter-spacing: 1px;
  border-style: solid;
  border-width: 2px;
  margin: 0px 5px;
}
.button-list .item .item-links a.info {
  background: #10d0d0;
  border-color: #10d0d0;
}
.button-list .item .item-links a.info:hover {
  background: none;
  color: #10d0d0;
}
.button-list .item .item-links a.location, .button-list .item .item-links a.artist {
  background: #ffffff;
  border-color: #ffffff;
  color: #14161b;
}
.button-list .item .item-links a.location:hover, .button-list .item .item-links a.artist:hover {
  background: none;
  color: #ffffff;
}

@media only screen and (max-width: 920px) {
  .button-list p {
    font-size: 1.2rem;
  }
  .button-list .item .item-links a {
    padding: 17px 30px;
  }
}
@media only screen and (max-width: 750px) {
  .button-list .item .item-links a + a {
    margin-top: 8px;
  }
  .button-list .item .item-links a {
    margin: 0px 0px;
    width: 100%;
  }
}
@media only screen and (max-width: 490px) {
  .button-list {
    padding: 35px 22px 40px 22px;
  }
}
#showroom, .showroom-video {
  background: rgba(13, 14, 17, 0);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0.1s;
}
#showroom.active, .showroom-video.active {
  opacity: 1;
  background: rgba(13, 14, 17, 0.99);
  pointer-events: all;
}

#showroom-next, #showroom-prev, #showroom-close {
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

#showroom-next i, #showroom-prev i {
  color: #ffffff;
  font-size: 1.2em;
}
#showroom-next:hover, #showroom-prev:hover {
  cursor: pointer;
  opacity: 0.6;
}

#showroom-next, #showroom-prev {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

#showroom-prev {
  left: 20px;
}

#showroom-next {
  right: 20px;
}

.showroom-video-inner {
  width: 80%;
}

#showroom-inner {
  width: 1150px;
}

#showroom-inner, .showroom-video-inner {
  height: 82%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#showroom-inner img, .showroom-video-inner img {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease-in-out;
}
#showroom-inner img.active, .showroom-video-inner img.active {
  opacity: 1;
}

#youtube-video {
  opacity: 0;
  width: 100%;
  max-width: 1280px;
  height: auto;
  transition: all 0.4s ease-in-out;
  -webkit-aspect-ratio: 16/9;
  aspect-ratio: 16/9;
}
#youtube-video.active {
  opacity: 1;
}

#showroom-index {
  color: #ffffff;
  font-size: 1em;
  letter-spacing: 2px;
  position: absolute;
  top: 40px;
  left: 40px;
}

#showroom-close, .video-close {
  transition: all 0.3s ease-in-out;
  position: absolute;
  padding: 20px;
  top: 22px;
  right: 50px;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
}
#showroom-close:hover, .video-close:hover {
  color: #10d0d0;
}

@media only screen and (max-width: 1350px) {
  #showroom-inner {
    width: 900px;
  }
}
@media only screen and (max-width: 1100px) {
  #showroom-inner {
    width: 820px;
  }
}
@media only screen and (max-width: 970px) {
  #showroom-inner {
    width: 700px;
  }
  #showroom-prev {
    left: 10px;
  }
  #showroom-next {
    right: 10px;
  }
  #showroom-next, #showroom-prev {
    width: 40px;
    height: 40px;
  }
  #showroom-index {
    font-size: 0.9em;
    top: 20px;
    left: 25px;
  }
  #showroom-close {
    top: 0px;
    right: 5px;
  }
}
@media only screen and (max-width: 740px) {
  #showroom-inner {
    width: 100%;
  }
  #showroom-prev {
    left: 0px;
  }
  #showroom-next {
    right: 0px;
  }
}
.rsp-mask {
  background: #10d0d0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 400;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.rsp-mask.active {
  transform: translateX(0%);
}

#rsp-btn {
  z-index: 9000;
  cursor: pointer;
  display: none;
  transition: all 0.4s ease-in-out;
  flex-direction: column;
  align-items: flex-end;
}
#rsp-btn.active {
  transform: rotate(180deg);
}
#rsp-btn.active span:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}
#rsp-btn.active span:nth-child(2) {
  opacity: 0;
}
#rsp-btn.active span:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
#rsp-btn span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0px;
  transition: all 0.2s ease-in-out;
  width: 44px;
}

@media only screen and (max-width: 1024px) {
  #rsp-btn {
    display: inline-flex;
  }
}
@media only screen and (max-width: 680px) {
  #rsp-btn {
    top: 34px;
    right: 20px;
  }
}
.loading {
  background: rgba(16, 208, 208, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: all 0.3s ease-in-out 1s;
}
.loading .loading-message {
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out 0.3s;
  padding: 0px 20px;
}
.loading .loading-message.active {
  opacity: 1;
  transform: translateY(0px);
}
.loading .loading-message i {
  font-size: 5rem;
  margin-bottom: 20px;
}
.loading .loading-message h2 {
  font-size: 1.6rem;
}
.loading .loading-ring {
  display: block;
  position: absolute;
  transform: translateY(50px);
  transition: all 0.3s ease-out 0.3s;
  opacity: 0;
  pointer-events: none;
}
.loading .loading-ring:after {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  border-color: #ffffff #ffffff transparent #ffffff;
  animation: LOADER 1s linear infinite;
}
.loading .loading-ring.active {
  opacity: 1;
  transform: translateY(0px);
}
.loading.active {
  background: rgb(16, 208, 208);
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

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