/* Global */
.main {
      min-height: 100vh;
}

/* Items */
.items {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #333;
}
/* On définit le style d'un item */
.item_card {
    padding: 50px 15px;
    text-align: center;
    display: table;
    width: 100%;
    height: 400px;
    text-decoration: none;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #fff;
}
/* On définit le style du texte de l'item */
.item_card .item_text {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    position: relative;
    z-index: 10;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}
.item_card .item_text h4 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
}

/* On définit le style qui sera appliqué avec la pseudo-classe before et la pseudo-classe after */
.item_card:before {
    background-color: #000;
    content: "";
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
}
.item_card:after {
    background-color: transparent;
    content: "";
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 1;
    z-index: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
    border: 10px solid #fff729;
    opacity: 0;
}
/* On définit le style du survol */
.item_card:hover:after,
.item_card:hover .item_text {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity: 0.3s;
    opacity: 1;
}
.item_card:hover:before {
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.5;
}
/* On définit le style de la liste */
.item_card .item_text ul li {
    color: #fff;
    font-size: 15px;
}
.items a {
    text-decoration: none;
}
.item_card .item_text ul {
    margin-bottom: 0px;
}
.space {
  min-height: 100px;
}
