* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #191513;
  overflow: hidden;
}
.navbar {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

.logo img {
  width: 50px;
  cursor: pointer;
  margin: 35px 0;
}

.content-row {
  width: 85%;
  display: flex;
  align-items: center;
  margin: auto;
}

.left-col,
.right-col {
  flex-basis: 50%;
}

.left-col {
  padding: 50px 0;
}

.search {
  width: 260px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid #4e3829;
  border-radius: 20px;
}

.search img {
  height: 16px;
  margin-right: 10px;
  cursor: pointer;
  opacity: 0.7;
}

.search input {
  width: 100%;
  outline: none;
  border: 0;
  background: transparent;
  font-size: 14px;
}

hr {
  width: 160px;
  height: 4px;
  background: #eea16d;
  margin: 30px 0;
  border: none;
}

h1 {
  font-size: 40px;
  color: #fff;
  letter-spacing: 2px;
}

p {
  color: #999;
  margin: 30px 0;
  font-size: 14px;
  line-height: 22px;
}

.indicator {
  display: flex;
}

span {
  width: 5px;
  height: 5px;
  border: 1px solid #eea16d;
  border-radius: 50%;
  margin-left: 5px;
}

.active {
  background: #eea16d;
}

.right-col img {
  width: 100%;
}

.social-links {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.social-links img {
  width: 15px;
  display: block;
  margin: 30px 0;
}

nav ul li {
  list-style: none;
  margin: 35px 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  letter-spacing: 5px;
  position: relative;
}
nav ul li a::after {
  content: "";
  height: 3px;
  width: 0;
  background: #eea16d;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s ease-out;
}

nav ul li a:hover::after {
  width: 100%;
}
nav {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #000;
  top: -100vh;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 1s ease-out;
}

.lite-text {
  color: #333;
  font-size: 200px;
  letter-spacing: 100px;
  opacity: 0.1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  z-index: -1;
}

.close-icon {
  width: 25px;
  position: absolute;
  right: 80px;
  top: 50px;
  cursor: pointer;
}

.menu-icon{
  width: 30px;
  cursor: pointer;
}