*{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

body {
  background-color: antiquewhite;
}

.banner{
  width: 100%;
  height: 20vh;
  background-color: antiquewhite;
  background-position: center;
  background-size: center;
}
.navbar{
  width: 90%;
  height: 10vh;
  padding: 30px ;
  background-color: aliceblue;
  margin: 30px auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}
.logo{
  width: 150px;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
 
.navbar ul li{
  list-style: none;
  display: inline-block;
  margin: 20px;
}
.navbar ul li a{
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(52, 42, 42);
  font-weight: 300;
  font-weight: 400;
  padding: 15px;
  border-radius: 30px;
}
.navbar ul li button{
  display: row nowrap;
}
li a:hover{
  background: rgb(215, 172, 147);
  transition: 0.5s;
}
.navbar a:hover{
  color: rgb(255, 255, 255);
}

.slider-row {
  display: flex;
  width: 5472px;
  transition: 0.45s;
}

.slide-col{
width: 1000px;
height: 500px;
position: relative;
} 

.user-img{

 position: absolute;
 right: 0;
 width: auto;
 height: 100%;
}

.user-img img{
  height: 100%;
  border-radius: 10px;
}

.container {
  width: 100%;
  height: auto;
  position: absolute;
  top: 60%;
  left: 59%;
  transform: translate(-50%,-50%);
}
 
.indicator{
  position: absolute;
  left: 35%;
  transform: -50%;
  bottom: -50px;
}

.btn {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
}

.active{
  width: 45px;
}

.floral{
  width: 1000px;
  height: 100%;
  overflow: hidden;
}

button{
  width: 150px;
  padding: 15px;
  margin: 20px 5px;
  text-align: center;
  border-radius: 25px;
  color: black;
  border: 2px;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
}
button:hover{
  background: rgb(215, 172, 147);
  transition: 0.5s;
}
button:hover{
  color: rgb(0, 0, 0);
}


