.works-section {
    position: relative;
    padding: 110px 0px 70px;
    background-color: var(--work-process-bg-color, #fff0f0);
}

.work-block {
    position: relative;
    margin-bottom: 30px;
}

.work-block .inner-box {
    position: relative;
    text-align: center;
}

.work-block .inner-box .icon-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 30px;
    background-color: #ffffff;
}

.work-block .inner-box .icon-box .check {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    color: #ffffff;
    line-height: 40px;
    display: inline-block;
    box-shadow: 0px 10px 10px rgba(252,93,71,0.10);
    background-image: -ms-linear-gradient(left, var(--work-process-primary-color, #fa464a) 0%, var(--work-process-secondary-color, #ff7a43) 100%);
    background-image: -moz-linear-gradient(left, var(--work-process-primary-color, #fa464a) 0%, var(--work-process-secondary-color, #ff7a43) 100%);
    background-image: -o-linear-gradient(left, var(--work-process-primary-color, #fa464a) 0%, var(--work-process-secondary-color, #ff7a43) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, var(--work-process-primary-color, #fa464a)), color-stop(100, var(--work-process-secondary-color, #ff7a43)));
    background-image: -webkit-linear-gradient(left, var(--work-process-primary-color, #fa464a) 0%, var(--work-process-secondary-color, #ff7a43) 100%);
    background-image: linear-gradient(to right, var(--work-process-primary-color, #fa464a) 0%, var(--work-process-secondary-color, #ff7a43) 100%);
}

.work-block .inner-box .icon-box .icon {
    position: relative;
    width: 120px;
    height: 120px;
    color: var(--work-process-primary-color, #fa474a);
    line-height: 120px;
    font-size: 66px;
    background: -webkit-linear-gradient(-45deg, var(--work-process-primary-color, #fa474a), var(--work-process-secondary-color, #ff7943) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.work-block .inner-box h3 {
    position: relative;
    color: var(--work-process-text-color, #19274d);
    font-weight: 600;
    margin-bottom: 12px;
    /* font-family: 'Poppins', sans-serif; Inherit from theme */
}

.work-block .inner-box h3 a {
    position: relative;
    color: var(--work-process-text-color, #19274d);
    transition: all 0.3s ease;
}

.work-block .inner-box h3 a:hover {
    color: var(--work-process-hover-color, #fb4b49);
}

.work-block .inner-box .text {
    position: relative;
    color: var(--work-process-text-color, #19274d);
    font-size: 18px;
    line-height: 1.8em;
    padding: 0px 25px;
    margin-bottom: 28px;
}

.work-block .inner-box .arrow {
    position: relative;
    width: 50px;
    height: 50px;
    color: var(--work-process-secondary-color, #ff7644);
    font-size: 18px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.work-block .inner-box:hover .arrow {
    color: #ffffff;
    background-color: var(--work-process-hover-color, #fb4b49);
}
