/** Start Header **/

.logo {
    width: 4rem;
}
/** End Header **/



/** Start Home Page **/
.home-call-to-action {
    position: relative;
    z-index: 1;
}

.home-call-to-action .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    min-height: 100vh;
    height: 100%;
}

@media only screen and (max-width: 575px) {
    .home-call-to-action {
        background: url('./img/accountant.jpg') no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .home-call-to-action::after {
        content: '';
        position: absolute;
        display: block;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(255,255,255, 0.7);
    }
}

/** Start Home Page **/



/** Start Service **/
.service-box {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    height: 600px;
    color: #fff;
    transform: scale(0.99);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background: url('./img/accountant.jpg') #ccc no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.service-box::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

.service-box:hover {
    z-index: 1;
    color: #000;
    will-change: transform;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    transition: all 1.4s;
    -webkit-transition: all 1.4s;
    box-shadow: 0 1rem 3rem rgba(255,255,255,.75);
}

.service-box:hover::after {
    background-color: rgba(255,255,255, 0.7);
    transition: all .7s;
    -webkit-transition: all .7s;
}
/** Start Service **/