.flexbox-title-opportinutes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; /* end -> start */
}

.btn-cepex.btn-contact {
    background: #cb033d;
    color: #fff;
}

.flex-date-adr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0 0;
}

.flex-date-adr .boxdate-communique {
    margin-left: 35px; /* right -> left */
}

.flexbox-title-opportinutes .title-communique {
    margin: 0;
}

.bloc-communique .type-event img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 4px; /* right -> left */
}

.bloc-communique .type-event {
    margin: 20px 0 0;
}

.flex-date-sociaux.flex-end {
    justify-content: flex-start; /* end -> start */
}

.details-communique.sansbg {
    background: transparent;
    padding: 0;
}

.box-entrepise.boxdate-communique {
    margin: 20px 0 0;
}

.box-entrepise.boxdate-communique span {
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .btn-cepex.btn-contact {
        margin: 20px 0 0;
    }
    .flex-date-adr {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 30px 0 0;
        flex-direction: column;
    }
    .flex-date-adr .boxdate-communique:last-child {
        margin: 20px 0 0;
    }
}

@media screen and (max-width: 1024px) {
    .flexbox-title-opportinutes .btn-cepex.btn-contact {
        display: flex;
        justify-content: flex-start; /* end -> start */
        margin-top: 20px !important;
    }
    .flexbox-title-opportinutes {
        align-items: start; /* end -> start */
        flex-direction: column;
    }
}

/* pop up */

.popup {
    display: block;
    position: fixed;
    right: 0; /* left -> right */
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 40px 20px;
    width: 35%;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.popup-content p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.cepex-connect {
    background: #cd0b47 !important;
    color: #fff !important;
    padding: 5px 15px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    border: 1px solid #cd0b47 !important;
    margin: 10px 0 0 !important;
    display: inline-block !important;
    font-size: 15px !important;
    font-weight: normal !important;
}

.cepex-connect:hover {
    background: transparent;
    color: #cd0b47;
}

.popup-content .close {
    color: #454545;
    float: left; /* right -> left */
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    left: -10px; /* right -> left */
    top: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcbcbc;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}