@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800&display=swap");
@font-face {
  src: url(../font/lavish/Lavish.ttf);
  font-family: Lavish;
}
.home {
  cursor: none;
}

.forW {
  display: block;
}

.forM {
  display: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.cursor {
  position: absolute;
  z-index: 6;
  background: white;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  transform: scale(0.8);
}

.cursor::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("http://mirkozeppieri.emanuelepapale.com/wp-content/uploads/2018/07/project-hover-cursor.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  opacity: 0;
}

.cursor.active {
  opacity: 1;
  transform: scale(12);
}

.cursor.active::before {
  opacity: 1;
}

.cursor-follower {
  position: absolute;
  z-index: 6;
  background: rgba(255, 255, 255, 0.376);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  transform: translate(4px, 4px);
}

.cursor-follower.active {
  opacity: 0.3;
  transform: scale(0);
}

.home nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  background: #100407;
}

.navContent {
  padding: 1.2em 0;
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  transform: translateY(-103%);
}

@media (max-width: 750px) {
  .cursor,
.cursor-follower {
    display: none;
  }
  .forW {
    display: none;
  }
  .forM {
    display: block;
  }
  .home nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  .navContent {
    width: 95%;
    padding: 0;
  }
}
.hero {
  cursor: none;
  margin: 9em auto;
  width: 85%;
  font-family: Lavish;
  color: #71717A;
}

.line {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.472);
  width: 100%;
  margin: 3em auto;
}

.line2 {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.472);
  width: 100%;
  margin: 1em auto;
}

.line3 {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  margin: 1.5em auto;
}

.nameBxM,
.logoBxM {
  display: none;
}

.nameBx,
.nameBxM {
  overflow: hidden;
}
.nameBx img,
.nameBxM img {
  display: inline-block;
}

.rolesBxM {
  display: none;
}

.rolesBx {
  position: relative;
}
.rolesBx h2 {
  font-size: 2.45em;
  transition: 0.5s ease-in;
  overflow: hidden;
}
.rolesBx h2 span {
  display: inline-block;
}
.rolesBx h2:hover {
  color: #fff;
}

.rolesTxt {
  margin: 3em 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 80%;
  overflow: hidden;
}
.rolesTxt img {
  margin: auto 2.5em;
}

.mdot {
  margin: auto 2.5em;
}

.socials .socials-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
.socials img {
  margin-right: 1.8em;
  width: 90%;
  max-width: 30px;
  transition: 0.35s ease-in;
}
.socials img:hover {
  transform: scale(1.3);
}

@media (max-width: 750px) {
  .forW {
    display: none !important;
  }
  .forM {
    display: block !important;
  }
  .hero {
    margin: 6em auto 3em auto;
  }
  .hero line {
    display: none;
  }
  .nameBx {
    display: none;
  }
  .nameBxM {
    display: block;
    padding-top: 2em;
  }
  .logoBx {
    display: none;
  }
  .logoBxM {
    padding-left: 0.5em;
    display: block;
  }
  .rolesBx {
    display: none;
  }
  .rolesBxM {
    display: block;
    position: relative;
  }
  .rolesBxM h2 {
    font-size: 1.5em;
    transition: 0.5s ease-in;
    overflow: hidden;
  }
  .rolesBxM h2 span {
    display: inline-block;
  }
  .rolesBxM .rolesTxt {
    margin: 3.5em 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    width: 95%;
    overflow: hidden;
  }
  .rolesBxM .rolesTxt img {
    margin: auto 0.5em;
    width: 10px;
  }
  .socials img {
    width: 22px;
  }
}/*# sourceMappingURL=home.css.map */