.middle-bar{
  background-color: #C6D9DA;
  /* gap: 35px; */
  z-index: 6;
  background-image: url(https://images.pexels.com/photos/7213506/pexels-photo-7213506.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.cmb{
  width: 100vw;
  min-height: 300px;
  padding: 0px 20vw 0vh 20vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #0000007c;
}
.middle-bar .card{
  /* background-color: antiquewhite; */
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  border-radius: 30px;
  border: #46a8b100 solid 10px;
  overflow: hidden;
  border: #2a666b00 solid 4px;
  transition: 0.5s;
  border-bottom: #0099ff solid 4px;
}
.middle-bar .card:hover{
  border: #00000094 solid 4px;
  cursor: pointer;
}

.middle-bar .card .title-card{
  background-color: #26606568;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.middle-bar .card .title-card h2{
  font-weight: 600;
  color: #ffffff;
}

.middle-bar .card .matrix-num{
  background-color: #36898fd2;
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  padding-top: 30px;
  border-bottom: #2a666b solid 5px;
  /* border-bottom: #0099ff solid 4px; */
}
#vx-v{
  animation: vx-v 5s linear infinite;
  font-size: 25px;
}
@keyframes vx-v {
  0% {
    opacity: 0;
      /* transform: translateY(0px); */
  }
  50% {
    opacity: 1;
      /* transform: translateY(0px); */
  }
  100% {
    opacity: 0;
      /* transform: translateY(0px); */
  }
}

@media (max-width:1200px) {
  .cmb{
    padding: 40px 1vw 40px 1vw;
    /* padding: 40px 0vw 40px 0vw;
    min-height: 200px;
    justify-content: space-evenly; */
  }
  .middle-bar .card{
    /* margin-bottom: 40px;
    width: 150px;
    height: 150px;
    border-radius: 20px; */
    margin-bottom: 20px;
  }
  /* .middle-bar .card .title-card{
    font-size: 11px;
  }
  .middle-bar .card .matrix-num{
    font-size: 40px;
    padding-top: 10px;
  }
  #vx-v{
    font-size: 20px;
  } */
}