.xray-table-banner{
  height:118px;
  background:linear-gradient(rgba(93,154,199,.88),rgba(93,154,199,.88)),url("assets/images/breadcrumb-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 105px;
  font-family:Arial,sans-serif;
}

.xray-table-banner h2{
  font-size:20px;
  color:#000;
  margin:0 0 12px;
  font-weight:700;
}

.xray-table-banner p{
  margin:0;
  color:#fff;
  font-size:15px;
  font-weight:700;
}

.xray-table-banner span{
  padding:0 8px;
}

.xray-table-section{
  width:100%;
  background:#fff;
  padding:21px 0 0;
  border-bottom:4px solid #5b9ccc;
  font-family:Arial,sans-serif;
  overflow:hidden;
}

.xray-table-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:28px;
}

.xray-table-tab{
  height:46px;
  padding:0 35px;
  border:none;
  background:#5b97c6;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.xray-table-tab.active{
  background:#a7191d;
}

.xray-table-panel{
  display:none;
}

.xray-table-panel.active{
  display:block;
}

.xray-table-grid{
  max-width:1125px;
  margin:0 auto;
  display:grid;
  grid-template-columns:47% 53%;
  align-items:start;
  gap:28px;
  min-height:485px;
}

.xray-table-text h3{
  font-size:20px;
  color:#000;
  margin:0 0 12px;
  font-weight:700;
}

.xray-table-text p{
  font-size:16px;
  line-height:1.62;
  color:#666;
  margin:0 0 24px;
}

.xray-table-btn{
  width:158px;
  height:39px;
  background:#5b97c6;
  color:#fff;
  border-radius:3px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  margin-left:10px;
}

.xray-table-slider-col{
  width:100%;
}

.floatingTableSlider,
.multiTableSlider,
.simpleTableSlider{
  width:100%;
  height:435px;
  position:relative;
  padding-bottom:35px;
}

.floatingTableSlider .swiper-slide,
.multiTableSlider .swiper-slide,
.simpleTableSlider .swiper-slide{
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.floatingTableSlider img,
.multiTableSlider img,
.simpleTableSlider img{
  width:100%;
  max-height:390px;
  object-fit:contain;
  display:block;
}

.table-prev,
.table-next{
  position:absolute;
  top:58%;
  width:34px;
  height:34px;
  z-index:5;
  cursor:pointer;
  color:#e5e5e5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.table-prev{
  left:0;
}

.table-next{
  right:0;
}

.table-prev::before{
  content:"‹";
  font-size:52px;
  font-weight:300;
  line-height:1;
}

.table-next::before{
  content:"›";
  font-size:52px;
  font-weight:300;
  line-height:1;
}

.table-pagination{
  position:absolute;
  bottom:0 !important;
  text-align:center;
}

.table-pagination .swiper-pagination-bullet{
  width:6px;
  height:6px;
  background:#d0d0d0;
  opacity:1;
  margin:0 6px !important;
}

.table-pagination .swiper-pagination-bullet-active{
  background:#111;
}

@media(max-width:991px){
  .xray-table-banner{
    padding:0 25px;
  }

  .xray-table-tabs{
    flex-wrap:wrap;
    padding:0 20px;
  }

  .xray-table-tab{
    flex:1 1 45%;
  }

  .xray-table-grid{
    grid-template-columns:1fr;
    padding:0 20px;
  }
}

@media(max-width:576px){
  .xray-table-tab{
    flex:1 1 100%;
  }

  .xray-table-text p{
    font-size:14px;
  }

  .floatingTableSlider,
  .multiTableSlider,
  .simpleTableSlider{
    height:330px;
  }

  .xray-table-btn{
    width:100%;
    margin-left:0;
  }
}