.container-fluid2{
    padding: 1% 5% 1%;
    font-family: 'Lato', sans-serif;
    text-align: justify;
  }
  .grey-section{
    background-color: #e6e6e6;
  }
  h2{
    color:#00478d;
    font-weight: bold;
    font-size: 40px;
    text-align: left;
  }
.darkgrey-section
{
  background-color:#00478d;
  color:white;
}

.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);
}
h1{
  font-weight: bold;
  color:#00478d;
  font-size: 60px;
  text-align: center;
}
p,ul{
  font-weight: 400;
    font-size: 1.2rem;
  text-align: left;
  padding-top:10px;
}
a{
  color:black;
}
.responsive-image {
      width: 100%; /* Set the desired width */
      max-width: 100%; /* Make sure images don't exceed their container */
      height: auto; /* Automatically adjust the height */
    }

.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;
}
 



