.container-fluid{
    padding: 0 !important;
}
.logo img {
    max-width: 110px;
    padding-left: 20px;
    height: auto;
}

.about_us {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.373), rgb(79, 145, 174)), url(/images/20180330_101149.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px; 
  text-align: center; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 550px; /* Center vertically within the viewport height */
}

.about_us h2 {
  font-size: 24px;
  padding-bottom: 20px; /* Adjust the font size as needed */
  color: #ffffff; /* Set your desired text color */
}

.about_us p {
  font-size: 16px; /* Adjust the font size as needed */
  color: #ffffff; /* Set your desired text color */
  max-width: 70vw; /* Limit the text width */
  margin: 0 auto; /* Center text horizontally within the container */
}

  
  /* Basic styling for the slider container */
.slider {
    margin: 0 auto;
    text-align: center;
    background-color: #00C2E5;
    padding: 80px 0;
    font-family: Arial, sans-serif;
    
  }
  
  /* Heading style */
  .slider_heading {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Container for the slides */
  .slide-track {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  /* Individual slide style */
  .slide {
    flex: 0 0 160px; /* Adjust the width of each slide */
    margin: 0 10px; /* Add spacing between slides */
    transition: transform 0.3s ease;  
    animation: slide 20s linear infinite;  
  }
  @keyframes slide {
    0% {
      transform: translateX(100%); /* Start from the right */
    }
    100% {
      transform: translateX(-100%); /* End on the left */
    }
  }
  
  
  /* Style for the image */
  .slider_img {
    width: 150px;
    height: 150px;
    height: auto;
    display: block;
    border-radius: 5px;
    
  }
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
    height: 100px;
    border-bottom: 1px solid #00C2E5;
}

/* Hover effect for the slide */
  .slide:hover {
    transform: scale(1.05);
  }
  
  /* Media query for responsiveness */
  @media (max-width: 768px) {
    .slider_heading {
      font-size: 24px;
    }
    .slide {
      flex: 0 0 50px; /* Adjust the width of each slide */
      margin: 0 10px; /* Add spacing between slides */
      transition: transform 0.3s ease;  
      animation: slide 10s linear infinite;  
    }
    .m_slide {
      flex: 0 0 0px; /* Adjust the width of each slide */
      animation: slide 10s linear infinite;  
    }

    .logo img {
        max-width: 100px;
      }
      
  }
  
  
  .media_slider {
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 80px 0;
    font-family: Arial, sans-serif;
  }
  
  .m_slide {
    flex: 0 0 200px; /* Adjust the width of each slide */
    margin: 0 10px; /* Add spacing between slides */
    transition: transform 0.3s ease; 
  }

/* Timeline Container */
.timeline {
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }


  .timeline h2{
    padding-bottom: 20px;
    text-align: center;
  }

  
  /* Card container */
  .card {
    position: relative;
    max-width: 400px;
  }
  
  /* setting padding based on even or odd */
  .card:nth-child(odd) {
    padding: 30px 0 30px 30px;
  }
  .card:nth-child(even) {
    padding: 30px 30px 30px 0;
  }
  /* Global ::before */
  .card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid #00c2e5;
  }
  
  /* Setting the border of top, bottom, left */
  .card:nth-child(odd)::before {
    left: 0px;
    top: -4.5px;
    bottom: -4.5px;
    border-width: 5px 0 5px 5px;
    border-radius: 50px 0 0 50px;
  }
  
  /* Setting the border of top, bottom, right */
  .card:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 5px 5px 5px 0;
    border-radius: 0 50px 50px 0;
  }
  
  /* Removing the border if it is the first card */
  .card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's odd */
  .card:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's even */
  .card:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Information about the timeline */
  .info {
    display: flex;
    flex-direction: column;
    background: #e8e8e8;
    color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px;
  }
  
  /* Title of the card */
  .title {
    color: orangered;
    position: relative;
  }
  
  /* Timeline dot  */
  .title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 999px;
    border: 3px solid orangered;
  }
  
  /* text right if the card is even  */
  .card:nth-child(even) > .info > .title {
    text-align: right;
  }
  
  /* setting dot to the left if the card is odd */
  .card:nth-child(odd) > .info > .title::before {
    left: -45px;
  }
  
  /* setting dot to the right if the card is odd */
  .card:nth-child(even) > .info > .title::before {
    right: -45px;
  }