/* Global */
html {
  font-family: "Poppins";
}
.wrapper {
  width: 85%;
  margin:0 auto;
  padding:100px 0;
}
img {
  max-width:100%;
  display: block;
}

/* Header */
.header {
  padding:50px 0 150px;
  color:#fff;
}
.header.wrapper {
  height: 100vh;
  display: flex;
  flex-direction:column;
  justify-content:space-between;
}
.txt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.arrow {
  border:1px solid #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1 {
  font-family: 'Dosis', sans-serif;
  font-weight: normal;
  font-size: 65px;
}
/* Header nav */
.main-nav {
  display: flex;
  align-items:center;
}
.main-nav a {
  color:inherit;
  text-decoration: none;
}
.main-nav a+a {
  margin-left: 50px;
}
.main-nav a:first-child {
  margin-right:auto;
}

/* Vidéo */
video {
  position: absolute;
  height: 100%;
  width: 100%;
  top:0;
  left:0;
  object-fit: cover;
  z-index:-1;
}

/* Section Welcome */
.welcome {
  background:url('../images/palm-bg.jpg') center/cover;
}
.welcome .wrapper {
  display: flex;
  align-items:center;
}
.welcome__img {
  width: 70%;
}
.welcome__txt {
  width: 45%;
  background:#fff;
  margin-left:-15%;
  padding:75px 100px;
}
.sup-title {
  color: #a72c2a;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 18px;
  margin-bottom: 25px;
}
h2 {
  font-family: "Dosis";
  font-weight: normal;
  font-size: 50px;
  color: #293a77;
  line-height: 70px;
}
.button {
  display: inline-block;
  text-decoration: none;
  color:#a72c2a;
  text-transform: uppercase;
  border:1px solid #a72c2a;
  padding:20px 25px;
  transition:.3s all ease-in-out;
}
.button:hover {
  background:#a72c2a;
  color:#fff;
}
/* Residences */
.residences .wrapper {
  display: flex;
  justify-content: space-between;
  align-items:center;
}
.residences .wrapper > * {
  width: 35%;
}
.residences p {
  line-height: 30px;
  color: #293a77;
}
/* Hero image */
.hero {
  height: 100vh;
  background:url('../images/MAKENA2_60063d6c0d1144faf6f17e833d89bbba.jpg') center/cover fixed;
}