/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Raleway", sans-serif;
    color: #444444;
    background-color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 10;
    position: relative;
}

#inicio {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

#inicio:hover {
    color: #ff6600;
    transition: 0.3s;
}

.d-flex {
    display: flex!important;
    margin: 10px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.logo-ugtsic {
    width: 150px !important;
}

#hero .hero-container {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0px 30px 2px 30px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 25px;
    font-weight: 400;
    color: #08446e;
    padding: 15px;
    margin-top: -1.5rem;
}

#myInput {
    background-image: url('/contents/imagens/searchicon.png');
    background-position: 10px 12px;
    background-repeat: no-repeat;
    background-color: white;
    width: 45%;
    font-size: 16px;
    padding: 10px 20px 10px 40px;
    border: 1px solid rgb(156, 156, 156);
    margin-bottom: 12px;
    border-radius: 5px;
}

#myInput:focus {
    background-color: #ffffff;
    color: #0b3677 !important;
    font-weight: 600;
}

ul {
    display: contents;
}

li a {
    background-color: #ffffff;
    height: 45%;
}


/*-------------------------------------------------------------
 #input auto complete
 --------------------------------------------------------------
*/


/*-------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

div.cards {
    margin: 30px auto;
    max-width: 160vh;
    text-align: center;
    min-height: 12rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card__image {
    width: 94%;
    padding: 10px;
}

li.card {
    background: #c9c9c961;
    display: grid;
    margin: 8px;
    max-width: 200px;
    position: relative;
    width: 303px;
    box-shadow: 0 3px 6px rgba(6, 33, 151, 0.12), 0 5px 10px rgba(22, 17, 88, 0.342);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    cursor: pointer;
}

li.card:hover {
    background: #ffffff41;
    transform: scale(1.1, 1.1);
    box-shadow: 2px 3px 5px 1px #0412526b;
    border: 2px solid #0ca2f5;
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
}

#myUL li a {
    text-decoration: none;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}

li.card div.card-title {
    background: #ffffff;
    padding: 6px 15px 10px;
    position: relative;
    z-index: 0;
    font-family: "Raleway";
    display: contents;
}

div h6 {
    color: #141533e7;
    font-size: 11px;
    font-weight: bold;
    margin: 0px 5px 7px 5px;
    padding: 5px;
    border-top: 2px solid #ababab3d;
    width: 95%;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    background: rgb(8 68 110);
    padding: 1px 0;
    color: #fff;
    font-size: 13px;
    bottom: 0;
    text-align: center;
    height: 85px;
    display: flex;
    align-items: center;
}

footer .copyright {
    text-align: center;
    bottom: 0;
}

footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: rgb(158 158 158);
    bottom: 0;
}

div a {
    text-decoration: none;
    color: #ff6600;
}

div a:hover {
    color: #fca267;
}

@media only screen and (max-width: 600px) {
    #myInput {
        width: 65%;
    }
}