/*===================================== portfolio-main=================================== */
.portfolio{
    /* background: #ff4655; */
    background-image: url(../images/v9.jpg);
    background-position: center;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;

}
.portfolio-detail{
    padding:50px;
    margin: 50px auto;
}
.portfolio-heading{
    margin-top: 50px;
    font-size: 70px;
    font-weight: 900;
    font-family: sans-serif;
    text-transform: uppercase;
    color: #dfdfdf;
}
.portfolio-para{
    font-size: 20px;
    margin: 30px auto;
    color: #dfdfdf;
}
/* .p-Images{
    padding: 20px;
}
.p-Images img{
    padding-top: 50px;
} */



/* <!-- listed pages --> */



.listpages-main{
    background: #ece8e1;
}


.listpages{
   padding:100px 20px 5px 60px;
  
}
.listpages ul{
   display: flex;
   flex-wrap: wrap;
}
.listpages ul li a{
   font-size: 18px;
   text-decoration: none;
   font-family: sans-serif;
   margin-left: 25px;
   list-style: none;
   color: #505050;
   cursor: pointer;
    padding: 5px;
   transition:all .9s;
   font-weight: bold;
}
.listpages ul li a:hover{
    background-color: #505050;
    border-radius: 10px;
   color: #111111;
    text-decoration: underline;
}
.active{
    color: black !important;
}



/*=========================== portfolio-images ============================*/
.portfolio_img{
    background-color: rgb(248, 243, 237);
    padding: 60px 0;
}

.image {
    overflow: hidden;
    position: relative;
    border-radius: .5rem;  
    cursor: pointer;
}
.image img {
    width: 100%;
    transition: all .7s;
    cursor: pointer;
}
.image img:hover{
    transform: scale(1);
}
.port_img{
    margin-top: 50px;
}







.image .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 99.9%;
    background: rgba(254, 254, 254, .8);
    text-align: center;
    transform: scale(1.1);
    opacity: 0;
    cursor: pointer;
    overflow: hidden;
    transition:all 0.9s;
}

.image .content:hover {
    transform: scale(1);
    opacity: 1;
    
    
}

.image img:hover {
    transform: scale(1) !important;
}

.image .content h3 {
    font-size: 2rem;
    color: black;
}

.image .content p {
    font-size: 1rem;
    color: rgb(39, 39, 39);
    padding: 1rem;
}




/* ==================================================media query ==============================*/


@media screen and (max-width:990px) {
    .portfolio-heading{
        font-size: 60px;
    }
    .portfolio-para{
        font-size: 18px;
        margin: 20px auto;
    }
    .listpages ul{
        display: grid;
        grid-template-columns: 1fr;
    }
    .image img {
        margin-top: 20px;
    }

}



@media screen and (max-width:500px) {
    
    .portfolio-heading{
        font-size: 30px;
    }
    .portfolio-para{
        font-size: 12px;
        margin:auto;
    }
    
.listpages{
    padding:60px 0px 15px 5px;
   
 }
 .image img:hover{
    transform: scale(1);
}
   
}


body{
    background-color: rgb(248, 243, 237);
}

