@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
}

.main-header {
  display: flex;
  background: #2f3640;
  height: 60px;
  justify-content: space-around;
  align-items: center;
}

.logo {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: white;
  font-size: 20px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.logo:hover {
  color: #FFC312;
}

.right-links {
  display: flex;
  gap: 25px;
}
.right-links li a {
  color: white;
  letter-spacing: 1px;
  transition: 0.5s;
}

.active a {
  color: #FFC312 !important;
}

.right-bar {
  display: none;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
}
.right-bar::before,
.right-bar .bar, .right-bar::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: white;
  margin: 6px 0px;
  border-radius: 2px;
  transition: 0.5s;
}
.right-bar.is-active .bar {
  opacity: 0;
}
.right-bar.is-active::before {
  transform: rotate(-45deg) translate(-8px, 7px);
}
.right-bar.is-active::after {
  transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-nav {
  background-color: #333;
  position: fixed;
  top: 60px;
  width: 100%;
  height: 100%;
  right: 100%;
  transition: 0.6s;
  z-index: 99;
  display: none;
}
.mobile-nav .right-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: calc(100vh - 60px);
}
.mobile-nav.is-active {
  right: 0;
}

.banner {
  width: 100vw;
  height: calc(100vh - 60px);
  background-image: url("../images/2.jpg");
  background-position: center;
  background-size: 100% 100%;
  filter: contrast(1.2);
}
.banner h1 {
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px;
  font-size: 100px;
  mix-blend-mode: overlay;
  text-align: right;
}

.section {
  width: 100vw;
  height: 100vh;
}

@media (max-width: 992px) {
  .main-header .right-side {
    display: none;
  }
  .right-bar {
    display: block;
  }
  .mobile-nav {
    display: block;
  }
  .banner h1 {
    font-size: 35px;
  }
  .banner {
    background-image: url("../images/3.jpg");
  }
}

/*# sourceMappingURL=style.css.map */
