@font-face {
  font-family: Avenir;
  src: url(Avenir.ttc) format("truetype");
}

.pt-sans-narrow-regular {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-narrow-bold {
  font-family: Avenir;
  font-weight: 700;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Avenir;
  scroll-behavior: smooth;
  cursor: none;
  /* This line hides the mouse cursor */
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Avenir;
  font-weight: 800;
}


.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}


.dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 3px;
}

.landingBanner {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .landingBanner {
    height: 50vh;
    display: none;
  }

  .dots {
    margin-top: 5px;
    margin-right: 20px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }
}

.bounce {
  animation: bounce 5s infinite ease-in-out;
}

.sway {
  animation: sway 3s infinite ease-in-out;
}

.dot:nth-child(1) {
  background-color: #928814;
}

.dot:nth-child(2) {
  background-color: #00677d;
}

.dot:nth-child(3) {
  background-color: #b8d4da;
}

.dot:nth-child(4) {
  background-color: #000;
}

.dot:nth-child(5) {
  background-color: #a59db4;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}

@keyframes sway {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(25px);
  }
}

.circleMouse {
  --circle-size: 40px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid black;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
  z-index: 9999;
}


#synergiText {
  cursor: pointer;
  margin-bottom: 100px;
  margin-top: 30px;
}

.weAreText {
  font-size: 20vw;
  position: relative;
  font-weight: lighter !important;
}

.weAreText sup {
  position: absolute;
  top: 0;
  right: 30%;
  font-size: 0.5em;
}