@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Nunito:400,600,700,800");

body,
html {
  min-height: 100%;
}

body {
  background-color: #000;
  font-size: .8rem;
  font-weight: 400;
  font-family: "Nunito", "Segoe UI", arial;
  color: #fff;
}

a {
  text-decoration: unset;
  color: #fff;
  font-weight: 500;
}

a:hover {
  color: #3abaf4;
}

#app {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #000;
  background-image: url("/static/images/banner/banner.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-section {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 2rem 0;
}

.main-section .logo img {
  height: auto;
  width: 100%;
  max-width: 500px;
}

.main-section .content {
  margin-top: 6rem;
}

.main-section .content .title h1 {
  font-size: 1rem;
  font-weight: 700;
}

.main-section .content .title.animation h1 {
  position: relative;
  background: linear-gradient(90deg, #3abaf4, #fff, #3abaf4);
  letter-spacing: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 80%;
  animation: shine 5s linear infinite;
}

.main-section .content .description p {
  font-size: 1rem;
  margin-top: 2rem;
}

.main-section .contact {
  margin-top: 3rem;
}

.main-section .contact .contact-item {
  margin-top: 3rem;
}

.main-section .contact .contact-item .contact-item-icon {
  font-size: 1.5rem;
}

.main-section .contact .contact-item .contact-item-content {
  margin-top: 1rem;
}

.main-section .whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
}

.main-section .whatsapp .whatsapp-link {
  position: fixed;
  width: 42.5px;
  height: 42.5px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 42.5px;
  text-align: center;
  font-size: 1.5rem;
  box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
  z-index: 9;
}

.main-section .whatsapp .whatsapp-link:hover {
  color: #fff;
}

.main-section .whatsapp .whatsapp-link svg {
  margin-top: 0.525rem;
  margin-left: 0.025rem;
}
  
@keyframes shine {
  0% {
    background-position-x: -500%;
  }
  100% {
    background-position-x: 500%;
  }
}

@media only screen and (min-width: 992px) {
  .main-section .content {
    margin-top: 9rem;
  }

  .main-section .contact {
    margin-top: 6rem;
  }
}

@media only screen and (min-width: 576px) {
  body {
    font-size: 1.2rem;
  }

  .main-section .content .title h1 {
    font-size: 1.8rem;
  }

  .main-section .content .description p {
    font-size: 1.5rem;
  }

  .main-section .contact .contact-item .contact-item-icon {
    font-size: 2rem;
  }

  .main-section .whatsapp .whatsapp-link {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 2rem;
  }
}
