.outreach_single_page_parent_container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.outreach_single_page {
    width: 100%;

    .outreach_header {
        background-image: url(assets/images/sub_banner-bg.png);
        background-size: cover;
        padding-top: 30px;
        padding-bottom: 30px;

        .entry_header {
            max-width: 1127px;
            margin-left: auto;
            margin-right: auto;
        }

        .entry_title {
            font-weight: 700;
            font-size: 30px;
            color: white;
            margin-bottom: 0 !important;
        }
    }

    .outreach_single_page_container_bg {
        background-image: url(assets/images/two-side-bg.png);
        background-position: top;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    .outreach_single_page_container {
        max-width: 1127px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
        margin-bottom: 40px;
        padding-left: 60px;
        padding-right: 60px;

        .outreach_date_time_location_container {
            display: flex;
            flex-direction: row;
            gap: 60px;
            padding: 15px 20px 15px 60px;
            border-radius: 10px;
            background-color: #003D7C;
            color: white;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 30px;

            .outreach_date_container,
            .outreach_time_container,
            .outreach_location_container {
                position: relative;
            }

            .outreach_date_container::before {
                content: '';
                background-image: url(assets/images/outreach_date.png);
                width: 31px;
                height: 31px;
                background-size: cover;
                position: absolute;
                top: -3px;
                left: -40px;
            }

            .outreach_time_container::before {
                content: '';
                background-image: url(assets/images/outreach_time.png);
                width: 31px;
                height: 31px;
                background-size: cover;
                position: absolute;
                top: -3px;
                left: -40px;
            }

            .outreach_location_container::before {
                content: '';
                background-image: url(assets/images/outreach_location.png);
                width: 31px;
                height: 31px;
                background-size: cover;
                position: absolute;
                top: -3px;
                left: -40px;
            }
        }

        .repeater_item {
            margin-bottom: 10px;
            position: relative;

            .repeater_title {
                color: #013D7C;
                font-size: 21px;
                font-weight: 500;
            }
        }

        .repeater_item::before {
            position: absolute;
            content: "";
            height: 1px;
            width: 90%;
            bottom: -15px;
            left: 0;
            background-color: #9999994D;
        }

        .repeater_item:last-child::before {
            content: none;
        }

        .outreach_button_container {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }

        .outreach_button,
        .outreach_button_2,
        .outreach_button_3 {
            height: 45px;
            justify-content: center;
            align-items: center;
            padding: 11px 32px 11px 32px;
            text-decoration: none;
            border: 2px solid #EF7C01;
            border-radius: 8px;
            color: #EF7C01;
            font-weight: 500;
            font-size: 14px;
        }

        .outreach_button:hover,
        .outreach_button_2:hover,
        .outreach_button_3:hover {
            color: white;
            background-color: #EF7C01;
        }
    }
}

@media screen and (max-width: 991px) {
    .outreach_single_page{
        .entry_header{
            padding-right: 20px;
            padding-left: 20px;
        }
    }

    .outreach_single_page_container{
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}

@media screen and (max-width: 767px) {
    .outreach_single_page_container{
        .outreach_date_time_location_container{
            gap: 20px !important;
            flex-direction: column !important;
        }
    }
}