.banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url("../../Assets/pexels-isaac-mitchell-17356572.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 15%;
}

.navbar {
  width: 100%;
  margin: auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.642);
}

.logo {
  width: 150px;
  cursor: pointer;
}

.banner .navbar .social i{
  color: rgb(255, 255, 255);
  font-size: 30px;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar ul li::after {
  content: '';
  height: 3px;
  width: 0;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}

.navbar ul li:hover::after {
  width: 100%;
}

.banner .navbar .home {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 900;
}

.banner .navbar .home a {
  text-decoration: none;
  color: inherit;
}

.banner .navbar .home a:hover {
  text-decoration: underline;
}