/* HEADER */
body{
    background-image: url(../img/fondo_azul.jpg);
    background-size: 100vw 100vh;
    background-attachment: fixed;
    margin: 0;
    font-family: monospace;
}

form{
    width: 450px;
    margin: auto;
    background: rgba(0,0,0,0.4);
    padding: 30px 10px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 10px;
}

h2{
    color: #fff;
    text-align: center;
    margin: 0;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
}

h3{
    color: darkred;
    margin: 0;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}



input {
    width: 60%;
    padding: 7px;
    box-sizing: border-box;
    font-size: 17px;
    border: none;
    border-radius: 10px;
}


textarea{
    margin-left: 30px;
    min-height: 100px;
    max-height: 200px;
    max-width: 90%;
    border: none;
    width: 100%;
    border-radius: 15px;
}



label{
    font-size: 18px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 15px;
    color:white;
    box-sizing: border-box;
    display: inline-block;
    width: 25%;
    text-align: left;
}

hr {
  height: 3px;
  background-color: red;
}


th{
    background-color: rgba(0,0,0,0.7); 
    color: white;
    text-align: center;
}

.anuales{
    background-color: rgba(200,200,200,0.7); 
    color: darkblue;
    font-weight: bold;
    text-align: right;
}

.mensuales{
    background-color: rgba(200,200,200,0.7); 
    color:darkgreen;
    font-weight: bold;
    text-align: right;
}

.pagar{
    text-align: center;
}

.boton{
    background: #31384A;
    color: #fff;
    padding: 10px;
    width: 30%;
    border-radius: 20px;
    margin: 10px 10px;
}


#boton:hover{
    cursor: pointer;
}

.navbar {
    margin-bottom: 0;
}

.jumbotron-jl {
    background: rgba(48,142,180,0.2);
    color: #fff;
    padding: 20px 0;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.jumbotron .titulo-blog {
    font-size: 50px;
    text-align: center
}

.jumbotron h1{
    font-weight: bold;   
    font-size: 20px;
}

.jumbotron h2{
    font-size: 20px;
}



/* POST */

.main {
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-center{
    color: #fff;
}

.img-thumbnail {
    background: rgba(48,142,180,0.05);
    border: none;
}

.centrado{
      width: 50%;
      display: block;
      margin-left: auto;
      margin-right: auto;
}


.modal-title{
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    color: blue;
}

.modal-body{
    text-align: center;
    font-weight: 800;
    font-style: italic;
}

.gracias{
    text-align: right;
    font-weight: 800;
    color:red;
}

.card{
    width: 100%;
    margin: auto;
    font-weight: 800;
    font-size: 16px;
    color: darkblue;
    border-radius: 10px;
}
/* MEDIA QUERIE */ 


@media screen and (min-width: 1200px) {
    .centrado {
        width: 100%
    }
    
    .jumbotron p{
        margin-bottom: 0px;
    }

}



@media screen and (min-width: 992px) {
    .centrado {
        width: 100%
    }
    
    .jumbotron p{
        margin-bottom: 0px;
    }

}

@media screen and (max-width: 780px) {
    .post .thumb{
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .jumbotron .titulo-blog {
        font-size: 25px;
    }
    
    .jumbotron p{
        font-size: 15px;
    }
}


@media screen and (max-width: 480px) {
    .post .thumb{
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
            
    }
    
    .jumbotron .titulo-blog {
        font-size: 37px;
    }
    
    .jumbotron p{
        font-size: 20px;
    }
    
}

@media screen and (max-width: 384px) {
    .post .thumb{
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
            
    }
    
    .jumbotron .titulo-blog {
        font-size: 25px;
    }
    
    .jumbotron h2{
        font-size: 18px;
    }

    h2{
        font-size: 20px;
    }
    
    form{
    width: 330px;
    margin: auto;
    background: rgba(0,0,0,0.4);
    padding: 30px 10px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 10px;
    }
    
    label{
        font-size: 15px;
    }
    
}

/* MENU LATERAL */ 


nav{
    width: 320px;
    margin: auto;
    background: rgba(0,0,0,0.4);
    padding: 30px 10px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 10px;
}

li {
    position:relative;
    width:120px;
}

.listado {
    list-style-type:square;
    position:relative;
    width:100%;
}

li a{
    display:inline-block;
    padding:5px 10px;
    width:120px;
    height:30px;
    color:#fff;
    font-weight: bold;
    font-size: 16px;
    /*background-color: rgba(0,0,0,0.4);*/
}

li a:hover{
    color:#000;
    background-color: rgba(0,0,0,0.4);
}

.more{
    display:inline-block;
    position:absolute;
    right:0px;
    font-size:30px;
}   

nav li ul{
    display:none;
    position:absolute;
    top:0px;
    left:100px;
}

nav li:hover ul{display:block;}