html {
  overflow-y: scroll;
}

html, body {
    padding-top: 70px;                                /* __________This body must not be deleted__________ */
    height: 100%;
    margin: 0;
    padding: 0;                                     /* if problem, then delete padding */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero-section {
    color: white;
    padding: 100px 0;
    text-align: left;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main{
    background: transparent;                            /* __________BACKGROUND color for all pages__________ */
}

main.content {
    flex: 1;
}


    .hero-container {                                   /* __________This container LINKED WITH MOBILE HOME page__________ */
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 60px 15px;
        text-align: justify;
    }

    .hero-text {                                        /* __________This container LINKED WITH MOBILE HOME page__________ */
        flex: 1 1 490px;
        padding-top: 7%;
        padding-bottom: 2%;
    }

    .hero-text p {                                      /* __________This container LINKED WITH MOBILE HOME page__________ */
        font-size: 1.1rem;
        max-width: 700px;
        line-height: 1.6;
        color: #dce8fc;
    }
        

    @media (max-width: 768px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }

        .hero-text p {
            margin: 0 auto;
            
        }

        .profile-image {
            width: 200px;
            height: 200px;
        }

        .circle-rotate {
            width: 220px;
            height: 220px;
        }
    }
    
    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }
        .hero-text{
            padding: 0 0;
        }
    }

