/* =========================
   PAGE BANNER
========================= */

.fixed-xray-banner{
  width:100%;
  height:120px;
  background:
  linear-gradient(rgba(83,146,193,.88), rgba(83,146,193,.88)),
  url("assets/images/breadcrumb-bg.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:0 105px;
  font-family:Arial, sans-serif;
}

.fixed-xray-banner-content h2{
  font-size:20px;
  font-weight:700;
  color:#000;
  margin-bottom:12px;
}

.fixed-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
}

.fixed-breadcrumb a{
  text-decoration:none;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.fixed-breadcrumb span{
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.fixed-breadcrumb p{
  color:#fff;
  font-size:15px;
  font-weight:700;
  margin:0;
}

/* =========================
   PRODUCTS SECTION
========================= */

.fixed-xray-products-section{
  width:100%;
  background:#f5f5f5;
  padding:58px 75px 45px;
  font-family:Arial, sans-serif;
}

/* HEADING */

.fixed-xray-heading{
  text-align:center;
  margin-bottom:28px;
}

.fixed-xray-heading h2{
  font-size:31px;
  font-weight:700;
  color:#000;
  margin:0 0 12px;
}

.fixed-xray-heading span{
  width:172px;
  height:2px;
  background:#2d8ec8;
  display:block;
  margin:auto;
}

/* GRID */

.fixed-xray-grid{
  width:760px;
  margin-left:38px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

/* CARD */

.fixed-xray-card{
  background:#fff;
  border:1px solid #d2d2d2;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
  min-height:305px;
  text-align:center;
  padding-bottom:22px;
}

/* IMAGE */

.fixed-xray-img{
  width:100%;
  height:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
}

.fixed-xray-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* TITLE */

.fixed-xray-card h3{
  font-size:16px;
  font-weight:700;
  color:#000;
  margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .fixed-xray-banner{
    padding:0 30px;
  }

  .fixed-xray-grid{
    width:100%;
    padding:0 20px;
    margin-left:0;
  }

}

@media(max-width:768px){

  .fixed-xray-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:576px){

  .fixed-xray-banner{
    height:105px;
    padding:0 20px;
  }

  .fixed-xray-banner-content h2{
    font-size:18px;
  }

  .fixed-breadcrumb a,
  .fixed-breadcrumb span,
  .fixed-breadcrumb p{
    font-size:14px;
  }

  .fixed-xray-products-section{
    padding:45px 0 40px;
  }

  .fixed-xray-heading h2{
    font-size:27px;
  }

  .fixed-xray-card{
    min-height:auto;
    padding-bottom:18px;
  }

  .fixed-xray-img{
    height:220px;
  }

}