.fp-about-mocap {
padding: 48px 0;
background: #fff;
} .fp-about-mocap__link {
display: block;
background: linear-gradient(to right, #CCFF00, #b3e600, #CCFF00);
border-radius: 16px;
padding: 24px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 25px 50px -12px rgba(0, 32, 64, 0.25);
}
.fp-about-mocap__link:hover {
transform: scale(1.02);
box-shadow: 0 0 24px rgba(204, 255, 0, 0.5), 0 0 48px rgba(204, 255, 0, 0.3);
} .fp-about-mocap__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
} .fp-about-mocap__icon {
background: #002040;
padding: 16px;
border-radius: 12px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
box-shadow: 0 10px 15px -3px rgba(0, 32, 64, 0.1), 0 4px 6px -4px rgba(0, 32, 64, 0.1);
}
.fp-about-mocap__link:hover .fp-about-mocap__icon {
transform: scale(1.1);
} .fp-about-mocap__content {
flex: 1;
}
.fp-about-mocap__title {
font-size: 18px;
line-height: 1.5;
color: #002040;
font-weight: 700;
margin: 0 0 8px;
}
.fp-about-mocap__desc {
font-size: 14px;
line-height: 1.625;
color: #002040;
margin: 0;
} .fp-about-mocap__action {
display: flex;
align-items: center;
gap: 8px;
color: #002040;
font-weight: 700;
font-size: 14px;
flex-shrink: 0;
}
.fp-about-mocap__action svg {
width: 16px;
height: 16px;
flex-shrink: 0;
position: relative;
top: -1px;
transition: transform 0.3s ease;
}
.fp-about-mocap__link:hover .fp-about-mocap__action svg {
transform: translateX(4px);
} @media only screen and (max-width: 640px) {
.fp-about-mocap__title {
font-size: 20px;
}
.fp-about-mocap__desc {
font-size: 16px;
}
}