.All_Projects {
    cursor: pointer;
}

.All_Projects .nav {
    justify-content: center;
    width: 70%;
    margin: auto;
    margin: 20px auto;
}

.All_Projects .nav .nav-item {
    margin: 0px 10px;
    text-align: center;
}


.All_Projects .nav .nav-link {
    color: #202020;
    font-size: 16px;
    font-weight: 400;
    height: 100%;
    position: relative;
}

.All_Projects .nav .nav-link.active {
    background: none !important;
    color: #202020;
    font-weight: 600;
}

.All_Projects .nav .nav-link.active::after {
    content: "";
    position: absolute;
    width: 25px;
    border-bottom: 2px solid #202020;
    left: 50%;
    transform: translate(-50%);
    bottom: 5px;
}




.All_Projects .all_project_card {
    margin: 30px 0px;
}

.All_Projects .all_project_card .img_main_holder {
    position: relative;
}

.All_Projects .all_project_card .img_main_holder .img_holder {
    overflow: hidden;
    border-radius: 10px;
}

.All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.All_Projects .all_project_card:hover .img_main_holder .img_holder .inner_img {
    transform: scale(1.1);
    transition: 0.3s;
}

.All_Projects .all_project_card .img_main_holder .overlay {
    position: absolute;
    background: #271714 0% 0% no-repeat padding-box;
    bottom: 0;
    height: 10%;
    width: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
}

.All_Projects .all_project_card:hover .img_main_holder .overlay {
    transition: 0.3s;
    opacity: 0.2;
    height: 100%;
}


.All_Projects .all_project_card .bottom_div {
    margin-top: 10px;
}

.All_Projects .all_project_card .bottom_div .project_name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #202020;
}

.All_Projects .all_project_card .bottom_div .location {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #202020;
}

.All_Projects .all_project_card .bottom_div .sub_text_div {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;
}

.All_Projects .all_project_card .bottom_div .sub_text_div .subtext {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #202020;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 96%;
}

.All_Projects .all_project_card .bottom_div .icon_holder {}

.All_Projects .all_project_card .bottom_div .icon_holder .right_icon {}


@media (min-width:0px) and (max-width:575px) {

    .All_Projects .all_project_card {
        margin: 20px 0px;
    }

    .All_Projects .nav {
        width: 100%;
    }

    .All_Projects .nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .All_Projects .all_project_card .bottom_div .project_name {
        font-size: 13px;
    }

    .All_Projects .nav .nav-item {
        margin: 0px 6px;
    }

    .All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
        height: 280px;
    }

    .All_Projects .all_project_card .bottom_div .location {
        font-size: 12px;
    }
}


@media (min-width:576px) and (max-width:767.98px) {

    .All_Projects .nav {
        width: 100%;
    }

    .All_Projects .nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .All_Projects .all_project_card .bottom_div .project_name {
        font-size: 14px;
    }

    .All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
        height: 300px;
    }

    .All_Projects .all_project_card .bottom_div .location {
        font-size: 13px;
    }
}

@media (min-width:768px) and (max-width:991px) {

    .All_Projects .nav {
        width: 100%;
    }

    .All_Projects .nav .nav-link {
        font-size: 14px;
    }

    .All_Projects .all_project_card .bottom_div .project_name {
        font-size: 15px;
    }

    .All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
        height: 350px;
    }

    .All_Projects .all_project_card .bottom_div .location {
        font-size: 13px;
    }
}

@media (min-width:992px) and (max-width:1199px) {

    .All_Projects .nav .nav-link {
        font-size: 15px;
    }

    .All_Projects .all_project_card .bottom_div .project_name {
        font-size: 16px;
    }

    .All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
        height: 420px;
    }

    .All_Projects .all_project_card .bottom_div .location {
        font-size: 13px;
    }
}


@media (min-width:1200px) and (max-width:1399px) {
    .All_Projects .all_project_card .bottom_div .project_name {
        font-size: 17px;
    }

    .All_Projects .all_project_card .img_main_holder .img_holder .inner_img {
        height: 450px;
    }

    .All_Projects .all_project_card .bottom_div .location {
        font-size: 14px;
    }
}