.sector__card {
    display: block;
    position: relative;
    background-color: #f2f8f9;
    border-radius: 4px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.sector__card:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -26px;
    left: -26px;
    background: #FF6300;
    height: 54px;
    width: 54px;
    border-radius: 50px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.50s ease-out;
}

.sector__card:hover:before {
    transform: scale(21);
}

.card-name {
    width: 80%;
    font-size: 20px;
    color: #FFFFFF;
    font-family: "Roboto-Regular";
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sector__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

@media (max-width: 1559px) {
    .card-name {
        font-size: 17px;
    }
}

@media (max-width: 1200px) {
    .card-name {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .card-name {

    }
}

@media (max-width: 575px) {
    .card-name {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .sectors > .col-6 {
        width: 100% !important;
    }

    .card-name {
        font-size: 16px;
    }
}