:root {
    /* --theme-color: #FF5F13; */
    /* --theme-color: #e59b24; */ /* logo icon color  */
    /* --theme-color: #d59226;
    --primary-color: #02665b;
    --secondary-color: #25aca3;
    --text-primary-color: #222222;
    --text-secondary-color: #4a5568;
    --background-color: #2faea513;
    --heading-color: #013b34; */
  
  }





  
.ongoing-banner{
    background-image: url(../images/banner/pages-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 150px 0;
}



.ongoing-title h1{
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 50px;
}
.ongoing-title a{
    color: var(--theme-color);
    font-size: 16px;
}
.ongoing-title span{
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
}

/* banner end here  */

.search-box{
    background-color: var(--primary-color);
    padding: 30px 60px;
    margin-top: -50px;
   
}

.search-left .form-select:focus, .form-select:active {
 outline: 0 !important;
 /* border: 0; */
 box-shadow: none;
 appearance: none !important;
}
.search-left .form-select {
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    appearance: none; 
    background-color: var(--primary-color) !important;
    color: #ffffff;
    background-image: url(../images/icons/icon-02.png);
}
.search-left .form-select .option:hover {
    background-color: red !important; /* Change to your desired hover color */
}


.search-right {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    background-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    padding: 5px 15px;
    width: 100%;
    font-size: 14px;
    outline: none;
    background-color: var(--primary-color);
    color: #ffffff;

}
.search-input::placeholder {
  color: #fff;
}

.search-button {
    border: none;
    padding: 5px 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    background-color: var(--primary-color);
    & i{
        color: #fff;
    }
}


/* ongoing card start here   */
.main-row{
    margin-top: 150px;
    padding: 0 100px;
}
.ongoing-img{
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}
.ongoing-img img{
    width: 100%;
    aspect-ratio: 16/14;
    background-size: cover;
    transition: all 2s ease-in-out;

}
.ongoing-box a:hover .ongoing-img img{
    transform: scale(1.5);

}
.ongoing-box .card-desc{
    margin-top: 20px;
}
.ongoing-box .card-desc h3 a{
    color: var(--theme-color);
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
}
.ongoing-box .card-desc p{
    color: var(--secondary-color);
    font-size: 16px;
}

/* ongoing card end  here */

@media screen and (max-width: 576px){
    .main-row{
        margin-top: 150px;
        padding: 0;
    }
}