.anniversary_page {
    position: relative;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.anniversary_page .flex-columns {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
    align-items: center;
}
.anniversary_page .background_image {
    position: absolute;
    object-fit: cover;
    inset: 0;
    opacity: .1;
    height: 100%;
    width: 100%; 
}
.overlay_wrapper {
    position: absolute;
    inset: 0;
    background: white;
    opacity: .5;
    z-index: 1;
}
.foreground_image {
    text-align: center;
}
.foreground_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.anniversary_page .anniversary-title {
    font-size: 76px;
    line-height: 1.2;
    font-weight: 400;
    color: #f47e20;
}
.description {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
}
.anniversary_page .links {
    display: flex;
}

@media (max-width: 991px) {
    .anniversary_page .flex-columns { 
        grid-template-columns: 1fr;
        gap: 0;
    }
    .foreground_image img {
        width: 60%;
    }
}
@media (max-width: 768px) {
    .anniversary_page .anniversary-title {
        font-size: 26px;
    }
    .background_image {
        top: 0;
    }
}


 
