* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lobster", cursive;
  background: #eee;
}

p {
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

a {
  color: #333;
  text-decoration: none;
}
strong {
  color: rgb(252, 230, 35);
  font-weight: 400;
}
.container {
  display: block;
  max-width: 1200px;
  margin: auto;
}
.title {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 3rem;
}
ul {
  list-style: none;
}
.bg-dark {
  background: #333;
  color: white;
}
em {
  color: #555;
}

/* Vp + header */

.vp-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 1rem 2rem;
  background: #333;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  letter-spacing: 1px;
}
header a {
  color: white;
}

header ul {
  display: flex;
  flex-flow: row nowrap;
  list-style: none;
}
header ul li {
  padding: 1rem;
}
header ul li a:hover {
  color: rgb(252, 230, 35);
}

/* vp */

.vp-logo {
  font-size: 1.5rem;
  margin-bottom: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.vp-logo i {
  color: rgb(252, 230, 35);
  margin-right: 0.5rem;
}

.vp {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(./img/paris1.jpeg) center center/cover;
  min-height: 90vh;
}
.vp-content {
  max-width: 800px;
  text-align: center;
}
.vp-content h1 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.vp-content p {
  font-size: 1.8rem;
  letter-spacing: 4px;
  line-height: 2rem;
}

/* Offer */

.offer {
  padding: 10rem 1rem;
}
.offer-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.offer-elem {
  border: 1px solid #ddd;
  background: white;
  margin: 1rem;
  flex: 1;
}
.offer-elem-img {
  width: 100%;
}

.offer-elem-text {
  padding: 2rem;
  text-align: center;
}

.offer-separator {
  margin: 1rem auto;
  height: 2px;
  width: 50px;
  background: #333;
}
/* who */

.who {
  display: flex;
  flex-flow: row nowrap;
  min-height: 600px;
}

.who-content-img {
  flex: 1;
  background: url(https://dyma-images.s3.fr-par.scw.cloud/html-css/projects/project2/team.jpg)
    center center/cover;
}
.who-content-text {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-content-text h2 {
  margin-bottom: 2rem;
}

.who-content-text p {
  font-size: 1.3rem;
  line-height: 1.8rem;
}
/* testimonials */

.testimonials {
  padding: 5rem 1rem;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
}
.testimonials-elem {
  flex: 1;
  background: white;
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonials-elem-text {
  padding: 0 2rem;
  margin-top: 1rem;
}
.testimonials-elem-text p i {
  margin: 0.2rem;
}
.testimonials-elem-profil p {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonials-elem-profil img {
  width: 50px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* contact */

.contact {
  padding: 10rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form input {
  background: #333;
  border: 0;
  border-bottom: 1px solid #555;
  padding: 1rem;
  font-size: 1.3rem;
  color: white;
  outline: 0;
  margin-bottom: 1rem;
}

.contact-form button {
  display: block;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 30px;
  background: rgb(252, 230, 35);
  color: black;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: black;
  color: white;
}

/* footer */

footer {
  background: #444;
  padding: 2rem 1rem;
  color: white;
  text-align: center;
}

footer p {
  margin-bottom: 0;
}
