/********************CARD********************/
.card.card-single {
  border: 0;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  width: 100%;
}
@media not all and (hover: none) {
  cursor: pointer;
}
@media (max-width: 991px) {
  .card.card-single {
    margin-left:-1.75rem!important;
    margin-right:-1.75rem!important;
    width: calc(100% + 3.5rem);
  }
}
.card-single .card-bkgd-img,
.card-single .card-bkgd-dim,
.card-single .card-body {
  min-height: 100%;
  padding: 2rem 1rem;
  position: absolute;
  width: 100%;
}
@media (min-width: 992px) {
  .card-single .card-bkgd-img,
  .card-single .card-body {
    font-size: 24px;
  }
}
.card-single .card-body {
  background-color: #5d653a;
  color: white;
  opacity: 0;
  transition: ease-in .5s;
}
.editor-styles-wrapper .card-single .card-body p {
  color: white;
}
.card-single:hover .card-body,
.card-single.active .card-body {
  opacity: 1;
}
.card-single .card-bkgd-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.card-link {
  position: absolute;
  height: 100%;
  width: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.editor-styles-wrapper .card-link {
  pointer-events: none;
}
.card-single .card-title {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}
@media (min-width: 576px) {
  .card-single .card-title {
    font-size: 40px;
    line-height: 1;
  }
}
@media (min-width: 1400px) {
  .card-single .card-title {
    font-size: 46px;
    line-height: 1;
  }
}
.card-single .card-img {
  margin-bottom: 2rem;
  max-width: 100px;
}
.card-single .card-text {
  font-size: 1.2rem;
}
.card-single .card-button {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .5;
}
.card-single .card-button .fas {
  margin-left: 5px;
}
