/*-- ==================== About Banner Section  ====================== --*/

.facility-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/facilities.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
    display: grid;
    place-items: center;
}

.facility-banner .data {
    padding-top: 5%;
    display: grid;
    place-items: center;
}

.facility-banner h2 {
    font-size: clamp(25px, 3vw, 120px);
    color: white;
    font-weight: 700;
}

.facility-banner p {
    color: var(--white-color);
    font-size: 20px;
}

.facility-banner p i {
    color: var(--main);
}

.facility-banner a {
    color: var(--white);
}

@media(max-width:400px) {
    .facility-banner p {
        font-size: 18px;
    }

    .facility-banner {
        height: 35vh;
    }

    .facility-banner .data {
        padding-top: 10%;
    }
}

.facility .heading h2 {
    font-size: clamp(32px, 3.2vw, 120px);
    /* font-family: "Poetsen One", sans-serif; */
    color: brown;
}

.facility .heading h3 {
    font-style: italic;
}

.facility .detail h4 {
    position: relative;
}

.facility .detail h4::after {
    position: absolute;
    content: '';
    bottom: -12px;
    left: 0;
    width: 150px;
    height: 3px;
    background-color: black;
}

.facility .data {
    border: 3px solid #EFEFEF;
    border-radius: 20px;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    background-color: #eff8ff;
    padding: 25px 29px 25px;
}

.facility .data .info-box p {
    color: var(--black);
}


.second-box .box{
  padding: 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);  border-radius: 8px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(3, 192, 179, 0.411) 0%, rgba(238, 176, 42, 0.418) 100%);
}

.second-box .box:hover{
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
  background-color: aliceblue;
}

.second-box .box:hover .icon{
  background-color: white;
}

.second-box .box .icon{
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: aliceblue;
}

.second-box .box .icon i{
  font-size: 35px;
  color: var(--blue);
}

.second-box .box p{
  margin-left: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}


.third-box .box{
    height:80px;
        display: grid
;
    place-items: center;
  padding: 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);  border-radius: 8px;
  background: linear-gradient(90deg, rgba(3, 192, 179, 0.411) 0%, rgba(238, 176, 42, 0.418) 100%);
}

.third-box .box:hover{
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
  background-color: aliceblue;
}

.third-box .box p{
  margin-left: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}


.facility .para{
    font-size: 20px;
    font-weight: 700;
}


@media(max-width:767.5px){
    .facility .data{
            padding: 25px 15px 25px;
    }
    .facility .detail h4 {

        font-size: 18px !important;
    }
    .facility .heading h3{
        font-size: 20px !important;
    }
}