/* Extra small devices */
@media (max-width: 323px) { 
    .cs-mbl-footer-p {
      font-size: 12px;
    }
  }

  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) { 
    .large-screen-font {
        font-size: 1.5rem;
    }
  }

  .cs-main-section-wrap.cs-main-section-mbl-hero {
    height: calc(var(--vh, 1vh) * 100);
  }
  
  .cs-main-section-wrap.cs-main-section-mbl-bg {
    background-color: #FEB913;
    margin-bottom: 0px;
  }

  .cs-main-section-wrap.cs-main-section-mbl-1 {
    background-color: #F7F7F7;
  }

  .cs-position-absolute {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cs-scroll {
    position: absolute;
    top: 20%;
    left: 49%;
    height: 6px;
    width: 6px;
    background: black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cs-scroll 1.3s infinite;
}

@keyframes cs-scroll {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%); }
    50% { opacity: 0; transform: translate(-50%, calc(15px - 50%)); } 
}

.cs-mouse-case {
  position: relative;
  height: 50px;
  width: 35px;
  border: 3px solid rgba(0, 0, 0, 0.781);
  border-radius: 30px;
  background: transparent;
  padding-top: 15px;
  animation: borderFade 1s infinite;
}

@keyframes borderFade {
  0% { border-color: rgba(0, 0, 0, 0.781); }
  50% { border-color: rgba(0, 0, 0, 0.5); }
  100% { border-color: rgba(0, 0, 0, 0.781); }
}

  
.cs-mbl-green-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 28px;
}

.cs-mbl-black-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 28px;
}

.cs-mbl-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-mbl-card {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  min-height: 350px;
}

.cs-mbl-card a:hover {
  text-decoration: none;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
  background-color: #f8f9fa;
}

.cs-mbl-card-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}


.cs-mbl-view-text {
  color: black;
  font-weight: bold;
  margin-right: 0px;
}

.cs-mbl-view-icon {
  width: 20px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
}

/* For smaller screens */
@media (max-width: 991px) { /* Adjust as needed */
  .cs-row {
    display: flex;
    flex-wrap: wrap;
  }
  .cs-mbl-card {
    flex: 0 0 auto;
    width: 100%; /* Full width */
  }
}

/* For laptop and larger screens */
@media (min-width: 992px) { /* Adjust as needed */
  .cs-mbl-card {
    flex: 0 0 auto;
    width: calc((100% - 2 * 20px) / 3); /* Adjust as needed */
    margin: 10px; /* Adjust as needed */
  }
}








