HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/healthvaluequotes/public_html/backup2/scss/_services.scss
/* 
// 07. Services
*/

.service-box {
    border-radius: 10px;
    padding: 28px 29px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    .service-icon {
        font-size: 44px;
        transition: all 0.5s;
    }
    .read-more-icon {
        .right-icon {
            font-size: 30px !important;
            transition: all 0.5s;
        }
    }
    &:before {
        content: "";
        height: 100px;
        width: 100px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-radius: 10%;
        z-index: -1;
        transition: all 0.5s;
    }
    &:after {
        content: "";
        height: 0px;
        width: 0px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-radius: 10%;
        z-index: -1;
        transition: all 0.5s;
    }
    &:hover {
        .service-icon {
            color: $white;
        }
        .service-title {
            color: $white !important;
        }
        .right-icon {
            color: $white;
        }
        .service-subtitle {
            color: rgba($white, 0.7) !important;
        }
        &:before {
            height: 100%;
            width: 100%;
            position: absolute;
            bottom: 0;
            right: 0;
            top: 0;
            left: 0;
            border-radius: 0;
        }
        &:after {
            background: rgba($white, 0.06);
            height: 100px;
        width: 100px;
        }
    }
}

@each $color,
$value in $theme-colors {
    .service-#{$color} {
        .service-icon, .right-icon {
            color: #{$value};
        }
        &:before {
            background: rgba($value, 0.05);
        }
        &:hover {
            &:before {
                background: #{$value};
            }
        }
    }
}