.inner-page__heading .container {
    position: relative;
}


.az-inner-back-btn {
    position: absolute;
    right: 15px;
    bottom: 0;
    z-index: 5;
    transform: translateY(-50%);
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    outline: none;
    background: rgba(7, 31, 48, 0.58);
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .3s ease;
}
.az-inner-back-btn .icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e30613;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    transition: all .3s ease;
}

.az-inner-back-btn:hover {
    background: #ffffff;
    color: #071f30;
    transform: translateY(-50%) translateX(-4px);
}

.az-inner-back-btn:hover .icon {
    background: #071f30;
    color: #ffffff;
}
@media (max-width: 991px) {
    .az-inner-back-btn {
        left: 20px;
        top: auto;
        bottom: 28px;
        transform: none;
        height: 44px;
        font-size: 12px;
    }

    .az-inner-back-btn:hover {
        transform: translateX(-4px);
    }
}

@media (max-width: 767px) {
    .az-inner-back-btn {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 0 auto 18px;
        display: inline-flex;
    }

    .inner-page__heading-left {
        text-align: center;
    }
}