* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.navbar {
  width: 85%;
  height: 15vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 80px;
  cursor: pointer;
}

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

.row {
  width: 85%;
  height: 85vh;
  margin: auto;
  display: flex;
  position: relative;
}

.left-col {
  flex-basis: 45%;
  height: 100%;
  position: relative;
}

.content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.content h1 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 1px;
}

.content p {
  color: #adadad;
  font-size: 13px;
  line-height: 18px;
  margin: 20px;
}

span {
  color: #ff5174;
}

.arrow {
  width: 40px;
  height: 40px;
  padding: 12px 0;
  border: 1px solid #ff5174;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.arrow img {
  width: 25px;
}

.art {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.right-col {
  flex-basis: 55%;
}

.picture {
  width: 100%;
  display: block;
  margin: auto;
}

.controller {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.controller ul li {
  list-style: none;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  padding: 0 30px;
  margin-bottom: 20px;
  cursor: pointer;
  line-height: 50px;
}

.controller ul li::after,
.controller .active::after {
  content: "";
  width: 2px;
  height: 50px;
  background: #a2a2a2;
  position: absolute;
  left: 0;
}

.controller .active::after {
  background: #ff5174;
}

.controller .active {
  color: #000;
}
