@import url("https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&family=Bungee&display=swap");
:root {
  --bg: #1d1d1d;
  --text: #FAF9F6;
  --dark-color: black;
  --light-color: white;
  --primary: 250 66% 61%;
}

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

html, body {
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Bungee", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-image: url(/images/background.jpg);
}

.bubbles {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 760px;
  background: url(/images/testeys.png) no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: screen;
  transform-origin: center;
}

h1 {
  font-family: "BBH Sans Bartle";
  font-size: 95px;
  font-weight: 400;
  line-height: 81%;
  text-transform: uppercase;
}

p {
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: var(--text);
  font-family: "BBH Sans Bartle";
}

.logo {
  position: fixed;
  margin: 2rem;
  z-index: 100;
}

.logo a {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  transition: 1s;
}

.logo a:hover {
  font-size: 25px;
}

.logo .logo-revealer {
  position: absolute;
  top: 25px;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
  opacity: 0;
}

.contact {
  position: absolute;
  margin: 2rem;
  right: 0;
  z-index: 100;
}

.contact a {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  transition: 1s;
  color: #8fbcff;
}

.contact a:hover {
  font-size: 25px;
  color: #6c6fff;
}

.contact .contact-revealer {
  position: absolute;
  top: 25px;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
  opacity: 0;
}

.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.hero > div {
  display: flex;
  flex-direction: column;
  padding: 15rem 5rem 5rem 5rem;
}

.header {
  flex: 3;
}

.copy {
  flex: 2;
}

.hero .header .row {
  position: relative;
}

.hero .header .row .h1-revealer {
  position: absolute;
  top: 150px;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
  opacity: 0;
}

.copy-top .row, .copy-bottom .row {
  position: relative;
}

.copy-top .row p, .copy-bottom .row p {
  position: relative;
}

.copy-top .row .p-revealer, .copy-bottom .row .p-revealer {
  position: absolute;
  top: 30px;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
}

.pre-loader {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 200;
}

.loader-wrapper {
  position: relative;
  width: 5px;
  height: 100px;
  background: rgba(240, 240, 250, 0.25);
  overflow: hidden;
  transform: rotate(40deg);
}

.loader {
  position: absolute;
  top: 0;
  width: 120%;
  height: 120%;
  background: var(--bg);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  h1 {
    font-size: 60px;
  }
  .h1-revealer, .p-revealer, .logo-revealer, .contact-revealer {
    display: none;
  }
  .hero > div {
    padding: 8rem 4rem 2rem 4rem;
  }
}
.read-more-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
}

.read-more {
  padding: 15px 40px;
  border: none;
  outline: none;
  color: #FFF;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
  font-size: 20px;
}

.read-more::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333131;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.read-more::before {
  content: "";
  background: linear-gradient(45deg, #00ccff, #0066ff, #003cff, #0004ff);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.read-more:hover::before {
  opacity: 1;
}

.contact-button {
  font-size: 10px;
}

.testimony-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 6rem;
  justify-content: center;
  text-align: center;
}

.testimony {
  background-color: #333131;
  width: 500px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 1rem;
  border: 2px;
  border-color: black;
  padding: 1rem;
  margin: 0.5rem;
  z-index: 100;
}

.testimony .testimony-name {
  font-size: 30px;
  font-family: "BBH Sans Bartle";
  margin-bottom: 0.5em;
}

.testimony .testimony-text {
  text-align: center;
  justify-content: center;
}

.testimony .testimony-text p {
  font-size: 18px;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 80px;
  }
  .testimony-container {
    padding: 1rem;
  }
  .testimony {
    padding: 0.5rem;
    margin: 0.2rem;
  }
  .testimony .testimony-name {
    font-size: 25px;
  }
  .testimony .testimony-text p {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 70px;
  }
  p {
    font-size: 15px;
  }
  .bubbles {
    left: 50%;
  }
  .testimony-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .testimony {
    width: 600px;
  }
  .testimony .testimony-text p {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 30px;
  }
  p {
    margin-top: 1rem;
    font-size: 13px;
  }
  .bubbles {
    background-size: 80%;
  }
  .logo {
    font-size: 15px;
    margin-top: 2rem;
  }
  .contact {
    left: 0;
    margin-top: 4rem;
  }
  .read-more {
    display: none;
  }
  .testimony-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
  }
  .testimony {
    width: 300px;
    margin: 1rem;
  }
  .testimony .testimony-text p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */