.fee_con {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.fee_con button {
  width: calc(25% - 20px);
  height: 150px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
  flex-direction: column;
}


.fee_con button:hover {
  transition: all 0.3s;
  background: linear-gradient(120deg, rgba(255, 168, 63, 1) 0%, rgba(255, 128, 56, 1) 100%);
  box-shadow: 0 10px 20px 10px rgba(0, 0, 0, 0.05);
  color: #fff;
}


.fee_con button:hover a,
.fee_con button:hover .btn_down {
  color: #fff;
  transition: all 0.3s;
}

.btn_down {
  font-weight: 400;
  margin-top: 10px;
}

.fee_con .btn_down::after {
  content: "\F30A";
  font-family: "bootstrap-icons" !important;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .fee_con button {
      width: calc(50% - 10px);
      margin-bottom: 10px;
  }
}

@media screen and (max-width: 360px) {
  .fee_con button {
      width: 100%;
      height: 100px;
      margin-bottom: 10px;
  }
}