/* PROJECTS PAGE STYLES
************************************************************/

.projectFeaturedImage {
    margin: 10px;
}

.projectFeaturedImage img{
    float: left;
    list-style: none;
    margin-right: 12px;
    margin-bottom: 12px;
    height: 350px;
    width: auto;
}

.projectItem {
    position: relative;
    overflow: hidden;
}

.projectTitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust the transparency as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.projectItem:hover .projectTitle {
    opacity: 1;
}

/* Slick Styles for Single Projects Page */

.slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
}

.slick-list.draggable {
    margin-left: 10px;
    margin-right: 10px;
}

/* @media (min-width: 600px){
.slick-list.draggable{
    height: 550px;
}
} */

.carousel-image {
    max-height: 550px;
    overflow: hidden;
}

.carousel-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mainContent ul.slick-dots {
    justify-content: left !important;
    padding-left: 0;
    margin-left: 0;
}

.slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    list-style-type: none;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.slick-dots li:hover {
    opacity: 1;
}

.slick-dots li img {
    max-height: 60px;
}

.slick-dots li img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
}
.slick-slide img {
    /* display: block; */
    display: flex !important;
    justify-content: center;
    width: auto !important;
    max-height: 550px !important;
}
