/* .box1 {
  background-image: url('./Assets/33.webp');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */
.box1 {
  position: relative;
  z-index: 1;
  background-color: black;
  /* fallback color */
}

.box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./Assets/33.webp');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  /* Adjust this value as needed */
  z-index: -1;
}

.box1 h1 {
  color: white;
  font-size: 50px;
  position: relative;
  left: 5%;
}

.box1 p {
  color: white;
  font-size: 30px;
  position: relative;
  left: 5%;
  font-style: italic;
}

.box2 {
  background-image: url('./Assets/27.jpg');
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-wrap: wrap;
  height: 130vh;
}

.box41 {
  background-color: white;
  color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  gap: 0.5rem;
}

.box41 h3 {
  font-size: 25px;
  color: teal;
}

.box41 p {
  line-height: 1.8;
  font-size: 15px;
  margin: 5%;
  word-spacing: 2px;
  /* text-align: justify; */
}

.box41 img {
  transition: all .5s ease-in-out;
}

.box41 img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1500px) {
  .box2 {
    height: 220vh;
  }

  .box41 {
    height: 80vh;
    width: 25%;
  }

  .box41 div {
    height: 40vh;
  }

  .box41 p {
    font-size: 0.8rem;
  }

}

@media only screen and (max-width: 600px) {
  .box1 {
    height: 60vh;
  }

  .box1 h1 {
    font-size: 2rem;
  }

  .box1 p {
    font-size: 1rem;
    padding-right: 5%;
  }

  .box2 {
    height: 550vh;
    gap: 0rem;
  }

  .box41 {
    height: 80vh;
    width: 80%;
  }

  .box41 h3 {
    font-size: 1.2rem;
  }
}