body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  color: rgb(0, 0, 0);
  font-family: "Cormorant Garamond", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}
.heading img{
  width:50px;
}
.heading{
  display: flex;
  flex-direction: column;
  gap:15px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.heading h2 {
  text-align: center;
  color: rgb(0, 0, 0);
  margin-top: 30px;
  font-size: 27px;
}

.heading a {
  text-decoration: none;
}

.navs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.navs li {
  list-style: none;
}

.navs li a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  margin-top: 50px;
}

.banner h1 {
  font-size: 50px;
  color: white;
  font-weight: 400;
  letter-spacing: 50px;
}

.pro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.pro img{
    width:600px;
    border-radius: 30px;
}
.pro{
    margin: 150px;
    gap:50px;
    margin-top: 50px
}
.pro p{
    line-height: 24px;
    font-size: 19px;
}

.adv{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap:0px;
    margin: 150px;
    margin-top: -50px;
}
.adv h2{
    font-size: 30px;
}
.points{
    gap:10px;
}
.points p{
    font-size: 19px;
}

.menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin: 0 15px;
}

@media (max-width: 450px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    width: 100%;
    width:150px;
    border-radius: 20px;
    padding: 10px;
    top: 130px;
    left: 30;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .nav-list.active {
    display: flex;
  }
  .menu{
    font-size: 18px;
    width:100px;
    padding:5px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  .menu:hover{
    background: #000000;
    color:white;
    transition: 0.5s;
  }
  .banner h1{
    font-size: 18px;
    letter-spacing: 10px;
  }
  .banner{
    margin-top: 10px;
  }
  .pro{
    flex-direction: column;
  }
  .pro img{
    width:350px;
    border-radius: 25px;
  }
  .para{
    width:340px;
  }
  .points p{
    width:330px;
  }
  .adv{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}