body {
    font-family: Arial, sans-serif;
}

.hero-slide {
    position: relative;
    min-height: 90vh;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.navbar-brand {
    font-size: 30px;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.card {
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.btn-primary {
    background: #03037c;
    border: none;
}

.btn-primary:hover {
    background: #dc3545;
}

footer a {
    font-size: 20px;
}body {
    font-family: Arial, sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?q=80&w=1600');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
}

.navbar-brand {
    font-size: 30px;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.card {
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.btn-primary {
    background: #03037c;
    border: none;
}

.btn-primary:hover {
    background: #dc3545;
}

footer a {
    font-size: 20px;
}






.btn-outline-primary{
	--bs-btn-color: #02029c;
    --bs-btn-border-color: #02029c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #02029c;
    --bs-btn-hover-border-color: #02029c;
}


.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #02029c !important;
}


.event-box{
    background:#02029c;
    border-radius:6px;
    overflow:hidden;
    transition:.3s;
}

.event-box:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.event-date{
    background:#03037c;
    width:120px;
    padding:18px 10px;
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.event-date h2{
    font-size:40px;
}

.event-content h4{
    color:#fff;
    font-size:28px;
}

.event-content p{
    color:#fff;
}

.view-btn{
    font-weight:700;
    border-radius:8px;
    padding:14px 22px;
}

@media(max-width:768px){

    .event-box{
        flex-direction:column;
        align-items:flex-start !important;
    }

    .event-date{
        width:100%;
    }

    .event-btn{
        width:100%;
        padding-bottom:20px;
    }

    .view-btn{
        width:100%;
    }

}







.filter-box{
    border-top:4px solid #03037c;
}

.filter-box .form-control,
.filter-box .form-select{
    height:50px;
}

.filter-box button{
    height:50px;
    font-weight:600;
}



@media(max-width:768px){

    .event-box{
        display:flex;
        flex-direction:row !important;
        align-items:stretch !important;
        border-radius:6px;
        overflow:hidden;
    }

    .event-date{
        width:70px;
        min-width:70px;
        min-height:auto;
        padding:10px 5px;
    }

    .event-date h2{
        font-size:28px;
        line-height:1;
    }

    .event-date h6,
    .event-date small{
        font-size:12px;
    }

    .event-content{
        padding:10px 12px !important;
    }

    .event-content h4{
        font-size:18px;
        line-height:1.2;
        margin-bottom:6px;
    }

    .event-content p{
        font-size:13px;
        margin-bottom:2px;
    }

    .event-content small{
        font-size:12px;
        line-height:1.2;
        display:block;
    }

    .event-btn{
        width:60px;
        min-width:60px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0 !important;
    }

    .view-btn{
        width:42px;
        height:42px;
        border-radius:8px;
        padding:0;
        font-size:0;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .view-btn i{
        font-size:20px;
        margin:0 !important;
    }

}


.submit-btn{
    border-radius:50px;
    font-weight:600;
    padding:10px 22px;
    transition:.3s;
}

.submit-btn:hover{
    background:#03037c;
    transform:translateY(-2px);
}