.carousel-item {
    height: 720px;
}

    .carousel-item img {
        height: 100%;
        width: 100%;
    }

    .carousel-item a {
        width: fit-content;
        text-decoration: none;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        text-align: start;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.about-site {
    background: radial-gradient(circle at bottom right, #DAA520, transparent 50%), #110C6C;
}

    .about-site .col-lg-4 {
        text-align: center;
    }

        .about-site .col-lg-4 img {
            width: 90%;
            height: 400px;
        }

    .about-site .col-lg-6 {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        text-align: justify;
    }

        .about-site .col-lg-6 h3 {
            margin-bottom: 5px;
            font-size: 40px;
            font-weight: 800;
            color: #DAA520;
            font-family: ui-monospace !important;
        }

        .about-site .col-lg-6 *:not(h3):not(a) {
            margin-bottom: 5px;
            font-size: 18px !important;
            font-weight: 600;
            color: white;
            font-family: ui-monospace !important;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            background: none !important;
        }

        .about-site .col-lg-6 a {
            text-decoration: none;
            color: #A9ACB6;
            font-weight: 800;
            width: fit-content;
        }

            .about-site .col-lg-6 a:hover {
                color: #DBDBDB;
            }

.category-site {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-site-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    transition: all .3s;
    min-width: 120px;
    text-decoration: none;
    cursor: pointer;
}

    .category-site-item i {
        font-size: 2rem;
        color: #f57c00;
    }

    .category-site-item span {
        font-weight: 600;
        font-size: 1.1rem;
        color: #1a237e;
    }

    .category-site-item.active {
        background-color: #f57c00;
    }

        .category-site-item.active i,
        .category-site-item.active span {
            color: #fff;
        }

.event-card-site {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    justify-items: center;
    margin-bottom: 40px;
}

.event-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    font-family: Arial, sans-serif;
    transition: transform 0.3s;
    max-width: 500px;
}

    .event-card:hover {
        transform: translateY(-5px);
    }

.event-image-wrapper {
    position: relative;
}

.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.event-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff8000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.event-content {
    padding: 15px;
}

.event-date {
    font-size: 14px;
    color: #ff8000;
    margin-bottom: 8px;
    font-weight: 600;
}

.event-title {
    font-size: 19px;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-link {
    font-size: 14px;
    color: #ff8000;
    text-decoration: none;
    font-weight: bold;
}

    .event-link:hover {
        text-decoration: underline;
    }

.event-card-animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animatedFade {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 50px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 50px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@media only screen and (max-width: 991px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-site .col-lg-4 img {
        width: 70%;
        height: 400px;
    }

    .about-site .col-lg-6 {
        margin-top: 20px;
        padding-inline: 50px;
    }

        .about-site .col-lg-6 h3 {
            font-size: 35px;
        }

        ..about-site .col-lg-6 *:not(h3):not(a) {
            font-size: 17px !important;
        }
}

@media only screen and (max-width: 850px) {
    .carousel-item {
        height: 500px;
    }

        .carousel-item a {
            font-size: 17px;
        }
}

@media only screen and (max-width: 650px) {
    .carousel-item {
        height: 400px;
    }

        .carousel-item a {
            font-size: 15px;
        }

    .about-site .col-lg-6 h3 {
        font-size: 30px;
    }

    ..about-site .col-lg-6 *:not(h3):not(a) {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 500px) {
    .carousel-item {
        height: 350px;
    }

        .carousel-item a {
            font-size: 12px;
        }
}
