@import url('https://fonts.cdnfonts.com/css/hagrid-trial');


body{
    background-color: #EADDCA;
    font-family: 'Hagrid Trial', sans-serif;
}
body::-webkit-scrollbar{
    display: none;
  }
.page-content{
    margin-top: 100px;
}
.navbar-nav {
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
}
.nav-link i {
    display: none;
}
.navbar{
    background-color: #9B6543;
    font-family: 'Hagrid Trial', sans-serif;
}

.primText{
   color: #EADDCA;
}
.secText{
    color: #9B6543;
}

.active {
    color: #EADDCA !important;
    background-color: transparent !important;
}

.active h6{
    font-weight: bold;
}


/* ---------------------- HOME ----------------------------*/

.homeBox{
    border: 2px solid #9B6543;
    border-radius: 10px;
    background-color: #F6E3BE;
    color: #9B6543;
}

.pictu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    height: 100%;
  }

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}


/* ---------------------- PRODUCT ----------------------------*/

.prod1 {
    animation: rubberBand;
    animation-delay: 5s;
    animation-duration: 15s; 
    animation-iteration-count: infinite;

  text-shadow: 1px 1px 2px black;
}

.prodCat{
    border: 2px solid #9B6543;
    background-color: #F6E3BE;
    color: #9B6543;
}

.prodPic :hover{
    margin-bottom: -5px;
    margin-right: -5px;
    border: #9B6543 solid 2px;
}
.prodImg{
    width: 200px;
}


/* ---------------------- CUSTOMIZED ----------------------------*/

.customBox{
    border: 2px solid #9B6543;
    background-color: #F6E3BE;
    color: #9B6543;
    margin-top: 100px;
}

.cus1 {
    animation: bounce;
    animation-delay: 2s;
    animation-duration: 2s; 
    animation-iteration-count: infinite;

  text-shadow: 1px 1px 2px black;
}
.picsz{
    width: 400px;
}
 
/* ---------------------- ABOUT US ----------------------------*/

.aboutBox{
    border: 2px solid #9B6543;
    background-color: #9B6543;
    color: #F6E3BE ;
}
.about1 {
    animation: swing;
    animation-delay: 2s;
    animation-duration: 2s; 
    animation-iteration-count: infinite;

  text-shadow: 1px 1px 2px black;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  .social-icon-link{
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon-items{
    list-style: none; 
  }
/* ---------------------- RESPONSIVE MEDIA SCREEN OF ALL SCREEN ----------------------------*/

@media (max-width: 992px) {
    .navbar-nav {
        flex-direction: row;
    }
    .nav-link h6 {
        display: none;
    }
    .nav-link i {
        display: flex;
    }
    .navbar{
        justify-content: center;
        display: flex;
    }
    .prodImg{
        width: 100px;
    }
}

@media (max-width: 768px) {
    .picsz{
        width: 100px;
    }
    .subtit{
        font-size: 12px;
    }
}