@import url('/static/Css/navbars.css');
@import url('/static/Css/footer.css');
@import url('/static/Fonts/font-awesome-4.7.0/css/font-awesome.min.css');

* {
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ips-project-whiteSpace {
    height: 13vw;
}

.clr-orange {
    color: orange;
}

/* ------------------------------------------------------------------------------------------ */

.ips-projects-header {
    display: flex;
    flex-wrap: wrap;
    padding: 3vw 6vw;
    gap: 1vw;
}

.ips-projects-header h1 {
    font-size: 2.5vw;
    width: 100%;
    text-align: center;
    color: #5B5B5B;
}

.ips-projects-header h2 {
    font-size: 1.3vw;
    color: #5B5B5B;
    width: 100%;
    text-align: center;
}

.ips-projects-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ECECEC;
    padding: 3vw;
}

.ips-projects-filtering {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6vw;
}

.ips-projects-filtering form {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.ips-projects-filtering label {
    padding: 1vw;
    font-size: 1.3vw;
    font-weight: 600;
    background-color: white;
    color: #5B5B5B;
    cursor: pointer;
    margin: 0 2vw;
}

.ips-projects-filtering span {
    width: fit-content;
}

.selected-filter-active {
    border: 2px solid cornflowerblue;
}

.ips-projects-filtering input {
    position: absolute;
    visibility: hidden;
}

.ips-projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6vw;
    width: 80%;
}

.ips-project-img img {
    width: 20vw;
    height: 20vw;
}

.ips-project-box {
    width: 20vw;
    opacity: 0;
    transition: 0.5s;
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

.ips-project-title {
    font-size: 1.6vw;
    font-weight: 600;
    color: #5B5B5B;
    width: 100%;
}

.ips-project-info {
    font-size: 1.2vw;
    color: #5B5B5B;
    font-weight: 600;
    width: 100%;
}

.ips-project-address {
    font-size: 1.2vw;
    font-weight: 600;
    color: #5B5B5B;
    width: 100%;
}

.ips-projects-go-details {
    font-size: 1.2vw;
    color: #363636;
    font-weight: 600;
    padding: 0.5vw 2vw;
    background-color: white;
    border-radius: 1vw;
    border: 2px solid #FF7300;
}

.ips-projects-go-details:hover,
.ips-projects-go-details:active {
    transition: 0.3s;
    transform: translate(0.5vw);
    background-color: #FF7300;
    color: white;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.step-links a {
    padding: 1vw;
    font-size: 1.3vw;
    background-color: white;
    color: #5B5B5B;
    cursor: pointer;
}

.pagination-active-page {
    border: 2px solid cornflowerblue;
}

.paginator-nextBtn {
    border-radius: 0 2vw 2vw 0;
    margin-left: 2vw;
    cursor: pointer;
}

.paginator-previousBtn {
    border-radius: 2VW 0 0 2VW;
    margin-right: 2vw;
    cursor: pointer;
}


/*----------------------------( search styles )---------------------------------*/

.searched-text {
    width: fit-content;
    background-color: #FF7300;
    margin: 0 auto 3vw;
    padding: 1vw;
    border-radius: 1vw;
}

.searched-text p {
    font-size: 2vw;
    text-align: center;
    width: 100%;
    color: white;
}

.searched-text-p {
    margin: 2vw 0;
    padding: 0.5vw 0;
    text-align: center;
    font-size: 2.5vw !important;
    color: #FF7300 !important;
    background-color: white;
    border-radius: 1vw;
}

.nothing-is-founded p {
    font-size: 2vw;
    color: #FF7300;
}

.nothing-is-founded i {
    font-size: 5vw;
    width: 100%;
    text-align: center;
    color: #777777;
    margin: 0 0 2vw;
}

.projectChangeSelectedTabLoading {
    position: fixed;
    width: 100%;
    height: 100%;
    /*display: flex;*/
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
}












@media (max-width: 1024px) {
    .ips-project-whiteSpace {
        height: 16vw;
    }

    .ips-projects-header {
        margin: 9vw 0;
    }

    .ips-projects-header h1 {
        font-size: 3.5vw;
        color: #5B5B5B;
    }
    
    .ips-projects-header h2 {
        font-size: 2.5vw;
        color: #5B5B5B;
    }

    .ips-projects-container {
        gap: 2vw;
        width: 100%;
    }
    
    .ips-project-img img {
        width: 30vw;
        height: 30vw;
    }
    
    .ips-project-box {
        width: 30vw;
        gap: 3vw;
        margin-bottom: 6vw;
        text-align: center;
    }
    
    .ips-project-title {
        font-size: 2.4vw;
    }
    
    .ips-project-info {
        font-size: 2vw;
        margin: 2vw 0;
    }
    
    .ips-project-address {
        font-size: 2vw;
    }

    .ips-projects-go-details {
        font-size: 1.8vw;
        padding: 1vw 3vw;
        border-radius: 1.5vw;
        margin: 0 auto;
    }

    .ips-projects-filtering label {
        padding: 1.5vw;
        font-size: 2vw;
    }

    .ips-projects-filtering form {
        gap: 3vw;
    }

    .step-links a {
        padding: 1.5vw;
        font-size: 2vw;
    }

    .paginator-nextBtn {
        border-radius: 0 3vw 3vw 0;
    }

    .paginator-previousBtn {
        border-radius: 3VW 0 0 3VW;
    }

}













@media (max-width: 767px) {
    .ips-projects-header h1 {
        font-size: 5.5vw;
    }
    
    .ips-projects-header h2 {
        font-size: 3.5vw;
    }

    .ips-projects-container {
        gap: 16vw;
        width: 100%;
    }
    
    .ips-project-img img {
        width: 90%;
        height: 90%;
    }
    
    .ips-project-box {
        width: 100%;
        gap: 4vw;
    }
    
    .ips-project-title {
        font-size: 6vw;
    }

    .ips-project-info {
        font-size: 3vw;
        margin: 4vw 0;
    }
    
    .ips-project-address {
        font-size: 4vw;
    }

    .ips-projects-go-details {
        font-size: 4vw;
        padding: 2vw 6vw;
        border-radius: 3vw;
        margin: 0 auto;
    }

    .ips-projects-filtering {
        margin: 12vw 0;
    }

    .ips-projects-filtering label {
        padding: 2vw;
        font-size: 3vw;
    }

    .ips-projects-filtering form {
        gap: 4vw;
    }

    .pagination {
        padding: 4vw;
    }

    .step-links a {
        padding: 1.5vw 3vw;
        font-size: 5vw;
    }

    .paginator-nextBtn {
        border-radius: 0 5vw 5vw 0;
    }

    .paginator-previousBtn {
        border-radius: 5VW 0 0 5VW;
    }

    /*---------------------------( search styles )----------------------------*/
    .searched-text {
        margin: 0 auto 6vw;
        padding: 3vw;
        border-radius: 2vw;
    }

    .searched-text p {
        font-size: 4vw;
    }

    .searched-text-p {
        margin: 4vw 0;
        padding: 1.5vw 0;
        font-size: 5.5vw !important;
        border-radius: 2vw;
    }

    .nothing-is-founded p {
        font-size: 4vw;
    }

    .nothing-is-founded i {
        font-size: 9vw;
        color: #777777;
        margin: 0 0 4vw;
    }

}