.fc_split_links {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.fc_split_links > .content {
flex-basis: 50%;
}
.fc_split_links > .the_links {
flex-basis: 40%;
display: flex;
gap: var(--gap-m);
flex-direction: column;
}
@media (max-width: 850px) {
.fc_split_links > .content,
.fc_split_links > .the_links {
flex-basis: 100%;
}
.fc_split_links {
gap: var(--gap-m);
}
}.fc_contact_cta {
position: relative;
isolation: isolate;
overflow: hidden;
}
.fc_contact_cta .background_container {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: absolute;
width: 60%;
height: 100%;
top: 0;
z-index: -1;
}
.fc_contact_cta.text_right .background_container {
left: 0;
}
.fc_contact_cta.text_left .background_container {
right: 0;
}
.fc_contact_cta:after {
content: '';
position: absolute;
bottom: -10vw;
right: 5%;
background: center / cover no-repeat var(--logomark);
width: clamp(200px, 25vw, 480px);
aspect-ratio: 1;
z-index: 1;
}
.fc_contact_cta.text_right:after {
right: initial;
left: 5%
}
.fc_contact_cta.text_right:before {
content: '';
background: linear-gradient(270deg, #001137 44.27%, rgba(21, 44, 106, 0.50) 57.92%, rgba(2, 15, 65, 0.00) 100%);
inset: 0;
position: absolute;
z-index: 1;
}
.fc_contact_cta.text_left:before {
content: '';
background: linear-gradient(90deg, #001137 44.27%, rgba(21, 44, 106, 0.50) 57.92%, rgba(2, 15, 65, 0.00) 100%);
inset: 0;
position: absolute;
z-index: 1;
}
.fc_contact_cta .wp_content {
position: relative;
z-index: 2;
}
.fc_contact_cta.text_right .wp_content {
float: right;
}
.fc_contact_cta.text_right .wp_content > * {
text-align: right;
}
@media (min-width: 800px) {
.fc_contact_cta .wp_content {
max-width: 65%;
}
}
@media (max-width: 600px) {
.fc_contact_cta:after {
content: none;
}
}.fc_box_links { }
.fc_box_links .the_links{
display: grid;
flex-wrap: wrap;
gap: clamp(15px, 4vw, 40px);
grid-template-columns: repeat(3, 1fr);
}
.fc_box_links .the_links.grid_2 {
grid-template-columns: repeat(2, 1fr);
}
.fc_box_links .the_links.grid_4 {
grid-template-columns: repeat(4, 1fr);
}
.fc_box_links .the_links .the_link {
flex: 1 1 0;
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: flex-start;
aspect-ratio: 1.27;
background: center / cover no-repeat;
position: relative;
isolation: isolate;
transition: .3s;
text-decoration: none;
padding: 40px;
}
.fc_box_links .the_links.grid_2 .the_link {
aspect-ratio: 1.54;
}
.the_link h4{
margin: 0;
font-weight: 800;
color: var(--white);
padding-right: 40px;
position: relative;
}
.the_link h4:after{
content: '';
position: absolute;
top: calc(50% - 17px);
left: 0;
background: calc(100% - 5px) / contain no-repeat var(--secondary-chevron);
width: 100%;
height: 34px;
transition: .3s;
}
.the_link:hover h4 {
color: var(--secondary);
}
.the_link:hover h4:after {
background: calc(100% - 0px) / contain no-repeat var(--secondary-chevron);
}
.fc_box_links .the_links .the_link:before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #001137 100%); z-index: -1;
}
@media (min-width: 750px) and (max-width: 1160px) {
.fc_box_links .the_links.grid_4 {
grid-template-columns: repeat(2, 1fr);
}
.fc_box_links .the_links.grid_3{
grid-template-columns: repeat(2, 1fr);
}
.fc_box_links .the_links.grid_3 .the_link:last-child{
grid-column: span 2;
aspect-ratio: 2.54;
}
}
@media (max-width: 750px) {
.fc_box_links .the_links.grid_2,
.fc_box_links .the_links.grid_3,
.fc_box_links .the_links.grid_4{
grid-template-columns: 1fr;
}
}