
/* ! ============================================================== FONTS ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tapestry&display=swap');



/* ! ============================================================== FONTS ==================================================================== */
/* ! ============================================================ PAGE CSS =================================================================== */
:root       
 {
    --bg-black-900: #f2f2fc;
    --bg-black-100:  #fdf9ff;
    --bg-black-50: #e8dfec;
    --text-black-900: #302e4d;
    --text-black-700: #504e70;
 }

*{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;

}

html{
    scroll-behavior: smooth;
}

body.dark{
    --bg-black-50:#393939;
    --bg-black-100:#222222;
    --bg-black-900:#151515;
    --text-black-700: #e9e9e9;
    --text-black-900: #ffffff;
}
body
{
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins' sans-serif;
}

::before,::after{
    box-sizing: border-box;
}
/* ! ============================================================ PAGE CSS =================================================================== */

/* ! =========================================================== COMMON CSS ================================================================== */
.padd-15{
    padding-left: 15px;
    padding-right: 15px;
}

.shadow-dark{
    box-shadow: 0 0 20px rgba(48, 76, 77, 0.15);
}

.hidden{
    display: none !important;
}

.section{
    background: var(--bg-black-900);
}

.container{
    max-width: 94%;
    width: 100%;
    margin: auto;
}

.section .container{
    padding-top: 60px;
    padding-bottom: 70px;
}

.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
 
}

.section-title h2{
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}

.section-title h2::before{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}

.section-title h2::after{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

.btn{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border: none;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    background-color: var(--skin-color);
    transition: all 0.3s e;
}

.btn:hover{
    transform: scale(1.05);
}
/* ! =========================================================== COMMON CSS ================================================================== */
/*! ============================================================== SEARCH STARTS =============================================================  */

#SearchBar{
    border: 3px var(--skin-color);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
 
#SearchBar label{
    height: 55px;
    width: 65px;
    background-color: white;
    filter: drop-shadow(1px 3px 7px #fff);
    border-radius: 20px;
    /* border: 1px solid; */
}
#SearchBar #SearchIcon{
    font-size: 35px;
    font-weight: 900;
    line-height: 55px;
    margin-left: 13px;
    color: var(--skin-color);
}
#SearchBar input{
    width: 700px;
    height: 55px;
    border-radius: 10px;
    outline: none;
    border: none;
    font-size: 24px;
    text-align: center;
    font-family: 'Poppins' sans-serif;
    filter: drop-shadow(1px 2px 3px #fff);

    box-shadow: inset 10px 20px 35px #fff,inset -10px -20px 35px #fff;

}
/*! ============================================================== SEARCH ENDS =============================================================  */

/*! ======================================================= PORTFOLIO 2.0 STARTS ==========================================================  */

.portfolio .container{
    padding-bottom: 40px;
    
}

.portfolio .portfolio-heading{
    flex:  0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.portfolio .portfolio-heading h2{
    color: var(--text-black-900);
    font-weight: 700;
}

.portfolio .portfolio-item{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 35px;
    /* border: 2px solid; */

}
.portfolio .portfolio-item-inner .portfolio-img img{
    height: 200px;
    width: 100%;
    display: block;
}

.portfolio .portfolio-item .Portfolio-Buttons{
    flex: 0 0 50%;
    /* border: 2px solid; */
    display: flex;
    justify-content: space-between;

}

.portfolio .portfolio-item .Button1{
    width: 135px;
    margin-top: 10px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border: none;
    border-radius: 24px;
    display: inline-block;
    white-space: nowrap;
    background-color: var(--skin-color);
    transition: all 0.3s e;
}

.portfolio .portfolio-item .Button1:hover{
    transform: scale(1.05);
}

.portfolio .portfolio-item .Button2{
    margin: 10px 0px 0px 65px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border: none;
    border-radius: 24px;
    display: inline-block;
    white-space: nowrap;
    background-color: var(--skin-color);
    transition: all 0.3s e;
}

.portfolio .portfolio-item .Button2:hover{
    transform: scale(1.05);
}

.portfolio .portfolio-item-inner{
    border: 7px solid var(--skin-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    /* border: 2px solid; */

}
.portfolio .container .Portfolio-All{
    display: flex;
    justify-content: center;
}
.portfolio .container .Portfolio-All .MainMenu{
    width: 135px;
    margin-top: 10px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    text-align: center;
    color: white;
    border: none;
    border-radius: 24px;
    display: inline-block;
    white-space: nowrap;
    background-color: var(--skin-color);
    transition: all 0.3s e;
}

/*! ======================================================= PORTFOLIO 2.0 ENDS ==========================================================  */
/*! ======================================================= OVERLAY STARTS ==========================================================  */
.Overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: all 0.7s ease;
    perspective: 100;
}

.portfolio-item-inner:hover .Overlay{
    height: 100%;
    transform-style: preserve-3d;
    background-color:var(--bg-black-100);
}
.Overlay h1{
    width: 100%;
    position: absolute;
    /* color: var(--text-black-900); */
    color: var(--skin-color);
    margin-top: 11px;
   text-align: center;
   font-family:'Nosifer',sans-serif;
   animation: textAnim 5s linear infinite;
   transition: all 3s linear;
   perspective: 100;
}

@keyframes textAnim {
    0%{
        transform: scale(0.65);
        transform-style: preserve-3d;
    }
    25%{

        transform: scale(0.74);
        transform-style: preserve-3d;
    }
    50%{
        transform: scale(0.55);
        transform-style: preserve-3d;
    }
    75%{
        transform: scale(0.92);
        transform-style: preserve-3d;
    }
    100%{
        transform: scale(0.82);
        transform-style: preserve-3d;
    }

}
.Overlay p{
    width: 92%;
    margin: auto;
    margin-top: 55px;
    font-family: 'Tapestry',sans-serif;
    text-align:center;
    /* color: var(--text-black-700); */
    color: var(--skin-color);



}
/*! ======================================================= OVERLAY ENDS ==========================================================  */
/*! ======================================================= RESPONSIVE CODE =============================================================  */
@media (max-width:1199px) {
    .section .container{
        padding-top: 70px;
    }
    .section{
        left: 0;
    }
}

@media (max-width:991px) {

    .portfolio .portfolio-item{
        flex: 0 0 50%;
        max-width: 50%;
    }

}

@media (max-width:767px) {
    .portfolio .portfolio-item,
    .portfolio #SearchBar{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .portfolio #SearchBar{
        display: flex;
        justify-content: space-around;
    }

    .portfolio #SearchBar #Search{
        flex:0 0 100%;
        max-width: 87%;
    }
}
/*! ======================================================= RESPONSIVE CODE =============================================================  */

