/* **************************************************************************************************************************** */
/* CARD
/* **************************************************************************************************************************** */
.card{
  margin: var(--gutter-out) 0;
  position: relative;
  overflow: hidden;
}


/* **************************************************************************************************************************** */
/* CARD > COVER
/* **************************************************************************************************************************** */
.card-cover{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000000;
}

.card-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* **************************************************************************************************************************** */
/* CARD > CONTENT
/* **************************************************************************************************************************** */
.card-content{
  position: relative;
  z-index: 2;
  padding: var(--gutter-in);
}

@media only screen and (min-width: 600px) {
  .card-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}


/* **************************************************************************************************************************** */
/* CARD > CONTENT > LEFT
/* **************************************************************************************************************************** */
@media only screen and (min-width: 600px) {
  .card-content-left{
    width: 50%;
  }
}

.card-content h2{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
}

.card-description{
  margin-top: 20px;
  color: #FFF;
  max-width: 400px;
}


/* **************************************************************************************************************************** */
/* CARD > CONTENT > RIGHT
/* **************************************************************************************************************************** */
.card-content-right{
  margin-top: var(--gutter-in);
}

@media only screen and (min-width: 600px) {
  .card-content-right{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
}

.card-content-right.asButton a{
  background: #FFFFFF;
  display: inline-block;
  padding: 10px 30px;
  color: var(--vert);
  font-weight: bold;
  border-radius: 320px;
  transition: all .4s ease;
  text-align: center;
}

.card-content-right.asButton a:hover{
  background: var(--vert);
  color: #FFFFFF;
}
