html,
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#wrap {
    /*min-height: 100%;*/
}

#main {
    overflow: auto;
    padding-bottom: 72px;
}

/* must be same height as the footer */

#footer {
    position: relative;
    
    margin-top: auto;
    /* negative value of footer height */
    height: 112px;
    clear: both;
}

#footer p {
    margin-top: 10px;
    margin-bottom: 0px;
}

.container {
    margin-top: 1%;
    text-align: center;
    
}

.row {
    margin-top: 1%;
}

.btncard{
    border-radius: 5px;
    margin: 5px 5px 5px 5px;
    background-color: white;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.6);
    
}

.btncardB{
    border-radius: 5px;
    margin: 5px 5px 5px 5px;
    background-color: #002B4D;
    box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.6);
    
}

.btncard:hover{
    box-shadow: 0 4px 6px 0 rgba(0,0,0,0.8);
}

.btncardB:hover{
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 10);
}

.card{
    border: 0px;
    width: 240px !important;
}
.card-img-top{
    height: 60px;
    width: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top:15px;
}


@media (max-width: 532px) {
    .card{
        width: 200px !important;
        font-size: 14px;
    }
    

}

@media (max-width: 460px) {
    .card{
        width: 160px !important;
        font-size: 14px;
    }

}
.main_logo{
    position: relative;
    right:-250px;
    top: 5px;
    
}
/* Side menu*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 36px;
    margin-left: 0px;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

.vertical-center {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.center-cred-text {
    text-align: center !important;
    margin: auto !important;
    margin-top: 90px !important;
}