.sticky-header {
    position: fixed;
    width: 100%;
    z-index: 9999 !important;
    top: 0px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    animation: slideDown 0.35s ease-out;
}

.old_age_main_header.sticky-header{
    padding-bottom: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
#return-to-top>.elementor-widget-icon{
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
}

@keyframes slideDown{
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}