
/* #yearSelect::-ms-expand {
    display: none;
} */

/* #yearSelect {
    margin-left: 20px;
    font-size: 20px;
    font-weight: 600;
    width: 209px;
    height: 43px;
    padding: 5px;
    border: none;
    border-bottom: 3px solid #c5c5c5;
    cursor: pointer;
}


#yearSelect option {
    width: 80px;
    height: 40px;
    cursor: pointer;
}

#yearSelect option:hover {
    background-color: yellow;
    color: white;
}


.selectyearSec {
    margin-top: -56px;
}


#yearSelect:hover {
    border: none;
    border-bottom: 3px solid #898181;
} */

.unique_container ::-webkit-scrollbar {
    width: 8px;
}

.unique_container ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.unique_container ::-webkit-scrollbar-thumb {
    background-color: #e63946;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.unique_container .box {
    width: 300px;
    height: 530px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background-color: #e5e3e3;
}

.unique_container .image-container {
    position: relative;
    width: 100%;
    height: 200px;
}

.unique_container .image-container img {
    width: 100%;
    height: 100%;
    /* height: 78%; */
    object-fit: cover;
}

.unique_container .box-date {
    width: 165px;
    height: 47px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    left: 21px;
    top: 231px;
    border-radius: 3px;
    z-index: 2;
}

.unique_container .box-date .date {
    font-size: 17px;
}

.unique_container .main_start_date {
    font-size: 25px;
    color: white;
    }

.unique_container .box-title {
    padding: 10px 10px 20px 10px;
    font-size: 21px;
    font-weight: bold;
    color: #333;
    margin: 15px 15px 17px;
    text-align: left;
    }

.unique_container .box-content {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
    }

.unique_container .box-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-top: -16px;
    }

.unique_container .box-location {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    }

.unique_container .box-footer {
    background: #f1f1f1;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

.unique_container .box-footer p {
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: bold;
    }

.unique_container .box-footer i {
    margin-right: 8px;
    font-size: 16px;
    color: #e63946;
    }

.unique_container .image-slider {
    width: 100%;
    max-width: 1000px;
    position: relative;
    margin: 0px auto;
    height: 170px;
    overflow: hidden;
    border-radius: 5px;
    }

.unique_container .slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    }

.unique_container .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    }

.unique_container .slider img {
    width: 100%;
    flex-shrink: 0;
    }

.unique_container button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    }

.unique_container button.prev:hover, button.next:hover {
    background-color: #e63946;
    }

.unique_container button.prev {
    left: 10px;
    }

.unique_container button.next {
    right: 10px;
    }


@media screen and (min-width: 768px) {
    .event .container {
        display: flex;
        flex-wrap: wrap;
    }

}


@media screen and (max-width: 768px) {
    .container .unique_container {
        margin-bottom: 39px;
    }
    .event .container {
        gap: 52px;
    }

    .unique_container .image-container img {
        height: 108%;
    }
}

@media screen and (min-width: 950px) {
    .unique_container .box {
        width: 377px;
        height: 603px;
    }
}

@media screen and (max-width: 320px) {
    .unique_container .box {
        width: 271px;
    }
}


@media (min-width: 925px) and (max-width: 1024px) {
    .event .container {
        gap: 52px;
        padding: 20px;
        padding-left: 4rem;
    }

}

@media (min-width: 1024px) and (max-width: 1294px){
    .event .container {
        gap: 67px;
        padding: 20px;
        padding-left: 5rem;
    }

}

@media screen and (min-width: 950px) {
    #yearSelect {
        margin-left: 98px;
    }
}

@media screen and (min-width: 1199px) {
    .container {
        gap: 114px;
    }

}


  
/* .styled-select {
    width: 200px; 
    height: 40px;
    font-size: 16px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    outline: none;
    cursor: pointer;
}

.styled-select option {
    font-size: 14px;
    height: 30px;
    background-color: #fff; 
    color: #333; 
    padding: 10px;
    cursor: pointer;
}

.styled-select option:hover:not([disabled]) {
    background-color: yellow;
    color: white;
}

.styled-select option:checked {
    background-color: red;
    color: white;
}

.styled-select option[disabled] {
    background-color: #fff;
    font-style: italic;
} */


.unique_container:hover .innereventContent h3:before {
    width: 55px;
}




  .sliding-img-container {
    position: relative;
  }
  .sliding-img-container img{
    display: none; 
    overflow-y: hidden;
    width: 100%; 
    height: 400px;  
  }
  .active img{
    display: block;
  }
  .slider-button{
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    font-size: 25px;
  
    position: absolute;
    z-index: 10;
    top:50%;
    font-weight: 600;
    transition:0.6s;
  }
  #button-prev{
    left:10px;
    
  }
  #button-next{
    right:10px;
  }
  .slider-button:hover{
    background-color: #717171;
  }
  .dots-container{  
    position: absolute;
    bottom: 10px;
    left:50%;
  }
  
  .dot {
    cursor:pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s;
  }
  .dot:hover {
    background-color: #b75d5d;
  }
  .dots-container .activeDot{
    background-color: rgb(212, 102, 80);
  }


@media screen and (max-width: 768px) {
    .unique_container .box-date {
        top: 223px;
    }
    .unique_container .image-container {
        height: 150px;
    }
    .unique_container .box-title { 
        padding-top: 57px;
    }
    .unique_container .box {
        height: 637px;
    }
}


@media screen and (min-width: 1050px) {
    .unique_container .box {
        width: 473px;
        height: 703px;
    }
    .unique_container .box-desc {
        font-size: 14px;
    }
}





.slider-container {
    width: 100%;
    height: 239px;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.control-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

@media screen and (width: 1024px){
    .dropdown button {
        margin-left: 61px;
    }

}

.selectyearSec .dropdown-toggle {
    margin-top: -172px;
}

.event {
    margin-top: -78px;
}

.selectyearSec .dropdown-toggle::after {
    margin-left: 69px;
}

.dropdown-menu {
    min-width: 13rem;
}
