.tech-card {
  background-color: white;
  height: 300px;
  width: 260px;
  border-radius: 25px;
  position: relative;
  padding: 0px;
  box-shadow: 0px 0px 20px rgb(181, 184, 184);
  transition: all 0.5s ease-in-out;
}
.tech-card:hover {
  transform: translateY(-20px);
}

.tech-card::before {
  content: "";
  background-color: white;

  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  top: -20px;
  border-radius: 50%;
  border-top: 4px solid #626363;
}
.tech-card::after {
  content: "";
  background-color: black;
  

  width: 100%;
  height: 80px;

  position: absolute;
  left: 0;
  bottom: -20px;
  border-radius: 50%;
}
.tech-logo {
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%)
}
.tech-logo img {
  width: 100px;
  max-height: 100%;
  max-width: auto;
  z-index: 1;
}
.tech-name {
  background-color: black;
  color: white;
  width: 100%;
  height: 30%;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-name span {
  font-size: 1.5rem;
  z-index: 1;
}


#tech-1{
  /* opacity: 0; */
}