/* hero section */

.slider__img__desk {
    display: block;
}

.slider__img__mob {
    display: none;
}

@media (max-width: 640px) {
    .slider__img__desk {
        display: none;
    }

    .slider__img__mob {
        display: block;
    }
}

/* about section */

.section__about {
    background-image: url(../img/about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 38rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* contact section */

.contact__section {
    background-image: url(../img/bg-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* #joinNow {
    animation: signalAni 3s infinite ;
} */
#joinNow #circle2 {
    animation: circle2 2s linear infinite;
}

#joinNow #circle1 {
    animation: circle1 2s linear infinite;
    animation-delay: 1s;
}

@keyframes circle1 {

    0%,
    50% {
        background: transparent;
    }

    75% {
        background: rgba(194, 65, 12, 0.181);
    }

    100% {
        background: transparent;
    }
}

@keyframes circle2 {

    0%,
    50% {
        background: transparent;
    }
    25% {

        background: rgba(194, 65, 12, 0.296);
    }

    50% {
        background: transparent;
    }

    100% {
        background: transparent;
    }
}