.shl-back-home {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 999px;
    background: #6FC9DB;
    color: #232C63;
    transition: all .25s ease;
    width: fit-content;
}

.shl-back-home:hover {
    transform: translateY(-2px);
    opacity: .95;
}

.shl-back-home-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.shl-back-home-text {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

@media(max-width: 1024px) {

    .shl-back-home-text {
        font-size: 34px;
    }

}

@media(max-width: 767px) {

    .shl-back-home {
        gap: 18px;
        padding: 20px 24px;
    }

    .shl-back-home-text {
        font-size: 20px;
        line-height: 1.2;
    }

    .shl-back-home-icon svg {
        width: 34px;
        height: 34px;
    }

}