:root{
    --dark-navy:#1A2A33;
    --semi-dark-navy: #1F3641;
    --silver: #A8BFC9;
    --silver-hover: #DBE8ED;
    --light-blue: #31C3BD;
    --light-blue-hover: #65E9E4;
    --light-yellow: #F2B137;
    --light-yellow-hover: #FFC860;
}

#modal-zone, #modal-zone1{
    background-color: rgba(0, 0, 0, 0.4);

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-zone .modal, #modal-zone1 .modal1{
    background-color: var(--semi-dark-navy);
    box-shadow: 0.8rem 0 1.6rem rgba(0, 0, 0, 0.25);
    color: black;

    padding: 5rem 2rem;
    width: 100%;
    text-align: center;
}

#modal-zone #modal-button1, #modal-zone1 #modal-button1{
   background-color:#84959c;
}

#modal-zone #modal-button1::after, #modal-zone1 #modal-button1::after{
    background-color:var(--silver) ;
}
 
.div_para{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap:1rem;
}

#modal-zone[hidden], #modal-zone1[hidden]{
    display: none;
}

#modal-text{
    font-size: 1.6rem;
    padding-bottom: 1rem;
    color: var(--silver);
    font-weight: 700;
}

.div_btn_modal{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:3rem;
}

.text_color, .text_color1{
    color: var(--silver);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.text_color1{
    padding-bottom: 2rem;
}


@media only screen and (min-width: 576px){
    .div_btn_modal{
        width: 60%;
        margin: auto;
    }


}

@media only screen and (min-width: 992px) {
    .div_btn_modal{
        width: 30%;
    }
    

    #modal-zone .modal, #modal-zone1 .modal1{
        padding: 6rem 2rem;   
    }
}