.card-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 430px;
  position: relative;
}
.card-wrapper::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: 31%;
  position: absolute;
  transition: all 0.3s linear;
}
.card-wrapper:hover:after {
  background: radial-gradient(
    circle,
    rgba(10, 33, 51, 0.19380252100840334) 17%,
    rgba(10, 33, 51, 1) 100%
  );
}

.card-wrapper .overlay-text {
  top: 50%;
  z-index: 1;
  opacity: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  padding: 0px 50px;
  position: absolute;
  letter-spacing: normal;
  transition: all 0.3s linear;
  font-family: 'DM Sans', sans-serif;
}

.card-wrapper:hover .overlay-text {
  opacity: 1;
}

.card-wrapper .card-bottom {
  z-index: 1;
  width: 100%;
  bottom: 45px;
  display: flex;
  align-items: end;
  padding: 0px 50px;
  position: absolute;
  justify-content: space-between;
}

.card-wrapper .card-bottom h6 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.5px;
  font-family: 'Polysans', Sans-serif !important;
}
.card-wrapper .card-bottom .card-btn {
  opacity: 0;
  width: 46px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px #ffffff solid;
  transition: all 0.3s linear;
}
.card-wrapper:hover .card-bottom .card-btn {
  opacity: 1;
}

.card-wrapper .card-icon {
  max-height: 60px;
}

@media (min-width: 1700px) {
  .card-wrapper .card-bottom .card-btn {
    width: 54px;
    height: 51px;
  }
}

@media (max-width: 640px) {
  .card-wrapper .overlay-text {
    top: 45%;
    font-size: 16px;
    padding: 0px 35px 0px 15px;
  }
  .card-wrapper .card-bottom {
    padding: 0px 35px 0px 15px;
  }
}
@media (max-width: 1024px) {
  .card-wrapper .card-bottom .card-btn {
    opacity: 1;
  }
}

@media (max-width: 1650px) and (min-width: 1366px) {
  .card-wrapper .overlay-text {
    font-size: 18px;
  }
}
