/*reset*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body{
  font-family: 'Roboto', sans-serif;
  color: #222;
}

/*general*/
h1,h2,h3{
  margin-bottom: 20px;
}
a{
  text-decoration: none;
  color: #222;
}
p{
  margin-bottom: 10px;
}
.btn{
  display: inline-block;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  border: 0px;
  cursor: pointer;
}
.my-10{
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-20{
  margin-top: 20px;
  margin-bottom: 20px;
}

/*header*/
.header{
  background-color: #333;
  overflow: auto;
  line-height: 1.7rem;
}
.header nav h1{
  color: white;
  float: left;
  padding: 20px;
  margin-bottom: 0px;
}
.header nav h1 a{
  color: white;
}
.header nav ul{
  float: right;
  list-style: none;
}
.header nav ul li{
  float: left;
}
.header nav ul li a{
  color: white;
  padding: 20px;
  display: block;
}
.header nav ul li a:hover{
  /*color: yellow;*/
  background: #555;
}
.active{
  background: #555;
}

/*vp*/
.vp{
  height: 700px;
  background: url(../images/img1.jpg) center center/cover;
/*background-size: cover;*/
  text-align: center;
}
.vp-content{
  max-width: 500px;
  padding-top: 170px;
  color: white;
  display: block;
  margin: auto;
  padding: 20px;
}
.vp-content h1{
  font-size: 3rem;
}
.separator{
  margin: auto;
  background: #111;
  height: 10px;
  width: 100px;
}
.btn-primary{
  background: white;
  color: #222;
}
.btn-primary:hover{
  background: #222;
  color: white;
}
.container{
  max-width: 1000px;
  display: block;
  margin: auto;
}
.feature{
  float: left;
  width: 50%;
  padding: 20px;
}
.features{
  padding: 100px 0px;
  overflow: auto;
  text-align: center;
}

/*person*/
.person{
  height: 500px;
  background: url(../images/img3.jpg) center center/cover;
}

/*resérvation*/
.reservation{
  padding: 100px 20px;
  text-align: center;
}
.btn-dark{
  background: #222;
  color: white;
}
.btn-dark:hover{
  background: white;
  color: #222;
  border: 1px solid #222;
}

/*footer*/
footer{
  background: #222;
  color: white;
  padding: 30px 0px;
  text-align: center;
}
footer p{
  margin-bottom: 0px;
  
}

/*page where*/
.where{
  padding: 180px 0px;
  overflow: auto;
  min-height: 100vh;
}
.where-img{
  float: left;
  width: 40%;
  border: 1px solid rgb(55, 55, 175);
  border-radius: 30px;
}
.where-text{
  float: right;
  width: 50%;
}
.underline{
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.chip{
  display: inline-block;
  text-align: center;
  width: 30px;
  border-radius: 100%;
  background: #333;
  color: white;
}
.chip-purple{
  background: rgb(182, 38, 139);
}
.chip-brown{
  background: rgb(44, 31, 3);
}

/*page contact*/
.contact{
  padding: 150px 0px;
  min-height: 100 vh;
}
.contact-form-container{
  max-width: 600px;
  margin: auto;
  padding: 20px;
}
.contact-form-container form label{
  display: block;
  font-weight: 700;
}
.contact-form-container form input , textarea{
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.contact-form-container form textarea{
  min-height: 80px;
}




