.modalbox2 {
	bottom: 0;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    background: none repeat scroll 0% 0% rgba(39, 37, 95, 1);
    display: none;
}
.modalbox3 {
	bottom: 0;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    background: none repeat scroll 0% 0% rgba(39, 37, 95, 0.7);
    display: none;
}
#page-inner {
    position: absolute;
    box-sizing: border-box;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    
    background-color: #1d255f;
    min-height: 200px;
    
    transition:all .3s linear; 
    -o-transition:all .3s linear; 
    -moz-transition:all .3s linear; 
    -webkit-transition:all .3s linear;
}#page-inner2 {
    position: absolute;
    box-sizing: border-box;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    
    background-color: rgba(39, 37, 95, 0);
    min-height: 200px;
    
    transition:all .3s linear; 
    -o-transition:all .3s linear; 
    -moz-transition:all .3s linear; 
    -webkit-transition:all .3s linear;
}
#page-text{
    text-align: center;
    color: #fff;
    padding: 2% 5%;
}
#closeBTN {
    position: absolute;
    right: 40px;
    top: 40px;
}
@media screen and (max-width: 800px) {
    #page-inner {
        width: 90%;
        height: 80%;
        top: 10%;
        left: 5%;
    }
}