@import url('/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css');
@import url('/static/js_library/aos.css');
@import url('/static/css/navbars.css');
@import url('/static/css/footer.css');


* {
    padding: 0;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.portfolioWhiteSpace {
    height: 6em;
}

/* color: #084d4d #1da59a; */

/* ---------------------------------------------------------------------------------------- */


.portfolioContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 2em;
}

.shopSearchBox {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 80%;
    gap: 1em;
    margin-top: 12em;
}

.shopSearchBox input {
    font-size: 1.3em;
    padding: 0.3em 0.7em;
    width: 16em;
    border: none;
    border-bottom: 2px solid #1da59a;
    outline: none;
}

.shopSearchBox input::placeholder {
    font-size: 0.8em;
    font-weight: 600;
}

.shopSearchBox button {
    font-size: 1.3em;
    color: #1da59a;
    padding: 0.3em 0.7em;
    background: none;
    border: 2px solid #1da59a;
    border-radius: 10%;
    cursor: pointer;
    transition: 0.3s;
}

.shopSearchBox button:hover {
    opacity: 60%;
}

.shopSearchBox button:active {
    transform: translate(-9px);
}

.searchText {
    font-size: 1.3em;
    font-weight: 600;
    color: #e83458;
    padding: 0.3em 0.5em;
    border-bottom: 2px dotted crimson;
}

.portfolioTitle {
    display: flex;
    flex-direction: column;
    gap: 2em;
    text-align: center;
    padding: 1em 3em;
    width: 90%;
    border-radius: 10%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.portfolioTitle h1 {
    font-size: 2em;
    font-weight: 600;
    color: #8dd3d3;
}

.portfolioTitle h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: #1da59a;
}

.portfolioAllBoxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2em;
    gap: 3em;
    row-gap: 9em;
}

.portfolioBox {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    width: calc(100% / 4);
    padding: 0.5em;
    background-color: #eeeeee;
}

.portfolioBox img {
    width: 100%;
}

.portfolioBox p {
    font-size: 1.1em;
    font-weight: 600;
    padding: 1em;
    color: rgb(46, 46, 46);
    background-color: #d7d7d7;
    height: 2.5em;
}

.portfolioBox span {
    font-size: 1.3em;
    color: #084d4d;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 0.5em 0.5em;
    background-color: #dcdcdc;
    width: 90%;
    text-align: center;
}

.portfolioBox a {
    text-decoration: none;
    background-color: #084d4d;
    width: fit-content;
    color: white;
    font-size: 1.5em;
    padding: 0.2em 1em;
    border-radius: 10%;
    transition: 0.3s;
    margin-top: -2em;
    margin-left: -6em;
}

.portfolioBox a:hover {
    background-color: #1da59a;
    color: #084d4d;
}

.portfolioBox a:active {
    transform: translate(9px);
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.step-links a {
    padding: 0.3em 0.7em;
    font-size: 1.3em;
    background-color: #084d4d;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.pagination-active-page {
    border: 3px solid #8dd3d3;
    color: #8dd3d3 !important;
}

.paginator-nextBtn {
    border-radius: 0 1em 1em 0;
    margin-left: 1em;
    cursor: pointer;
}

.paginator-previousBtn {
    border-radius: 1em 0 0 1em;
    margin-right: 1em;
    cursor: pointer;
}









@media only screen and (max-width: 1023.98px) {
    .portfolioContainer {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .portfolioTitle {
        gap: 2em;
        align-items: center;
    }
    
    .portfolioTitle h1 {
        font-size: 2em;
    }
    
    .portfolioTitle h4 {
        font-size: 1.1em;
        width: 80%;
    }
    
    .portfolioBox {
        gap: 1em;
        width: calc(100% / 2.5);
    }

    
    .portfolioBox p {
        font-size: 1em;
        line-height: 1.5em;
    }
    
    .portfolioBox a {
        font-size: 1.3em;
        margin-left: -3.5em;
    }
}













@media only screen and (max-width: 767.98px) {

    .portfolioContainer {
        padding: 1em;

    }

    .portfolioTitle {
        padding: 1em 0;
    }

    .portfolioTitle h1 {
        font-size: 1.5em;
    }
    
    .portfolioTitle h4 {
        font-size: 0.9em;
        width: 90%;
    }
    
    .portfolioAllBoxes {
        row-gap: 6em;
        padding: 0;
    }

    .portfolioBox {
        gap: 1em;
        width: 100%;
    }
    
    .portfolioBox p {
        font-size: 1em;
        line-height: 1.5em;
        padding: 0.5em;
        text-align: center;
    }
    
    .portfolioBox a {
        font-size: 1.1em;
        margin-left: -4em;
        margin-top: -2em;
    }

    .pagination {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .step-links a {
        padding: 0.3em 0.5em;
        font-size: 1.1em;
        background-color: #084d4d;
        color: white;
        cursor: pointer;
        text-decoration: none;
    }

    .pagination-active-page {
        border: 3px solid #8dd3d3;
        color: #8dd3d3 !important;
    }

    .paginator-nextBtn {
        border-radius: 0 1em 1em 0;
        margin-left: 0.5em;
        cursor: pointer;
    }

    .paginator-previousBtn {
        border-radius: 1em 0 0 1em;
        margin-right: 0.5em;
        cursor: pointer;
    }

    .shopSearchBox {
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 9em;
    }

    .shopSearchBox input {
        font-size: 1em;
        padding: 0.3em 0.5em;
        width: 11em;
        border: none;
        border-bottom: 2px solid #1da59a;
        outline: none;
    }

    .shopSearchBox input::placeholder {
        font-size: 0.8em;
        font-weight: 600;
    }

    .shopSearchBox button {
        font-size: 1em;
        color: #1da59a;
        padding: 0.1em 0.3em;
        background: none;
        border: 2px solid #1da59a;
        border-radius: 10%;
        cursor: pointer;
        transition: 0.3s;
    }
}