.bg-100-services {
  background: url("../img/bg1.jpg");
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.new-card {
  box-sizing: border-box;
  /* width: 190px; */
  /* height: 254px; */
  padding: 10px;
  margin: 10px;
  /*margin-top: -100px;*/
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  /* text-align: center; */
  cursor: pointer;
  transition: all 0.5s;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  user-select: none;
  font-weight: bolder;
  /* color: black; */
}

.card2 {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.card3 {
  border-radius: 10px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
  min-height: 200px;
}
.new-card:hover {
  border: 1px solid black;
  transform: scale(1.05);
}

.new-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}

@media screen and (max-width: 992px) {
  .new-card {
    margin: top 0;
  }
}
