* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.about-banner-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../images/banner1.jpg");
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: transform 0.8s;
}

.about-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    color: white;
}

.tab-container .nav .nav-link {
    background-color: #FFFFFF !important;
    border-radius: 0px !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: black !important;
    opacity: 0.6 !important;
}

.tab-container .nav {
    color: black !important;
    border-radius: 0px !important;
    opacity: 1 !important;
    border-bottom: 2px solid #fff !important;
    padding: 0px !important;
}

.tab-container .nav .active {
    background-color: #fff !important;
    color: black !important;
    border-radius: 0px !important;
    opacity: 1 !important;
    border-radius: 0px !important;
    border-bottom: 2px solid orangered !important;
}

/* timeliner-blog */
.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: rgb(175, 8, 8);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #B31C27;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the container to the left */
.left {
    left: 0;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 50px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgb(178, 3, 3);
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 50px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(178, 3, 3) transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -14px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 6px;
    color: #0c0c0c !important;
    border: 1px solid gray;
}



/* FOUNDER-SECTION */
.founder-img {
    height: 200px;
    object-fit: cover;
}

/* CERTIFICATE-SECTION */
.certificate-overlay-container {
    position: relative;
    width: 100%;
}

.certificate-overlay-container .image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: fill;
}

.certificate-overlay-container .overlay {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: rgba(255, 0, 0, 0.6);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: all .5s ease;
}

.certificate-overlay-container:hover .overlay {
    width: 100%;
    left: 0;
}


/* EVENT-CARD */
.event-card-body .title {
    font-size: 16px;
    font-weight: 500;
}

.event-card-body .description {
    text-align: justify;
    font-size: 14px;
}


/* MISSION-VIOSION */
.mission-vision-container {
    width: 85%;
    margin: auto;
}

.mission-vision-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}


/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {

    /* Place the timelime to the left */
    .timeline::after {
        left: 21px;
    }

    /* Full-width containers */
    .timeline-container {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
    }

    /* Make sure that all arrows are pointing leftwards */
    .timeline-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
        left: 8px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }

    /* FOUNDER-SECTION */
    .founder-img {
        height: 230px;
        object-fit: cover;
        text-align: center;
    }

    /* MISSION-VIOSION */
    .mission-vision-container {
        width: 100%;
        margin: auto;
    }

    .mission-vision-img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
}