.project_type_section {
    background-image: url(../images/project-type-bg-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 178px;
    padding-bottom: 160px;
}

.project_type_section.workplace.hovered {
    background-image: url(../images/workplace.jpg);
}

.project_type_section.educational.hovered {
    background-image: url(../images/educational.png);
}

.project_type_section.residential.hovered {
    background-image: url(../images/banner_slide_1.png);
}

.project_type_section.healthcare.hovered {
    background-image: url(../images/healthcare.png);
}

.project_type_section.conservation.hovered {
    background-image: url(../images/conservation.png);
}

.project_type_overlay {
    content: "";
    background: url(../images/project-type-bg-image-overlay.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.project_type_wrapper {
    position: relative;
}

.project_type_heading h2 {
    display: inline-block;
    font-size: 45px;
    line-height: 45px;
    color: #FFFFFF;
    text-decoration: underline;
}

.project_type_list {
    margin-top: 80px;
}

.project_type_menu li {
    margin-bottom: 40px;
}

.project_type_menu li:last-child {
    margin-bottom: 0;
}

.project_type_menu li a {
    display: inline-block;
    font-size: 45px;
    line-height: 45px;
    color: #FFFFFF;
    text-transform: capitalize;
    transition: all .3s ease;
    position: relative;
}

.project_type_menu li a::before {
    content: "";
    width: 0;
    height: 3px;
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s ease;
}

.project_type_menu li a:hover::before {
    width: 100%;
}

@media (max-width: 1400px) {
    .project_type_section {
        padding: 150px 0;
    }
    .project_type_heading h2,
    .project_type_menu li a {
        font-size: 40px;
        line-height: 40px;
    }
    .project_type_list {
        margin-top: 70px;
    }
    .project_type_menu li {
        margin-bottom: 30px;
    }
}

@media (max-width: 1199px) {
    .project_type_section {
        padding: 130px 0;
    }
    .project_type_heading h2,
    .project_type_menu li a {
        font-size: 35px;
        line-height: 35px;
    }
    .project_type_list {
        margin-top: 60px;
    }
}

@media (max-width: 991px) {
    .project_type_section {
        padding: 110px 0;
    }
    .project_type_heading h2, 
    .project_type_menu li a {
        font-size: 30px;
        line-height: 30px;
    }
    .project_type_list {
        margin-top: 50px;
    }
    .project_type_menu li {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .project_type_section {
        padding: 70px 0;
    }
    .project_type_heading h2, 
    .project_type_menu li a {
        font-size: 25px;
        line-height: 25px;
    }
    .project_type_list {
        margin-top: 40px;
    }
    .project_type_menu li {
        margin-bottom: 20px;
    }
}