@font-face {
  font-family: brandon-reg;
  src: url(/fonts/Brandon_reg.otf);
}
@font-face {
  font-family: brandon-bld;
  src: url(/fonts/Brandon_bld.otf);
}
body, html, * {
  padding: 0px;
  margin: 0px;
}

body, html {
  width: 100%;
  height: 100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
	POSITION
	position: absolute;
  	top: 50%;
  	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	TEXT
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
*/
#teaser {
  width: 100% vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* SHARE */
.share {
  display: none;
  height: 40px;
  width: 40px;
  position: absolute;
  z-index: 20;
  bottom: 40px;
  left: 40px;
  cursor: pointer;
  border-radius: 20px;
}

.share .btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 27.5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.share .btn svg {
  fill: #FFF;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.share .btn svg:nth-child(1) {
  opacity: 1;
}

.share .btn svg:nth-child(2) {
  opacity: 0;
}

.share.open .btn svg:nth-child(1) {
  opacity: 0;
}

.share.open .btn svg:nth-child(2) {
  opacity: 1;
}

.share a {
  text-decoration: none;
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 0px;
  border-radius: 16px;
  border: 1px solid white;
  -webkit-transform: translateY(-50%) translateX(0%) rotate(30deg);
  -moz-transform: translateY(-50%) translateX(0%) rotate(30deg);
  -ms-transform: translateY(-50%) translateX(0%) rotate(30deg);
  -o-transform: translateY(-50%) translateX(0%) rotate(30deg);
  transform: translateY(-50%) translateX(0%) rotate(30deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.share.open a:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(60px) rotate(0deg);
  -moz-transform: translateY(-50%) translateX(60px) rotate(0deg);
  -ms-transform: translateY(-50%) translateX(60px) rotate(0deg);
  -o-transform: translateY(-50%) translateX(60px) rotate(0deg);
  transform: translateY(-50%) translateX(60px) rotate(0deg);
}

.share.open a:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(120px) rotate(0deg);
  -moz-transform: translateY(-50%) translateX(120px) rotate(0deg);
  -ms-transform: translateY(-50%) translateX(120px) rotate(0deg);
  -o-transform: translateY(-50%) translateX(120px) rotate(0deg);
  transform: translateY(-50%) translateX(120px) rotate(0deg);
}

.share.open a:nth-child(4) {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(180px) rotate(0deg);
  -moz-transform: translateY(-50%) translateX(180px) rotate(0deg);
  -ms-transform: translateY(-50%) translateX(180px) rotate(0deg);
  -o-transform: translateY(-50%) translateX(180px) rotate(0deg);
  transform: translateY(-50%) translateX(180px) rotate(0deg);
}

.share a:nth-child(4) svg {
  stroke: #FFF;
}

.share a svg {
  height: 14px;
  fill: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* END SHARE */
/* LOGO */
.position-logo {
  position: absolute;
  z-index: 10;
  height: 140px;
  width: 100%;
  top: 0%;
  -webkit-transform: translateY(calc(50vh - 70px));
  -moz-transform: translateY(calc(50vh - 70px));
  -ms-transform: translateY(calc(50vh - 70px));
  -o-transform: translateY(calc(50vh - 70px));
  transform: translateY(calc(50vh - 70px));
}

.position-logo.anim-3 {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.position-logo .logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.position-logo.anim-1 .logo {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.position-logo.anim-3 .logo {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -moz-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  -o-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
}

.position-logo .logo img {
  opacity: 0;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -250%);
  -moz-transform: translate(-50%, -250%);
  -ms-transform: translate(-50%, -250%);
  -o-transform: translate(-50%, -250%);
  transform: translate(-50%, -250%);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.position-logo.anim-2 .logo img {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* END LOGO */
/* SLIDE IMG */
.slide-img {
  position: absolute;
  background-color: #FFF;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.slide-img.anim-2 {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slide-img.anim-3 {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.slide-img .img {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-image: url(/image/teaser/photo.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.slide-img.anim-1 .img {
  -webkit-transition: opacity 1.5s ease, transform 6s ease;
  -moz-transition: opacity 1.5s ease, transform 6s ease;
  -ms-transition: opacity 1.5s ease, transform 6s ease;
  -o-transition: opacity 1.5s ease, transform 6s ease;
  transition: opacity 1.5s ease, transform 6s ease;
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* END SLIDE IMG */
/* SLIDE FIGURE */
.slide-figure {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: #FFF;
  z-index: 6;
  -webkit-transform: translateX(100%) skew(0deg);
  -moz-transform: translateX(100%) skew(0deg);
  -ms-transform: translateX(100%) skew(0deg);
  -o-transform: translateX(100%) skew(0deg);
  transform: translateX(100%) skew(0deg);
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.slide-figure.anim-1 {
  -webkit-transform: translateX(25%) skew(-30deg);
  -moz-transform: translateX(25%) skew(-30deg);
  -ms-transform: translateX(25%) skew(-30deg);
  -o-transform: translateX(25%) skew(-30deg);
  transform: translateX(25%) skew(-30deg);
}

.slide-figure.anim-2 {
  -webkit-transform: translateX(-100%) skew(0deg);
  -moz-transform: translateX(-100%) skew(0deg);
  -ms-transform: translateX(-100%) skew(0deg);
  -o-transform: translateX(-100%) skew(0deg);
  transform: translateX(-100%) skew(0deg);
}

/* END SLIDE FIGURE */
/* FORM 1 */
.form-1 {
  position: absolute;
  z-index: 7;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  font-family: brandon-reg;
}

.form-1 .content {
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-1.anim-2 .content {
  -webkit-transition: -webkit-transform 2s, opacity 0.5s;
  transition: transform 2s, opacity 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.form-1 .title {
  color: #2f3341;
  font-size: 92px;
  overflow: hidden;
  font-family: brandon-bld;
}

.form-1 .title span {
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.form-1.anim-1 .title span {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.form-1 .subtitle {
  color: #5171ff;
  font-size: 16px;
  overflow: hidden;
  font-family: brandon-reg;
}

.form-1 .subtitle span {
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.form-1.anim-1 .subtitle span {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.form-1 .description {
  color: #727683;
  font-size: 18px;
  overflow: hidden;
  max-width: 470px;
  margin: auto;
  margin-top: 15px;
  font-family: brandon-reg;
}

.form-1 .description p {
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.form-1.anim-1 .description p {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.form-1 .container-mail {
  margin-top: 30px;
}
.form-1 .container-mail .form-msg {
  margin-top: 10px;
  position: relative;
}
.form-1 .container-mail .form-msg .confirm, .form-1 .container-mail .form-msg .error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s, opacity 1s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.form-1 .container-mail .form-msg .confirm.visible, .form-1 .container-mail .form-msg .error.visible {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.form-1 .container-mail .mail {
  display: inline-block;
  vertical-align: top;
  padding-left: 45px;
  position: relative;
  width: 240px;
  height: 46px;
  border: 1px solid #727683;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.form-1.anim-1 .container-mail .mail {
  opacity: 1;
}

.form-1 .container-mail .mail svg {
  height: 13px;
  position: absolute;
  top: 50%;
  left: 17px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-1 .container-mail .mail input {
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  color: #727683;
  font-size: 14px;
}

.form-1 .container-mail .submit {
  display: inline-block;
  vertical-align: top;
  margin-left: 7px;
  height: 46px;
  line-height: 46px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.form-1 .container-mail .submit button {
  outline: none;
  height: 46px;
  line-height: 46px;
  text-align: center;
  padding: 0px 10px 0px 10px;
  background-color: #5171ff;
  border: 1px solid #5171ff;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.form-1.anim-1 .container-mail .submit {
  opacity: 1;
}

.form-1 .arrow {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.form-1.anim-2 .arrow {
  opacity: 0;
}

.form-1 .arrow .round {
  cursor: pointer;
  width: 60px;
  position: relative;
  height: 60px;
  border-radius: 30px;
  background-color: rgba(47, 50, 65, 0.2);
  border: 1px solid #2f3341;
  opacity: 0;
  -webkit-transition: opacity .25s ease;
  -moz-transition: opacity .25s ease;
  -ms-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.form-1.anim-1 .arrow .round {
  opacity: 1;
}

.form-1 .arrow .round svg {
  height: 7px;
  fill: #2f3341;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form-1 .arrow .bar {
  width: 1px;
  height: 44px;
  background-color: #2f3341;
  margin: auto;
  margin-top: 14px;
  opacity: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.form-1.anim-1 .arrow .bar {
  opacity: 1;
}

/* END FORM 1 */
/* ------------------ CONTAINER MAP ------------------ */
.container-map {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  overflow: hidden;
  display: none;
}

.container-map .map {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  background-image: url(/image/teaser/capture-d-e-cran-2016-04-29-a--14-58-54.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}

.container-map .map.ready {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.container-map .overlay {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.container-map > .content {
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
}

/* LOCALISATION */
.container-map .content .localisation {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.container-map .content .localisation .title {
  overflow: hidden;
  color: white;
  font-size: 28px;
  text-align: center;
  font-family: brandon-bld;
}

.container-map .content .localisation .title span {
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .75s ease;
  -moz-transition: all .75s ease;
  -ms-transition: all .75s ease;
  -o-transition: all .75s ease;
  transition: all .75s ease;
}

.container-map .content .localisation.anim-1 span {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

.container-map .content .localisation .container-place {
  height: 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  font-family: brandon-bld;
}

.container-map .content .localisation .container-dot {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.container-map .content .localisation .container-dot .dot {
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: #FFF;
  margin: 3px;
  display: inline-block;
  vertical-align: top;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all .75s ease;
  -moz-transition: all .75s ease;
  -ms-transition: all .75s ease;
  -o-transition: all .75s ease;
  transition: all .75s ease;
}

.container-map .content .localisation.anim-1 .container-dot .dot:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.container-map .content .localisation.anim-1 .container-dot .dot:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.container-map .content .localisation.anim-1 .container-dot .dot:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.container-map .content .localisation.anim-1 .container-dot .dot {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.container-map .content .localisation.ready .container-dot .dot {
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
}

.container-map .content .localisation .container-place span {
  color: white;
  font-size: 42px;
  font-size: 42px;
  line-height: 60px;
  -webkit-transition: all .75s ease;
  -moz-transition: all .75s ease;
  -ms-transition: all .75s ease;
  -o-transition: all .75s ease;
  transition: all .75s ease;
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.container-map .content .localisation.ready .container-place span {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}

/* END LOCALISATION */
/* FIND */
.find {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.find .content {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.find p {
  max-width: 585px;
  margin: auto;
  color: white;
  font-size: 28px;
  font-family: brandon-bld;
  text-align: center;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.find.anim-1 p {
  opacity: 1;
}

.find .about {
  cursor: pointer;
  height: 27px;
  width: 27px;
  margin: auto;
  margin-top: 12px;
  position: relative;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.find.anim-1 .about {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}

.find .about .text {
  cursor: default;
  opacity: 0;
  color: #2f3341;
  width: 300px;
  border-radius: 4px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  font-family: brandon-reg;
  font-size: 13px;
  padding: 30px;
  background-color: #FFF;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(10px);
  -moz-transform: translateX(-50%) translateY(10px);
  -ms-transform: translateX(-50%) translateY(10px);
  -o-transform: translateX(-50%) translateY(10px);
  transform: translateX(-50%) translateY(10px);
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.find .about:hover .text {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0px);
  -moz-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  -o-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
}

.find .arrow {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.find.anim-2 .arrow {
  opacity: 0;
}

.find .arrow .round {
  cursor: pointer;
  width: 60px;
  position: relative;
  height: 60px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #FFF;
  opacity: 0;
  -webkit-transition: opacity .25s ease;
  -moz-transition: opacity .25s ease;
  -ms-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.find.anim-1 .arrow .round {
  opacity: 1;
}

.find .arrow .round svg {
  height: 7px;
  fill: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.find .arrow .bar {
  width: 1px;
  height: 44px;
  background-color: #FFF;
  margin: auto;
  margin-top: 14px;
  opacity: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.find.anim-1 .arrow .bar {
  opacity: 1;
}

/* END FIND */
/* RESULT */
.result {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

.result .content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

.result .thumb {
  position: absolute;
  width: 360px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
  font-size: 0px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.result.anim-thumb .thumb:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.result.anim-thumb .thumb:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.result.anim-thumb .thumb:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.result.anim-thumb .thumb {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.result .thumb .info {
  display: block;
  width: 50%;
  vertical-align: top;
  position: relative;
  padding-top: 40px;
}

.result .thumb .info .statu {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-family: brandon-reg;
}

.result .thumb .info .statu .open {
  display: none;
  color: #00c673;
}

.result .thumb .info .statu.open .open {
  display: block;
}

.result .thumb .info .statu .close {
  display: none;
  color: #ff5c5c;
}

.result .thumb .info .statu.close .close {
  display: block;
}

.result .thumb .info .title {
  display: block;
  color: #2f3341;
  font-size: 20px;
  text-align: center;
  padding-left: 13px;
  padding-right: 13px;
  font-family: brandon-bld;
}

.result .thumb .info .more {
  width: 100%;
  text-align: center;
}

.result .thumb .info .price {
  display: inline-block;
  vertical-align: middle;
  color: #9498a8;
  font-size: 13px;
  font-family: brandon-reg;
}

.result .thumb .info .more .separate {
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #d4dadf;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
}

.result .thumb .info .distance {
  display: inline-block;
  vertical-align: middle;
  color: #9498a8;
  font-size: 13px;
  font-family: brandon-reg;
}

.result .thumb .info .place {
  padding-left: 12px;
  position: relative;
  color: #9498a8;
  font-size: 13px;
  font-family: brandon-reg;
  display: inline-block;
  text-align: left;
}

.result .thumb .info .place svg {
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.result .thumb .info span {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result .thumb .info .social {
  padding-top: 10px;
  width: calc(100% - 20px);
  margin: auto;
  margin-top: 15px;
  border-top: 1px solid #eaeaea;
  padding-bottom: 14px;
}

.result .thumb .info .social .container-pp {
  display: inline-block;
  vertical-align: middle;
}

.result .thumb .info .social .pp {
  display: inline-block;
  vertical-align: top;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  border: 2px solid #FFF;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.result .thumb .info .social .pp:nth-child(2), .result .thumb .info .social .pp:nth-child(3) {
  margin-left: -7px;
}

.result .thumb .info .social .number {
  display: inline-block;
  vertical-align: middle;
  color: #727683;
  font-size: 13px;
  font-family: brandon-reg;
}

.result .thumb .info .social .separate {
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #d4dadf;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
}

.result .thumb .info .social .recommend {
  display: inline-block;
  vertical-align: middle;
  color: #727683;
  font-family: brandon-reg;
  font-size: 13px;
}

.result .thumb .info .social .recommend svg {
  height: 13px;
  display: inline-block;
  vertical-align: middle;
}

.result .thumb .info .social .recommend span {
  display: inline-block;
  vertical-align: middle;
}

.result .thumb .illu {
  position: absolute;
  overflow: hidden;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  border-radius: 0px 6px 6px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.result .thumb .illu:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.result .thumb .illu .type {
  position: absolute;
  right: 13px;
  top: 9px;
  height: 24px;
  line-height: 24px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100px;
  color: white;
  font-size: 11px;
  font-family: brandon-reg;
  padding-left: 11px;
  padding-right: 11px;
}

.result .thumb .see {
  cursor: pointer;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 53px;
  height: 34px;
  line-height: 34px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid white;
  border-radius: 3px;
  color: white;
  font-size: 12px;
  font-family: brandon-reg;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}

.result .thumb .see:hover {
  background-color: #FFF;
  color: #2f3341;
}

.result .update {
  width: 140px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.result .update .btn {
  margin: auto;
  cursor: pointer;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  color: white;
  font-size: 12px;
  background-color: #ff7544;
  border-radius: 100px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
  font-family: brandon-reg;
}

.result .update .lg {
  margin-top: 9px;
  font-family: brandon-bld;
  height: 16px;
  font-size: 11px;
  color: #FFF;
}

/* END RESULT */
/* ------------------ END CONTAINER MAP ------------------ */
@media screen and (max-width: 1000px) {
  .share {
    top: 50px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .share .btn svg {
    fill: #2f3341;
  }

  .share a {
    top: 0%;
    left: 50%;
    border: 1px solid #2f3341;
    -webkit-transform: translateY(0%) translateX(-50%) rotate(30deg);
    -moz-transform: translateY(0%) translateX(-50%) rotate(30deg);
    -ms-transform: translateY(0%) translateX(-50%) rotate(30deg);
    -o-transform: translateY(0%) translateX(-50%) rotate(30deg);
    transform: translateY(0%) translateX(-50%) rotate(30deg);
  }

  .share.open a:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(60px) rotate(0deg);
    -moz-transform: translateX(-50%) translateY(60px) rotate(0deg);
    -ms-transform: translateX(-50%) translateY(60px) rotate(0deg);
    -o-transform: translateX(-50%) translateY(60px) rotate(0deg);
    transform: translateX(-50%) translateY(60px) rotate(0deg);
  }

  .share.open a:nth-child(3) {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(120px) rotate(0deg);
    -moz-transform: translateX(-50%) translateY(120px) rotate(0deg);
    -ms-transform: translateX(-50%) translateY(120px) rotate(0deg);
    -o-transform: translateX(-50%) translateY(120px) rotate(0deg);
    transform: translateX(-50%) translateY(120px) rotate(0deg);
  }

  .share.open a:nth-child(4) {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(180px) rotate(0deg);
    -moz-transform: translateX(-50%) translateY(180px) rotate(0deg);
    -ms-transform: translateX(-50%) translateY(180px) rotate(0deg);
    -o-transform: translateX(-50%) translateY(180px) rotate(0deg);
    transform: translateX(-50%) translateY(180px) rotate(0deg);
  }

  .share a:nth-child(4) svg {
    stroke: #2f3341;
  }

  .share a svg {
    fill: #2f3341;
  }

  .position-logo.anim-3 .logo {
    -webkit-transform: translate(-50%, -50%) scale(0.4);
    -moz-transform: translate(-50%, -50%) scale(0.4);
    -ms-transform: translate(-50%, -50%) scale(0.4);
    -o-transform: translate(-50%, -50%) scale(0.4);
    transform: translate(-50%, -50%) scale(0.4);
  }

  .slide-img.anim-2 {
    -webkit-transform: translateX(-15%);
    -moz-transform: translateX(-15%);
    -ms-transform: translateX(-15%);
    -o-transform: translateX(-15%);
    transform: translateX(-15%);
  }

  .slide-img.anim-3 {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .slide-figure.anim-1 {
    -webkit-transform: translateX(25%) skew(-30deg);
    -moz-transform: translateX(25%) skew(-30deg);
    -ms-transform: translateX(25%) skew(-30deg);
    -o-transform: translateX(25%) skew(-30deg);
    transform: translateX(25%) skew(-30deg);
  }

  .slide-figure.anim-1 {
    -webkit-transform: translateX(25%) skew(-30deg) scale(1.6);
    -moz-transform: translateX(25%) skew(-30deg) scale(1.6);
    -ms-transform: translateX(25%) skew(-30deg) scale(1.6);
    -o-transform: translateX(25%) skew(-30deg) scale(1.6);
    transform: translateX(25%) skew(-30deg) scale(1.6);
  }

  .slide-figure.anim-2 {
    -webkit-transform: translateX(-100%) skew(0deg);
    -moz-transform: translateX(-100%) skew(0deg);
    -ms-transform: translateX(-100%) skew(0deg);
    -o-transform: translateX(-100%) skew(0deg);
    transform: translateX(-100%) skew(0deg);
  }

  .form-1 .title {
    font-size: 62px;
  }

  .form-1 .subtitle {
    font-size: 14px;
  }

  .form-1 .description {
    font-size: 14px;
    max-width: 240px;
  }

  .form-1.anim-1 .container-mail .submit {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 350px) {
  .result .thumb .info .social .recommend {
    font-size: 8px;
  }

  .result .thumb .info .social .recommend svg {
    height: 8px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  /* iPhone 6 */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  /* iPhone 5 */
}
