/*
Process Area Style
================================*/
.single-process {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    border-radius: var(--siteBorderRadius);
    overflow: hidden;
}

.single-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
    transition: all 0.5s;
    background-color: var(--primaryLight);
}


.single-process .process-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-radius: var(--siteBorderRadius);
}

.single-process .process-icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.single-process .process-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: all 0.5s;
}

.single-process h3 {
    transition: all 0.5s;
    font-size: 24px;
}

.single-process p {
    transition: all 0.5s;
    margin-bottom: 0;
}

.single-process .read-more {
    transition: all 0.5s;
}

.single-process h3 {
}

.single-process p {
}

.single-process .read-more {
    color: #ffffff;
}

.process-content p {
    margin-top: 25px;
}

@media screen and (max-width: 767px) {
    .single-process h3{
        /*font-size: 20px;*/
    }
}