.bc-c-banner__cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;

    @media (max-width: 768px) {
        flex-direction: column;
    }

    i {
        margin-right: 8px;
    }
}
 
.bc-c-content-service-view-venues {
    position: relative;
    z-index: 1;
    margin-bottom: 150px;
    padding: 180px 0;
}

.bc-c-content-service-view-venues.angled-section-wrapper {
    position: relative;
    overflow: visible;
}

.bc-c-content-service-view-venues.angled-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 15%, 100% 95%, 0% 100%);
    pointer-events: none;
}

@media(max-width: 768px) {
    .bc-c-content-service-view-venues {
        padding: 2.5rem 0;
        margin-bottom: 1.25rem;
    }

    .bc-c-content-service-view-venues.angled-bg {
        clip-path: none;
    }
}

.bc-c-content-service-view-venues.angled-section-content {
    position: relative;
    z-index: 2;
}


.bc-c-content-service-view-venues__title {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5625rem;
}

.bc-c-content-service-view-venues h2 {
    color: #fff;
    text-align: center;
    font-size: 3.125rem;
    font-weight: 900;
    line-height: 4.125rem;
    letter-spacing: 0.1375rem;
    font-family: Avenir-Black,sans-serif;
}

@media (max-width: 768px) {
    .bc-c-content-service-view-venues h2 {
        font-size: 2.1875rem;
        line-height: normal;
    }
}

.bc-c-content-service-view-venues__cta {
    text-align: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.bc-c-content-service-view-venues__thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    z-index: 2;
    margin-top: 2.5rem;
    position: absolute;
    width: 100%;
}

@media (max-width: 768px) {
    .bc-c-content-service-view-venues__thumbnails {
        grid-template-columns: 1fr;
        position: relative;
    }
}

.bc-c-content-service-view-venues__thumbnail img {
    width: 100%;
    max-width: 100%;
    height: 218px;
    object-fit: cover;
}

@media(max-width: 768px) {
    .bc-c-content-service-view-venues__thumbnail img {
        height: 250px;
    }
}

.bc-c-content-service-view-venues__overlay {
    background-color: rgba(0,0,0,.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(0 0, 100% 15%, 100% 95%, 0% 100%);
}

@media(max-width: 768px) {
    .bc-c-content-service-view-venues__overlay {
        clip-path: none;
    }
}