body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 12vh;
    box-shadow: 0 18px 35px rgba(120, 90, 60, 0.659);
    border-bottom: 0.5px solid rgb(171, 136, 83);
    z-index: 999;
}
img.logoImg{
   width: 140px;
   border-radius: 100%;
   box-shadow: 0 0 0px;
}
.logoTxt{
   display: none;
}
img.menuImg{
   width: 33px;
}
.menu{
   margin-right: 50px;
   cursor: pointer;
}
.hero {
  position: relative;
  min-height: 70vh;
  background-image: url("heroBg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  z-index: 99;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.27); 
  z-index: 1;
}

.initialContainer {
    background: white;
    margin-bottom: 40px;
    margin-left: 20px;
    width: 350px;
    text-align: center;
    border-radius: 18px;
    gap: 9px;
    display: flex;
    flex-direction: column;
    padding: 0px 5px;
    z-index: 999;
    transform: translateX(-150%);
  animation: slideIn 1s ease forwards;
  animation-delay: 2s;
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
p.initialTxt {
    color: #000000;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.nav-links {
    display: flex;
    gap: 24px;
}
.nav-links a{
    all: unset;
    font-weight: 300;
    cursor: pointer;
}
.nav-links a:hover{
    color: darkgreen;
}
 li{
    all: unset;
}
section.section1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
}
p.titleS1 {
    font-weight: 700;
    font-size: 20px;
}
@media (max-width: 768px) {
  .hero {
    justify-content: center;
  }
  .initialContainer {
    margin-left: 0;
}
.nav-links {
   display: none;
}
.header {
    height: 8vh;
}
}