body {
	margin: 0;
	background-color: #fff8f8;
    height: 100%;
	padding: 0;
	justify-content: center;
	align-items: center;
    overflow-x: hidden;

	
}
.banner{

    width : 100%;
	padding: 1px 20px;
    background-size:cover;
    background-color: #222222;
	height:100%;
	max-height: 65px;
	text-align: right;
	font-size: 25px;
	font-family: "Gabarito",sans-serif;
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content:left;
    grid-column-gap: 55%;
}

.banner ul li{
	list-style: none;
	display: inline-block;
	margin : 0 20px;
	position: relative;
	
	
}
.banner ul li a{
	text-decoration: none;
	color: white;
	text-transform: "uppercase";
}
.banner ul li::after{
	content: '';
	height: 3px;
	width: 0;
	background: #fba518;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: 0.5s;
	
}
.banner ul li:hover::after{
	width: 100%;
}

.logo{
	height: 50px;
	
	position: relative;
	align-content: left;

}
.tflex{
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 8.5%;
    margin-top: 40px;
    
}
.ititle{
    text-align: center;
	font-family: "Gabarito" , sans-serif;
	font-size: 35pt;
    font-weight: bold;
    
   
}
.tcart img{
    height: 70px;
    

}
.tcart{
    margin-left: 65%;
}
.tcart span{
    color: black;
    font-size: 20pt;
    font-weight: bold;
    font-family: "Gabarito", sans-serif;
}
.icontents{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-row-gap: 140px;
    grid-column-gap: 20px;
    transition: 0.5s;
    transform: translateX(-200px);
}
.intimg{
	position: relative;
    height: 300px;
	width: 530px;
    transition: 0.8s;
}

.int1txt{
    margin-top: 0px;
    font-family: "Gabarito" , sans-serif;
    font-size: 20pt;
    background-color:beige;
    z-index: 1;
    height: 64px;
    text-align: center;
    
    
}
.subtxt{
    font-size: 18pt;
    font-family: "Gabarito" , sans-serif;
    
    margin: 0;
    border: 0;
    padding-bottom: 5px;
}


.cart{
    
    height: 40px;
    width: 40px;
    z-index: 3;
    position: relative;
}
.cartbtn{
    width : 200px;
    height: 30px;
    border-radius: 15px;
    position: relative;
    
    text-align: center;
    font-family: "Gabarito", sans-serif;
    font-weight: bold;
    font-size: 13pt;
    display:block;
    align-items: center;
    cursor: pointer;
    background-color: white;
    color: black;
}
.cartdiv{
    display: grid;
    align-items: center;
    justify-content: center;
    background-color:beige;
}
.cartbtn:hover{
    background-color: #fba518;
    color: white;  
}
.sidecart{
    width: 400px;
    position: fixed;
    top: 30%;
    right: 0;
    bottom:  0; 
    background-color: #ffffff;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: 0.5s;
}
.sidecart .shopbtn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px;
    border-color: #222222;
}

.sidecart .shopbtn button{
    background-color: #fba518;
   
    font-family: "Gabarito" , sans-serif;
    cursor: pointer;
    font-weight: bold;
}

.scart{
    padding: 20px;
    font-family: "Gabarito", sans-serif;
    font-weight: bold;
    font-size: 20pt;
    margin: 0;
}
.sidecart .shoplist .cartitem img{
    width: 60px;
    height: 30px;
    

}
.sidecart .shoplist .cartitem .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
    
}
.cartitem .quant {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.cartitem .quant span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #222222;
    color: white;
    border-radius: 30%;
    cursor: pointer;
}
.cartitem .quant span:nth-child(2){
    background-color: transparent;
    color: #222222;
}
.shoplist{
    overflow: auto;
}
.sidecart{
  right: 0;
  transition: 0.5s;
}
/* .shoplist::-webkit-scrollbar{
    width: 0;
} */

body.showCart .sidecart{
    right: -400px;
}
body.showCart .icontents{
    transform: translateX(0);
}
.ptitle{
    text-align: center;
	font-family: "Gabarito", sans-serif;
	font-size: 35pt;
    font-weight: bold;
    overflow: hidden;
    margin-top: 20%;
}

.pcontents{
    display: flex;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    justify-content: center;
    align-items: center;

}
#propp{
    background-size: cover;
	position: absolute;
    width: 650px;
    height: 400px;
   
}
#next, #prev{
    position: absolute;
    top: 40%;
    color: #fba518;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 300px;
}
#next{
    left: unset;
    right: 300px;
}
.prop1{
    background-image: url(prop/console.png);
    transition: 1s;
}
@keyframes imageSwap {
    0% {
      background-image: url(prop/console.png);
    }
    50% {
      background-image: url(prop/console2.png);
    }
    100% {
      background-image: url(prop/console.png);
    }
  }

.prop1:hover {
    animation: imageSwap 2s infinite;
}

.prop2{
    background-image: url(prop/gun1.jpg);
    transition: 1s;
}
@keyframes imageSwap2 {
    0% {
      background-image: url(prop/gun1.jpg);
    }
    25% {
      background-image: url(prop/gun2.jpg);
    }
    50% {
      background-image: url(prop/gun3.jpg);
    }
    75% {
        background-image: url(prop/gun4.jpg);
      }
    100% {
        background-image: url(prop/gun5.jpg);
      }
  }

.prop2:hover {
    animation: imageSwap2 5s infinite;
}
.prop3{
    background-image: url(prop/tren1.jpg);
    transition: 1s;
}
@keyframes imageSwap3 {
    0% {
      background-image: url(prop/tren1.jpg);
    }
    33% {
      background-image: url(prop/tren2.jpg);
    }
    66% {
      background-image: url(prop/tren3.jpg);
    }
    100% {
        background-image: url(prop/tren4.jpg);
      }
  }

.prop3:hover {
    animation: imageSwap3 4s infinite;
}
.prop4{
    background-image: url(prop/wine.jpg);
    transition: 1s;
}
@keyframes imageSwap4 {
    0% {
      background-image: url(prop/wine.jpg);
    }
    50% {
      background-image: url(prop/wine2.jpg);
    }
    100% {
      background-image: url(prop/wine.jpg);
    }
  }

.prop4:hover {
    animation: imageSwap4 2s infinite;
}
.prop5{
    background-image: url(prop/chess3.png);
    transition: 1s;
}
@keyframes imageSwap5 {
    0% {
      background-image: url(prop/chess3.png);
    }
    50% {
      background-image: url(prop/chess.png);
    }
    100% {
      background-image: url(prop/chess2.png);
    }
  }

.prop5:hover {
    animation: imageSwap5 3s infinite;
}
.ptxt{
    margin-top: 400px;
    z-index: 1;
    width: 650px;
    height: 100px;
    font-family: "Gabarito" , sans-serif;
    font-weight: bold;
    font-size: 20pt;
    background-color: beige;
    opacity: 0;
    transition: 0.8s  ease 0.2s;
    text-align: center;
}
#propp:hover .ptxt{
    opacity: 1;
}
.wcontents{
    display: flex;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
#nextt, #prevv{
    position: absolute;
    top: 40%;
    color: #fba518;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 300px;
}
#nextt{
    left: unset;
    right: 300px;
}
#int{
    background-size: cover;
	position: absolute;
    width: 650px;
    height: 400px;
   
}
.wall1{
    background-image: url(int/cozybed1.jpg);
    transition: 1s;
}
@keyframes imgSwap {
    0% {
      background-image: url(int/cozybed1.jpg);
    }
    50% {
      background-image: url(int/cozybed2.jpg);
    }
    100% {
      background-image: url(int/cozybed3.jpg);
    }
  }

.wall1:hover {
    animation: imgSwap 3s infinite;
}
.wall2{
    background-image: url(int/jewelshop.jpg);
    transition: 1s;
}
@keyframes imgSwap2 {
    0% {
      background-image: url(int/jewelshop.jpg);
    }
    50% {
      background-image: url(int/jewelshop2.jpg);
    }
    100% {
      background-image: url(int/jewelshop.jpg);
    }
  }

.wall2:hover {
    animation: imgSwap2 2s infinite;
}
.wall3{
    background-image: url(int/interior1.png);
    transition: 1s;
}
@keyframes imgSwap3 {
    0% {
      background-image: url(int/interior1.png);
    }
    33% {
      background-image: url(int/interior2.png);
    }
    66% {
      background-image: url(int/interior3.jpg);
    }
    100% {
        background-image: url(int/interior4.png);
      }
  }

.wall3:hover {
    animation: imgSwap3 4s infinite;
}
.wall4{
    background-image: url(int/oroom.jpg);
    transition: 1s;
}
@keyframes imgSwap4 {
    0% {
      background-image: url(int/oroom.jpg);
    }
    50% {
      background-image: url(int/oroom2.jpg);
    }
    100% {
        background-image: url(int/oroom.jpg);
      }
  }

.wall4:hover {
    animation: imgSwap4 2s infinite;
}
.wall5{
    background-image: url(int/bed.jpg);
    transition: 1s;
}

.wall6{
    background-image: url(int/subway.jpg);
    transition: 1s;
}
@keyframes imgSwap5 {
    0% {
      background-image: url(int/subway.jpg);
    }
    33% {
      background-image: url(int/subway2.jpg);
    }
    66% {
        background-image: url(int/subway3.jpg);
      }
    100%{
        background-image: url(int/subway.jpg);
    }
  }

.wall6:hover {
    animation: imgSwap5 3s infinite;
}
.wall7{
    background-image: url(int/kitchen1.png);
    transition: 1s;
}
@keyframes imgSwap6 {
    0% {
      background-image: url(int/kitchen1.png)
    }
   50%{
      background-image: url(int/kitchen2.png);
    }
    100%{
        background-image: url(int/kitchen1.png);
    }
  }

.wall7:hover {
    animation: imgSwap6 3s infinite;
}
#int:hover .ptxt{
    opacity: 1;
}
.conclusion{
	background-color: rgb(0, 0, 0);
    height: 50vh;
	width: 100%;
	position: relative;
	z-index: 6;
	color: white;
	background-color: #222222;
	margin-top: -8px;
}
.selectc{
	background-color:#d3c4ac;
	color: Black;
	font-family: sans-serif;
	font-size: larger;
	width: 100px;
	height: 30px;
}
.countrytxt{
	font-family: sans-serif;
	font-size: larger;
	padding: 0;
	border: 0;
	margin-bottom: 10px;
}
.country{
	margin-left: 40px;
	margin: 40px;
}
.contacts{
	margin-left: 40px;
	color: white;
	font: sans-serif;
	font-size: larger;
}
.contactstxt{
	font-size: 20px;
	font: sans-serif;
	margin-bottom: 8px;
	border: 0;
	padding: 0;
	text-decoration: underline;
}
.last{
	margin-left: 40px;
	font-family: sans-serif;
	font-size: smaller;
	
	color: white;
}
a:link{
	color: white;
	text-decoration: none;
	background-color: transparent;

}
a:visited {
	color: aliceblue;
	background-color: transparent;
	text-decoration: none;
  }
  a:hover {
	color: blueviolet;
	background-color: transparent;
	text-decoration: underline;
  }
.emaillogo{
	height: 30px;
	width: 30px;
}