.bso-sec__heading .heading_text {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 40px
}

.bso-sec__row {
    display: grid;
    flex-wrap: wrap;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr)
}

.bso-sec__row a.bso-sec__item:hover .bso-sec__item__img:after {
    opacity: 1
}

.bso-sec__item {
    background-color: var(--Color_White);
    border: 1px solid var(--Color_Cotton_Seed);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition: all .5s ease
}

.bso-sec__item__img {
    position: relative
}

.bso-sec__item__img img {
    display: block;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%
}

.bso-sec__item__img:before {
    content: "";
    display: block;
    padding-top: 67%;
    width: 100%
}

.bso-sec__item__img:after {
    background-color: var(--Color_Black_Op_perc_35);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all .5s ease;
    width: 100%
}

.bso-sec__item__content {
    padding: 22px;
    text-align: center
}

.bso-sec__item__content .title {
    color: var(--Color_Hoffer_Red);
    margin: 0 0 16px
}

.bso-sec__item__content .short-desc {
    color: var(--Color_Hoffer_Text);
    font-size: 16px;
    line-height: 150%
}

@media (max-width:1199px) {
    .bso-sec__row {
        gap: 16px
    }
}

@media (max-width:991px) {
    .bso-sec__row {
        grid-template-columns: repeat(1, 1fr)
    }

    .bso-sec__item__content .title {
        margin: 0 0 10px
    }
}

@media (max-width:767px) {
    .bso-sec__row {
        grid-template-columns: repeat(1, 1fr)
    }

    .bso-sec__item__img:before {
        padding-top: 40%
    }
}

@media (max-width:479px) {
    .bso-sec__item__img:before {
        padding-top: 60%
    }

    .bso-sec__item__content {
        padding: 15px 20px
    }

    .bso-sec__item__content .title {
        margin: 0 0 5px
    }
}