﻿.welcome-message { display:none; }
.welcome-message.visible { display:block; margin-bottom:15px; }

.welcome-banner { margin-bottom:1em; height:246px; background-image:url(images/bic_banner.png); background-position:left center; background-repeat:repeat-x; }

.info-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    margin: 20px auto;
    border-left: 6px solid #FF6F61;
    animation: highlightFadeIn 1s ease-out;
    transform: scale(1);
    transition: transform 0.3s ease;
}

    .info-box:hover {
        transform: scale(1.05);
    }

.info-text {
    font-size: 28px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.info-link {
    color: #000000;
    /*font-weight: bold;*/
    text-decoration: none;
    font-size: 24px;
}

    .info-link:hover {
    }

.ribbon {
    background-color: #FF6F61;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 20px;
    position: absolute;
    top: -10px;
    left: -20px;
    transform: rotate(-45deg);
    width: 35px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}