

/* CARD */
.research-facility-card{
  background:#fff;
  border-radius:22px;
  padding:45px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  overflow:hidden;
  position:relative;
}

/* TITLE */
.facility-title{
  font-size:42px;
  font-weight:900;
  color:var(--primary-blue);
  margin-bottom:15px;
  position:relative;
}

.facility-title::after{
  content:"";
  width:80px;
  height:4px;
  background:var(--accent-red);
  display:block;
  margin-top:12px;
  border-radius:10px;
}

/* TEXT */
.facility-content p{
  color:#444;
  font-size:16px;
  line-height:1.9;
  text-align:justify;
  margin-bottom:18px;
}

/* LIST */
.research-list{
  margin:25px 0 35px;
  padding-left:20px;
}

.research-list li{
  color:#444;
  margin-bottom:12px;
  line-height:1.8;
  font-size:15px;
}

.research-list li::marker{
  color:var(--accent-red);
}

/* SUB TITLE */
.gallery-title{
  font-size:24px;
  font-weight:700;
  color:var(--primary-blue);
  margin-bottom:25px;
}

/* OWL */
.facility-carousel .item{
  padding:10px;
}

/* IMAGE BOX */
.facility-img{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.facility-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s ease;
  border-radius:18px;
}

/* HOVER */
.facility-img:hover img{
  transform:scale(1.08);
}

/* OVERLAY */
.facility-overlay{
  position:absolute;
  inset:0;
  background:rgba(38,52,137,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.4s ease;
}

.facility-img:hover .facility-overlay{
  opacity:1;
}

/* ICON */
.facility-overlay i{
  width:65px;
  height:65px;
  background:#fff;
  color:var(--primary-blue);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  transition:0.3s;
}

.facility-overlay i:hover{
  background:var(--accent-red);
  color:#fff;
}

/* OWL NAV */
.owl-nav{
  margin-top:25px !important;
  text-align:center;
}

.owl-nav button{
  width:45px;
  height:45px;
  border-radius:50% !important;
  background:var(--primary-blue) !important;
  color:#fff !important;
  margin:0 8px;
  transition:0.3s;
}

.owl-nav button:hover{
  background:var(--accent-red) !important;
}

/* DOTS */
.owl-dots{
  margin-top:15px;
}

.owl-dot span{
  background:#b8bfdc !important;
}

.owl-dot.active span{
  background:var(--accent-red) !important;
}

/* RESPONSIVE */
@media(max-width:768px){

  .research-facility-card{
    padding:25px;
  }

  .facility-title{
    font-size:32px;
    text-align:center;
  }

  .facility-title::after{
    margin:12px auto 0;
  }

  .gallery-title{
    text-align:center;
  }

  .facility-img img{
    height:220px;
  }
}