* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection{
  color: aqua;
  background-color: orangered;
}
.logo img{
  width: auto;
  height: 60px;
  transition: all 0.60s;

}
.logo img:hover{
  width: auto;
  height: 66px;
  transition: all 0.60s;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* background-color: black; */
}

/* cdn font  */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda+SC:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Lilita+One&family=Monoton&display=swap');

/*===============================================================================================
banner  
 ===============================================================================================*/
.banner {
  width: 100%;
  height: 100px;
  display: flex;
  overflow: scroll;
  scrollbar-width: none;
  position: relative;
  top: 80px;
  z-index: 1;
}

.bannerimg1 {
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: fill;
  height: 100px;
  position: relative;
  animation-name: bannerslide;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}


.bannerimg2 {
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: fill;
  height: 100px;
  position: relative;
  animation-name: bannerslide;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}




@keyframes bannerslide {
  from {
    position: relative;
    left: 0%;
  }

  to {
    position: relative;
    left: -100%;
  }
}

img {
  cursor: pointer;
}
@media(max-width:800px){
  .bannerimg1 {
    width: auto;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    height: 100px;
    position: relative;
    animation-name: bannerslide;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  
  
  .bannerimg2 {
    width: auto;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: fill;
    height: 100px;
    position: relative;
    animation-name: bannerslide;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
}
/*===============================================================================================
nav bar  
 ===============================================================================================*/
#navmain2 {
  background-color: rgba(0, 0, 0, 0.659);
  width: 85%;
}
.categers{
     z-index: 222; position: absolute; width: 100%; height: fit-content; background-color: rgb(249, 251, 251); display: none;top: 100%;
}
.fa-brands {
  margin-left: 10px;
  font-size: 1.3rem;
  cursor: -webkit-grab;
}

#navitem2 {
  margin: auto;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  list-style: none;
}

.px-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

/*===============================================================================================
hero  
 ===============================================================================================*/

#heroheading1 {
  font-family: 'Times New Roman', Times, serif;
  font-style: normal;
  font-size: 4.3rem;
  font-weight: 700;
  text-align: right;

}

#heroheading1 span {
  color: red;
   text-align: right;
}




#heroheading2 {
  font-family: 'Times New Roman', Times, serif;
  font-style: normal;
  font-size: 7.2rem;
  text-align: center;
  font-weight: 700;
  color: rgb(245, 12, 12);
  margin-top: 5%;

}


#heroheading2 span {
  color: rgb(255, 8, 8);
}

.carousel-caption{
  position: absolute; top: 10%; left: 20%;
}
@media(max-width:800px){
    #heroheading1 {
  font-family: 'Times New Roman', Times, serif;
  font-style: normal;
  font-size: 2rem;
  text-align: right;
  font-weight: 600;
}
  #heroheading2 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.3rem;
    text-align: center;
    font-weight: 700;
    color: rgb(245, 12, 12);
  
  }
}
#heroheading3 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.3rem;
  text-align: center;
  font-weight: 700;
}

#heroheading3 span {
  color: red;
}

#sofahero {
  position: absolute;
  top: 45%;
  left: 35%;
  z-index: 2;
  transform: rotate(10deg);
  animation-name: updown;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  filter: drop-shadow(5px 30px 15px black);
}

#mat {
  position: absolute;
  top: 90%;
  left: 30%;
  width: 50%;
  height: 15%;
  z-index: 1;
}

#flowerpot {
  position: absolute;
  top: 70%;
  left: 27%;
  width: 11%;
  height: 200px;
  z-index: 1;
  transform: rotate(-10deg);
  animation-name: fupdown;
  animation-duration: 4s;
  animation-delay: 9ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#lamp {
  position: absolute;
  top: 60%;
  left: 20%;
  width: 15%;
  height: 280px;
  z-index: 1;
  transform: rotate(10deg);
  animation-name: lampupdown;
  animation-duration: 4s;
  animation-delay: 9ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  filter: drop-shadow(5px 5px 16px rgb(255, 255, 255));
}

#fan {
  position: absolute;
  top: -10%;
  left: 40%;
  width: 20%;
  height: 280px;
}

@media(max-width:720px){
    
    #fan {
    position: absolute;
    top: -19%;
    left: 21%;
    width: 58%;
    height: 280px;
}
}

@keyframes updown {
  0% {
    position: absolute;
    top: 45%;
    left: 35%;
  }

  50% {
    position: absolute;
    top: 42%;
    left: 35%;
  }

  100% {
    position: absolute;
    top: 45%;
    left: 35%;
  }
}

@keyframes fupdown {
  0% {
    position: absolute;
    top: 70%;
    left: 27%;
  }

  50% {
    position: absolute;
    top: 68%;
    left: 27%;
  }

  100% {
    position: absolute;
    top: 70%;
    left: 27%;
  }
}

@keyframes lampupdown {
  0% {
    position: absolute;
    top: 60%;
    left: 20%;
  }

  50% {
    position: absolute;
    top: 55%;
    left: 20%;
  }

  100% {
    position: absolute;
    top: 60%;
    left: 20%;
  }
}

#main {
  height: 100%;
  position: relative;
  padding-top: 5%;
}


/*===============================================================================================
about us  
 ===============================================================================================*/


#abtimg {
  width: 350px;
  height: 350px;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  left: 80px;
  margin-top: 10px;
  border-bottom-right-radius: 35px;
  border-top-left-radius: 35px;
}

.abtbg {
  height: 380px;
  width: 400px;
  background-color: #e1ba3200;
  position: relative;
  border-bottom-right-radius: 35px;
  border-top-left-radius: 35px;
  border: 3px solid burlywood;
}


#abtcontent {
  text-align: left;
  color: white;
  padding-left: 12%;
}

#abtp{
    width: 78%;
}

#abtheading {
  font-family: Bodoni Moda SC;
  font-size: 4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3%;
  text-decoration: red underline;
  text-underline-offset: 8px;
}

#abtheading span {
  color: white;
  font-weight: 600;
  font-size: 5rem;
}

@media(max-width:800px){

  #abtcontent {
    text-align: center;
    color: white;
    padding-left: 10%;
    margin-top: 8%;
  }
  #abtp{
    width: 100%;
}
  .abtbg {
    height: 331px;
    width: 296px;
    background-color: #e1ba3200;
    position: relative;
    border-bottom-right-radius: 35px;
    border-top-left-radius: 35px;
    border: 3px solid burlywood;
}
  #abtimg {
        width: 300px;
        height: 300px;
        object-fit: cover;
        position: absolute;
        z-index: 1;
        left: 35px;
        margin-top: 13px;
  }
}

/*===============================================================================================
products 
 ===============================================================================================*/

.furniture {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/productbg2.jpg);
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  margin-bottom: 5%;

}

#innermaincard {
  column-gap: 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#productheading {
  font-family: Bodoni Moda SC;
  font-size: 4rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  margin-bottom: 3%;
  margin-top: 2%;
}
#productheading {
  font-family: Bodoni Moda SC;
  font-size: 4rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  margin-bottom: 3%;
  margin-top: 2%;
}

@media(max-width:800px){
  #productheading {
    font-family: Bodoni Moda SC;
    font-size: 2rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    position: relative;
    top: 0%;
    right: 0%;
  }
  #productheading2 {
          font-family: Bodoni Moda SC;
        font-size: 2rem;
        font-weight: 600;
        color: rgb(255, 255, 255);
        position: relative;
        top: 27%;
        right: -21%;
  }
}
.card-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 4rem;
  ;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
}

.card-text {
  color: white;
  font-size: 0.80rem;
  text-align: center;
}

.card-body .btn-outline-light {
  width: 100%;
  transition: all 1S;

}

/*===============================================================================================
Our History 
 ===============================================================================================*/

.ourhistory {
  width: 100%;
  height: 100vh;
  background-image: url(../images/company_history/historybg.jpg);
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

#namesussane {
  color: rgb(255, 255, 255);
  position: relative;
  bottom: 32px;
  text-align: right;
  font-family: Bodoni Moda SC;
  font-size: 2.6rem;
  color: rgb(255, 255, 255);
  /* background-color: rgb(214, 24, 24); */
  padding: 5px;
}



/*===============================================================================================
mission 
 ===============================================================================================*/

#mission {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  position: relative;
}

#light {
  position: relative;
  display: flex;
  float: right;
  height: 100vh;
  width: 50%;
  object-fit: cover;
  bottom: 30%;
  right: 10%;
}

#lighteffect {
  position: relative;
  left: 38%;
  height: 74%;
  width: 33%;
  bottom: 6%;
  opacity: 1;
  animation-name: blink;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@media(max-width:720px){
    .ourhistory {
  width: 100%;
  height: 40vh;
  background-image: url(../images/company_history/historybg.jpg);
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

  #light {
        position: relative;
        display: flex;
        float: right;
        height: 51vh;
        width: 85%;
        object-fit: cover;
        bottom: 47%;
        right: 1%;
        display: none;
}
#lighteffect {
    display: none;
position: relative;
        left: -3%;
        height: 340px;
        width: 72%;
        bottom: -41%;
        top: -347px;
        opacity: 1;
        animation-name: blink;
        animation-duration: 2s;
        animation-delay: 1s;
        animation-iteration-count: infinite;

}
#mission {
  width: 100%;
  height: auto;
  /* background-image: url(../images/bg/vision2.jpg); */
  object-fit: cover;
  background-position: center;
  background-size: cover;
  position: relative;
}


}
@keyframes blink {
  0% {
    opacity: 1;
  }

  15% {
    opacity: 0;

  }

  30% {
    opacity: 1;

  }

  45% {
    opacity: 1;

  }

  60% {
    opacity: 0;

  }

  75% {
    opacity: 0;

  }

  100% {
    opacity: 1;

  }
}

.missiontitle {
  color: #ffffff;
  font-family: Bodoni Moda SC;
  position: relative;
  right: -45%;
  bottom: -40%;
  width: fit-content;
  text-align: center;
  height: fit-content;
  font-size: 3rem;
}

.missioncontent {
  width: 34vw;
  height: 37vh;
  position: relative;
  bottom: 60%;
  left: 2%;
  padding: 2%;
  text-align: center;
  color: white;
}

#frame1 {
  position: relative;
  bottom: 145%;
  right: 14%;
}

.pfurniture {
  width: 100%;
  height: 100vh;
  background-color: white;
}

@media(max-width:720px){
  #frame1{
    display: none;
  }
  .missiontitle {
    color: #ffffff;
    font-family: Bodoni Moda SC;
    position: relative;
    right: -40%;
    bottom: -25%;
    width: fit-content;
    text-align: center;
    height: fit-content;
  }
  .pfurniture {
    width: 100%;
    height: 100vh;
    background-color: white;
    overflow: hidden;
  }
  .missioncontent {
    width: 90vw;
    height: 39vh;
    position: relative;
    bottom: 0%;
    left: 2%;
    padding: 2%;
    text-align: center;
    color: white;
  }
}

/* furniture  */


.contentf h2{
font-size: 2.5rem;
}

.contentf h3{
  font-size: 15px;
  color: aliceblue;
  font-family: system-ui;
  line-height: 140%;
}

@media (max-width:800px) {
  .contentf {
    width: min(42vw, 446px);
    position: absolute;
    top: 31%;
    left: 1rem;
    transform: translateY(-50%);
    font: 400 0.85rem helvetica, sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    text-align: center;
    border: 2px solid white;
    padding: 4%;
  }
  .contentf h2{
    font-size: 1rem;
    }
    .contentf h3{
      font-size: 8px;
      color: aliceblue;
      font-family: system-ui;
      line-height: 140%;
    }
}


/* ==============================================================================================
contact
=============================================================================================== */

.contact {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
}
.contact h2 {
  font-size: 2rem;margin-bottom: 7%;
}
.contact h3 {
  font-size: 4rem;
  text-align: center;
  font-family: "Inter", Sans-serif;
  font-weight: 700;
}

.contact p {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}

#innerform {
  width: 38%;
}

@media(max-width:720px){
  #innerform {
    width: 80%;
  }
}




/* ==============================================================================================
banner 2
=============================================================================================== */

/* ==============================================================================================
footer
=============================================================================================== */

#footerlogo {
  width: 100px;
  height: 100px;
  transition: all 1s;

}

#footerlogo:hover {
  transform: rotate(360deg);
  height: 100px;
  width: 100px;
  cursor: pointer;
  transition: all 1s;
}

/*===========================================
 new navbar 
============================================= */

header {
  width: 100%;
  background-color: #000000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9;
  top: 0;
}

.navigation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}


.nvitem h2 {
  font-size: 1rem;
  padding-right: 25px;
  color: wheat;
  transition: all 1s;
}

.nvitem a{
  color: wheat;
  text-decoration: none;
}

.nvitem h2:hover {
  color: red;
  transition: all 1s;
  cursor: pointer;
}


/* categers dropdown  */

#cros {
  position: absolute;
  right: 1%;
  top: 4%;
  cursor: pointer;
}

.lst1 {
  padding: 5px;
}

.lst2 {
  padding: 5px;
}

.lst3 {
  padding: 5px;
}

.lst4 {
  padding: 5px;
}

.lst5 {
  padding: 5px;
}

.lst6 {
  padding: 5px;
}





.catlist {
  padding-top: 2%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  text-align: center;
}

.catlist h3 {
  font-size: 16px;
  color: #ff6a04;
  font-weight: 700;
}

.catlist h5 {
  font-size: 13px;
  font-weight: 800;
}

.inerlst {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.inerlst li:hover {
  color: red;
  cursor: pointer;
  font-weight: 500;
}

.innerlistsofa ul {
  padding: 0;
}

.innerlistsofa li {
  font-size: 12px;
  list-style: none;
}

.livingchair ul {
  padding: 0;
}

.livingchair li {
  font-size: 12px;
  list-style: none;
}

.tables ul {
  padding: 0;
}

.tables li {
  font-size: 12px;
  list-style: none;
}

.innerlistbed ul {
  padding: 0;
}

.innerlistbed li {
  font-size: 12px;
  list-style: none;
}

.specialsofa ul {
  padding: 0;
}

.specialsofa li {
  font-size: 12px;
  list-style: none;
}

.Bedroomsit ul {
  padding: 0;
}

.Bedroomsit li {
  font-size: 12px;
  list-style: none;
}

.BedroomWardrobe ul {
  padding: 0;
}

.BedroomWardrobe li {
  font-size: 12px;
  list-style: none;
}

.livingstorage ul {
  padding: 0;
}

.livingstorage li {
  font-size: 12px;
  list-style: none;
}

.catlist a {
  color: #000000;
  text-decoration: none;
}
.sofasss{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3%;
}
.sofasss h3{
  color: #000000;
  font-family: Bodoni Moda SC;
  font-size: 3rem;
  text-align: center;
   margin-bottom: 2%;
   margin-top: 2%;
}

.sofasss p{
  color: #000000;
  font-size: 1.1rem;
}
@media(max-width:800px){
  .sofasss{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3%;
    justify-content: center;
  }
  .sofasss p{
  color: #000000;
  font-size: 1rem;
}
}
.card{
  transition: all 1s;
  box-shadow: 0px 0px 10px 0px;

}

.card:hover{
  transform: scale(1.1);
  transition: all 1s;
  box-shadow: 0px 0px 10px 0px;
}



/* whatsaap btn  */

.pulse i {
  position: relative;
  z-index: 20;
  top: 16px;
  font-size: 30px;
}
.pulse {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px !important;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 200, 0, 1);
  color: white;
  border-radius: 50px;
  text-align: center;
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
  z-index: 9000;
}

.pulse:hover {
  background-color: rgba(0, 150, 0, 1);
  color: white;
}

.my-float {
  margin-top: 15px;
}

@-webkit-keyframes pulse-btn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}

.pulse a {
  color: #fff;
}

/* call btn  */


.pulses i {
  position: relative;
  z-index: 20;
  top: 16px;
  font-size: 30px;
}
.pulses {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px !important;
  height: 60px;
  bottom: 120px;
  right: 40px;
  background-color: rgb(0, 167, 200);
  color: white;
  border-radius: 50px;
  text-align: center;
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
  z-index: 9000;
}

.pulses:hover {
  background-color: rgb(31, 255, 229);
  color: white;
}

.my-float {
  margin-top: 15px;
}

@-webkit-keyframes btns-call {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(22, 233, 229);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 187, 200, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 187, 0);
  }
}

.pulses a {
  color: #fff;
}


