

.pd-tb-12{
    padding: 12px 0;
}
.dis-blk{
    display: block;
}

.dis-font{
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    line-height: 25px;
}

.content-container {
    display: flex;
    justify-content: center; /* Center the content wrapper horizontally */
    width: 100%; /* Container takes up full width */
  }
  
  .content-wrapper {
    display: flex; /* Make inner divs behave as flex items */
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
    margin: 0 auto; /* Add margin for better spacing */
    width: 100%;
  }
  
  .inner-div {
    text-align: center; /* Center text within each div */
   /*  flex: 1 0 auto; Makes divs equal width and allows them to shrink */
   margin: 0 auto;
  }

  .card {
    /* Base styles for the card */
    position: relative; /* Allows for absolute positioning of overlay */
    display: inline-block; /* Allows for multiple cards side-by-side */
    width: 400px; /* Adjust card width as needed */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    border-radius: 4px;
    overflow: hidden; /* Ensures overlay stays within card bounds */
    margin: 5px;
    background-color: #cccc00;
  }
  
  .card img {
    /* Styles for the card image */
    width: 100%; /* Fills the card width */
    height: 250px; /* Adjust image height as needed */
    object-fit: cover; /* Ensures image fills available space proportionally */
  }
  
  .card-title {
    /* Styles for the card title */
    padding: 1rem; /* Padding for title content */
    text-align: center; /* Center title text */
  }
  
  .card-overlay {
    /* Styles for the card overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black overlay */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out; /* Smooth transition on hover */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card:hover .card-overlay {
    /* Styles for overlay on hover */
    opacity: 1; /* Overlay becomes visible on hover */
  }
  
  .material-button {
  
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #3f51b5; /* Material indigo */
    color: #fff; /* White text */
    text-decoration: none; /* Removes underline from anchor */
    text-align: center;
    cursor: pointer;
    position: relative; /* Needed for pseudo-element animation */
    overflow: hidden; /* Hides overflowing content on hover */
    float: right;
  }
  
  .material-button:hover {
    background-color: #283593; /* Darker indigo on hover */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle raising effect */
  }
  
  .material-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit; /* Inherits button background color */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .material-button:hover:after {
    opacity: 0.2; /* Creates a slight darkening effect on hover */
  }
  
  

  @media (max-width: 1199.98px) {

  }
  
  @media (max-width: 991.98px) {
    .inner-div {
        flex: unset; /* Remove flex properties for smaller screens */
        width: 100%; /* Make each div take up 100% width on smaller screens */
      }
  
  }
  
  @media (max-width: 767.98px) {
  
  }
    /* Styles for Extra Small & Small Screens (XS & SM): Up to tablets */
  @media (max-width: 575.98px) {
    .card {
        width: 300px; /* Adjust card width as needed */
      }

  }
  