


.skills {
  padding: 50px 0px;
  background-color: #002f46;
}
.skills .skills-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
@media (max-width: 700px) {
  .skills .skills-flex-container {
    gap: 30px;
  }
}
.skills .skills-flex-container .box {
  flex: 1 1 15%;
  background: #001925;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 24px;
  padding: 25px;
  text-align: center;
  border: 10px solid #013747;
  transition: all 0.3s ease-in;
  border-radius: 15px;
}
.skills .skills-flex-container .box .image {
  transition: all 0.3s ease-in-out 0.1s;
}
.skills .skills-flex-container .box .image img {
  max-width: 75px;
  object-fit: contain;
  border: 1px #fff solid;
  border-radius: 10px;
}
.skills .skills-flex-container .box .title {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease-in-out;
}
.skills .skills-flex-container .box:hover {
  box-shadow: rgba(0, 0, 0, 0.5) 20px 20px 30px;
  transform: scale(1.1);
}
.skills .skills-flex-container .box:hover .image {
  transform: scale(1.5) translateY(-20px);
}
.skills .skills-flex-container .box:hover .image img {
  animation: bouncing 0.5s 0.3s;
}
.skills .skills-flex-container .box:hover .title {
  letter-spacing: 2px;
}
@media (max-width: 1100px) {
  .skills .skills-flex-container .box {
    flex: 1 0 25%;
  }
}
@media (max-width: 630px) {
  .skills .skills-flex-container .box {
    flex: 1 0 35%;
    padding: 15px;
  }
  .skills .skills-flex-container .box .image img {
    max-width: 50px;
  }
}

@keyframes bouncing {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}

.ptb-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
