.container-fluid2 {
  padding: 1% 5% 5%;
  font-family: 'Fjalla One', sans-serif;
  text-align: justify;
  overflow: hidden;
}

.conti-01 {
  border: 2px solid #00478d;
  box-shadow: 5px 10px 8px #00478d;

}

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

/* .colored-section {
    background-color: rgb(253, 144, 43);
    color: white;
  
  } */

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

h6 {
  color: #00478d;
  font-weight: bold;
  font-style: italic;
  font-size: 30px;
  text-align: center;
}

.darkgrey-section {
  background-color: #00478d;
  color: white;
  /* padding-bottom:30px;
    padding-top: 30px; */
}

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

}

.forh3 {
  font-weight: bold;
  font-style: italic;
  color: #00478d;
  font-size: 40px;
  text-align: center;
}

p,
ul {
  font-weight: 400;
  font-size: 1.2rem;
  text-align: left;
}

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

/* Add animation for the sliding effect */
/* @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .slide-in {
    animation: slideInFromRight 1s ease-in-out forwards;
    transform-origin: right;
  } */
/* Add fade-in animation for the images */
@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;
}

/*list of points*/
/* Define the animation */
@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  80% {
    transform: scale(1.1);
    opacity: 1;
  }

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

/* Apply the animation to list items */
.animated-list li {
  animation: pop 1.0s ease-in-out;
}

.sizing-01 p {
  font-size: 18px !important;

}

.card-body {
  height: 95px;
  /* Adjust the height as needed */
  overflow: hidden;
  /* Add overflow:hidden to hide content that exceeds the fixed height */

}

@media (max-width: 768px) {
  .hide-01 {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hide-01 {
    display: none;
  }
}

.textsizing-01 {

  font-size: 20px;
}

.cc {
  transition: ease-in-out 0.3s;
}

.cc:hover {

  border: 1.5px solid #00478d;
  box-shadow: 0px 0px 10px rgba(0, 71, 141, 0.8);
  transform: scale(1.02);
}