.card1-list {
  width: 98%;
  max-width: 400px;
}
.card1 {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  transition: 0.15s ease-in;
}
.card1:hover, .card1:focus-within {
  box-shadow: 0 0 0 2px #16C79A, 0 10px 60px 0 rgba(0, 0, 0, 0.1);
  transform: translatey(-5px);
}
.card1-image {
  border-radius: 10px;
  overflow: hidden;
}
.card1-header1 {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card1-header1 a {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.25;
  padding-right: 1rem;
  text-decoration: none;
  color: inherit;
  will-change: transform;
}
.card1-header1 a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.card1-footer1 {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.columns {
  display: inline-block;
/*  float: left;*/
  width: 33%;
/*  padding: 20px 19px;*/
}
/* Remove extra left and right margins, due to padding in columns */
.rows {margin: 0 8px;}
/* Clear floats after the columns */
.rows:after {
  content: "";
  display: table;
  clear: both;
}
 .arrow-button {
    border: 2px solid #d43a41;
    background-color: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d43a41;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.arrow-button:hover {
    border-color: ##d43a41;
    color: #008f76;
    transform: scale(1.1);
}

.arrow-button:active {
    transform: scale(0.9);
}

.columns {
    position: relative;
    padding-bottom: 20px;
}

.card1-footer1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card1-meta {
    flex: 1;
}

.arrow-button-container {
    margin-left: 10px;
}
/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 768px) {
  .columns {
 display: inline-block;
 float: left;
  width: auto;
 padding: 20px 19px;
  }
}

.slider-section {
    --primary-color: #0073e6;
    --background-color: #f4f4f4;
    --text-color: #fff;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slider-container .mainHeading {
    text-align: center;
    margin-bottom: 20px;
}

.custom-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.custom-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom-slide {
    min-width: 33.3333%;
    box-sizing: border-box;
    padding: 15px;
}

.custom-slide img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 1;
}

.custom-slider-buttons button {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.custom-slider-buttons button:hover {
    background: #005bb5;
}

@media screen and (max-width: 768px) {
    .custom-slide {
        min-width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .custom-slide {
        min-width: 100%;
    }

    .custom-slider-buttons button {
        width: 30px;
        height: 30px;
    }
}
