*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fefefe;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--gold1, linear-gradient(169deg, #2d5755 19.42%, #baece9 56.27%, #2d5755 87.15%));
}

body {
  color: white;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.bg-img {
  background-image: url("/img/bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  top: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.myVideo {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

#thatsokay {
  margin: blue;
}

#corpo {
  display: flex;
  flex-direction: column;
  opacity: 0.81;
  margin: auto;
  width: 80vw;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
}

.box {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 250px;
  height: 250px;
  margin: 3rem;
}

h1 {
  text-align: center;
  font-family: "Montserrat";
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  color: #1f1f1f;
}

h2 {
  font-weight: 300;
  margin-bottom: 2rem;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5.82px;
  text-align: center;
}

.icone {
  height: 30px;
  width: 30px;
  margin: 0 1rem;
}

.link {
  display: flex;
  font-family: "montserrat";
  align-items: center;
  justify-content: center;
  color: #131313;
  text-decoration: none;
  padding: 1rem;
  border: 1px solid #131313;
  background-color: transparent;
  border-radius: 3px;
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
  width: 30vw;
  transition: all 0.3s ease;
}

.link:hover {
  transform: translate(0, -5px);
  background: rgba(255, 255, 245, 0.31);
  box-shadow: 0px 0px 25px rgba(79, 79, 79, 0.5);
  font-weight: 600 !important;
}

p {
  margin: auto 0.5rem;
  font-weight: 500 !important;
  font-size: 1rem;
}

.mini {
  font-style: italic;
  font-size: 0.9rem;
  width: 100%;
  line-height: 170%;
}

.link2 {
  display: flex;
  color: #131313;
  text-decoration: none;
  padding: 1rem;
  background-color: transparent;
  border-radius: 3px;
  justify-content: center;
  font-weight: 600;
  font-family: "montserrat";
  border: 1px solid #131313;
  margin: 1.5rem 0;
  width: 90%;
  transition: all 0.3s ease;
}

.link2:hover {
  transform: translate(0, -5px);
  background: rgba(255, 255, 245, 0.31);
  box-shadow: 0px 0px 25px rgba(79, 79, 79, 0.5);
  font-weight: 600 !important;
}

p {
  margin: auto 0.5rem;
  font-weight: 300;
  font-size: 1rem;
}

.preloader {
  background: #fbfbfb url(/video/load_gif.gif) no-repeat center center;
  background-size: 30%;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 5;
  top: 0;
}

h3 {
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

h4 {
  width: 100%;
  font-size: 1.1rem;
  text-align: center;
  margin: 3rem 0 1rem;
}

@media screen and (max-width: 768px) {
  .link {
    width: 80vw;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 0.8rem;
    color: #131313;
  }
  #corpo {
    width: 90vw;
  }
  .preloader {
    background-size: 50%;
  }
}
@media screen and (max-width: 368px) {
  .logo {
    width: 175px;
    height: 175px;
  }
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 0.6rem;
  }
  h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  h4 {
    font-size: 1rem;
    margin: 1.5rem 0 0.7rem;
  }
}/*# sourceMappingURL=style.css.map */