*,
*::before,
*::after {
  padding: 0;
  margin: 0;
}

body {
  background-color: #0d192b;
  font-family: "Outfit";
  color: white;
}

.card {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  padding: 10px;
  padding-top: 20px;
  -webkit-box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.295);
          box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.295);
  background-color: #14253d;
  text-align: center;
  width: 250px;
  height: 440px;
  border-radius: 10px;
  font-size: 18px;
}

.card-img img {
  width: 235px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.card-img .overlay {
  position: absolute;
  top: 19px;
  bottom: 0;
  left: 17px;
  right: 0;
  height: 235px;
  width: 235px;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  background-color: rgba(0, 255, 247, 0.521);
}

.card-img svg {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.card-img:hover .overlay {
  opacity: 1;
}

.card-heading {
  padding-top: 10px;
}

.card-heading h4 {
  text-decoration: none;
  color: white;
  text-align: left;
  padding-left: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 17px;
}

.card-heading h4:hover {
  color: #00fff7;
}

.card-container {
  color: #8bacda;
  padding-top: 10px;
  padding-left: 10px;
  text-align: left;
  font-weight: 200;
  padding-bottom: 10px;
  font-size: 15px;
}

.card-info {
  padding-top: 10px;
  padding-bottom: 10px;
  content: "";
  display: table;
  clear: both;
}

.card-info ul {
  color: #00fff7;
  list-style: none;
}

.card-info ul li:first-child {
  float: left;
  padding-left: 10px;
  font-size: 12px;
}

.card-info ul li:first-child svg {
  vertical-align: middle;
  padding-right: 5px;
}

.card-info ul li:last-child {
  float: right;
  padding-right: 10px;
  color: #8bacda;
  font-size: 12px;
}

.card-info ul li:last-child svg {
  vertical-align: middle;
  padding-right: 5px;
}

.card hr {
  border: 0;
  border-top: 1px solid #2f415b;
  border-radius: 0.1px;
}

.card-footer {
  padding-left: 10px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 25px;
}

.card-footer-text {
  font-size: 12px;
  padding-left: 15px;
  color: #8bacda;
}

.card-footer-text span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.card-footer-text span:hover {
  color: #00fff7;
}
/*# sourceMappingURL=styles.css.map */