/* reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #eee;
  color: #333;
}

p {
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

h2 {
  color: #cdcc01;
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
}

strong {
  color: #cdcc01;
  font-weight: 400;
}

/* class */

.container {
  display: block;
  max-width: 1200px;
  margin: auto;
}

/* vp + header */

.vp-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.title {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.bg-dark {
  background: #333;
  color: white;
}

header {
  height: 100px;
  padding: 1rem 2rem;
  background: #333;
  color: white;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.vp-logo {
  margin-bottom: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.vp-logo a img {
  width: 150px;
}

.vp-logo i {
  color: #f1c40f;
}

header ul {
  display: flex;
  flex-flow: nowrap;
  list-style: none;
}

header ul li {
  padding: 1rem;
}

header ul li a:hover {
  color: #cdcc01;
}

header a {
  color: white;
}

.vp {
  /* height: 100vh; */
  height: calc(100vh - 100px);
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/toplight-1-002-david-libeert-7TWj049oawM-unsplash.jpg)
    center center/cover;
}

.vp-content {
  max-width: 800px;
  text-align: center;
  color: white;
  padding: 1rem;
}

.vp-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333,
    1px 1px 0 #333;
}

.vp-content p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 2rem;
  color: white;
  text-shadow: -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333,
    1px 1px 0 #333;
}

/* offer */

.offer {
  padding: 10rem 1rem 10rem 1rem;
}

.offer-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.offer-elem {
  border: 1px solid #bbb;
  border-radius: 0 0 5px 5px;
  background: white;
  margin: 1rem;
  flex: 1;
}

.offer-elem-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.offer-elem-text {
  padding: 2rem;
  line-height: 1.5;
  text-align: center;
}

.offer-separator {
  margin: 1rem auto;
  height: 2px;
  width: 50px;
  background: #bbb;
}

.offer-elem-text-title {
  font-weight: 700;
  color: #cdcc01;
}

/* who */

.who {
  display: flex;
  flex-flow: row nowrap;
  padding-bottom: 5rem;
}

.who-content-img {
  flex: 1;
  background: url(../images/equipe-1-001-shane-rounce-DNkoNXQti3c-unsplash.jpg)
    center center/cover;
}

/* ### not any more used */
.who-content-img img {
  width: 100%;
  vertical-align: middle; /* to avoid bootom shift between text and image div */
}
/* ### */

.who-content-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-content-text h2 {
  color: white;
  margin-bottom: 2rem;
}

.who-content-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

/* where */

.where {
  display: flex;
  flex-flow: row nowrap;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.where-content-map {
  flex: 1;
  border: 1px solid #bbb;
}

.where-content-map iframe {
  width: 100%;
  vertical-align: middle; /* to avoid bootom shift between text and iframe div */
}

.where-content-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.where-content-text h2 {
  color: white;
  margin-bottom: 2rem;
}

.where-content-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

/* ... */
em {
  color: #555;
}
/* ... */

/* contact */

.contact {
  padding: 5rem 1rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-elem {
  flex: 1;
  background: white;
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-elem-text {
  padding: 0 2rem;
}

.contact-elem-text a:hover {
  color: #cdcc01;
}

.contact-elem-text p i {
  margin: 0.2rem;
}

.contact-elem-profil p {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-elem-profil img {
  width: 50px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* footer */

footer {
  background: #444;
  padding: 1rem 1rem;
  color: white;
  text-align: center;
  line-height: 1.8;
}

footer p {
  font-size: 0.8rem;
  font-weight: 200;
  margin-bottom: 0;
}

.footer-separator {
  margin: 1rem auto;
  height: 2px;
  width: 50px;
  background: #bbb;
}
