/* hover */
.hovereffect {
    width:100%;
    height:100%;
    float:left;
    overflow:hidden;
    position:relative;
    text-align:center;
    cursor:default;
    }

.hovereffect .overlay {
    width:145px;
    height:100%;
    position:absolute;
    overflow:hidden;
    top:0;
    left:10;
    opacity:0;
    background-color:rgba(0,0,0,0.5);
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out
}

.hovereffect img {
    display:block;
    position:relative;
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
}

.hovereffect h2 {
    text-transform:uppercase;
    color:#fff;
    text-align:center;
    position:relative;
    font-size:17px;
    background:rgba(0,0,0,0.6);
    -webkit-transform:translatey(-100px);
    -ms-transform:translatey(-100px);
    transform:translatey(-100px);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    padding:10px;
}

.hovereffect a.info {
    text-decoration:none;
    display:inline-block;
    text-transform:uppercase;
    color:#fff;
    /* border:1px solid #fff; */
    background-color:transparent;
    opacity:0;
    filter:alpha(opacity=0);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    margin:70px 0 0;
    padding:20px 20px;
}

.hovereffect a.info-lg {
    text-decoration:none;
    display:inline-block;
    text-transform:uppercase;
    color:#fff;
    /* border:1px solid #fff; */
    background-color:transparent;
    opacity:0;
    filter:alpha(opacity=0);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    margin:200px 0 0;
    padding:20px 20px;
}

/* .hovereffect a.info:hover, .hovereffect a.info-lg:hover {
    box-shadow:0 0 5px #fff;
}
    */
/* .hovereffect:hover img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
} */

.hovereffect:hover .overlay {
    opacity:0.6;
    filter:alpha(opacity=100);
}

.hovereffect:hover h2,.hovereffect:hover a.info,.hovereffect:hover a.info-lg {
opacity:1;
filter:alpha(opacity=100);
-ms-transform:translatey(0);
-webkit-transform:translatey(0);
transform:translatey(0);
}

.hovereffect:hover a.info, .hovereffect:hover a.info-lg {
    -webkit-transition-delay:.2s;
    transition-delay:.2s;
}

.hover-saturate{
    filter: saturate(50%); /* Reduce saturation to 50% */
}

.hover-saturate:hover{
    filter: saturate(100%); /* Full saturation */
    transition: filter 0.7s ease; /* Smooth transition effect */
}


/* logo */
.cls-1 {
    fill: #fff;
}

.cls-2 {
    fill: #6d6e6f;
}

.cls-3 {
    fill: #87add7;
}

.cls-4 {
    fill: #c2a3b4;
}

.cls-5 {
    fill: #dabf78;
}

.cls-6 {
    fill: #ccc97a;
}

.cls-7 {
    fill: #000;
}

/* extra */
.full-screen-img {
    width: 100vw; /* 100% of the viewport width */
    height: 100vh; /* 100% of the viewport height */
    object-fit: cover; /* Scale the image to cover the entire area */
}

/* Default style for the SVG */
.plus-icon {
    width: 24px;
    height: 24px;
    fill: black;
    transition: fill 0.3s ease; /* Smooth transition */
}

/* Hover effect: switch colors */
.plus-icon:hover {
    fill: white;
    background-color: black; /* Optional background for better contrast */
    border-radius: 50%; /* To match the circular design */
}