@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: NokaBold;
  src: url(/fonts/NokaBold.woff2);
}

@font-face {
  font-family: NokaBold;
  src: url(/fonts/NokaBold.ttf);
}

@font-face {
  font-family: NokaBold;
  src: url(/fonts/NokaBold.eot);
}

@font-face {
  font-family: NokaBold;
  src: url(/fonts/NokaBold.woff);
}

.header,
.home-content,
.services,
.reasonrefill,
.colaboration,
.music-content,
.music-head,
.about-content,
.contact,
.form,
.footer {
  content-visibility: auto;
}

h1 {
  font-family: NokaBold;
}

h2 {
  font-family: NokaBold;
}

h3 {
  font-family: NokaBold;
}

h4 {
  font-family: NokaBold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #1d202f;
  --second-bg-color: #32364c;
  --container-color: #b2b9cb;
  --text-color: #fff;
  --main-color: #00cae6;
  --main-colorVar: #00a9b4;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

section {
  min-height: 100vh;
  padding: 10rem 9% 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 9%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  --text-color: white;
  transition: 0.6s;
  border-bottom: transparent;
}

.header.sticky {
  background: var(--bg-color);
  opacity: 1;
}

.header.sticky {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.heading {
  text-align: center;
  font-size: 4.5rem;
}

.logo-container {
  height: 4vw;
}

.logo-img img {
  width: 13vw;
  margin-top: -7px;
}

.navbar a {
  font-size: 1.7rem;
  color: var(--text-color);
  margin-left: 4rem;
}

.navbar.active {
  background: black;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--text-color);
  display: none;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(/images/PulsarWaveFull.webp);
  background-position: center center;
  background-size: cover;
}

.home h2 {
  /* color: var(--main-color); */
  font-size: 2rem;
  margin-bottom: 2rem;
}

.home-content {
  color: white;
  margin-left: 50%;
  margin-top: 13%;
}

.home-content h3 {
  font-size: 3.2rem;
  font-weight: 700;
}

.home-content h3:nth-of-type(2) {
  margin-bottom: 2rem;
}

span {
  color: var(--main-color);
}

.home-content h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-content p {
  font-size: 1.6rem;
}

.social-media a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.5s ease;
}

.social-media a:hover {
  background: var(--main-color);
  color: var(--second-bg-color);
  box-shadow: 0 0 1rem var(--main-color);
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  box-shadow: 0 0 1rem var(--main-color);
  font-size: 1.6rem;
  color: var(--second-bg-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.btn:hover {
  box-shadow: none;
}

.services h2 {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

.services-container .services-box {
  flex: 1 1 30rem;
  background: var(--second-bg-color);
  padding: 3rem 2rem 4rem;
  border-radius: .5rem;
  text-align: center;
  border: 0.2rem solid var(--bg-color);
  transition: 0.5s ease;
}

.services-container .services-box:hover {
  border-color: var(--main-color);
  transform: scale(1.02);
}

.services-box i {
  font-size: 7rem;
  color: var(--main-color);
}

.services-box h3 {
  font-size: 2.6rem;
}

.services-box p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
}

.reasonrefill {
  background-color: var(--second-bg-color);
}

.reasonrefill img {
  background: var(--container-color);
}

.reasonrefill h2 {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.reasonrefill-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.reasonrefill-content {
  position: absolute;
  color: black;
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 10px;
  font-size: 1.8rem;
}

.reasonrefill-box {
  height: 100%;
  align-items: center;
  transition: 0.5s ease;
}

.reasonrefill-container .reasonrefill-box {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  display: flex;
}

.reasonrefill-box img {
  width: 100%;
  transition: 0.5s ease;
}

.reasonrefill-box:hover {
  transform: scale(1.05);
}

.reasonrefill-box .reasonrefill-layer {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), var(--main-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.reasonrefill-box:hover .reasonrefill-layer {
  transform: translateY(0);
}

.reasonrefill-layer p {
  font-size: 1.5rem;
  margin: 0.3rem 0 1rem;
}

.reasonrefill-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--text-color);
  border-radius: 50%;
}

.reasonrefill-layer a i {
  font-size: 2rem;
  color: var(--second-bg-color);
}

.colaboration {
  background-color: var(--second-bg-color);
}

.colaboration img {
  background: var(--container-color);
}

.colaboration h2 {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.colaboration-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.colaboration-content {
  position: absolute;
  color: black;
  text-align: center;
  margin: auto;
  width: 100%;
  padding: 10px;
  font-size: 1.8rem;
}

.colaboration-box {
  height: 100%;
  align-items: center;
  transition: 0.5s ease;
}

.colaboration-container .colaboration-box {
  position: relative;
  border-radius: .5rem;
  overflow: hidden;
  display: flex;
}

.colaboration-box img {
  width: 100%;
  transition: 0.5s ease;
}

.colaboration-box:hover {
  transform: scale(1.05);
}

.colaboration-box .colaboration-layer {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), var(--main-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  transform: translateY(100%);
  transition: 0.5s ease;
}

.colaboration-box:hover .colaboration-layer {
  transform: translateY(0);
}

.colaboration-layer p {
  font-size: 1.5rem;
  margin: 0.3rem 0 1rem;
}

.colaboration-layer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--text-color);
  border-radius: 50%;
}

.colaboration-layer a i {
  font-size: 2rem;
  color: var(--second-bg-color);
}

.music {
  background-color: var(--container-color);
}

.music h2 {
  color: black;
  margin-top: 2rem;
}

.music-content {
  color: black;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bandcamp-container {
  width: 150%;
  size-adjust: 16/9 auto;
}

.bandcamp-container iframe {
  border-radius: 10px;
}

.music-content h3 {
  top: auto;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  margin-right: 5rem;
}

.music-content p {
  margin-right: 5rem;
  text-align: justify;
  font-size: 1.6rem;
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  background: var(--second-bg-color);
}

.about-img img {
  height: 30vw;
  border-radius: 50px;
  margin-right: 40px;
}

.about-content h2 {
  text-align: left;
  line-height: 1.2;
}

.about-content h3 {
  font-size: 2.6rem;
}

.about-content p {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
}

.contact h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box textarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: black;
  background: var(--container-color);
  border-radius: 0.8rem;
  margin: 0.7rem 0;
}

.field .error-txt {
  font-size: 14.5px;
  color: #d93025;
  text-align: left;
  margin: -5px 0 10px;
  display: none;
}

.field.error .error-txt {
  display: block;
}

.error-txt .field {
  max-width: 70rem;
  margin: 0.1rem auto;
  text-align: center;
  margin-bottom: 0;
}

form .error-txt {
  margin-top: 0px;
}

.contact form .input-box input .error-txt .field {
  width: 49%;
}

.contact form {
  resize: none;
}

.contact form .btn {
  margin-top: 2rem;
  cursor: pointer;
}

.footer {
  background: var(--container-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;
}

.footer-text p {
  color: black;
  font-size: 1.6rem;
}

.footer-iconTop a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  background: var(--main-color);
  border-radius: 0.8rem;
  transition: 0.5s ease;
}

.footer-iconTop a:hover {
  box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--second-bg-color);
}

/*BREAKPOINTS*/
@media (max-width: 1537px) {
  .background {
    background-image: url(/images/PulsarWaveMedium.webp);
  }

  .reasonrefill-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .colaboration-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .bandcamp-container {
    width: 200%;
  }
}

@media (max-width: 1200px) {
  .logo-img img {
    height: 100%;
  }

  html {
    font-size: 50%;
  }

  .reasonrefill-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .colaboration-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .logo-img img {
    width: 100%;
    height: 100%;
  }

  .header {
    padding: 2rem 3%;
  }

  section {
    padding: 10rem 3% 2rem;
  }

  .services {
    padding-bottom: 7rem;
  }

  .reasonrefill {
    padding-bottom: 7rem;
  }

  .reasonrefill-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .colaboration-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .colaboration {
    padding-bottom: 7rem;
  }

  .bandcamp-container {
    width: 300%;
  }

  .contact {
    min-height: auto;
  }

  .footer {
    padding: 2rem 3%;
  }
}

@media (max-width: 768px) {
  .logo-img img {
    height: 160%;
    margin-top: -10px;
  }

  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    display: none;
  }

  .header.active {
    background: var(--bg-color);
    transition: none;
  }

  .navbar.active {
    background: var(--bg-color);

    display: block;
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }

  .home {
    flex-direction: column;
  }

  .home-content {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 20%;
  }

  #home h2 {
    font-size: 2.5rem;
  }

  .home-content h3 {
    font-size: 4rem;
  }

  .home-content p {
    font-size: 2rem;
  }

  .home-img img {
    width: 70vw;
    margin-top: 4rem;
  }

  .services h2 {
    margin-bottom: 3rem;
  }

  .reasonrefill h2 {
    margin-bottom: 3rem;
  }

  .reasonrefill-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasonrefill h2 {
    margin-bottom: 3rem;
  }

  .reasonrefill-layer p,
  a {
    font-size: 2rem;
  }

  .colaboration-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .colaboration-layer p,
  a {
    font-size: 2rem;
  }

  .music-content {
    width: 100%;
    flex-direction: column;
    align-self: center;
  }

  .music-box {
    margin-left: 5%;
    margin-bottom: 5%;
  }

  .bandcamp-container {
    width: 50%;
  }

  .about {
    flex-direction: column-reverse;
  }

  .about img {
    height: 50vh;
  }
}

@media (max-width: 617px) {
  .logo-img img {
    height: 200%;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .reasonrefill-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .reasonrefill-content {
    font-size: 3rem;
  }

  .reasonrefill-layer p,
  a {
    font-size: 3rem;
  }

  .colaboration-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .colaboration-content {
    font-size: 3rem;
  }

  .colaboration-layer p,
  a {
    font-size: 3rem;
  }

  .bandcamp-container {
    width: 90%;
    height: 100%;
  }
}

@media (max-width: 450px) {
  .logo-img img {
    margin-top: -15px;
    height: 300%;
  }

  .reasonrefill-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .colaboration-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .music-content {
    justify-content: center;
  }

  .bandcamp-container {
    width: 90%;
    margin-right: 25px;
  }

  .about-img img {
    width: 75%;
    height: 75%;
    padding-top: 20px;
    overflow: hidden;
    margin-left: 12vw;
  }

  .contact form .input-box input {
    width: 100%;
  }

  .footer,
  .footer p {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .about-img img {
    height: 100%;

  }

  .music h2 {
    margin: none;
  }

  .music-box {
    margin-left: 30px;
  }

  .bandcamp-container {
    width: 100%;
    height: 100%;
  }

  .music .music-content,
  .music-bandcamp-container {
    justify-content: center;
    display: block;
    flex-direction: column;
  }

  .contact {
    min-height: auto;
  }

  .footer {
    flex-direction: column-reverse;
  }

  .footer {
    padding: 2rem 3%;
  }

  .footer p {
    text-align: center;
    margin-top: 2rem;
  }
}

@media (max-width: 320px) {
  .logo-img img {
    margin-top: none;
    height: 350%;
  }

  .music h2 {
    margin: none;
  }

  .music-box {
    margin-left: 25px;
  }

  .bandcamp-container {
    width: 100%;
    height: 50%;
  }
}