#projects-page-main-content{
    padding: 3rem 0;
    padding-top: 0rem;
    position: relative;
    width: 100%;
    background: #fff;
    background-image: linear-gradient(to bottom, #0818f7 0% 25%, #f0eff5 25% 100%);
    transform: translateY(50%);
    opacity: 0;
    animation: animateProjectPage 1.5s linear;
    animation-fill-mode: forwards;
    transition: all 5s linear;
}

@keyframes animateProjectPage{
    from{
        transform: translateY(50%);
        opacity: 0;
    }
    to{
        transform: translateY(0%);
        opacity: 1;
    }
}

#projects-page-main-content>div{
    position: relative;
    width: 85%;
    margin: 3rem auto;
    padding: 1rem;
}

#projects-page-main-content>div h1{
    font-family: "Saira Condensed", sans-serif;
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1.5rem;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
}
#projects-page-main-content>div p{
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    margin: 1rem 0;
}
.project-content-sections{
    position: relative;
    width: 88%;
    margin: 4rem auto;
    margin-top: 2rem;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-direction: column;
    border-radius: 15px;
}

.project-content-section{
    position: relative;
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: var(--pure-white);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
    border-radius: 15px;
}

.project-content-section>h2{
    position: relative;
    font-family: "Saira Condensed", sans-serif;
    max-width: 100%;
    line-height: 1.2;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    color: var(--page-bgcolor);
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.project-outer-cont{
    position: relative;
    width: 100%;
    transition: all 1s linear;
}

.project-view-control-wrapper{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.project-view-control-wrapper>span{
    font-size: 11px;
    color: var(--page-bgcolor);
    text-transform: capitalize;
    cursor: pointer;
}
.project-view-control-wrapper>span>i{
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--page-bgcolor);
}
.project-view-control-wrapper>.project-show-icon{
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--page-bgcolor);
    cursor: pointer;
    transition: all 0.4s ease-in;
}


.project-view-control-wrapper>.project-show-icon.rotate{
    transform: rotate(-180deg);
}
.project-content-section.firstProject .project-view-control-wrapper>.project-show-icon.rotateDefault{
    transform: rotate(-180deg);
}



.projects-display-cont{
    position: relative;
    width: 100%;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 500px));
    grid-template-rows: auto;
    gap: 0.7rem;
    place-content: center; */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.project-content-section:not(.firstProject) .projects-display-cont{
    display: none;
}

.project{
    position: relative;
    width: 48%;
    min-height: 300px;
    background-color: var(--pure-white);
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s linear;
}
.project .project-image-wrapper{
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 0 0 10px 10px;
    border-radius: 10px;
}
.project .project-image-wrapper .project-image{
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.project .project-desc{
    font-size: 1.2rem;
    text-transform: capitalize;
    color: var(--gray-color1);
    line-height: 1.2;
    text-align: justify;
    padding: 2rem 0.7rem;
    background-color: #f8f8f8;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 720px){
    .project-content-sections{
        position: relative;
        width: 95%;
        margin: 4rem auto;
        margin-top: 2rem;
        padding: 2rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4rem;
        flex-direction: column;
        border-radius: 15px;
    }
}

@media (max-width: 700px){
    .projects-display-cont{
        /* position: relative;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.7rem;
        flex-wrap: wrap; */
        flex-direction: column;
    }
    
    
    .project{
        /* position: relative;
        width: 48%;
        min-height: 300px;
        background-color: var(--pure-white);
        border: 1px solid #ddd;
        border-radius: 0 0 10px 10px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 1s linear; */
        width: 100%;
    }


}