/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.services .icon-box {
  display: flex; /* Add display:flex */
  flex-direction: column; /* Set the flex direction to column */
  margin-bottom: 40px;
  padding-bottom: 0;
}
.card {
  width: 17em;
  height: 22.5em;
  background: #171717;
  transition: 1s ease-in-out;
  clip-path: polygon(30px 0%, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0% 30px);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  flex-direction: column;
  margin: 15px;
}

.card span {
  font-weight: bold;
  color: white;
  text-align: center;
  display: block;
  font-size: 1em;
}

.card .info {
  font-weight: 400;
  color: white;
  display: block;
  text-align: center;
  font-size: 0.72em;
  margin: 1em;
}

.card .img {
  width: 4.8em;
  height: 4.8em;
  background: white;
  border-radius: 15px;
  margin: auto;
}

.card .share {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

.card a {
  color: white;
  transition: .4s ease-in-out;
}

.card a:hover {
  color: red;
}

.card button {
  padding: 0.8em 1.7em;
  display: block;
  margin: auto;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  background: #ffffff;
  color: rgb(0, 0, 0);
  transition: .4s ease-in-out;
}

.card button:hover {
  background: red;
  color: white;
  cursor: pointer;
}

.card-body {
  padding: 1em;
}

.beautiful-hr {
  border: 0; /* Remove the default border */
  height: 2px; /* Set the height of the hr */
  background-image: linear-gradient(to left, transparent, #ffa600, transparent); /* Add gradients on both right and left */
  margin-top: 10px; /* Add margin-top */
  margin-bottom: 10px; /* Add margin-bottom */
}

.partners-advantages {
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.beautiful-list {
  list-style-type: none;
  padding: 0;
}

.beautiful-list li {
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 5px;
  position: relative;
}

.beautiful-list li::before {
  content: "🐺";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffa600;
  font-size: 20px;
}

.button-partners {
  display: flex;
  justify-content: center;
  bottom: 0;
}