.offer-card {
    background: #519C60;
    border-radius: 10px;
    padding: 70px 40px 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
    font-family: 'Montserrat';
    height: 450px;
}

.large .offer-card {
    height: 800px;
}

.offer-card img {
    width: 190px;
}

/* Chanegment de couleur de la box */
.offer-card.bleu {
    background: #2890BC;
}

.offer-card.bleu .offer-number-container {
    border: 3px solid #2890BC;
}

.offer-card.bleu .offer-number-container p {
    color: #2890BC;
}

.offer-number-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    top: -50px;
    padding: 30px;
    border-radius: 50%;
    border: 3px solid #519C60;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-number-container p {
    font-size: 50px;
    color: #519C60;
    font-weight: bold;
    margin: 0;
}

.offer-title-container {
    font-size: 30px;
    text-transform: uppercase;
}

.offer-text-container, .offer-price-container p {
    font-size: 20px;
    font-weight: bold;
}

.offer-text-container li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.offer-text-container li:after {
    content: "";
    background: url('../assets/img/arrow-puce.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 0;
}

.offer-price-container {
    padding-top: 30px;
    position: relative;
}

.offer-price-container::before {
    content: "";
    background: white;
    height: 1px;
    width: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.offer-price-container .offer-price-text {
    text-transform: uppercase;
}

.offer-price-container .offer-price {
    font-size: 50px;
}

.offer-card ul {
    padding: 0px;
}

.offer-card ul li {
    text-align: left;
    margin-bottom: 20px;
    font-weight: 400;
}

.offer-text-container {
    height: -webkit-fill-available;
}

@media screen and (max-width: 1100px) {
    .offer-card {
        padding: 60px 20px 40px 20px;;
    }
    .offer-title-container {
        font-size: 25px;
    }
    .offer-text-container, .offer-price-container p {
        font-size: 15px;
    }
    .offer-price-container {
        padding-top: 20px;
    }
    .offer-price-container .offer-price {
        font-size: 40px;
    }
    .offer-card img {
        width: 150px
    }
}