
  .container .side-info {
    margin: 20px 0;
    width: 100%;
  }
  
  .container .side-info span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 16px;
    color: #717171;
  }
  
  .container .side-info h1 {
    /* text-transform: capitalize; */
    letter-spacing: 0.8px;
    /* font-family: "Roboto", sans-serif; */
    font-weight: 400;
    font-size: 3rem;
    background-color: #000;
    /*background-image: linear-gradient(45deg, #2671a8, #000000);*/
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }
  
  .container .side-info hr {
    display: block;
    /*background: #000;*/
    height: 2px;
    width: 65%;
    margin: 12px 0;
  }
  
  .container a {
    display: inline-block;
    text-decoration: none;
    /* text-transform: uppercase; */
    /* color: #717171; */
    font-weight: 500;
    background: #fff;

    /* border-radius: 50px; */
    /* border: 2px solid #c2c2c2; */
    /* border: 2px solid #2671a8      ; */
    color: #000000;
    background-color: #ffffff;
    /* border: 2px solid #00afef; */
    border-radius: 5px;
    padding: 8px 16px;
    /*margin-top: 20px;*/
    transition: 0.3s ease-in-out;
  }
  
  .container a:hover {
    /* border: 2px solid #00afef; */
    color: #000000;
    /* background-color: #00afef; */
  }
  
  .container .swiper {
    width: 100%;
  }
  
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active {
    background: #fff;
    color: #000000;
  }
  
  .swiper-pagination {
    bottom: 20px !important;
  }
  
  .swiper-slide {
    width: 300px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
  }
  
  .swiper-slide h2 {
    color: #fff;
    /* font-family: "Roboto", sans-serif; */
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
    padding: 0 0 0 24px;
    text-transform: uppercase;
  }
  
  .swiper-slide p {
    color: #dadada;
    /* font-family: "Roboto", sans-serif; */
    font-weight: 400;
    padding: 0 24px;
    font-size: 1.125rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .swiper-slide a {
    margin: 20px 25px 50px !important;
    padding: 8px 16px !important;
    font-size: 14px;
    border: none;
  }
  
  .swiper-slide a:hover {
    border: none;
  }
  
  .swiper-slide div {
    display: none;
    opacity: 0;
    padding-bottom: 10px;
  }
  
  .swiper-slide-active div {
    display: block;
    opacity: 1;
  }
  
 
  
  /* Responsive Design */
  @media (min-width: 800px) {
    .container {
      display: flex;
      align-items: center;
    }
  
    .container .side-info {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 500px) {
    .container .side-info h1 {
      font-size: 46px;
    }
  
    .container .side-info p {
      font-size: 14px;
    }
  }
  
  
  
  
  /* card design css */
  /* Styles for Card Layout */
  .container-fluid{
    display: flex;
    /* flex-direction: ; */
    justify-content: space-evenly;
  }
  
  .card {
    width: 100%;
    padding: 20px;
    /* margin: 20px; */
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-shadow: 0px 0px 14px 0px rgb(205, 205, 205);
   
  }
  
  .card img {
    max-width: 100%;
    /* width: 180px;
    margin-left: 60px; */
    
    border-radius: 8px;
  }
  
  .card h2 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
    text-align: left;
  }
  .card p{
    font-size: 16px;
    font-weight: 400;
  }
  
  .card button {
    display: block;
    margin: 15px auto;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #00afef;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .card button:hover {
    background-color:none !important;
    border: none !important;
    color: #00afef;
  }
  

  