.tool-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tool-card {
  background-color: #c4c5c9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  margin: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: 25vw;
  min-height: 400px;
  display: flex;
  justify-content: start;
  align-items: self-start;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
  margin-top: 0;
  font-size: 2em;
  color: black;
  display: flex;
  width: 100%;
}

.tool-card p {
  margin: 15px 0 20px;
  color: black;
}

.tool-card ul {
  list-style-type: disc;
  margin-left: 20px;
  color: black;
}

.tool-card ul li {
  margin-bottom: 10px;
  color: black;
}

.section-header {
  font-size: 3em;
  font-weight: bold;
  margin: 40px 0 20px;
  color: black;
}

.section-text {
  font-size: 1.5em;
  color: black;
  line-height: 1.6;
  width: 80vw;
}

@media screen and (max-width: 1630px) {
  .tool-card {
    width: 80vw;
  }
}

.spinner {
  margin-left: 5px;
  position: relative;
  width: 30px;
}
.spinner .scircle {
  width: 25px;
  height: 25px;
  background-color: #c4c5c9;
  border-radius: 100%;
  border: 1px #ffffff41 solid;
  position: absolute;
  top: 6px;
  left: 8px;
}
.spinner .sline {
  width: 20px;
  height: 29px;
  border-radius: 15px;
  position: absolute;
  top: 6px;
  left: 0;
  background-color: green;
  transform: translateX(11.5px) translateY(-1px);
  animation: rotateBorder 2.5s infinite linear;
}
@keyframes rotateBorder {
  0% {
    transform: translateX(11.5px) translateY(-1px) rotate(0deg);
    background-color: red;
  }
  33% {
    background-color: blue;
  }
  66% {
    background-color: green;
  }
  100% {
    transform: translateX(11.5px) translateY(-1px) rotate(360deg);
    background-color: red;
  }
}
