#popup-bellevue{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 360px;
    background: #16528B;
    color: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    border-bottom: #F1C50E 3px solid;

    animation: mouvement 3s infinite;
}

.popup-content{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    border-radius: 8px;
}

.text{
    flex: 1;
}

.word_1{
    font-size: 15px;
}

.word_2{
    font-size: 18px;
    font-weight: 600;
}

#popup-bellevue p{
    margin-bottom: 10px;
}

#popup-bellevue .btn{
    color: black;
    background-color: #F1C50E;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
}

.close-btn{
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

@keyframes mouvement {
    0%{
        transform: translateY(0);
        opacity: 1;
    }

    25%{
        transform: translateY(-10px);
        opacity: 0.99;
    }

    50%{
        transform: translateY(0);
        opacity: 0.9;
    }

    75%{
        transform: translateY(10px);
        opacity: 0.99;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {

    #popup-bellevue{
        width: 260px;
        left: 15px;
        bottom: 15px;
        padding: 12px;
    }

    .logo img{
        width: 50px;
        height: 50px;
    }

    .word_2{
        font-size: 14px;
    }

    .modal-content{
        max-width: 90%;
        padding: 20px;
    }

}

@media (max-width: 480px) {

    #popup-bellevue{
        width: 90%;
        right: auto;
        left: 5%;
        bottom: 15px;
        padding: 12px;
    }

    .popup-content{
        gap: 8px;
    }

    .logo img{
        width: 45px;
        height: 45px;
    }

    .word_1{
        font-size: 12px;
    }

    .word_2{
        font-size: 14px;
    }

    #popup-bellevue .btn{
        font-size: 14px;
    }

    .modal-content{
        max-width: 95%;
        padding: 18px;
        border-radius: 8px;
    }

}

.modal{
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 51, 58, 0.83);
}

.modal-content{
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    overflow: auto;
}
.close-modal{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

#modal-bellevue .btn-close {
    border-radius: 50%;
}

.modal-small-text {
    font-size: 16px;
}

.modal-large-text {
    font-size: 20px;
    color: #16528B;
    text-shadow: 0 0 20px rgba(52, 75, 120, 0.4);
}

.u-form-send-joins__{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px;
    border: none;
    background: #229859;
}
.u-form-send-message__{
    z-index: 1;
}