.project_single_page_parent_container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.project_single_page {
    width: 100%;

    .project_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;
        }
    }

    .entry_content_parent_container{
        background-color: #FEDDB8;
        padding-top: 42px;
        padding-bottom: 42px;

        .entry_content_container{
            max-width: 1127px;
            margin-left: auto;
            margin-right: auto;
        }

        .entry_content{
            padding-left: 60px;
            padding-right: 60px;
            text-align: center;
            color: #333333;
            font-weight: 500;
            line-height: 30px;
            font-size: 18px;
        }

        .entry_content p{
            margin-bottom: 0 !important;
        }
    }

    .project_single_page_container_bg {
        background-image: url(assets/images/two-side-bg.png);
        background-position: top;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    .project_single_page_container {
        max-width: 1127px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        margin-bottom: 40px;
        padding-left: 60px;
        padding-right: 60px;

        .project_content {
            padding-top: 30px;
        }

        .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;
        }

        .project_button_container {
            display: flex;
            flex-direction: row;
            gap: 20px;
        }

        .project_button,
        .project_button_2,
        .project_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;
        }

        .project_button:hover,
        .project_button_2:hover,
        .project_button_3:hover {
            color: white;
            background-color: #EF7C01;
        }
    }
}

@media screen and (max-width: 991px) {
    .project_single_page{
        .entry_header{
            padding-right: 20px;
            padding-left: 20px;
        }
    }

    .project_single_page_container,
    .entry_content{
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
}