// Event Facilities Section 
.event-facilities-section {
    &.facility-bg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        // min-height: 500px;
        position: relative;
        z-index: 1;
        padding: 108px 0px 120px;
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(4, 7, 46, 0.8);
            z-index: -2;
        }
    }
    .facility-single-item {
        .content {
            .title {
                font-size: 40px;
                line-height: 55px;
                font-family: var(--heading-font);
                font-weight: 600;
                color: #fff;
                margin-bottom: 15px;
                &.style-01 {
                    font-size: 24px;
                    line-height: 38px;
                }
            }
            p {
                font-size: 18px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 500;
                color: #CCCCCC;
                margin-bottom: 30px;
            }
        }
        .icon {
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
            background: #fff;
            border-radius: 50%;
            font-size: 50px;
            color: var(--main-color-one);
            position: relative;
            i {
                &::after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='%23CCCCCCFF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='7' stroke-linecap='square'/%3e%3c/svg%3e");
                    border-radius: 100px;
                    top: -10px;
                    left: 10px;
                    right: 0;
                    bottom: 0;
                    z-index: -1;
                }
            }
        }
    }
}