.collection-point {
    padding-bottom: 30px;
}

.collection-point h4 {
    display: flex;
    align-items: center;
}


.collection-point:first-child h4 {
    margin-top: 0;
}

.collection-point-title:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-image: url("../img/benin.svg");
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .25);
}

.collection-point-title.ivoire:after {
    background-image: url("../img/ivoire.svg");
}

.collection-point-title.togo:after {
    background-image: url("../img/togo.svg");
}

.collection-point p {
    color: #00000080;
}

.collection-point-address-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.collection-point-address-container > div {
    flex: 48%;
}

@media (max-width: 1024px) {
    .collection-point-address-container {
        display: block;
    }

    .collection-point-address-container > div {
        width: 100%;
    }
}

.collection-point-address {
    padding: 20px 15px 20px 0;
    position: relative;
}

.collection-point-address:hover {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 100%);
}

.collection-point-address:hover:after {
    content: "";
    width: 4px;
    height: 100%;
    background-color: #980000;
    position: absolute;
    right: 0;
    top: 0;
}

.collection-point-address h5 {
    margin-top: 0;
}

.collection-point-address p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3; 
    -webkit-box-orient: vertical;
}

.collection-point-cta {
    display: flex;
}

.collection-point-address a {
    margin: 20px 12px 0 0;
}