/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
body, button, input, select, textarea {
    font-family: "Open Sans", Verdana, Tahoma, serif;
    color: #000;
}

body {
    min-height: 100vh!important;
}

em {
    font-style:normal
}

section#main-body {

    min-height: calc(100vh - 301px)!important;
}

.btn-success {
    background-color: #006cff;
    border-color: #006cff;
}

.btn-success:hover {
    background-color: #00b300;
    border-color: #00b300;
}

.navbar-main li.account {
    background-color: #006cff;
}

.navbar-main .navbar-nav>.active>a, .navbar-main .navbar-nav>.active>a:focus, .navbar-main .navbar-nav>.active>a:hover, .navbar-main .navbar-nav>.open>a, .navbar-main .navbar-nav>.open>a:focus, .navbar-main .navbar-nav>.open>a:hover, .navbar-main .navbar-nav>li>a:focus, .navbar-main .navbar-nav>li>a:hover {
    color: #000;
    background-color: #fff;
}


ul.top-nav>li>a:hover {
    color: #006cff;

}

section#header .logo img {

    max-height: 35px;
}

section#header {
    margin: 0;
    padding: 10px 0;
    background-color: #000;
    border-radius: 0px;
}

div.header-lined h1 {
    
    color: #000;
}

.panel.panel-accent-blue {
    border-top: 3px solid #006cff;
}

.panel.panel-accent-gold {
    border-top: 3px solid #00b300;
}

section#footer {

    margin: 0;
    padding: 20px 10px;
    background-color: #000;
    border-top: 0px solid #ddd;
    color: #fff;
    font-size: .9em;
    height: 200px;
}

section#footer .back-to-top i {
    padding: 10px;
    background-color: #006cff;
    border-color: 1px solid #006cff;
    color: #fff;
    border-radius: 3px;
    opacity: .7;
}





.site-footer {
    background: #000;
    color: #111;
    padding: 60px 40px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    /* flex-wrap: wrap; */
    gap: 60px;

}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    flex: 1;

}

.footer-logo img {
    margin-bottom: 20px;
    height: 50px;

}

.footer-info {
    display: flex;
    flex: 1;
    gap: 60px;
    flex-wrap: wrap;

}

.footer-section h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    margin: 0px;
    margin-bottom: 20px;

}

.footer-section p {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #fff;

}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    color: #fff;

}

.social-icons a {
    color: #111;
    font-size: 1.2em;
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;

}

.social-icons a i {
    margin-right: 10px;
}

.social-icons a:hover {
    color: #0380ff;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-info {
        justify-content: center;
        gap: 30px;
    }
}