.section-about .box .box-text {
    background: #333333;
    position: relative;
    box-shadow: -10px 10px 0px 0px #111111;
}
.section-about .box .box-text:before {
    content: "";
    width: 0;
    position: absolute;
    transition: 0.3s ease-in-out;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    top: 0;
    z-index: 0;
}
.section-about .box:hover .box-text:before {
    width: 100%;
}
.section-about .box .box-text h4 {
    font-size: 1rem;
    margin: 0;
    line-height: 150%;
    position: relative;
}
.section-about .box .box-text-inner {
    position: relative;
    z-index: 1;
}
.section-about .vertical-number-box {
    transform: rotate(-90deg);
    left: 14px;
    position: absolute;
    bottom: 20px;
}
.section-about .vertical-number-box .vertical-number {
    width: 240px;
    text-align: left;
}
.section-about .vertical-number-box .vertical-number {
    font-size: 15px;
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    transition: 0.2s;
}
.section-about .vertical-number-box .vertical-number:after {
    content: "";
    width: 52px;
    height: 1.3px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
    bottom: 11px;
    position: absolute;
    transition: 0.2s;
}
.section-about .box .box-image .overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.35);
}
.section-about .box .box-image .direct-link {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}
.section-about .box .box-image .direct-link i {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.section-about .box:hover .box-image .overlay {
    opacity: 1;
}
.section-about .box:hover .box-image .direct-link {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.headline .section-title-center b {
    opacity: 0;
}
/*--------------------------------------------------------------
## Responsive 
--------------------------------------------------------------*/
@media only screen and (max-width: 849.98px) {
    .section-about .box .box-text {
        padding: 15px 15px;
    }
    .section-about .box .box-text h4 {
        font-size: 0.875rem;
    }
}
@media only screen and (min-width: 850px) {
    .section-about .box .box-text {
        padding: 20px 15px;
    }
}
