.reports-card {
    width: 500px;
    background-color: black;
    height: 200px;
}

@media screen and (max-width: 600px) {
    .reports-card {
        height: 300px;
    }
}

.reports-card-title {
    font-weight: 700;
    font-size: 35px;
    color: white;
    transition: 0.4s;
    text-transform: uppercase;
    text-align: left;
}

.reports-card-link {
    text-decoration: none;

}


.reports-card-link:hover .reports-card-title {
    color: #757573;
}

.investors-page-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    text-align: center;
}

.document-grid-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}

.employee-profile-title-inv {
    padding: 1rem;
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #cbcbcb;
}

@media screen and (min-width: 601px) {
    .employee-profile-title-inv {
        font-size: 60px;
    }
}

@media screen and (max-width: 600px) {
    .employee-profile-title-inv {
        font-size: 30px;
    }
}

.message-content-block-inv {
    position: relative;
    overflow: hidden;
}

.employee-name-inv {
    font-size: 22px;
    color: rgb(0, 0, 0);
    line-height: 1;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    visibility: visible;
    animation-name: fadeInUp;
}

@media screen and (min-width: 601px) {
    .employee-name-inv {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    .employee-name-inv {
        font-size: 16px;
    }
}


.employee-profile-position-inv {
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 1;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    visibility: visible;
    animation-name: fadeInUp;
}

@media screen and (min-width: 601px) {
    .employee-profile-position-inv {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .employee-profile-position-inv {
        font-size: 10px;
    }
}

.message-col-inv {
    z-index: 1;
}

table.reports-table {
    border-bottom: 1px solid black;
    width: 100%;
    text-align: left;
}

table.reports-table thead {
    background: black;
    color: white;
}

table.reports-table th {
    border-bottom: 1px solid black;
    padding: 15px 10px;
}

table.reports-table td,
table.reports-table th {
    border-bottom: 1px solid black;
}

table.reports-table th {
    padding: 15px 10px;
}

table.reports-table tbody tr:hover {
    background-color: #eeeeee;
}

.nav-tabs {
    background-color: black;
}

.nav-tabs .nav-link {
    border-top-left-radius: 0;
    color: white;
    border-top-right-radius: 0;
}

.long-arrow-right,
.long-arrow-left {
    display: block;
    margin: 30px auto;
    width: 25px;
    height: 25px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
}

.arrow-right,
.long-arrow-right {
    transform: rotate(135deg);
}

.arrow-left,
.long-arrow-left {
    transform: rotate(-45deg);
}

.long-arrow-right::after,
.long-arrow-left::after {
    content: "";
    display: block;
    width: 2px;
    height: 45px;
    background-color: black;
    transform: rotate(-45deg) translate(15px, 4px);
    left: 0;
    top: 0;
}