/* GLOBAL */
input {
    outline: none !important;
    border: none !important;
    width: 100% !important;
}

p {
    margin: 0;
}


/* Change Bootstrap's colors */
:root {
    --primary: #06418f;
    --secondary: #428bed;
    --tertiary: #253d8c;
    --dark : #222222;
}


/* TEXT */
.text-secondary {
    color: var(--secondary) !important;
}

.text-justify {
    text-align: justify !important;
}

@media screen and (min-width: 992px) {
    .text-lg-white {
        color: rgb(191, 191, 191) !important;
        transition: 0.3s !important;
    }
    .text-lg-white:hover {
        color: white !important;
    }
}


/* BORDER COLORS */
.border-primary {
    border-color: var(--primary) !important;
}

.border-none {
    border: none !important
}

@media screen and (min-width: 992px) {
    .border-lg-none {
        border: none !important;
    }
}

/* BORDER COLORS */
.custom-border {
    transition: 0.3s !important;
}

.custom-border:hover {
    border-color: var(--primary) !important;
}


/* NAVBAR */
.navbar-brand {
    width: 180px;
}

.nav-link {
    color: var(--primary) !important;
    transition: 0.3s !important;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-toggler {
    border-color: white;
    outline: none !important;
}

.navbar-toggler {
    box-shadow: none !important;
}

.navbar-collapse {
    flex-grow: 0 !important;
}

@media screen and (min-width: 992px) {
    .px-lg-auto {
        padding: 0 12px 0 12px !important;
    }      
}


@media screen and (min-width: 992px) {
    .justify-lg-content-between {
        justify-content: space-between !important;
    }    
}

/* SECONDARY NAV */
.text-nav-secondary {
    color: #888888 !important;
    transition: 0.3s !important;
}

.text-nav-secondary:hover {
    color: black !important;
}


/* BUTTON */
.btn-primary {
    background-color: var(--secondary) !important;
}

.btn-border-active:hover {
    color: white !important;
}

.custom-btn {
    width: 75% !important;
}

@media screen and (min-width: 992px) {
    .custom-btn {
        width: 90% !important;
    }
}

.custom-btn:hover {
    background-color: var(--primary) !important;
}


/* IMG */
.img-footer {
    width: 8rem;
}


/* BACKGROUND */
.bg-dark {
    background-color: var(--dark) !important;
}

@media screen and (min-width: 992px) {
    .bg-lg-dark {
        background-color: var(--dark) !important;
    }
}

.bg-global {
    background-color: #F8F9F9 !important;
}


/* LINKS */
.link-underline:hover {
    text-decoration-color: var(--light) !important;
}

/* CARD */
.promo-card {
    height: auto !important;
}

@media screen and (min-width: 992px) {
    .promo-card {
        height: 10rem !important;
    }
}


/* RESEARCH */
.custom-research {
    width: 100% !important;
}

@media screen and (min-width: 992px) {
    .custom-research {
        width: 18rem !important;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll {
    width: 40px !important;
    height: 40px !important;
    right: 20px !important;
    bottom: 20px !important;
    transition: 0.3s !important;
    margin-bottom: -100px !important;
}

.scroll:hover {
    transform: scale(1.1) !important;
} 

.scroll.show {
    margin-bottom: 0 !important;
}


/* ICON */
.fa-magnifying-glass {
    transition: 0.3s !important;
}

.fa-magnifying-glass:hover {
    background-color: var(--tertiary) !important;
}