/* NAVBAR */
.navbar {
  width: 100%;
  height: 125px;
  padding: 0 0 0 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  transition: all .3s ease;
}

.navbar .navbarLogo {
  width: 25%;
  height: 125px;
  float: left;
  position: relative;
}
.navbar .navbarLogo img {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 5px;
  transition: all .3s ease;
}

.navbar .navbarOptions {
  width: 75%;
  height: 125px;
  padding: 75px 0 0 50px;
  text-align: left;
  float: left;
  position: relative;
}
.navbar .navbarOptions ul li {
  padding: 0 25px 0 25px;
  display: inline-block;
  justify-content: space-between;
}
.navbar .navbarOptions ul li a {
  font-size: 17px;
  font-weight: 200;
  font-style: normal;
  color: #8e8e8e;
  transition: all .3s ease;
}
.navbar .navbarOptions ul li a:hover,
.navbar .navbarOptions ul li a:active,
.navbar .navbarOptions ul li a:focus {
  color: #231f20;
  font-weight: 300;
}

.navbarHamburguer {
  width: 50px;
  height: 50px;
  padding: 15px 0 0 0;
  position: absolute;
  top: 70px;
  right: 15%;
  margin: auto;
  z-index: 1000;
  transition: all .3s ease;
}
.navbarHamburguer div {
  width: 45px;
  height: 3px;
  background: #231f20;
  background-color: #231f20;
  margin: 5px auto;
  transition: all .3s ease;
}

.navbarHamburguer:hover div,
.navbarHamburguer:focus div {
  background: #8e8e8e;
  background-color: #8e8e8e;
}
/*  */

/* NAVBAR SCROLL */
.navbarWhite {
  background: #ffffff;
  background-color: #ffffff;
  height: 75px;
}
.navbarWhite .navbarLogo {
  height: 75px;
}
.navbarWhite .navbarOptions {
  padding: 25px 0 0 50px;
  height: 75px;
}

.navbarScroll {
  top: 20px;
}
/*  */

/* CUSTOM CURSOR */
.cursorWoorx {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #030303;
  background-color: #030303;
  position: absolute;
  opacity: 0.5;
  z-index: 998;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all .3s ease;
  transition-property: opacity, transform;
  transform-origin: 100% 100%;
}

.link-grow {
  transform: scale(1.5);
  opacity: 0.3;
}

.hovered-link .navbar .navbarOptions ul li a {
  color: #ffffff;
}
/*  */
