.branch-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.branch-box {
    position: relative;
    width: 100%;
}

.branch-box-text {
    position: absolute;
    bottom: 30px; left: 30px;
    color: #fff;
    font-size: 22px;
    z-index: 2;
}


.branch-box-image {
    position: relative;
}

.branch-box-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 100%);
    z-index: 1;
}



/*=========================================================*/
@media (max-width: 950px) {
    .branch-box-wrapper {
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .branch-box-text {
        bottom: 20px; left: 20px;
        font-size: 18px;
    }
}


@media (max-width: 550px) {
    .branch-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .branch-box-text {
        bottom: 20px; left: 20px;
        font-size: 16px;
    }
}