﻿.carousel-control-next:hover {
    background-color:white;
    overflow:hidden;
    animation: ease-in-out 500s alternate;

}

.carousel-control-prev:hover {
    background-color: white;
    overflow: hidden;
    animation: ease-in-out 500s alternate;
}

.news-section {
    /*background: #f4f7fc;*/
    /*background: linear-gradient(rgba(25, 125, 25,0.1),rgba(0, 106, 110,0.1));*/
    background: linear-gradient(135deg, #f5eefcf4, #f5eefcf4);
    border: 5px solid rgba(0,0,0,0.05);
    border-radius: 10%;
    text-align: center;
}

.box-hover:hover {
    box-shadow: 20px 20px 12px rgba(0, 0, 0,0.1);
} 

.news-section-1 {
    /*background: #f4f7fc;*/
    /*background: linear-gradient(rgba(25, 125, 25,0.1),rgba(0, 106, 110,0.1));*/
    background: linear-gradient(135deg, #ffd800, #ffffff);
    /*background: linear-gradient(135deg, #ffd800, #ffffff);*/
    border: 5px solid #fff;
    border-top-left-radius: 30%;
    border-top-right-radius: 30%;
    box-shadow: 20px 40px 2px rgba(255,255,210,0.5);
    text-align: center;
}


.news-heading {
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    color:aliceblue;
}



    .news-heading:after {
        content: "";
        width: 70px;
        height: 3px;
        background: rgba(255,0,0,0.5);
        position: absolute;
        bottom: -10px;
        left: 0;
    }

.news-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
    transform: rotate(0deg);
    
}




.news-list {
    animation: scrollUp 18s linear infinite;
}

.news-wrapper:hover .news-list {
    animation-play-state: paused;
}

.news-item {
    display: flex;
    background: #ffffff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    align-items: center;
    transition: 0.3s;
}

    .news-item:hover {
        transform: translateX(5px);
    }

.calendar {
    width: 70px;
    min-width: 70px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.calendar-month {
    background: #007bff;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    text-transform: uppercase;
}

.calendar-date {
    background: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 0;
}

.news-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.news-content p {
    font-size: 14px;
    margin: 0;
    color: #6c757d;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}



.half-background 
{
    background-image: url('../acsstimg/halfheaders.png') !important;

}


.bg-founder-image {
    background: url('../../acsstimg/bg_founder_image.png');
    background-repeat:no-repeat;
    background-size:cover;
    opacity:0.7 !important;
    
}

.bg-founder-image-1 {
    background: url('../../acsstimg/bg_founder_image.png');
    background-repeat: no-repeat;
    background-size: cover;    
}
.border-blue {
    border-color:#7bcbd5 !important;
}





#pdf-viewer {
    width: 100%; /* Makes the viewer responsive to the container's width */
    height: 700px; /* Sets a specific height in pixels */
    border: none; /* Removes the default iframe border */
}

.background-hover-1:hover {
    background: linear-gradient(to right, #f5eefcf4,#b8e2e8de) repeat-y;
    color: aliceblue !important;
    transition: background-color ease-in-out 50s;
}
    














.news-section-2 {
    background: #f8f9fa;
    
}

.section-heading-2 {
    font-weight: 700;
    
    position: relative;
    display: inline-block;
}

    .section-heading-2:after {
        content: "";
        width: 60px;
        height: 3px;
        background: #007bff;
        position: absolute;
        bottom: -8px;
        left: 0;
    }

.news-ticker-2 {
    background: #ffffff;
    border-left: 5px solid #007bff;
    overflow: hidden;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.news-label-2 {
    background: #007bff;
    color: #fff;
    padding: 0 15px;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    z-index:5;
}

.news-content-2 {
    white-space: nowrap;
    display: inline-block;
    padding-left: 20px;
    animation: scrollNews-2 70s linear infinite;
}

.news-ticker-2:hover .news-content-2 {
    animation-play-state: paused;
}

@keyframes scrollNews-2 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}