* {
    font-family: 'minionpro';
}

body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.600);
    z-index: -1;
}


.circle-tile {
    margin-bottom: 15px;
    text-align: center;
}

.circle-tile-heading {
    border: 3px solid white;
    border-radius: 100%;
    color: #FFFFFF;
    height: 120px;
    width: 120px;
    margin: 0 auto -50px;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    background-color: #440303;
}

.circle-tile-heading .fa {
    line-height: 115px;
}

.circle-tile-content {
    background-color: #440303;
    border-radius: 25px 25px 0px 0px;
    border: 3px solid white;
    padding-top: 60px;
}

.circle-tile-number {
    font-family: 'minionpro';
    color: #F9AE3B;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 0 15px;
}

.circle-tile-description {
    text-transform: uppercase;
}

.circle-tile-footer {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: block;
    padding: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.circle-tile-footer:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.circle-tile-heading.dark-blue:hover {
    background-color: #2E4154;
}

.tile-img {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.600);
    z-index: -1;
}

.panel {
    height: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    border: 3px solid white;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.panel:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.panel-dark.panel-colorful,
.panel-danger.panel-colorful {
    background-color: #440303;
    border-color: #440303;
    color: #fff;
    position: relative;
}

.panel-body {
    padding: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.panel-body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    filter: brightness(1.5) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.3));
    transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
}


.panel-dark.panel-colorful:hover,
.panel-danger.panel-colorful:hover {
    border: #FFF 3px solid;  
}

.panel:hover .panel-body::before {
    opacity: 0.35;
    filter: brightness(1.8) drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.5));
}

.panel-body[data-logo="UBlogo"]::before {
    background-image: url('../assets/images/logos/UBlogo.png');
}

.panel-body[data-logo="IE"]::before {
    background-image: url('../assets/images/logos/IE.png');
}

.panel-body[data-logo="COME"]::before {
    background-image: url('../assets/images/logos/COME.png');
}

.panel-body[data-logo="ECE"]::before {
    background-image: url('../assets/images/logos/ECE.png');
}

.panel-body[data-logo="ME"]::before {
    background-image: url('../assets/images/logos/ME.png');
}

.panel-body[data-logo="CE"]::before {
    background-image: url('../assets/images/logos/CE.png');
}

.panel-body[data-logo="EE"]::before {
    background-image: url('../assets/images/logos/EE.png');
}

.panel-body[data-logo="FES"]::before {
    background-image: url('../assets/images/logos/FES.png');
}

.panel-body[data-logo="rc"]::before {
    background-image: url('../assets/images/rc.png');
}

.panel-body[data-logo="adf"]::before {
    background-image: url('../assets/images/adf.png');
}

.panel-body[data-logo="cf"]::before {
    background-image: url('../assets/images/cf.png');
}

.panel-body[data-logo="o"]::before {
    background-image: url('../assets/images/o.png');
}

.panel hr {
    display: none;
}

.p-des {
    margin-top: 15px;
    color: #ffc107 !important;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    letter-spacing: 2px;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 3;
}

.p-des:hover {
    animation: pulseText 1.5s infinite alternate ease-in-out;
}

@keyframes pulseText {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}