html, 
body{
    position: relative;
    height: 100%;
}
body{
    background-color: #f9ebea;
    font-family: Helvetica Neue, Helvetica;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}


.swiper{
    width: 100%;
    padding: 200px 0 50px 0;
}

.swiper-slide{
    width: 400px;
    height: 700px;
    background-color: #d98880;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    text-align: center;
}

.icons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.icons i{
   font-size: 20px;
   color: black;
}

.icons img{
    width: 120px;
}

.product-content{
    display: flex;
    justify-content: space-between;
}

.product-txt {
    flex-basis: 50%;
    text-align: left;
}

.product-txt span{
    font-size: 25px;
    color: white;
    font-weight: bold;
}

.product-txt h3{
    font-size: 20px;
    color: black;
    text-transform: uppercase;
}

.product-txt p{
    font-size: 14px;
    color: white;
}

.product-img{
    flex-basis: 50%;
    text-align: right;
}

.product-img img{
  width: 120px;
}

.btn-1{
  display: inline-block;
  padding: 13px 55px;
  border: 1px solid black;
  border-radius: 25px;
  color: black;
  text-decoration: none;
  margin-top: 50px;
}

.swiper-slide:hover {
    background-color: #a9cce3;

}

