.school-page-hero{
    max-width: 1200px;
    padding: 1rem;
    margin: auto;
    min-height: 300px;
    border:1px solid transparent;
}
.school-name-highlight{
    display: flex;
    justify-content: space-between;
    min-height: 300px;
}
.school-name p {
    margin: 10px auto;
    font-weight: bolder;
    font-size: 1.2rem;
    background: gold;
    width: -moz-fit-content;
    width: fit-content;
    padding: 2px 10px;
}
.school-name h1{
    font-weight: bolder;
}
.school-badge{
    max-width: 300px;
    width: 100%;
    height: 300px;
    box-sizing: border-box;
}
.school-badge img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.select2-wrapper{
    margin-top: 1rem;
}

.select2-selection__rendered {
    line-height: 40px !important;
}
.select2-container .select2-selection--single {
    height: 40px !important;
    border: 2px solid purple !important;
}
.select2-selection__arrow {
    height: 40px !important;
}
.school-name-badge-wrapper{
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}
.school-name{
    width: 60%;
}

.page-navigation a{
    text-decoration: none;
    text-transform: capitalize;
    border: 1px solid #1f2e47;
    padding: 0.3rem 1rem;
    display: inline-block;
    color: #1f2e47;
    border-radius: 7px;
    margin: 1rem 0;
}

.page-navigation a:hover{
    background-color: #1f2e47;
    color: white;
}
.page-navigation a:active{
    background-color: #1f2e47;
    color: white;
}


.overview-card-wrapper{
    min-height: 120px;
    background: whitesmoke;
    padding: 1rem;
    border-radius: 10px;
}
.icon-label-wrapper{
    display: flex;
    align-items: center;

}
#icon{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #525050;
    margin-right: 1rem;
}
.overview-label{
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: bold;

}
.overview-content{
    margin-top: 1rem;
}
.overview-content p{
    margin: 0 0 0.5rem 0;
    text-transform: capitalize;
}
.overview-content p span{
    font-weight: bold;
    color: rgba(31, 46, 71, .5);
}

.page-sections{
    width: 100%;
    min-height: 100px;
    border-bottom: 1px solid rgb(236, 234, 234);
    padding: 10px 0;
}
.page-sections a{
    text-transform: capitalize;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-block;
}
.section-list a{
    font-weight: 400;
    font-size: 1rem;
}

.more-on-school{
    width: 100%;
    min-height: 200px;
    margin: 1rem 0;
    padding: 0.5rem;
}
.more-on-school h2,
#moreOn{
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: orangered;
    padding: 0.5rem;
    border-radius: 8px;
}
.more-on-school #moreOn{
    background-color: rgb(255, 69, 0, 0.09);
}

.more-on-school-item{
    background: #f5f8fa;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 7px;
}
.more-on-school a{
    text-decoration: none;
    color: initial;
}
.more-on-school-item h1{
    font-size: 1rem;
}
.more-on-school-item span{
    font-size: 14px;
    font-weight: bold;
}

#browseMore{
    text-align: center;
    display: block;
    text-decoration: underline;
    color: orangered;

}
#browseMore:hover{
    font-weight: bold;
}

/* school pictures */
.school-pictures-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
}
.picture-item{
    width: 100%;
    background-color: whitesmoke;
    border-radius: 10px;
}
.picture-item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
}

.selected-school-code-wrapper {
	background: rgba(31, 46, 71, 0.9);
	color: #ffff;
}

/* MEDIA QUERIES */
@media(max-width: 575.98px){
    .select2-wrapper {
            padding: 0 0.5rem;
            bottom: 1rem;
        }

        .school-name {
            width: 100%;
            position: absolute;
            bottom: 0;
            z-index: 99;
            line-height: 1;
            background-color: #ffd70066;
        }
        .school-name-highlight {
            display: block;
            flex-direction: row-reverse;
            position: relative;
            text-align: center;
            height: 220px;

        }
        .reset-highlight-margin{
            margin-right: 0 !important;
        }

        .school-badge {
            opacity: 0.7;
            max-width: 100%;
        }

        .school-name h1 {
            font-size: 3rem;
        }

    .page-navigation{
        width: 100%;
        display: flex;
        overflow-x: auto;
        overflow-y: hiddden;
    }
    .page-navigation a{
       margin-right: 0.5rem;
    }

    .overview-card-wrapper{
        margin: 1.1rem 0 0 0;
        padding: 1rem;
    }
}

