.company-sector {
    width: 100%;
    margin: 3% auto;
    height: auto;
    display: flex;
    justify-content: flex-start;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    max-width: 1400px;
}

.company-sector-left-column {
    width: 67%;
    height: auto;
}

.company-sector-right-column {
    width: 33%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFFA8;
    color: #3F4447;
    padding: 25px;
    justify-content: space-around;
    margin-right: 15px;
}

.company-sector-icon {
    width: 23%;
    height: auto;
}

.company-sector-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-sector-title {
    width: 90%;
    height: auto;
    text-transform: uppercase;
}

.company-sector-title h2 {
    font-size: 16px;
    word-break: break-word;
}

.company-sector-link-container {
    width: fit-content;
    max-width: 100%;
    border: 1px solid #3F4447;
    text-align: center;
}

.company-sector a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 10px;
    font-size: 13px;
    color: #3F4447;
}

.company-sector a:hover {
    background-color: #3F4447;
    color: #DADADA;
    transition: all 0.4s ease;
}

@media (max-width: 1365px) {
    .company-sector {
        max-width: 1100px;
    }
}

/* Media query  */
@media (max-width: 1200px) {
    .company-sector {
        max-width: 950px;
    }

    .company-sector-right-column {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .company-sector {
        max-width: 700px;
    }

    .company-sector-right-column {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .company-sector {
        max-height: 330px;
        margin: 3% 10px;
        width: calc(100% - 20px);
    }

    .company-sector-left-column {
        width: 2%;
    }

    .company-sector-right-column {
        width: 100%;
        margin-left: 15px;
    }
}