.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.imageContainer{
    width: 100%;
    margin-bottom: 5rem;
    height: 60vh;
    position: relative;
}
.imageContainer img{
    width: 100%;
    height: 100%;
}
.imageContainer h1{
    position: absolute;
    color: white;
    font-family: 'Raleway',sans-serif;
    font-weight: 600;
    font-size: 5rem;
    left: 10%;
}
.firstView{
    /* height: 35vh; */
}
.firstView img{
    height: 100%;
    width: 100%;
}
.firstView p{
    font-family: 'Raleway',sans-serif;
    color: black;
    font-size: 2rem;
    font-weight: 600;
}

.itemsWrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    padding-top: 10rem;
}

.item img{
    max-height: 60%; 
    width: 100%;
}
.itemsWrapper{
    /* opacity: 0; */
    /* transform: translateY(-20px); */
}
.item{
    flex-flow:  column;
    height: min-content;
    margin-bottom: 5px;

}
.fadein{
    opacity: 1;
    transition: 300ms all ease-in-out;
    /* transform: translateY(-20px) !important; */
}
.item h1{
    color:  black;
    font-family: 'Raleway',sans-serif;
    font-weight: 600;
}
.box{
    border:  1px solid gray;
    padding: 0.5rem     1rem;
    flex-flow: column;
    cursor: pointer;
}
.box h3{
    margin: 0;
}
.expansion{
    display: block;
    height: 15rem;
    /* transition: 5s all ease-in-out; */
}
.hidden{
    display: none;
}
.expansion p{
    font-family: 'Raleway',sans-serif;
    font-size: 1.1em;
    color: black;

}
.box i{
    color: blue;
}
.item {
    margin-right: 5px;
}

