/* BREADCRUMB */

.counter-mobile-banner{
  width:100%;
  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;
}

.counter-mobile-banner-content h2{
  font-size:20px;
  font-weight:700;
  color:#000;
  margin:0 0 12px;
}

.counter-mobile-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
}

.counter-mobile-breadcrumb a,
.counter-mobile-breadcrumb span,
.counter-mobile-breadcrumb p{
  color:#fff;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  margin:0;
}

/* MAIN SECTION */

.counter-mobile-section{
  width:100%;
  background:#f5f5f5;
  padding:58px 115px 0;
  overflow:hidden;
  font-family:Arial, sans-serif;
}

.counter-mobile-wrap{
  display:grid;
  grid-template-columns:52% 48%;
  gap:10px;
  align-items:flex-start;
}

/* LEFT */

.counter-mobile-left h2{
  font-size:25px;
  font-weight:700;
  color:#5b97c6;
  margin:0 0 28px;
}

.counter-mobile-left h4{
  font-size:18px;
  font-weight:700;
  color:#666;
  margin:0 0 18px;
}

.counter-feature-list{
  margin:0 0 40px;
  padding-left:20px;
}

.counter-feature-list li{
  font-size:17px;
  line-height:1.7;
  color:#6b6b6b;
  margin-bottom:2px;
}

/* BUTTONS */

.counter-btn-group{
  display:flex;
  align-items:center;
  gap:90px;
  margin-bottom:35px;
}

.counter-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#5b97c6;
  color:#fff;
  padding:13px 24px;
  border-radius:3px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:0.3s ease;
}

.counter-btn:hover{
  background:#0b5fa5;
  transform:translateY(-2px);
}

.counter-btn i{
  font-size:14px;
}

/* TABLE */

.counter-mobile-table{
  width:100%;
  border-collapse:collapse;
  color:#243b5b;
  font-size:16px;
}

.counter-mobile-table th{
  background:#5b97c6;
  color:#fff;
  font-weight:700;
  border:1px solid #c7d0d8;
  padding:12px 14px;
}

.counter-mobile-table td{
  border:1px solid #c7d0d8;
  padding:10px 16px;
  line-height:1.7;
  vertical-align:top;
}

.counter-mobile-table td:first-child{
  width:45px;
  text-align:center;
}

.counter-mobile-table td:nth-child(2){
  width:190px;
}

/* RIGHT */

.counter-mobile-right{
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.counter-mobile-right img{
  width:100%;
  max-width:550px;
  object-fit:contain;
  display:block;
}

/* RESPONSIVE */

@media(max-width:991px){

  .counter-mobile-banner{
    padding:0 30px;
  }

  .counter-mobile-section{
    padding:45px 25px 0;
  }

  .counter-mobile-wrap{
    grid-template-columns:1fr;
  }

  .counter-btn-group{
    gap:20px;
    flex-wrap:wrap;
  }

  .counter-mobile-right{
    margin-top:30px;
  }

}

@media(max-width:576px){

  .counter-mobile-banner{
    height:105px;
    padding:0 20px;
  }

  .counter-mobile-banner-content h2{
    font-size:18px;
  }

  .counter-mobile-breadcrumb a,
  .counter-mobile-breadcrumb span,
  .counter-mobile-breadcrumb p{
    font-size:14px;
  }

  .counter-mobile-section{
    padding:38px 15px 0;
  }

  .counter-mobile-left h2{
    font-size:22px;
    line-height:1.4;
  }

  .counter-feature-list{
    margin-bottom:30px;
  }

  .counter-feature-list li{
    font-size:15px;
  }

  .counter-btn-group{
    gap:15px;
    margin-bottom:25px;
  }

  .counter-btn{
    padding:12px 20px;
    font-size:13px;
  }

  .counter-mobile-table{
    font-size:13px;
  }

  .counter-mobile-table td,
  .counter-mobile-table th{
    padding:8px;
  }

}