:root {
    --gradient: linear-gradient(to left top, #033e7a 10%, #066cd4 90%) !important;
  }

body{
    font-family: 'Roboto', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    color: #033e7a;
}

a{
    color:#033e7a;
    text-decoration: none;
}

a:hover{
    color:#033e7a;
    text-decoration: none;
}

.slider-logo{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 4px solid #033e7a;
}

.navbar-brand img {
    max-height:80px;
}

.navbar{
    height:80px;
}

.navbar-light .navbar-nav .nav-link {
    color: #033e7a;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #044384;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #033e7a;
    text-decoration:underline;
}



/* TABLES */
.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: #033e7a; 
   color:#fff
 }


/* CARDS */

.card {
    /* background: #222; */
    border: 1px solid #033e7a;
    margin-bottom: 2rem;
}
  
.btn {
    color: #fff;
    background-color: #033e7a;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
  
.btn:hover, .btn:focus {
    
    color: #fff;
    background-color: #034b92;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}



.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #033e7a;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);

}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

footer {
    position: fixed;
    height: 50px;
    bottom: 0;
    width: 100%;
    background:#033e7a;
}

footer a{
    color:#fff;
    font-size:.8em;
    text-decoration: none;
}

footer a:hover{
    color:#fff;
}