.fc_banner {
padding-block: var(--gap-xl);
background: center / cover no-repeat;
display: flex;
gap: var(--gap-l);
justify-content: space-between;
align-items: center;
position: relative;
isolation: isolate;
box-sizing: border-box;
}
.fc_banner.small_banner {
min-height: 40vw;
}
.fc_banner.default_banner {
justify-content: center;
}
.fc_banner:after {
content: '';
position: absolute;
background: #000;
opacity: 0.4;
inset: 0;
z-index: -1;
}
.fc_banner.larger_banner.default_banner {
min-height: calc(100vh - 79px);
}
.fc_banner.larger_banner:after {
opacity: 0.6;
}
@media (max-width: 1000px) {
.fc_banner.two_column_banner {
flex-direction: column;
}
.fc_banner.two_column_banner .left_content {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
}
}.the_usps {
display: grid;
grid-auto-flow: column;
}
.the_usps .usp {
display:flex;
padding: 50px var(--gap-l);
text-align: center;
margin: 0;
background: var(--d-green);
border-right: 1px solid white;
justify-content: center;
align-items: flex-start;
}
.the_usps .usp:nth-child(2n){
background: var(--m-green);
}
.the_usps .usp:nth-child(3n){
background: var(--l-green);
}
.the_usps .usp:nth-child(4n){
background: var(--xl-green);
}
.the_usps .usp:last-child{
border: none;
}
@media (max-width: 1024px) {
.the_usps {
grid-template-columns: 1fr;
}
.the_usps .usp {
grid-area: 1 / 1;
text-align: center;
opacity: 0;
transition: .3s;
align-items: center;
border: none;
}
.the_usps .usp.active {
opacity: 1;
}
}.fc_project_showcase.grid_2 .the_links {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr; gap: var(--gap-xl);
}
.fc_project_showcase.grid_4 .the_links {
grid-template-columns: repeat(4, 1fr);
gap: var(--gap-s);
}
.fc_project_showcase .the_links .the_link {
color: var(--black);
text-decoration: none;
display: flex;
flex-direction: column;
}   .fc_project_showcase .the_links .the_link .link_image {
position: relative;
isolation: isolate;
}
.fc_project_showcase .the_links .the_link .link_image:after {
content: '';
background: var(--l-green);
position: absolute;
inset: 0;
z-index: -1;
opacity: 0;
transition: 0.3s;
}
.fc_project_showcase .the_links .the_link:hover .link_image:after {
opacity: 0.9;
}
.fc_project_showcase .the_links .the_link .image_content {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
color: white;
opacity: 0;
transition: 0.3s;
}
.fc_project_showcase .the_links .the_link .image_content .title-small {
font-weight: 700;
}
.fc_project_showcase .the_links .the_link:hover .image_content {
opacity: 1;
}
.fc_project_showcase .the_links .the_link h4 {
color: var(--m-green);
text-decoration: none;
}
.fc_project_showcase .the_links .the_link .link_image {
background: center / cover no-repeat;
aspect-ratio: 1.6;
}
.fc_project_showcase .the_links .the_link .the_content {
padding: var(--gap-m);
background: white;
flex-grow: 1;
}
@media(max-width: 600px){
.fc_project_showcase.grid_2 .the_links, .fc_project_showcase.grid_3 .the_links, .fc_project_showcase.grid_4 .the_links {
grid-template-columns: 1fr;
}
}
@media(max-width: 1000px){
.fc_project_showcase.grid_4 .the_links {
grid-template-columns: repeat(2, 1fr);
}
}