.container-fluid2 {
  padding: 1% 5% 1%;
  font-family: 'Lato', sans-serif;
  /* font-style: italic; */
  text-align: justify;
   overflow: hidden;
}
/* Apply slow-motion effect to text elements within the container */
.container-fluid2 .slow-motion-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Trigger the animation when the text element is in the viewport */
.container-fluid2 .slow-motion-text.animate {
  opacity: 1;
  transform: translateY(0);
}



.grey-section {
  background-color: #becff4;
}

h2 {
  color: #00478d;
  font-weight: bold;
  /* font-style: italic; */
  font-size: 40px;
  text-align: left;
}

.darkgrey-section {
  background-color: #d2d9e0;
  color: white;
}

.container-fluid1 {
  padding: 1% 10% 10%;
font-family: 'Lato', sans-serif;
}

h1 {
  font-weight: bold;
  color: #00478d;
  font-size: 50px;
  text-align: center;
  padding-top: 10px;
}

p,
ul {
  font-weight: 400;
  font-size: 1.2rem;
  text-align: left;
  padding-top: 10px;
}
.responsive-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius:20px;
}
.animated-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.animated-text.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-in {
  animation: none; /* Disable the animation by default */
  opacity: 0; /* Start with opacity set to 0 */
}

.slide-in.active {
  animation: fadeIn 1s ease-in-out forwards; /* Enable the fade-in animation when the element has the active class */
  opacity: 1; /* Set opacity to 1 to make it visible */
}

.image-box {
  width: 100%;
  /* max-width: 400px; /* Adjust the maximum width as needed */
  margin: 0 auto;
  background-color: #fff;
  /* Add a background color to the box */
  padding: 20px;
  /* Add some padding for spacing */
  border: 1px solid #ddd;
  /* Add a border for visual separation */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  /* Add a shadow effect */
  text-align: center;
  /* Center the image */
  border-radius: 20px;
  /* Adjust the radius to control the curvature */
  overflow: hidden;
  margin-top: 30px;

}

.image-box img {
  max-width: 100%;
  height: auto;
}

