/* @import url('https://fonts.googleapis.com/css?family=Robto');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #333;
  color: #fff;
  line-height: 1.6;
} */

.slider{
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  /* position: absolute;
  bottom: 70px;
  left: -400px;
  opacity: 0;
  width: 800px; */
  
 
  
}



.text {
    position: absolute;
    bottom: 190px;
    left: -550px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    opacity: 0px;
}

.para-2{
  font-size: 25px;
  color: #fff;
  font-weight: bold;
}

.para{
  font-size: 25px;
  color: #dfb162;
  font-weight: bold;
}

.text-2{
  position: absolute;
  bottom: 190px;
  left: -550px;
  color: #dfb162;
  font-size: 40px;
  font-weight: bold;
  opacity: 0px;
 
}



@media (max-width: 1076px) {
  .text{
    font-size: 35px;
    /* right: 400px; */
    left: 10px;

  }
}


@media (max-width: 430px) {
  .text{
    font-size: 25px;
    margin-bottom: 70px;
	text-align: center;
  }
}


@media (max-width: 430px) {
	.text-2{
	  font-size: 25px;
	  margin-bottom: 70px;
	  text-align: center;
	}
  }

  @media (max-width: 430px) {
	.para{
		font-size: 18px;
	}
	
  }

  
  @media (max-width: 430px) {
	.para-2{
		font-size: 18px;
	}
  }

.slide .content h1 {
  margin-bottom: 10px;
}

.slide.current .content {
  /* Content of current slide */
  opacity: 1;
  transform: translateX(700px);
  /* all- opacity/transform with 0.3s delay*/
  transition: all 0.7s ease-in-out 0.3s;
  
}

button#next {
  position: absolute;
  top: 50%;
  right: 15px;
}
button#prev {
  position: absolute;
  top: 50%;
  left: 15px;
}

.buttons button {
  border: 2px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
  border: none;
  font-size: 35px;
}

.buttons button:hover {
  
  color: #dfb162;
}

@media(max-width: 500px) {
  .slide .content{
    bottom: -300px;
    left:0;
    width: 100%;
  }
  
  .slide.current .content{
    transform: translateY(-300px);
  }
}

@media(max-width: 1100px) {
  .slide .content{
    bottom: -200px;
    left:0;
    width: 100%;
    font-size: 34px;
    margin-left: 40px;
  }
  
  .slide.current .content{
    transform: translateY(-400px);
  }
}

@media(max-width: 500px) {
  .slide .content{
    bottom: -200px;
    left:0;
    width: 100%;
    font-size: 15px;
    margin-left: 10px;
  }
  
  .slide.current .content{
    transform: translateY(-300px);
  }
}


/* Backgorund Images */
 



.item-img .discount{
  position: absolute;
  right: 0;
  top: 20px;
  background-color:#dfb162;
  z-index: 1;
  border-radius: 2px;
  color: black;
  font-size: 12px;
  padding: 4px 16px;
}

.add-btn{
  display: inline-block;
  margin-top: 20px;
  background-color: #dfb162;
  text-decoration: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 2px;
  border: 2px solid #dfb162;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.add-btn:hover{
  border-color: #dfb162;
  background-color: #fff;
  color: #dfb162;
}
.right-nav{
  padding-right: 30px;
}


.right-nav a{
  width:30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width:500px)  {
  
  .right-nav a{
    width:30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
}



.right-nav a span{
  position: absolute;
  top: -7px;
  right: -7px;
  width:20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 500;
}
.right-nav .like span{
  background-color: #dfb162;
}
