.company-link {
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: left; 
    height: 80px;
}
.company-img {
    height: 200px;
    width: auto;
    border-radius: 25px;
    overflow: hidden;
}

.company-btn {
    border-radius: 25px;
    padding: 10px 10px 10px 10px;
    transition: color 0.6s, background-color 0.6s, border 0.6s;
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    border: 1px solid transparent;
}

.company-btn:hover {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.comp-space {
    margin-left: 25px;
} 

@media (max-width: 768px) {
    .text-fixed {
        width: 90vw;
    }
    
    .company-link {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .company-link p {
        margin-top: -50px;
        margin-left: 50px;
    }

    .company-btn {
        margin-left: 35px;
    }

}