.join-now{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: min-content;
    padding: 48px 32px;
    width: 100%;
}


.join-now-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    width: 100%;
    height: min-content;
}

.join-now-cont .ready-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    height: min-content;
    flex: none;
    max-width: 550px;
    width: 100%;

}

.ready-cont .ready{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    height: min-content;
    width: 100%;
    gap: 16px;
}

.ready .heading{
    font-size: 34px;
    text-align: center;
    font-weight: 600;
}

.ready .sub-heading{
    font-size: 18px;
    color: rgb(117, 117, 117);
    text-align: center;
}

.ready-cont .image-cont{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: min-content;
    flex: none;
    justify-content: center;
}


.image-cont img{
    margin: -70px 0;
    width: 160px;
}

.join-now-cont .img-cont{
    /* background-color: crimson; */
    display: flex;
    justify-content: center;
    flex: none;
    width: 100%;
    overflow: visible;
    position: relative;
    aspect-ratio: 1.2 / 1;
}

.join-now-cont .img-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}





/* 
*****************
Media Queries 
*****************   */

/* Smaller Screens  */


@media (max-width:809px) {
    .join-now{
        padding: 48px 16px 0px;
    }

    .join-now-cont{
        gap: 40px;
    }
/* 
    .ready .heading{
        font-size: 32px;
        
    } */

    .image-cont img{
        width: 140px;
    }

    .join-now-cont .img-cont img{
        width: 80%;
        /* object-fit: contain; */
        height: 80%;
    }
}
