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

/* Apply slow-motion effect to text elements within the container */
.container-fluid1 .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-fluid1 .slow-motion-text.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.container-fluid {
  font-family: 'Lato', sans-serif;

}

p,
ul {
  /* font-style: italic; */
  font-weight: 400;
  font-size: 1.2rem;
  padding-left: 30px;
  padding-right: 30px;
  /* padding-bottom: 30px; */
  text-align: justify;
}

.grey-section {
  position: relative;
  background-image: url('images/semicircle.png');
  /* Replace 'path-to-your-semicircle-image.png' with the actual path to your semicircle image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  /* Position the semicircle at the bottom center */
  padding-bottom: 150px;
  /* Adjust this value to control the height of the semicircle */
}

.grey-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  /* Half of the desired height of the semicircle */
  background-color: white;
  /* Set the background color of the semicircle to match your background */
  border-top-left-radius: 100% 50%;
  /* Create a semicircle using border-radius */
  border-top-right-radius: 100% 50%;
}



.text {
  transform: scale(0.80);
  animation: scale 2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

@keyframes scale {
  100% {
    transform: scale(1);
  }

}

.colored-section {
  background-color: #00478d;
  color: white;
}

/* class to the text section  to animate */
.animated-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.animated-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* For larger screens */
@media (min-width: 992px) {
  .grey-section img {
    max-width: 90%;
    /* Adjust as needed */
    height: auto;
    margin: 0 auto;
    /* Center the images */
    margin-bottom: 20px;
    /* Add some space between images */
  }
}

/* For smaller screens */
@media (max-width: 991px) {
  .grey-section img {
    max-width: 90%;
    /* Adjust as needed */
    height: auto;
    margin: 0 auto;
    /* Center the images */
    margin-bottom: 20px;
    /* Add some space between images */
  }
}

h1 {
  font-size: 50px;
  color:  #0076a8;
  text-align: center;
  font-weight: bold;

}

/* .row {
  padding-top: 50px;
  padding-bottom: 50px;
}
 */
h2 {
  padding-left: 30px;
  color: #0076a8;
  font-size: 40px;
  text-align: left;
}


.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;
}
@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 */
}
