.modal-home{
    background: transparent;
}
.modal-content-home-two{
    width: -webkit-fill-available;
    padding: 20px;
    margin-bottom: 12px;
    background-color: #333;
    color: #fff;
    position:relative;
    border-radius: 8px;
}
.modal-header-home{
    padding-bottom: 0;
}
.modal-header-home h2{
    font-weight: 500;
}
.modal-flex{
    gap: 16px;
    justify-content: center;
    display: flex;
}
.modal-header-button{
    display: flex;
    gap: 10px;
}
.modal-button{
    background-color: #fff;
    max-width: 180px;
    min-width: 180px;
    color: #333;
    /* background-color: #333; */
    text-decoration: underline;
    font-weight: 500;
}
.modal-button:first-child{
   
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .modal-content-home-two{
        position: fixed;
        bottom: 55px;
        border-radius: 0;
        z-index: 888;
    }
    .modal-content-home, .modal-button{
        width: -webkit-fill-available;
        max-width: -webkit-fill-available;
        min-width: -webkit-fill-available;
    }
    .modal-flex,
    .modal-header-button{
        flex-direction: column;
    }
}