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;
}
.heading img{
  width:50px;
}
.heading{
  display: flex;
  flex-direction: column;
  gap:15px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}


section.vid div.holder {
  height: 100vh;
  background-color: #000000;
}

section.vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}


body::-webkit-scrollbar {
  display: none;
}

.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;
}
.pro{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 200px;
    gap:30px;
    margin-top: 50px;
}
.pro h2{
    font-size: 30px;
}
.imgs1{
    display: flex;
    gap:25px;
}
.imgs2{
    display: flex;
    gap:25px;
}
.pro img{
    width:300px;
    border-radius: 15px;
    transition: 0.5s;
}
.pro img:hover{
    transition: 0.5s;
    width:320px;
}
.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;
  }
  .pro h2{
    font-size: 30px;
    width:200px;
  }
  .imgs1{
    flex-direction: column;
  }
  .imgs2{
    flex-direction: column;
  }
}