.company-info-table{
    color: white;
    margin: auto;
    width: fit-content;
}
.company-info-table td{
    padding: 15px 40px;
}

.company-info-table tr{
    border: 10px solid black;
    color: white;
    transition: 0.1s;
    background-image: linear-gradient(90deg, transparent, #1a1108, transparent);
    animation: fade-in 1s linear;
}

.company-info-table tr:hover{
    transform: scale(1.2);
    transition: 0.1s;
}

.company-content-section{
    display: flex;
    color: white;
    margin: 300px auto 100px auto;
    width: 1000px;
    align-items: flex-start;
    justify-content: center;
}

.company-content-col{
    width: 50%;
}

.company-content-col:first-child{
    padding-right: 10px;
}
.company-content-col:nth-child(2){
    padding-left: 10px;
}

.company-content-col .page-header-title{
    margin-bottom: 30px;
}

.company-content-list > div{
    width: 100%;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(90deg, transparent, #1a1108, transparent);
    margin-bottom: 10px;
    animation: fade-in 1s linear;
    transition: 0.1s;
}

.company-content-list > div:hover{
    transition: 0.1s;
    transform: scale(1.2);
}

.company-content-list h3 {
    font-size: 18px;
    margin: 0;
}

.fade-in-table > div{
    opacity: 0;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.table-faded-in > div{
    animation-play-state: running;
}
.first-in-table > tr{
    opacity: 0;
    animation-fill-mode: forwards;
}

.sub-page-fixed-item{
    transform: none;
}

@media only screen and (max-width: 600px) {
    .company-content-col {
        width: 100vw;
    }
    .company-content-col:first-child {
        margin-bottom: 200px;
    }
    .company-content-section {
        flex-direction: column;
    }
    .company-info-table td {
        padding: 15px 10px;
    }
}