body {
    /* background: linear-gradient(to bottom, #ff0000 0%, #e5e5e5 100%); */
    background-color: darkgrey;
}

.hide {
    display: none;
}

.row {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card-main {
    width: 100%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
}

.sidebar {
    width: 25%;
    background-color: rgb(26, 14, 60);
}

.avatar-wrapper {
    border: 4px solid #fff;
    position: relative;
    height: 120px;
    width: 120px;
    margin: 15px auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 1px 1px 5px -5px #fff;
    transition: all 0.3s ease;
}

.profile-pic {
    height: 100%;
    width: 100%;
}

.profile-pic:after {
    font-family: FontAwesome;
    content: "\f007";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 100px;
    color: #fff;
    background-color: grey;
    text-align: center;
    line-height: center;
}

.list-group-item-menu {
    border: 1px solid #f1f5f7;
    border-left: none;
    padding: 20px;
    border-right: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color:  rgb(26, 14, 60);
    text-align: center;
    border-color: #7b8b9e;

}

.list-group-item-menu .rank {
    color: #a6c3db;
}

.list-group-item-menu i {
    color: #a6c3db;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
}

.list-group-item-menu i:hover {
    color: #fff;
    font-size: 24px;
}

.rank {
    color: #a6c3db;
}

ul{
    list-style-type: none;
}

.content {
    width: 75%;
    background-color: transparent;
    text-align: center;
    border-color: #7b8b9e;
}

.card-header {
    background-color: transparent;
    padding: 0;
}

.nav-tabs-style {
    display: none;
}

.nav-link-style {
    color: #fff;
    background-color: #234560;
    font-weight: 500;
    padding: 20px;
    border-color: #234560;
}

/* a:hover {
    color: #a6c3db;
    background-color: #234560;
} */
.nav-link-style.active {
    color: #234560;
    background-color: #fff;
    border: 1px solid #234560;
    border-bottom: #fff;
    z-index: 1;
}

@media (min-width: 768px) {
    .card-main {
        width: 768px;
        flex-direction: row;
    }

    .sidebar {
        width: 25%;
    }

    .content {
        width: 75%;
    }

    .nav-tabs-style {
        display: flex;
    }

    .nav-link-style {
        margin-right: 5px;
    }

    .card {
        border: none;
    }

    .card-header {
        background-color: transparent;
    }

    .card .card-header {
        display: none;
        color: #fff;
        background-color: #234560;
        font-weight: 500;
        padding: 20px;
        margin-left: 5px;
        border-color: #234560;
    }

    .card .collapse {
        display: block;
    }
}

@media (min-width: 1024px) {
    .card-main {
        width: 100%;
        flex-direction: row;
    }

    .sidebar {
        width: 20%;
    }

    .content {
        width: 77%;
    }

    .nav-tabs-style {
        display: flex;
    }

    .nav-link-style {
        margin-right: 5px;
    }

    .card {
        border: none;
        padding: 10px 0 0 10px;
    }

    .card-header {
        background-color: transparent;
    }

    .card .card-header {
        display: none;
        color: #fff;
        background-color: #234560;
        font-weight: 500;
        padding: 20px;
        margin-left: 5px;
        border-color: #234560;
    }

    .card .collapse {
        display: block;
    }
}

@media (max-width: 767px) {

    .tab-pane .card-header,
    .card .tab-pane {
        border: none;
    }

    .card-main {
        width: 375px;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .content {
        width: 100%;
        text-align: left;
    }

    .tab-content .tab-pane {
        display: block !important;
        opacity: 1;
        border: none;
        width: 100%;
    }

    .nav-link-style {
        color: #fff;
        background-color: #234560;
        border-bottom: 1px solid #7b8b9e;
    }

    .card-header a:hover {
        color: #234560;
        background-color: #a6c3db;
    }

    .collapsed {
        background-color: #234560;
    }

    li:nth-last-child(2),
    li:last-child {
        display: none;
    }
}
.boxes {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 250px;
    margin: 5px auto 100px auto;
}

.hoverbox {
    background: #29135c;
    flex: 1 1 0;
    padding: 30px;
    color: white;
    text-align: center;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.2s ease-in-out;
}

.hoverbox:hover {
    margin: -35px 0;
    background: #29135c;
    transition: 0.2s ease-in-out;
}

.hoverbox:hover .icon {
    font-size: 60px;
    transition: 0.2s ease-in-out;
}

.hoverbox:hover .box-title {
    opacity: 0;
}

.hoverbox:hover .hover-content {
    transform: translateY(0);
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.hoverbox .icon {
    font-size: 80px;
    transition: 0.2s ease-in-out;
}

.hoverbox .box-title {
    font-size: 18px;
    opacity: 1;
    transition: 0.2s ease-in-out;
}

.hoverbox .hover-content {
    transform: translateY(100%);
    opacity: 0;
    transition: 0.2s ease-in-out;
}
