.admissionPage .d-md-flex .col-md-6{
    height: 500px;
}
.admissionPage .d-md-flex .col-md-6:nth-child(1){
    background-image: url('../img/admissionLeft.jpg');
    background-size: cover;
    background-position: center;
}
.admissionPage .d-md-flex .col-md-6:nth-child(2){
    background-image: url('../img/admissionRight.jpg');
    background-size: cover;
    background-position: center;
}
.albumCover{
    text-align: left;
}
.albumImgCover{
    width: 270px;
    height: 170px;
    overflow: hidden;
    position: relative;
    margin: auto;
}
.albumImgCover img{
    position: absolute;
    left: calc(50% - 135px);
}
.albumDisc{
    font-size: 13px;
}
#mainCarousel .carousel-inner .active img{
    animation: fadeInBlack 1s ease-in forwards !important;
    filter: brightness(0)
}
#mainCarousel .carousel-inner .carousel-caption h1{
    font-size: 70px;
}
@keyframes fadeInBlack{
    from{
        filter: brightness(0)
    }
    to{
        filter: brightness(1)
    }
}