@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap");

* {
  padding: 0px;
  margin: 0px;
}
.container {
  max-width: 70rem;
  margin: 0px auto;
}
body {
  background-color: #2b2922;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20vh;
}
ul.list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.list-item {
  font-size: 15px;
}
.list-item-btn {
  background: transparent;
  color: yellow;
  border: 1px solid yellow;
  border-radius: 20px;
  padding: 10px 20px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font-size: 60px;
  font-weight: bolder;
  line-height: 80px;
}
p {
  font-size: 15px;
  line-height: 25px;
  word-spacing: 5px;
}
/*    image part    */
.banner-container {
  position: absolute;
  min-width: 100%;
  left: 0;
  right: 0;
  margin-top: 40px;
  height: 500px;
  overflow: hidden;
}
.banner-container img {
  width: 100%;
  height: 500px;
  position: absolute;
  display: block;
  object-fit: cover;
  object-position: center;
}
/*   bottom  */
.arrow-btns {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0px;
  top: 53rem;
}

.arrow-btns div:first-child {
  background-color: #39372d;
  display: flex;
  padding: 30px;
}
.arrow-btns div:first-child span {
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #a08f36;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
.arrow-btns div:last-child {
  padding: 30px;
  background-color: #a08f36;
}
.arrow-btns div:last-child span {
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
}
