* {
  margin: 0;
  padding: 0;
  font-family: 'Syne';
  letter-spacing: .06em;
}

:root {
  --text-color: #FAF9F6;
  --bg-color: black;
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  color: var(--text-color);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#header {
  width: 100vw;
  height: 10vh;
  position: absolute;
  top: 0;
  z-index: 999;
}

#header .header-wrap {
  width: 100vw;
  height: 100%;
}

#header #desktop {
  display: none;
}

#header #desktop .desktop-menu {
  height: 5vh;
  width: 50vw;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

#header #desktop .desktop-menu ul {
  position: absolute;
  top: 50%;
  right: 0;
  padding-right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#header #desktop .desktop-menu ul li {
  display: inline;
  margin-left: 25px;
  float: left;
}

#header #desktop .desktop-menu ul li a {
  text-decoration: none;
  text-decoration-thickness: 0.7px;
  text-underline-offset: 10px;
  color: var(--text-color);
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 200;
  letter-spacing: 0;
}

#header #desktop .desktop-menu ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.7px;
  text-underline-offset: 10px;
}

#page .section {
  display: block;
}

#page #sct1 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
}

#page #sct1 .background {
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
}

#page #sct1 .background video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

#page #sct1 .background .video-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page #sct1 .background .img-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page #sct1 .background .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100vh;
}

#page #sct1 .gradient-overlay {
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background-image: linear-gradient(rgba(0, 0, 0, 0), black);
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}

#page #sct1 .hero {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
}

#page #sct1 .hero-txt {
  color: var(--text-color);
  position: absolute;
  bottom: 0;
  padding-bottom: 20vh;
  padding-left: 30px;
  max-width: 80vw;
  letter-spacing: 0;
}

#page #sct1 .hero-txt h1 {
  font-weight: 700;
  font-size: 32px;
  padding-bottom: 20px;
  letter-spacing: 0;
}

#page #sct1 .hero-txt p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
}

#page #sct1 .hero-txt p a {
  color: #6d6d6d;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 5px;
  letter-spacing: 0;
}

#page #sct1 .hero-txt p a:hover {
  color: #fda05a;
}

@media only screen and (min-width: 768px) {
  #header #mobile {
    display: none;
  }
  #header #desktop {
    display: block;
  }
  .hero-txt {
    width: 40vw;
    padding-right: 10vw;
    float: right;
    position: absolute;
    right: 0;
    padding-left: 0;
  }
}

.section-main {
  display: block;
  width: 100vw;
}

.section-heading {
  color: var(--text-color);
  text-transform: uppercase;
  font-family: 'Syne';
  width: calc(100vw - 60px);
  padding-left: 0px;
  padding-top: 50px;
  padding-bottom: 30px;
  margin-left: 30px;
  font-size: 15px;
  font-weight: 800;
}

@media only screen and (min-width: 768px) {
  .section-heading {
    margin-left: 60px;
    font-size: 20px;
  }
}

#sct-photo {
  margin-top: 100vh;
  overflow: hidden;
}

#sct-photo .nightlife-container {
  display: block;
  width: 100vw;
  height: 100vh;
  text-align: center;
}

#sct-photo .nightlife-container .nghtlf-content-1 .nghtlf-bg-wrapper-1 {
  background-color: transparent;
  width: calc(100vw);
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 100vh;
}

#sct-photo .nightlife-container .nghtlf-content-1 .nghtlf-bg-wrapper-1 img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  max-height: 100vh;
  display: block;
  margin: 0 auto;
}

#sct-photo .nightlife-container .nghtlf-content-1 .gradient-overlay {
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(rgba(0, 0, 0, 0.3)), to(black));
  background-image: linear-gradient(black, rgba(0, 0, 0, 0.3), black);
  z-index: 0;
  position: absolute;
  top: 100vh;
  right: 0;
}

#sct-photo .nightlife-container .nghtlf-content-1 .h3-wrap {
  position: absolute;
  top: 100vh;
  width: 100vw;
}

#sct-photo .nightlife-container .nghtlf-content-1 .h3-wrap h3 {
  padding-top: 60px;
  font-size: 15px;
}

#sct-web {
  margin-top: 20px;
  overflow-x: hidden;
  overflow-y: hidden;
}

#sct-web .concepts {
  width: 100vw;
  margin: 0 auto;
  padding-bottom: 40px;
  padding: 40px;
  overflow-x: hidden;
  overflow-y: hidden;
}

#sct-web .concepts .card {
  background: #261132;
  border-radius: 15px;
  display: inline-block;
  height: 400px;
  margin-bottom: 60px;
  position: relative;
  width: calc(100vw - 80px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

#sct-web .concepts .card .bg {
  height: 400px;
  width: calc(100vw - 80px);
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
}

#sct-web .concepts .card .proj-category {
  display: block;
  padding-top: 30px;
  padding-left: 30px;
}

#sct-web .concepts .card .text-wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  top: 140px;
  margin: 30px;
  margin-bottom: 20px;
  color: var(--text-color);
}

#sct-web .concepts .card .text-wrap .card-heading {
  z-index: 1;
  font-weight: 800;
  padding-bottom: 10px;
  font-size: 15px;
}

@media only screen and (min-width: 768px) {
  #sct-web .concepts .card .text-wrap .card-heading {
    font-size: 20px;
  }
}

#sct-web .concepts .card .text-wrap .card-descr {
  padding-bottom: 20px;
}

#sct-web .concepts .card .explore {
  color: #c6c6c6;
  text-decoration: none;
  position: absolute;
  bottom: 0;
  padding-left: 30px;
  margin-bottom: 30px;
}

#sct-web .concepts #card-1 {
  background-image: url("https://images.unsplash.com/photo-1605647257485-28019bfed0e8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
}

#sct-web .concepts #card-2 {
  background-image: url("https://images.unsplash.com/photo-1609921141835-710b7fa6e438?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
}

@media only screen and (min-width: 768px) {
  #sct-web .concepts {
    padding: 100px;
  }
  #sct-web .concepts .card {
    width: calc(50vw - 4vw - 100px);
    margin: 2vw;
  }
}

#sct-web .clients {
  margin: 0px 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #sct-web .clients {
    margin: 0px 60px;
  }
  #sct-web .clients .p-clients {
    font-size: 20px;
  }
}

#sct-web .clients p {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  padding-top: 0px;
}

#sct-web .clients ul {
  padding-top: 50px;
  padding-bottom: 80px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#sct-web .clients ul li {
  list-style-type: none;
  display: inline-block;
}

#sct-web .clients ul li img {
  max-height: 100px;
}

#contact {
  background-color: var(--text-color);
  color: black;
  text-align: center;
}

#contact h2 {
  color: black;
  width: calc(100vw - 60px);
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0;
}

#contact #email {
  padding-top: 0px;
  font-size: 16px;
}

#contact .socialmedia {
  width: 100vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 45px;
}

#contact .socialmedia ul > li {
  display: inline-block;
}

#contact .socialmedia li {
  width: 26px;
  height: auto;
  padding: 15px;
}

footer .footer-wrap {
  margin: 20px 30px;
  padding-bottom: 16px;
  font-size: 12px;
  color: #363636;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer-wrap .copyright {
  float: left;
}

footer .footer-wrap .imprint {
  float: right;
  text-align: right;
}

footer .footer-wrap .imprint a {
  text-decoration: none;
  text-align: right;
  color: #363636;
}

@media only screen and (min-width: 768px) {
  footer .footer-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 60px;
    font-size: 15px;
  }
}
/*# sourceMappingURL=main.css.map */