.headerBox{
    margin-inline: 50px;
    padding: 0px;
}

.headerImageContainer {
    display: flex;
    justify-content: center;  
    align-items: center;  
    height: 85%;
    width: 100%;
    padding: 0px;
}
.headerImage {
    width: 100%;
    height: auto
}
.headerImageImg {
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.png');
    background-size: cover; 
    background-position: center;  
    background-repeat: no-repeat; 
    box-shadow: 0px 0px 10px 1px #999;
   
}
.headerImgOverlayText{
    position: absolute;
    z-index: 100;
    color: white;
    font-size: 60px;
    width: 70%;
    text-align: center;
    text-shadow: 0px 0px 20px black;
}
.introBox{
    margin-top: 100px;
    margin-inline: 50px;
    padding: 0px; 
}
.introBoxContainer{
    display: flex;
    justify-content: center;  
    align-items: center;  
}
.bioImg {
    width: 40%;
    height: auto;
    box-shadow: 0px 0px 10px 1px #999;
}
.bioImgMobile{
    display: none;
}
.bioText{
    width: 30%;
    text-align: left;
    padding-inline: 40px;
    margin-inline: 40px;
}
.bioTextTitle{
    font-size: 50px;
    font-weight: bold;
}
.bioTextLearnMore {
    padding: 10px 20px;
    background-color: black;
    color: white;
    font-size: 12px;
    border-radius: 20px;
    text-decoration: none;
    margin: 20px 20px;
    transition: all 0.4s ease;
}
.bioTextLearnMore:hover{
    background-color: rgb(59, 59, 59);
}
.eduJourney{
    margin-top: 100px;
    margin-inline: 50px;
    padding: 0px; 
    text-align: center;
}
.eduJourneyTitle {
    font-size: 36px;
}
.eduJourneyImages {
    display: flex;
    justify-content: center;  
    align-items: center; 
}
.eduJourneyImagesContainer{
    width: 300px;
    height: 300px;
    margin-inline: 10px;
    box-shadow: 0px 0px 10px 1px #999;
}
/*
.eduJourneyImage{
    width: 350px;
    height: 350px;
    margin-inline: 10px;
    background-size: cover; 
    background-position: center;  
    background-repeat: no-repeat; 
}*/





@media screen and (max-width: 600px) {
    html, body {
        padding: 0px;
        margin: 0px;
        width: 100%;
        overflow-x: hidden;
    }

    .headerBox{
        margin-inline: 0px;
        padding: 0px;
        width: 100%;
    }
    .headerImageContainer {
        display: flex;
        justify-content: center;  
        align-items: center;  
        height: 100%;
        width: 100%;
        padding: 0px;
    }
    .headerImage {
        width: 100%;
        height: auto
    }
    .headerImageImg {
        width: 100%;
        height: 100%;
        background-image: url('../images/bg.png');
        background-size: cover; 
        background-position: center;  
        background-repeat: no-repeat; 
        box-shadow: 0px 0px 10px 1px #999;
        overflow: hidden;
    
    }
    .headerImgOverlayText{
        position: absolute;
        z-index: 100;
        color: white;
        font-size: 40px;
        width: 70%;
        text-align: center;
        text-shadow: 0px 0px 20px black;
    }
    .introBox{
        margin-top: 100px;
        margin-inline: 0px;
        padding: 0px; 
    }
    .introBoxContainer{
        display: flex;
        justify-content: center;  
        align-items: center;  
        flex-wrap: wrap;
    }
    .bioImg {
        display: none;
        width: 50%;
        margin-bottom: 30px;
        height: auto;
        box-shadow: 0px 0px 10px 1px #999;
        order: 1;
        position: absolute;
        left: 50%;
        top: 50%;
    }
    .bioImgMobile{
        display: inherit;
        width: 60%;
        margin-bottom: 10px;
        margin-top: 50px;
        height: auto;
        box-shadow: 0px 0px 10px 1px #999;
        order: 1;
    }
    .bioText{
        width: 100%;
        text-align: left;
        padding-inline: 20px;
        margin-inline: 10px;
        order: 0;
        text-align: center;
        margin-top: 0px;
    }
    .bioTextTitle{
        font-size: 30px;
        font-weight: bold;
    }
    .bioTextLearnMore {
        padding: 10px 20px;
        background-color: black;
        color: white;
        font-size: 12px;
        border-radius: 20px;
        text-decoration: none;
        margin: 20px 20px;
        transition: all 0.4s ease;
    }
    .bioTextLearnMore:hover{
        background-color: rgb(59, 59, 59);
    }
    .eduJourney{
        margin-top: 100px;
        margin-inline: 5px;
        padding: 0px; 
        text-align: center;
    }
    .eduJourneyTitle {
        font-size: 36px;
    }
    .eduJourneyImages {
        display: flex;
        justify-content: center;  
        align-items: center; 
        flex-wrap: wrap;
    }
    .eduJourneyImagesContainer{
        width: 150px;
        height: 150px;
        margin-inline: 10px;
        margin: 10px;
        box-shadow: 0px 0px 10px 1px #999;
    }
}