.news-section {
  padding: 60px 0px;
}
.news-section h3 {
  font-family: "Inter-Medium";
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-list .overlay-container {
  height: 200px;
  overflow: hidden;
}
.news-section .news-list .overlay-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-section .news-list .overlay-container::before {
  position: absolute;
  background: rgba(249, 170, 28, 0.8509803922);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  margin: auto;
  content: "";
  display: none;
  transition: 0.5s;
  border-radius: 0.625rem !important;
}
.news-section .news-list .overlay-container .read-more {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
}
.news-section .news-list:hover .overlay-container::before {
  display: block;
}
.news-section .news-list:hover .overlay-container .read-more {
  display: table;
}

.events-section {
  padding: 60px 0px;
  background-color: #f2f8f8;
}
.events-section h3 {
  font-family: "Inter-Medium";
  font-size: 21px;
  line-height: 30px;
  font-weight: normal;
  color: #101010;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-section h3::before {
  content: "";
  background: #f9aa1c;
  border-radius: 5px;
  height: 4px;
  width: 40px;
  position: absolute;
  top: 25px;
}
.events-section p {
  font-family: "Inter-Regular";
}
.events-section .news-list .overlay-container::before {
  position: absolute;
  background: rgba(249, 170, 28, 0.8509803922);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  margin: auto;
  content: "";
  display: none;
  transition: 0.5s;
  border-radius: 0.625rem !important;
}
.events-section .news-list .overlay-container .read-more {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
}
.events-section .news-list:hover .overlay-container::before {
  display: block;
}
.events-section .news-list:hover .overlay-container .read-more {
  display: table;
}

.section-title h2 {
  font-size: 32px;
}

.no-data {
  color: #0e8aa1; /* Change the color to your preference */
  font-weight: bold; /* Optionally, make the text bold */ /* Center the text */
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.no-data-available {
  color: #0e8aa1; /* Change the color to your preference */ /* Optionally, make the text bold */ /* Center the text */
  font-size: 16px;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.owl-nav span {
  font-size: 21px;
  color: #fff;
}
.owl-nav button.owl-prev {
  position: absolute;
  left: -20px;
  top: -35px;
  background: #f9aa1c !important;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}
.owl-nav button.owl-next {
  position: absolute;
  right: -20px;
  top: -35px;
  background: #f9aa1c !important;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1440px) {
  .news-section {
    padding: 30px 0;
  }
  .events-section {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1240px) {
  .news-section .news-list .overlay-container .read-more {
    font-size: 22px;
  }
  .news-section h3 {
    font-size: 15px;
  }
  .events-section h3 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 991px) {
  .news-section .news-list .overlay-container .read-more {
    font-size: 20px;
  }
  .events-section h3 {
    font-size: 17px;
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 576px) {
  .news-section .news-list .overlay-container .read-more {
    font-size: 17px;
  }
  button.owl-prev {
    left: -11px !important;
  }
  button.owl-next {
    right: -11px !important;
  }
}
