.gen__featured_project_container_fluid  {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
}

.gen__featured_project_container_fluid_overlay {
    padding: 100px;
    background-color: rgb(231, 230, 226, .85);
}

.gen__featured_project_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
}


.gen__featured_project_link a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}


.gen__featured_project_image {
    width: 100%;
    max-width: 1200px;
    max-height: 500px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gen__featured_project_image img {
    opacity: 0;
}

.gen__featured_project_text {
  background-size: 200% 100% !important;
  background-position: right !important;
  transition: var(--FC-default-transition);
  padding: 15px 25px 15px 25px;
  position: fixed;
	display: flex;
	align-items: center;
	gap: 10px;
}

.gen__featured_project_link:hover .gen__featured_project_text {
  background-position: left !important;
  transition: var(--FC-default-transition);
}


.gen__featured_project_text h4, .gen__featured_project_text p {
    color: #FFF;
    margin-bottom: 0;
}

.gen__featured_project_preview {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}





@media screen and (max-width: 991px) {

    .gen__featured_project_image {
        max-height: 325px;
    }

}


@media screen and (max-width: 767px) {

    .gen__featured_project_container_fluid_overlay {
        padding: 0;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .gen__featured_project_text {
        width: 100%;
        padding: 15px;
    }

}



