*{
    margin: 0;
    padding: 0;
    list-style: none;
}
.search-container{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #3DB4D9;

}
.searchbar-wrapper {
    width: 100%;
    position: relative;
    display: flex;
   justify-content: center;
    align-items: center;
    background: #282828;
    padding: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 1000px;

}

.search-cover{
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;

}
.search-cover input{
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    outline: none;
}
.drop-down-cover{
    height: 70%;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 200px;
    cursor: pointer;

}
.drop-down-text{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    background: white;
    border-left: 1px solid #616060;
}
.drop-down-text input{
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    outline: none;
}
.dropDownList{
    display: none;
    background: #3DB4D9;
    color: #fff;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 100%;
    padding: 10px 40px;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.dropDownList.show{
    display: block;
}
/* #list.show{
    max-height: 400px;
} */
.drop-down-list-item{
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 0 1rem 1.5rem;
    cursor: pointer;
    transition: margin-left 0.2s ease;
}
.drop-down-list-item:hover{
    margin-left: 0.5rem;
}
.search-icon{
    width: 50px ;
    height: 70%;
    background-color: #3DB4D9;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-btn i{
    color: #ffffff;
}

.images-slider{
    position: relative;
    width: 100%;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}
.image-item{
    width: 100%;
    height: 100%;


}
.image-item.active {
    opacity: 1;
}
.arrows-to-change {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}
.arrows-to-change i {
    background-color:#07417b;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 40px;
    transition: background 0.3s;
}
.arrows-to-change i:hover{
    background-color: #3DB4D9;
}
.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Ensures padding remains */
}

.image-wrapper-item {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper-item img {
    max-width: 100%;
    height: auto; /* Ensures the image scales properly */
    display: block;
}

@media (max-width: 768px) {
    .image-wrapper-item {
        width: 100%;
    }
}