.page_banner {
display: flex;
flex-direction: column;
position: relative;
align-items: center;
min-height: 26vw;
height: auto;
justify-content: flex-end;
}
.page_banner * {
position: relative;
z-index: 2;
}
.page_banner::after {
content: '';
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.page_banner .banner_title {
max-width: 700px;
width: 100%;
}.fc_small_banner {
position: relative;
}
.fc_small_banner * {
position: relative;
z-index: 2;
}
.fc_small_banner .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}.fc_boxed_links .links_container {
display: flex;
align-items: stretch;
flex-wrap: wrap;
gap: 20px;
}
.fc_boxed_links .links_container > a {
width: calc(33% - 11px);
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 20px;
padding: 25px;
box-sizing: border-box;
position: relative;
min-height: 24vw;
height: auto;
flex-grow: 1;
}
.fc_boxed_links .links_container > a .content {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
}
.fc_boxed_links .links_container > a:hover {
text-decoration: none;
opacity: 0.7;
}
.fc_boxed_links .links_container > a .content::after {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' fill='none'%3E%3Ccircle cx='17' cy='17' r='16' stroke='%23fff' stroke-width='2'/%3E%3Cpath fill='%23fff' d='M14.507 26 13 24.402 19.985 17 13 9.598 14.507 8 23 17l-8.493 9Z'/%3E%3C/svg%3E");
}
.fc_boxed_links .links_container > a .content .title {
font-weight: 700;
font-size: 20px;
line-height: 130%;
font-family: 'Open Sans', sans-serif;
letter-spacing: 0.15px;
color: #FFFFFF;
margin-bottom: 8px;
}
.fc_boxed_links .links_container > a .content .subtext {
font-weight: 500;
font-size: 16px;
line-height: 150%;
font-family: 'Open Sans', sans-serif;
letter-spacing: 0.5px;
color: #FFFFFF;
margin-top: 0;
}
.fc_boxed_links .links_container > a * {
position: relative;
z-index: 2;
}
.fc_boxed_links .links_container > a::after {
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
content: '';
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
@media (max-width: 1240px) {
.fc_boxed_links .links_container > a {
width: calc(50% - 10px);
min-height: 30vw;
}
}
@media (max-width: 850px) {
.fc_boxed_links .links_container > a {
width: 100%;
min-height: 45vw;
padding: 15px;
}
}