.about {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
}

.intro_container {
    background-color: #004080;
    width: 100%;
    padding-top: 8rem;
    padding-bottom: 6rem;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.intro_container_details {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    align-items: center;

    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.background_cirle {
    transform: translateX(-200%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 3000px;
    height: 40rem;
    transition: all 300ms;
}

.background_cirle img {
    width: 25rem;
    position: absolute;
    top: 41px;
    z-index: 1;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.animated_cirle {
    background-color: #00C2FF;
    width: 34rem;
    height: 34rem;
    position: relative;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.home_text_container {
    transform: translateX(200%);
    transition: all 300ms;
}

.home_text_container h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.home_text_container h1 {
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.home_text_container h2 {
    font-weight: 700;
    font-size: 45px;
    color: #FF0000;
    margin-bottom: 2rem;
}

.home_text_container p {
    font-weight: 700;
    color: #fff;
    font-size: large;
    text-align: justify;
    text-indent: 3rem;
}

@media only screen and (min-width: 992px) {
    .intro_container {
        display: flex;
        padding: 0;
        align-content: center;
        height: 94vh;
        flex-wrap: wrap;
    }
}


@media only screen and (max-width: 992px) {
    .intro_container_details {
        flex-wrap: wrap !important;
    }

    .intro_container {
        padding-top: 1rem !important;
    }

    .Rectangle_69 {
        top: -6px;
    }
}

@media screen and (max-width: 768px) {
    .background_cirle img {
        width: 10rem;
    }

    .animated_cirle {

        width: 15rem;
        height: 15rem;
    }

    .background_cirle {
        height: 19rem;
        margin-top: 2rem;
    }

    .home_text_container h2 {

        font-size: 24px;
    }

    .home_text_container h3 {
        margin-bottom: 0;
    }

    .my_sub_info .my_sub_info_text {

        flex-direction: column;
    }

    .home_menu_wrapper h1 {

        text-align: center;
    }

    .Rectangle_69 {
        top: -10px;
    }

    .contact_page_messagetxt {

        font-size: smaller !important;
        margin: 20px 0 20px !important;
    }

    .contact_me_page {
        gap: 0px !important;
    }
}

.reveal {
    /* Your default styles for .reveal elements */
    opacity: 0;
    transition: opacity 300ms;
}

.reveal.active {
    /* Styles applied when the element is in the viewport */
    opacity: 1;
}


.left {
    /* Your default styles for .reveal elements */
    transform: translateX(-500%);
    transition: all 300ms;
}

.left.active {
    /* Styles applied when the element is in the viewport */
    transform: translateX(0);
}

.right {
    /* Your default styles for .reveal elements */
    transform: translateX(500%);
    transition: all 300ms;
}

.right.active {
    /* Styles applied when the element is in the viewport */
    transform: translateX(0);
}