.company-list-component {
    margin-top: 30px;
    padding: 0 20px;
}

.company-list-wrapper {
    display: flex;

    max-width: 1260px;
    margin: 0 auto;
}

.company-item-wrapper {
    background: var(--palette-600);

    flex: 1 0 100%;
    margin: 20px 0;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
}

.company-content {
    flex: 1;
    flex-direction: column;
    padding: 20px;
    margin-right: 150px;
}

.company-content-name {
    margin-bottom: 30px;
    font-weight: 200;
    color: var(--palette-100);
    font-size: 1.2em;
}

.company-content-desc {
    margin-bottom: 40px;
    font-size: .875em;
}

.company-content-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-height: 70px;
    border: 3px solid var(--palette-100);
    padding: 0 20px;
    min-width: 220px;
    background-color: transparent;
    transition: all ease-in-out .3s;
}

.company-content-btn-text {
    flex: 1;
    font-weight: 200;
}

.company-content-btn .fa {
    font-size: 1.5em;
}

.company-content-btn .fa-angle-right:before {
    line-height: normal;
    vertical-align: middle;
}

.company-content-btn:hover {
    background-color: var(--palette-100);
    color: var(--white);
}

.company-logo {
    display: flex;
    width: 500px;
    height: 200px;
    /* background-color: aliceblue; */
    align-items: flex-start;
}

.company-logo img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .company-content {
        margin-right: 20px;
    }

    .company-logo {
        width: 220px;
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .company-item-wrapper {
        align-items: center;
        flex-direction: column-reverse;
    }

    .company-content {
        margin-right: 0;
        text-align: center;
    }

    .company-logo {
        width: 220px;
        align-items: center;
    }
}