/* ----- NAVBAR ----- */
.navbar {
  font-size: 1.2em;
}

.navbar .navbar-nav {
  margin-right: 20px;
}

/* ----- LOGO IN NAVBAR ----- */
.navbar .navbar-brand img {
  height: 60px;
  width: auto;
  padding: 5px 10px;
  margin-left: 24px;
}

.navbar .navbar-nav img {
  height: 15px;
  width: auto;
  margin-left: 6px;
}

.navbar .navbar-nav #nav-social {
  display: flex;
  align-content: center;
  justify-items: center;
}

/* ----- BTN IN NAVBAR ----- */

/* nav-btn container */
#nav-item-btn {
  /* align-self: center; */
  margin-top: 3px;
  margin-left: 24px;
}

/* nav-btn */
.jbtn-nav {
  text-align: center;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 16px;
  margin: 0;
  letter-spacing: normal;
  text-transform: uppercase;
  transition-duration: 0.5s;
  background: black;
  border: black solid 1px;
  color: white;
}
.jbtn-nav:hover {
  text-decoration: none;
  background: white;
  border: black solid 1px;
  color: black;
  transition-duration: 0.5s;
}

/* ----- LINKS IN NAVBAR ----- */

.nav-link {
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: black !important;
}
.nav-link-white {
  color: white !important;
}

/* nav link hover animation */
.nav-link {
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: black;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.nav-link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.nav-link-white::before {
  background-color: white;
}

/*  -----  MEDIA QUERIES  -----  */
@media (max-width: 992px) {
  /* nav-btn container */
  #nav-item-btn {
    margin-top: 16px;
    margin-left: 0;
  }
  #nav-item-btn:hover {
    transform: translateX(10px);
  }
}
@media (max-width: 480px) {
  .navbar .navbar-brand img {
    height: 40px;
    width: auto;
    margin-left: auto;
  }
}
