.bl_devices {
  max-width: 100%; 
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
}

.bl_device {
    transition-duration: .4s;
  width: 48%; 
  height: auto; 
  border-radius: 2rem;
  overflow: hidden; 
  margin-bottom: 2.3rem;
  background: var(--sub-color5);
  box-shadow: 0px 0px 16px 0px #00000024;

}


.bl_device_imgWrapper {
  display:flex;
  justify-content:center;
  padding: 0 5%; 
}

.bl_device_img {
  width: 100%; 
  height: auto; 
}

.bl_device_txtWrapper {
  height: auto; 
  background: var(--primary-color);
  padding: 1.2rem 5%; 
  display: flex;
  align-items: center;
}

.bl_device_txt {
  color: var(--sub-color5);
  font-weight: 700;
  font-size: 2rem; 
}

.bl_device:hover {
      transform: scale(1.02);
}

@media screen and (max-width: 50rem) {
  .bl_device {
    width: 100%; 
    max-width: 100%; 
}