﻿html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(250, 250, 250);
}

.up_site {
    position: relative;
    height: 55px;
    background-color: #5C0120;
    padding-right: 8px;
    padding-top: 5px;
    display: flex;
    align-items: center;
    transition: height 1.5s;
}

    .up_site.expanded {
        height: 200px;
    }

    .up_site h1 {
        padding-left: 15px;
        color: white;
        font-size: 25px;
        white-space: nowrap;
    }

    .up_site button {
        padding: 0;
        height: 35px;
        width: 35px;
        display: none;
        background-color: transparent;
        border: 2px solid #fff;
    }

        .up_site button .bx {
            font-size: 33px;
            color: white;
        }

    .up_site ul {
        display: block;
        list-style: none;
        width: calc(100% - 245px);
        margin-bottom: 0;
    }

    .up_site li {
        display: inline;
        margin-right: 15px;
    }

    .up_site .userCount {
        width: 240px;
        margin-right: 5px;
        border-left: 1px solid #fff;
        padding-left: 10px;
    }

        .up_site .userCount p {
            font-size: 15px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 0;
        }

    .up_site li a {
        text-decoration: none;
        color: white;
        font-weight: 600;
    }

        .up_site li a:hover {
            color: gray;
        }

    .up_site li a i{
        font-size: 22px;
        margin-right: .5rem;
    }

footer {
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    align-items: center;
    background-color: #5C0120;
    padding-bottom: 1rem;
}

    footer .col-lg-10 .row {
        border-bottom: 1px solid white;
        padding-bottom: 15px;
    }

    footer p {
        color: #fff;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0;
    }

    footer a {
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            color: #808080;
        }

.footer_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .footer_item .img-box {
        margin-bottom: 10px;
        width: 80px;
        height: 80px;
        border-radius: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #907B71;
        color: #EDF5F5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer_item .img-box:hover {
            background-color: #9FA0B1;
        }

        .footer_item .img-box .bx {
            font-size: 30px;
        }

    .footer_item a {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }

@media only screen and (max-width: 803px) {
    .up_site ul li a i{
        font-size: 20px;
        margin-right: .2rem;
    }
}

@media only screen and (max-width: 803px) {
    .up_site ul {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 793px) {
    .up_site li {
        margin-right: 8px;
    }

        .up_site li a {
            font-weight: 500;
        }
}

@media only screen and (max-width: 768px) {
    .up_site button {
        display: block;
        position: absolute;
        right: 10px;
        top: 5px;
    }

    .up_site ul {
        width: 100%;
    }

    .up_site ul li .bx{
        font-size: 25px;
    }

    .up_site .userCount {
        margin-left: 20px;
        border-left: none;
        padding-left: 0px;
        margin-top: 15px;
        padding-top: 5px;
        border-top: 1px solid #fff;
    }

    footer .col-lg-10 .row {
        width: 98% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .footer_item {
        margin-bottom: 15px;
    }

    .navbar {
        padding: 0;
    }

        .navbar .navbar-toggler {
            display: block;
            cursor: pointer;
        }
}
