/* --------------- body & navbar & footer ---------------- */
body {
    background-color: #173049;
    font-family: "MagistralC";
    /* overflow-y: scroll; */
}

/* ::-webkit-scrollbar {
    display: none;
} */

.nav-container {
    margin: 0 1.5rem;
    font-size: 1.1rem;
    z-index: 2;
}

.nav-container .nav-icon {
    width: 1.2rem;
}

.nav-container .nav-linkk {
    color: white;
    margin-right: 2rem;
}

.nav-container .nav-linkk:hover {
    color: #bd004b;
    text-decoration: none;
}

.nav-container .activated {
    color: #bd004b !important;
    text-decoration: none;
    border-bottom: 3px solid #bd004b;
}

.nav-container .dropDown {
    color: white;
    font-size: 1.1rem;
}

.nav-container .dropdown-item:hover {
    background-color: #25425f4d;
}

.nav-container .button {
    background-color: #bd004b;
    color: #ffffff;
    border-radius: 0.3rem;
    width: 7rem;
    height: 2.5rem;
    border: none;
    font-size: 1.1rem;
    margin: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
}

.nav-container .button:hover {
    opacity: 0.5;
}

.nav-container .button:focus {
    outline: none;
}

.page-footer {
    margin-top: 9%;
    padding: 0;
    background-color: #25425f;
}

.page-footer .container-fluid {
    display: -ms-grid;
    display: grid;
    grid-gap: 0.0001rem 3rem;
    -ms-grid-columns: (minmax(220px, 1fr));
    grid-template-columns: repeat(1, minmax(220px, 1fr));
}

.page-footer .footer-copyright {
    background-color: #173049;
    padding: 1rem 0;
    color: white;
}

.page-footer .activated {
    color: #bd004b !important;
    text-decoration: none;
    border-bottom: 3px solid #bd004b;
}

.page-footer .nav-linkk {
    color: white;
    margin-right: 2rem;
}

.page-footer .nav-linkk:hover {
    color: #bd004b;
    text-decoration: none;
}
/* --------------- end of body & navbar & footer ---------------- */

/* --------------- Search content ---------------- */
.search-section{
    min-height:400px;
}

.search-card{
    height: 180px;
    position: relative;
}

.search-card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(82, 75, 75, 1)); */
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(36 48 94));
    display: flex;
    justify-content: start;
    align-items: flex-end;
    visibility: hidden;
}

.search-card:hover .search-card-overlay{
    visibility: visible;
}
/* --------------- end of Search content ---------------- */