@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Courgette&family=IBM+Plex+Sans:ital,wght@0,100;1,300;1,400&family=Josefin+Sans:wght@300&family=Mochiy+Pop+P+One&family=Roboto+Mono:wght@200&family=Roboto:wght@100&display=swap');

:root{
    --font-familyh: 'Cinzel', serif;
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s cubic-bezier(.34,1.12,.68,1.31);
}
/*/----------our---project-----/*/
::selection{
    color: white;
    background-color: black;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    width: 10px;
    background: #0c1832;
    border-left: 0 solid white;
    border-right: 0 solid white;
}
::-webkit-scrollbar-thumb{
    background-image: linear-gradient(315deg, white 0%, #a5e4b0 74%);
    width: 0;
    height: 5%;
    transition: 0.5s ease;
    cursor: pointer;
}
h1,h2,h4{
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 8px 12px #262626;
}
h5{
    text-align: center;
    text-transform: capitalize;
   
}
.gallery{
    background: #000000;
}
.gallery .gallery-1{
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    background: #a8ff78;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #78ffd6, #a8ff78);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #78ffd6, #a8ff78); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.gallery ul li,
.gallery-1 a{
    list-style: none;
    padding: 8px 20px;
    font-size: 18px;
    color: #000000;
    font-weight: 700;
    font-family:var(--font-familyh);
    letter-spacing: 1px;
    cursor: pointer;
}
.gallery ul li:hover,
.gallery-1 a:hover{
    transform: skewX(-30deg);
    background-color: #fff;
}
.gallery-1 img{
    cursor: pointer;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}
.gallery-1 img:hover{
    background-color: #fff;
    -webkit-transform: scale(.8);
    transform: scale(.8);
}
.gallery ul li:active{
    background: #03a9f4;
    color: #fff;
}
.product{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product .itemBox{
    position: relative;
    width: 300px;
    height: 300px;
    margin: 5px;
    overflow: hidden;
}
.product .itemBox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.product .itemBox img:hover{
    transform: scale(1.5);
    cursor: default;
    filter: brightness(90%);
}
footer{
    background-color: aqua;
}
.foot-text{
    padding-top: 40px;
}
.logo{
    text-align: center;
}
/*------------social------icon---------*/
.box-1 {
    text-align: center;
    padding-top: 30px;
  }
.box-1 a {
    display: inline-block;
    vertical-align: text-bottom;
    text-align: center;
    
  }
.box-1 a:hover i {
    background: rgb(238, 203, 203);
    border-radius: 5px;
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
.box-1 a:hover i::before {
    -webkit-transform: rotate(-360deg) scale(0.2);
    transform: rotate(-360deg) scale(0.2);
  }
.box-1 i{
    display: inline-block;
    font-size: 30px;
    background: #FBD786;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    margin: 0 10px 10px 10px;
    transition-duration: 0.3s;
  }
.box-1 i::before {
    transition-duration: 0.3s;
  }
.box-1 i.fa::before {
    display: block;
  }

.box-1 .facebook{
    color: #1877F2;
}
.box-1 .instragram{
   color: #E4405F;
}
.box-1 .twitter{
  color: #1DA1F2;
}
.box-1 .linked{
    color: #333;
}
.box-1 .whatsapp{
    color: #25D366;
}


