/* NEWS SECTION HOMEPAGE */
.newsContainer-body {
  background: #f1f5ff;
  padding: 80px 0;
  text-align: center;
}

.newsh {
  font-size: 2.7rem;
  color: #0F2D4D;
  font-weight: 800;
  margin-bottom: 35px;
  position: relative;
}

.newsh::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #2BB3FF;
  display: block;
  margin: 10px auto 0;
  border-radius: 50px;
}

.newsContainer {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.news-item .news-link {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid #e5edff;
  transition: .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-title {
  padding: 15px;
  font-size: 1.1rem;
  color: #0F2D4D;
  font-weight: 700;
  line-height: 1.4;
  height: 85px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-button {
  margin: 10px auto 18px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 2px solid #2BB3FF;
  color: #2BB3FF;
  background: none;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-link:hover .news-button:hover {
  background: #2BB3FF;
  color: #fff;
}

.btn-sld {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 60px !important;
  width: 60px !important;
  border-radius: 50%;
  background: #ffffff !important;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, .15);
}

.btn-sld::after {
  color: #0F2D4D !important;
  font-size: 28px !important;
}

/* Hide buttons on mobile only */
@media(max-width:768px){
  .btn-sld{
    display:none!important;
  }
}

/* Responsive */
@media(max-width:1024px){
  .news-image{height:200px;}
}

@media(max-width:768px){
  .newsh{font-size:2rem;}
  .news-title{height:auto;}
}

@media(max-width:480px){
  .newsh{font-size:1.7rem;}
}