body {
    background-color: rgb(228, 228, 228);
}

.heading {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    font-family: Georgia, serif;
    text-transform: uppercase;
}
/*##########################
    Slide Start
##########################*/
.carousel .carousel-inner {
    width: 100%;
    text-align: center;
    height: 680px;
    position: relative;
}

    .carousel .carousel-inner .carousel-item {
        width: 100%;
        height: 100%;
    }

.carousel .bx {
    font-size: 50px;
    background-color: rgba(5, 4, 75, 0.85);
    border-radius: 50%;
    color: #fff;
}

.carousel .carousel-inner .carousel-item .carousel-caption h2 {
    color: white;
    font-weight: 600;
    font-size: 35px;
    padding-bottom: 50px;
}

.slide_animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.slide_animatedFade {
    opacity: 0
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 100px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 100px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
/*##########################
    Slide End
##########################*/
.mainBaskan {
    display: flex;
    flex-wrap: nowrap;
    background-image: url("../Images/Background/baskanBack.webp");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
}
    .mainBaskan .col-4{
        text-align: end;
    }

    .mainBaskan .col-4 img {
        width: 299px;
        height: 450px;
    }

    .mainBaskan .col-8 {
        padding-left: 20px;
        padding-top: 50px;
        color: white;
    }

        .mainBaskan .col-8 h2 {
            font-weight: 800;
            font-size: 200%;
        }

        .mainBaskan .col-8 p {
            font-family: serif;
            font-size: 150%;
        }

        .mainBaskan .col-8 a {
            text-decoration: none;
            color: white;
            font-size: 40px;
            margin-right: 15px;
        }

/*##########################
    Announcement Start
##########################*/

.announcement {
    height: 280px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .announcement .row {
        width: 100%;
        position: absolute;
        top: -70px;
        justify-content: center;
    }

    .announcement .item .item-text {
        height: 168px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
        overflow: hidden;
    }

    .announcement .row label a {
        font-size: 20px;
        color: rgba(5, 4, 75, 0.85);
    }

        .announcement .row label a:hover {
            color: aqua;
        }

    .announcement .row .item {
        position: relative;
        flex: 0 0 auto;
        width: 28%;
        margin-right: 2%;
        min-height: 250px;
        background-color: rgba(5, 4, 75, 0.85);
        color: white;
    }

        .announcement .row .item:hover {
            transform: translateY(-5px);
            box-shadow: 0px 20px 20px 0px rgb(0, 0, 0);
        }

/*##########################
    Announcement End
##########################*/

/*##########################
    Activity Start
##########################*/

.activity-item {
    position: relative;
    width: 25%;
    margin: 10px 1%;
    flex: 0 0 auto;
    height: 300px;
}

    .activity-item img {
        width: 100%;
        height: 100%;
    }

    .activity-item p {
        position: absolute;
        bottom: 0;
        padding: 0 10px;
        color: #fff;
        font-weight: 600;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .activity-item label {
        position: absolute;
        top: 5px;
        right: 20px;
        color: #fff;
        font-weight: 900;
    }

.activity-more {
    font-size: 20px;
    color: rgb(255, 255, 255);
}

    .activity-more:hover {
        color: aqua;
    }

.activity_animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.activity_animatedFade {
    opacity: 0
}

@keyframes fadeLR {
    from {
        transform: translate3d(100px, 0, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeLR {
    from {
        transform: translate3d(100px, 0, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.fadeLR {
    opacity: 0;
    animation-name: fadeLR;
    -webkit-animation-name: fadeLR;
}

/*##########################
    Activity End
##########################*/
@media only screen and (max-width: 1106px) {
    .announcement .item .item-text {
        height: 168px;
        white-space: pre-line;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media only screen and (max-width: 920px) {
    .carousel .carousel-inner {
        height: 550px;
    }

        .carousel .carousel-inner .carousel-item .carousel-caption {
            padding: 15px 0;
        }

            .carousel .carousel-inner .carousel-item .carousel-caption h2 {
                font-size: 28px;
            }
}

@media only screen and (max-width: 880px) {
    .mainBaskan {
        display: block;
        padding: 15px 0;
    }

        .mainBaskan .col-4 {
            width: 100%;
            text-align: center;
            margin-bottom: 0;
        }

        .mainBaskan .col-8 {
            width: 100%;
            text-align: center;
            padding-top: 15px;
            padding-left: 0;
        }

            .mainBaskan .col-8 p {
                margin-bottom: 5px;
            }
}

@media only screen and (max-width: 810px) {
    .activity-item {
        position: relative;
        width: 80%;
        margin: 10px 1%;
        flex: 0 0 auto;
        height: 300px;
    }
}

@media only screen and (max-width: 650px) {
    .carousel .carousel-inner {
        height: 350px;
    }

        .carousel .carousel-inner .carousel-item .carousel-caption {
            padding: 5px 0;
        }

            .carousel .carousel-inner .carousel-item .carousel-caption h2 {
                font-weight: 600;
                font-size: 18px;
                padding-bottom: 10px;
                margin-bottom: 0;
            }

    .heading {
        font-size: 40px;
        font-weight: 700;
    }

    .announcement {
        height: auto;
        display: block;
    }

        .announcement .row {
            position: relative;
            top: 10px;
            flex-direction: row;
            justify-content: center;
        }

            .announcement .row .item {
                flex: 0 0 auto;
                width: 80%;
                margin-bottom: 20px;
                flex-direction: column;
            }

                .announcement .row .item .item-text {
                    -webkit-line-clamp: 6;
                    height: 150px;
                }

            .announcement .row .col-12 {
                margin-bottom: 20px;
            }
}
