

.blue {
    color: var(--primary-1);
}

.print-share {
    width: 22px;
}

.border-blue {
    color: #238DC1;
}

.bd-highlight {
    font-family: 'HelveticaNeueLTArabic', sans-serif !important;
    font-size: small;
    font-weight: 100;
}
/*  animation  for sme card servive*/
@keyframes fadeInAnimation {
    from {
        opacity: 0; /* Start with opacity 0 */
    }

    to {
        opacity: 1; /* Transition to opacity 1 */
    }
}

/* Apply the animation to .home-contant2 and .home-contant */
.home-contant2, .home-contant {
    animation: fadeInAnimation 2s ease-out;
}

    .home-contant2 svg, .home-contant svg {
        animation: fadeInAnimation 2s ease-out;
    }

[dir="rtl"] .home-contant2 svg {
    transform: rotate(0deg);
}

[dir="ltr"] .home-contant2 svg {
    transform: rotate(180deg);
}

[dir="rtl"] .home-contant svg {
    transform: rotate(0deg);
}

[dir="ltr"] .home-contant svg {
    transform: rotate(180deg);
}



/**/
/*   animation for finr more svg */
@keyframes fadeInAnimation {
    from {
        opacity: 0; /* Start with opacity 0 */
    }

    to {
        opacity: 1; /* Transition to opacity 1 */
    }
}

/* Apply the animation to .home-contant3 */
.home-contant3 {
    animation: fadeInAnimation 2s ease-out; /* Duration increased to 2s */
}

/* Apply the animation to the SVG icon */
.home-contant3 svg {
    animation: fadeInAnimation 2s ease-out; /* Duration increased to 2s */
}
[dir="rtl"] .home-contant3 svg {
    transform: rotate(0deg);
}

[dir="ltr"] .home-contant3 svg {
    transform: rotate(180deg);
}

/* for text*/
/* Define the animation */
@keyframes fadeFromTop {
    from {
        opacity: 0; /* Start with opacity 0 */
        transform: translateY(-50px); /* Move up by 50px */
    }

    to {
        opacity: 1; /* Transition to opacity 1 */
        transform: translateY(0); /* Move to the original position */
    }
}

/* Apply the animation to .fade-from-top */
.fade-from-top {
    animation: fadeFromTop 1s ease-out; /* Duration set to 1s */
}

img.footer-img2 {
    width: 16px;
}
/* Styles for the hand image */
.hand {
    width: 80px; /* Make hand image larger */
    height: auto;
    position: relative;
    margin: 0 1px; /* Add space between each image */
}

/* Styles for the containers of the ads and notification images */
.icon3 {
    display: flex;
    justify-content: space-between;
}

/* Styles for the ads and notification images */
.ads,
.notification {
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Transition effect for opacity */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    /* Apply fade-in animation to ads and notification images when they become visible */
    .ads.show,
    .notification.show {
        opacity: 1;
    }

.master-icon {
    width: 23px;
    height: 16px;
}
