.project_short_information_sec {
    background: #2C2B29;
    padding: 60px 0;
}

.project_short_information_sec .project_short_text {
    font-family: inherit;
    font-size: 36px;
    line-height: 43px;
    color: white;
    margin: 0 0 24px;
}

.project_short_information_sec .project_details_list__item .label {
    font-family: "effra_heavyregular";
    font-weight: 900;
    font-size: 15px;
    line-height: 18px;
    color: #A4A4A4;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.project_short_information_sec .project_details_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 12px;
}

.project_short_information_sec .project_details_list .project_details_list__item.client_name .detail {
    text-transform: capitalize;
}

.project_short_information_sec .project_details_list__item .detail {
    font-family: inherit;
    font-size: 15px;
    line-height: 18px;
    color: #fff;
}

.project_short_information_sec__inner .site_link {
    margin: 24px 0 0;
}

.project_short_information_sec__inner .site_link a {
    font-family: "effrabold";
    font-weight: normal;
    padding: 12px 48px 12px 24px;
    border-color: #BF1E2E;
    color: white;
    border-radius: 0;
    transition: all .5s ease-in-out;
    position: relative;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    background: #BF1E2E;
}

.project_short_information_sec__inner .site_link a::before {
    position: absolute;
    content: '';
    right: 24px;
    top: 47%;
    transform: translateY(-50%);
    background-image: url(../images/external-link.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    width: 16px;
    height: 16px;
}

.project_short_information_sec__inner .site_link a:hover {
    background: #86000D;
    border-color: #86000D;
}

@media (max-width:1199px) {
    .project_short_information_sec .project_short_text {
        font-family: inherit;
        font-size: 30px;
        line-height: 44px;
    }
}

@media (max-width:991px) {
    .project_short_information_sec {
        padding: 30px 0;
    }

    .project_short_information_sec__inner .project_short_text {
        font-size: 25px;
        line-height: 35px;
    }
}

@media (max-width:767px) {
    .project_short_information_sec__inner .project_short_text {
        font-size: 20px;
        line-height: 25px;
    }

    .project_short_information_sec .project_details_list {
        flex-direction: column;
    }
}

@media (max-width:575px) {
    .project_short_information_sec__inner .project_short_text {
        font-size: 16px;
        line-height: 19px;
    }

    .project_short_information_sec__inner .site_link a {
        width: 100%;
    }

    .project_short_information_sec__inner .site_link a::before {
        right: 33px;
    }
}