.hr-service-card-single {
    padding: 30px 30px 30px 0;
    display: flex;
    align-items: center;
    background: #EEEEEE;
    transition: all 0.3s ease;
    position: relative;
    height: 190px;
}
.hr-service-card-single:hover {
    background: var(--color-3);
}
.hr-service-card-single .hr-icon {
    height: 60px;
    width: 60px;
    background: var(--color-3);
    color: #fff;
    text-align: center;
    justify-content: center;
    display: flex;
    transition: all 0.3s ease;
    margin-right: 30px;
    flex-basis: 17%;
    font-size: 30px;
    align-items: center;
}
.hr-service-card-single .hr-icon img {
    width: 32px;
    height: auto;
}
.hr-service-card-single:hover .hr-icon {
    background: var(--color-4);
    color: var(--color-4);
}
.hr-service-card-single .hr-information {
    flex-basis: 83%;
}
.hr-service-card-single .hr-information .hr-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.hr-service-card-single:hover .hr-information .hr-title {
    color: #fff;
}
.hr-service-card-single .hr-information .hr-subtitle {
    font-size: 17px;
    color: #636363;
    line-height: 26px;
    transition: all 0.3s ease;
    font-family: var(--font-02);
}
.hr-service-card-single:hover .hr-information .hr-subtitle {
    color: #fff;
}
.hr-service-card-single::after {
    content: "";
    position: absolute;
    height: 35px;
    width: 35px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    right: 15px;
    bottom: -15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.hr-service-card-single:hover::after {
    visibility: visible;
    opacity: 1;
}
.hr-service-card-single.hr-active {
    background: var(--color-3);
}
.hr-service-card-single.hr-active .hr-icon {
    background: var(--color-4);
    color: var(--color-4);
}
.hr-service-card-single.hr-active .hr-information .hr-title {
    color: #fff;
}
.hr-service-card-single.hr-active .hr-information .hr-subtitle {
    color: #fff;
}
.hr-service-card-single.hr-active::after {
    visibility: visible;
    opacity: 1;
}
.desktop-cards {
    display: block;
}
.mobile-cards {
    display: none;
}
@media (max-width:1024px){
    .pt-110 {
        padding-top: 110px!important;
    }
    .hr-service-card-single {
        margin-bottom: 20px;
    }
}
@media (max-width:991px){
    .desktop-cards {
        display: none;
    }
    .mobile-cards {
        display: block;
    }
}