.hr-service-2-item {
    padding: 40px 30px;
    transition: .3s;
    border: 1px solid rgba(15, 49, 58, .1);
    background-color: var(--white);
}
.hr-service-2-item:hover {
    background-color: #0f313a;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-35 {
    margin-bottom: 35px;
}
.hr-service-2-icon img {
    transition: .3s;
    color: #0f313a;
    transition: all .3s ease;
    width: 60px;
}
.hr-service-2-item:hover .hr-service-2-icon img {
    color: var(--white);
    transform: scaleX(-1);
    filter: invert(100%) sepia(100%) saturate(200%) hue-rotate(180deg);
}
.mb-25 {
    margin-bottom: 25px;
}
.hr-service-2-title {
    font-weight: 600;
    font-size: 22px;
    transition: .3s;
}
.hr-service-2-item:hover .hr-service-2-title, .hr-service-2-item:hover p {
    color: var(--white);
}
.border-line-white {
    display: inline;
    color:var(--color-4);
    background-repeat: no-repeat;
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    transition: background-size .3s linear;
    font-family: var(--font-02);
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(var(--white), var(--white));
}
.border-line-white:hover {
    background-size: 0 1px, 100% 1px;
    color: #fff;
}
.hr-service-2-item p {
    padding-bottom: 35px;
    margin-bottom: 40px;
    transition: .3s;
    color: #898989;
    border-bottom: 1px solid rgba(15, 49, 58, .1);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    font-family: var(--font-01);
}
.hr-service-2-item:hover p {
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
}
.hr-btn-sm {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 11px 30px;
    text-align: center;
    transition: .4s;
    text-transform: capitalize;
    font-family: var(--font-02);
    color: var(--color-3);
    background-color: var(--white);
    position: relative;
    z-index: 11;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .1);
}
.hr-btn-sm.border-style {
    box-shadow: none;
    color: var(--color-4);
    border: 1px solid rgba(15, 49, 58, .2);
}
.hr-btn-sm.border-style:hover {
    color: var(--white);
    border-color: var(--color-3);
}
.hr-btn-sm span {
    position: relative;
    z-index: 1;
}
.hr-btn-sm:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background-color: var(--color-3);
    transform: scaleY(0);
    transform-origin: bottom left;
    transition: transform .5s cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
}
.hr-btn-sm:hover:after {
    transform-origin: top right;
    transform: scale(1);
}
.hr-service-2-item:hover .border-line-white {
    color: #fff;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.mt-40 {
    margin-top: 40px;
}
.row.equal-height > div {
    display: flex;
}
.hr-service-2-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps button at bottom if needed */
    height: 100%;
}