@charset "UTF-8";
/* No CSS */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

:root {
  /* COLOURS 🟩🟨🟧🟥🟪🟦 */
  --accent-col: #f2bb65;
  --bright: #fbe9bb;
  --customblack: #242424;
  --customblacklilbrighter: #333333;
  --visual: #B47471;
  --music: #EABC87;
  --travel: #8A9E6A;
  --sound: #637297;
  --softwareblue: rgb(41, 41, 183);
  --scrollPosition:1;
  --viewporth:0;
  --viewportw:0;
  /* fade in elements on scroll */
  --SCROLLANIMATION_longfadein:0;
  --SCROLLANIMATION_quickfadein:0;
  --SCROLLANIMATION_nofadein:1;
}

/*
.SCROLLANIMATION_longfadein{
  opacity: var(--SCROLLANIMATION_longfadein);
}

.SCROLLANIMATION_quickfadein{
  opacity: var(--SCROLLANIMATION_quickfadein);
}

.SCROLLANIMATION_nofadein{
  opacity: 1;
}
*/
.hoverscale {
  transition: ease-out 200ms;
}
.hoverscale:hover {
  scale: 103%;
}

.mainbg {
  background: url("../resources/design/16zu9_drain_full_bw_dark.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  height: calc(100vh + 150px); /* a little bigger than screen should be so that there is no grey border during transtion time transition  */
  transition: 999s;
  width: 100vw;
  top: 0;
  left: 0;
}

.mainbgintrocontainer {
  width: 100vw;
  height: calc(100vh + 150px); /* a little bigger than screen should be so that there is no grey border during transtion time transition  */
  top: 0;
  left: 0;
  position: fixed;
  transition: 999s;
}
.mainbgintrocontainer .mainbgintro {
  opacity: calc(1 - var(--SCROLLANIMATION_quickfadein));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: ease-out 4s;
}

.mainvideobackbround {
  position: sticky;
  top: 0;
}

.top_buffer {
  height: 10vh;
}
@media only screen and (max-width: 1025px) {
  .top_buffer {
    height: 5px;
  }
}

.herobanner {
  position: relative;
  top: calc(-1 * var(--nav-height));
  height: 250vh;
  transition: 999s;
}

.herobannercontainer {
  position: sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  top: 0;
  mix-blend-mode: lighten;
  background-image: url(/resources/modules/welcome/Sandgrube18_hand_trans_liqui.jpg);
  background-repeat: no-repeat;
  background-size: calc(120vw + 0.005vw * var(--scrollPosition) * var(--scrollPosition));
  background-position: center center;
  background-blend-mode: difference;
  height: 100vh;
  width: 100%;
  transition: 0.07s;
  opacity: calc(2 - var(--scrollPosition) / var(--viewporth));
}

@media only screen and (max-width: 769px) {
  .herobannercontainer {
    background-size: calc(250vw + 0.05vw * var(--scrollPosition) * var(--scrollPosition));
  }
}
body {
  font: 75% poppins, sans-serif;
  min-height: 100%;
  line-height: 1.9;
  color: #fff;
  background: var(--customblack);
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  --nav-height: 50px;
  padding-top: var(--nav-height);
  /* STYLE HYPERLINK */
  /* unvisited link */
  /* visited link */
  /* mouse over link */
  /* selected link */
}
body a:link {
  color: hotpink;
  text-decoration: none !important;
  cursor: pointer;
}
body a:visited {
  color: hotpink;
}
body a:hover {
  color: rgb(255, 204, 224);
}
body a:active {
  color: var(--accent-col);
}

p {
  text-align: center;
  font-size: 20px;
  margin: 0;
}

ul {
  font-size: 20px;
}

@media (max-width: 8.3in) {
  p {
    font-size: 15px;
  }
  ul {
    font-size: 20px;
  }
}
.minitext {
  font-size: 100%;
}

.herotitle {
  position: relative;
  align-items: center;
  font-size: 250%;
  width: 50%;
  background-color: red;
  top: 20%;
}
.herotitle p {
  color: black;
}

.index_mainheading {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 650;
  text-align: center;
}

.chat {
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 20px;
  text-align: justify;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 8.3in) {
  .chat {
    font-size: 15px;
  }
}
.chatL {
  margin-right: 20%;
  background-color: rgb(225, 225, 225);
  color: black;
}

.chatR {
  margin-left: 20%;
  background-color: rgb(72, 160, 48);
  color: black;
}/*# sourceMappingURL=main.css.map */