/* start font  */
/*Raleway*/
@font-face {
  src: url("../font/Raleway/Raleway-ExtraLight.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 100;
}
@font-face {
  src: url("../font/Raleway/Raleway-Light.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 300;
}
@font-face {
  src: url("../font/Raleway/Raleway-Regular.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 400;
}
@font-face {
  src: url("../font/Raleway/Raleway-Medium.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 500;
}
@font-face {
  src: url("../font/Raleway/Raleway-Bold.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 700;
}
@font-face {
  src: url("../font/Raleway/Raleway-ExtraBold.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 800;
}
@font-face {
  src: url("../font/Raleway/Raleway-Black.ttf") format("truetype");
  font-family: "Raleway";
  font-weight: 900;
}

/* rules styles */
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  text-align: center;
  color: black;
  font-family: "Raleway";
}
a {
  color: inherit;
  text-decoration: none;
  outline: none !important;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
button {
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
}
button:focus {
  outline: none;
}
.display {
  display: initial !important;
}
.hidden {
  display: none !important;
}
.white {
  color: white !important;
}
.black {
  color: black !important;
}
.underline {
  text-decoration: underline !important;
}
.bold {
  font-weight: bold !important;
}
.d-contents {
  display: contents;
}
html,
body {
  height: 100%;
}
#main {
  min-height: 634px;
  height: 100%;
  margin: auto;
}
input::-webkit-input-placeholder {
  line-height: normal !important;
}
::-webkit-input-placeholder { /* Edge */
  color: #283A72;
  opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #283A72;
  opacity: 1;

}
::placeholder {
  color: #283A72;
  opacity: 1;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
input:focus{
  outline: none;
}
input{
  border-radius: 0;
  -webkit-appearance: none;
}
.slick-slide:focus{
  outline: none;
  cursor: grab;
}
/* validate error */
.error {
  color: #e40421 !important;
  text-align: left;
  font-size: 0.8vw !important;
  text-transform: initial !important;
  display: block;
  font-weight: 900;
}
@media (max-width: 767px) {
  .error {
    color: #e40421 !important;
    text-align: left;
    font-size: 3.8vw !important;
    text-transform: initial !important;
    float: left;
    width: 100%;
  }
}









.progress-container {
  width: 100%;
  height: 0.5vw;
  background: transparent;
  position: fixed;
  bottom: 0;
  z-index: 10;
}

.progress-bar {
  height: 0.5vw;
  background: #5eb6de;
  width: 0%;
}



::-webkit-scrollbar {
  display: none;
  }








/* btn_style_9 */
.btn_style_9 {
	display: inline-block;
	padding: 1.2vw 2vw;
	background: #e1b12c;
	border: 0.12vw solid white;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  font-weight: bold;
}
.btn_style_9 span {
	position: relative;
	display: inline-block;
	animation: button-roll-out .3s forwards cubic-bezier(.165,.84,.44,1);
}
.btn_style_9:hover span {
	animation: button-roll-over .3s forwards cubic-bezier(.165,.84,.44,1);
}
.btn_style_9::before {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: bottom left;
	transition: transform .3s cubic-bezier(.77,0,.175,1);
	background-color: #fff;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
}
.btn_style_9:hover::before {
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
}
.btn_style_9:hover{
	color: #dba52a;
}
@keyframes button-roll-over{
	35%{transform:translateY(0.6vw)}
	35.001%{color:#dba52a;transform:translateY(-1.2vw)}
	100%{color:#dba52a;transform:translateY(0)}
}















/* header */
.header {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 1.5vw 2.5vw;
  color: white;
  transition: all 0.3s;
}
.header .logo {
  float: left;
  width: 6vw;
}
.menu {
  display: inline-block;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: 500;
  float: right;
  margin-top: 3vw;
  margin-right: 3vw;
}
.menu a{
  margin: 0 1.3vw;
  letter-spacing: 0.1vw;
}
.header .don{
  margin-top: 1.8vw;
  float: right;
  font-size: 1vw;
  letter-spacing: 0.15vw;
}

/*header sticky*/
.header_sticky {
  position: fixed;
  z-index: 10;
  width: 100%;
  padding: 0.5vw 2.5vw;
  background-color: #e4b22c;
  box-shadow: 0 5px 12px rgba(0,0,0,0), 0 7px 17px rgba(0,0,0,0.03);
}
.header_sticky .logo {
  float: left;
  width: 4.5vw;
}
.header_sticky .menu {
  font-size: 0.9vw;
  text-transform: uppercase;
  font-weight: 500;
  float: right;
  margin-top: 1.5vw;
  margin-right: 3vw;
}
.header_sticky .don {
  margin-top: 0.2vw;
  float: right;
  font-size: 0.9vw;
  letter-spacing: 0.15vw;
}


/*zone1*/
.zone1 {
  height: 61vw;
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}
.zone1:after{
  content: "";
  position: absolute;
  height: 11vw;
  width: 0.2vw;
  background-color: white;
  bottom: -3vw;
  z-index: 3;
}
.zone1 .img1,
.zone1 .img2,
.zone1 .img3,
.zone1 .img4,
.zone1 .img5,
.zone1 .img6,
.zone1 .img7,
.zone1 .img8,
.zone1 .img9{
position: absolute;
z-index: 1;
/* transition: all 0.3s ease-out; */
}
.zone1 .img1{
  width: 16vw;
  top: 8.5vw;
  right: 57vw;
}
.zone1 .img2 {
  width: 10vw;
  top: 11vw;
  right: 38vw;
}
.zone1 .img3 {
  width: 9vw;
  top: 9vw;
  right: 19vw;
}
.zone1 .img4 {
  width: 10vw;
  top: 17vw;
  left: 5vw;
}
.zone1 .img5 {
  width: 12vw;
  top: 25vw;
  right: 3.5vw;
}
.zone1 .img6 {
  width: 15vw;
  top: 38.5vw;
  left: 1.5vw;
}
.zone1 .img7 {
  width: 12vw;
  bottom: 1.5vw;
  left: 22.5vw;
}
.zone1 .img8 {
  width: 20vw;
  bottom: 0;
  left: 61.5vw;
}
.zone1 .img9 {
  width: 9vw;
  bottom: 10vw;
  right: 4vw;
}
.zone1 .block_text {
  position: absolute;
  color: white;
  top: 22vw;
  left: 0;
  right: 0;
  display: inline-block;
}
.zone1 .block_text h2{
  font-style: italic;
    margin: 0;
    padding: 0;
    font-size: 2.2vw;
    font-family: serif;
}
.zone1 .block_text h1{
  font-weight: 900;
    text-transform: uppercase;
    font-size: 8vw;
    letter-spacing: 1.5vw;
    margin: 0;
    padding: 0;
}
.zone1 .block_text p{
  font-size: 1.3vw;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.7vw;
}


.dore {
  color: #e4b22c;
}



/* zone2 */
.zone2{
  z-index: 2;
  height: 354vw;
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding-top: 7vw;
  overflow: hidden;
}
.zone2 h2{
  font-style: italic;
  margin: 0;
  padding: 0;
  font-size: 1.8vw;
  color: white;
  margin-left: 8vw;
  font-family: serif;
}
.zone2 h1{
  margin: 0 auto;
  padding: 0;
  font-size: 16vw;
  color: white;
  text-align: center;
  font-weight: 900;
  margin-left: -2vw;
  letter-spacing: 1.5vw;
  line-height: 16vw;
}
.zone2 .block_1{
  display: flex;
  width: 80%;
  margin: auto;
  margin-top: 7vw;
}
.zone2 .block_1 .side {
  width: 50%;
  margin-left: 5vw;
  text-align: left;
  color: white;
}
.zone2 .block_1 .side p{
  font-size: 1.49vw;
  padding-top: 1vw;
}
.zone2 .block_1 .side img{
  width: 100%;
  cursor: pointer;
}
.zone2 .block_1 .side2 p{
  padding: 1vw 0;
  color: white;
  font-weight: 800;
  font-size: 1.2vw;
  text-align: center;
  margin: 0;
}
.zone2 .block_1 .side2 p span{
  font-weight: 200;
}
.zone2 .box {
  position: absolute;
  cursor: pointer;
}
.zone2 .box img {
  width: 100%;
}
.zone2 .box p{
  padding: 1vw 0;
  color: white;
  font-weight: 800;
  font-size: 1.2vw;
}
.zone2 .box p span{
    font-weight: 200;
}
.zone2 .box.box1 {
  width: 30vw;
  left: 15vw;
  top: 62vw;
}
.zone2 .box.box2 {
  width: 29vw;
  z-index: 5;
  right: 14vw;
  top: 76vw;
}
.zone2 .box.video1 {
  width: 25vw;
  z-index: 5;
  left: 21vw;
  top: 102vw;
}
.zone2 .box.box3 {
  width: 28vw;
  z-index: 5;
  right: 11vw;
  top: 118vw;
}
.zone2 .block_2 {
  position: absolute;
  top: 167vw;
  left: 0;
  right: 0;
  margin: auto;
}
.zone2 .block_2 .left_side{
  width: 60%;
  display: inline-block;
  height: 29vw;
  left: 0;
  position: absolute;
}
.zone2 .block_2 .left_side .zone2_slider_block2_arrow_left{
    position: absolute;
    width: 2vw;
    left: 26vw;
    bottom: 1vw;
    z-index: 2;
    cursor: pointer;
}
.zone2 .block_2 .left_side .zone2_slider_block2_arrow_right{
    position: absolute;
    width: 2vw;
    right: 26vw;
    bottom: 1vw;
    z-index: 2;
    cursor: pointer;
}
.zone2_block2_slider .slick-slide.slick-current.slick-active{
  opacity: 100%;
  position: relative;
  z-index: 2;
  padding: 3vw 0 1vw;
}
.zone2_block2_slider .slick-slide:not(.slick-active){

  transform: scale(1) translateX(100%) translateY(5%);
}
.zone2_block2_slider .slick-active+.slick-slide, .zone2_block2_slider .slick-active+.slick-cloned {
  z-index: 1;
  transform: scale(1) translateX(-75%) translateY(-5%);
}
.zone2 .block_2 .left_side .zone2_block2_slider:after{
  position: absolute;
  content: "";
  width: 0.1vw;
  height: 1.5vw;
  background-color: #827e74;
  bottom: 1vw;
}
.zone2 .block_2 .left_side .zone2_block2_slider {
  padding: 0 15.5vw;
  height: 100%;
}
.zone2 .block_2 .left_side img{
    width: 100%;
}
.zone2 .block_2 .right_side{
  display: inline-block;
  color: white;
  text-align: left;
  font-weight: bold;
  font-size: 1.9vw;
  width: 39%;
  right: 0;
  position: absolute;
  padding-top: 11vw;
}
.zone2 .block_2 .right_side p span{
  font-weight: 400;
}
.zone2 .box.box4 {
  width: 22vw;
  z-index: 5;
  right: 7vw;
  top: 201vw;
}
.zone2 .box.box5 {
  width: 27vw;
  z-index: 5;
  left: 20vw;
  top: 211vw;
}
.zone2 .box.box6 {
  width: 21vw;
  z-index: 6;
  right: 19vw;
  top: 233vw;
}
.zone2 .video_2 {
  width: 72vw;
  right: 0;
  left: 0;
  top: 265vw;
  position: absolute;
  margin: auto;
}
.zone2 .video_2 img{
  width: 100%;
  cursor: pointer;
}
.zone2 .last_block {
  position: absolute;
  bottom: 5vw;
  color: white;
}
.zone2 .last_block .title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 4vw;
  margin: 0;
  line-height: 1;
  padding: 0;
  margin-bottom: 4vw;
  letter-spacing: 0.2vw;
}
.zone2 .last_block .text {
  font-weight: 400;
  width: 64%;
  margin: auto;
  font-size: 1.3vw;
  letter-spacing: 0.1vw;
  margin-bottom: 4vw;
}
.zone2 .last_block a{
  font-size: 1.5vw;
    padding: 2vw 8vw;
}




.modal .btn-close {
  background: #202e5b;
  border-radius: 50%;
  width: 2vw;
  position: absolute;
  height: 2vw;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  transition: all 150ms;
  right: 1vw;
  top: 1vw;
}
.modal .btn-close .icon-cross {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 1vw;
  height: 1vw;
}
.modal .btn-close .icon-cross:before, .modal .btn-close .icon-cross:after {
  content: '';
  position: absolute;
  top: 0.5vw;
  left: 0;
  right: 0;
  height: 0.1vw;
  background: #fff;
  border-radius: 6px;
}
.modal .btn-close .icon-cross:before {
  transform: rotate(45deg);
}
.modal .btn-close .icon-cross:after {
  transform: rotate(-45deg);
}
.modal .btn-close .icon-cross span {
  display: block;
}
.modal .btn-close:hover, .modal .btn-close:focus {
  transform: rotateZ(90deg);
  background: #202e5b;
}

#exampleModalCenter_box0 .modal-body .text p:nth-child(1) {
  padding: 2vw 3vw 0vw 3vw;
}
#exampleModalCenter_box0 .modal-body .text p:nth-child(3) {
  padding: 2vw 3vw 2vw 3vw;
}


.modal .visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}



.modal_box .modal-content{
  border-radius: 0;
  border: none;
}
.modal_box .modal-dialog {
  max-width: 70vw;
}
.modal_box .modal-body {
  padding: 0;
  display: flex;
  text-align: left;
  position: relative;
}
.modal_box .modal-body .cover {
  width: 43%;
  display: inline-block;
}
.modal_box .modal-body .text{
  display: inline-block;
  width: 59%;
  font-size: 0.9vw;
  color: #202e5b;
  font-weight: 500;
}
.modal_box .modal-body .text p{
  margin: 0;
}
.modal_box .modal-body .text p img{
  width: 4vw;
}
.modal_box .modal-body .text p:nth-child(1){
  padding: 4vw 3vw 0vw 3vw;
  width: 101.7%;
  font-size: 1.5vw;
  font-weight: bold;
}
.modal_box .modal-body .text p:nth-child(2){
  font-size: 1.1vw;
  padding: 0vw 3vw;
  margin-top: 1vw;
  font-weight: 500;
}
.modal_box .modal-body .text p:nth-child(3){
  padding: 5vw 3vw 2vw 3vw;
    font-size: 1.1vw;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.modal_video .modal-content {
  background-color: transparent;
}
.modal_video .btn-close {
  right: 1vw;
  top: 1.7vw;
}






/*zone3*/
.zone3 {
  position: relative;
  color: white;
  background-color: #e1b12c;
  padding-top: 5vw;
  overflow: hidden;
}
.zone3 h2 {
  font-style: italic;
  margin: 0;
  padding: 0;
  font-size: 2vw;
  margin-right: 14vw;
  font-family: serif;
}
.zone3 h1 {
  margin: 0 auto;
  padding: 0;
  font-size: 19.5vw;
  text-align: center;
  font-weight: 900;
  margin-left: -2vw;
  letter-spacing: 2vw;
  line-height: 16vw;
}

.zone3 .block_slider{
  padding: 8vw 8vw 6vw 15vw;
}
.zone3 .my_slide .age{
  display: flex;
  margin: 4vw 0;
}
.zone3 .my_slide .age img{
  width: 50%;
}
.zone3 .my_slide .age .text{
  display: flex;
  width: 39%;
  text-align: left;
  padding-left: 4vw;
  align-self: center;
}
.zone3 .my_slide .age .text .title{
  font-weight: bold;
  font-size: 2.3vw;
  line-height: 1.2;
  padding-top: 2vw;
}
.zone3 .my_slide .age .text .subtitle{
  font-size: 1.4vw;
  font-weight: 400;
  padding-top: 1vw;
}
.zone3 .my_slide .slick-dots {
  position: absolute;
  top: 4.5vw;
  left: -9vw;
  display: grid;
  margin: 0;
  list-style: none;
  text-align: center;
  bottom: auto;
}
.zone3 .my_slide .slick-dots .slick-active span{
  font-weight: bold;
  zoom: 1.1;
}
.zone3 .my_slide .slick-dots li {
  position: relative;
  display: inline-block;
  width: 3vw;
  margin: 0 0 2vw 0;
  padding: 0;
  cursor: pointer;
  font-size: 2vw;
  font-weight: 300;
  height: 1.4vw;
}





/* zone4 */
.zone4 {
  position: relative;
  color: white;
  background-color: #2b3b66;
  padding-top: 5vw;
  padding-bottom: 5vw;
  overflow: hidden;
}
.zone4 h2 {
  font-style: italic;
  margin: 0;
  padding: 0;
  font-size: 2vw;
  margin-right: 16vw;
  font-family: serif;
}
.zone4 h1 {
  margin: 0 auto;
  padding: 0;
  font-size: 16.2vw;
  text-align: center;
  font-weight: 900;
  margin-left: -2vw;
  letter-spacing: 2vw;
  line-height: 16vw;
  text-transform: uppercase;
}
.zone4 .cover {
  width: 80vw;
  margin: 2vw 0 10vw 0;
}
.zone4 .title{
    display: inline-block;
    font-size: 5vw;
    width: 49%;
    font-weight: bold;
    text-align: right;
    line-height: 1.1;
    padding-right: 7vw;
}
.zone4 .subtitle {
  display: inline-block;
  width: 50%;
  font-size: 1.3vw;
  text-align: left;
  padding: 0vw 23.5vw 2vw 0vw;
  transform: translateY(-4vw);
}
.slider_zone4 {
  margin: 8vw 0 0 10vw;
}
.zone4 .slider_zone4 .vid  {
  margin: 1vw;
  cursor: pointer;
}
.zone4 .slider_zone4 .vid img {
  display: block;
  width: 100%;
}







/*zone5*/
.zone5 {
  background-color: #2b3b66;
  color: white;
  padding: 3vw 0 9vw 0;
}
.zone5 .left_side {
  display: inline-block;
  width: 49%;
  float: left;
}
.zone5 .right_side {
  display: inline-block;
  width: 49%;
  text-align: left;
  padding-left: 5vw;
}
.zone5 .right_side .title {
  display: inline-block;
  font-size: 5vw;
  font-weight: bold;
  text-align: left;
  line-height: 1.1;
  margin-bottom: 4vw;
  margin-top: 0vw;
}
.zone5 .right_side .text {
  font-size: 1.4vw;
  width: 32vw;
  margin-bottom: 2vw;
}
.zone5 .right_side ol {
  font-size: 1.1vw;
  margin: 0;
  margin-bottom: 0.3vw;
  color: #e1b12c;
  font-weight: 500;
  position: relative;
  padding-left: 2vw;
  letter-spacing: 0.05vw
}
.zone5 .right_side ol:before{
  content: '*';
  position: absolute;
  font-size: 2.5vw;
  left: 0vw;
  top: -0.5vw;
  font-weight: 900;
}
.zone5 .right_side .don{
  margin-top: 6vw;
  padding: 1.7vw 8vw;
  font-size: 1.3vw;
}
.zone5_slider_nav div img{
  width: 100%;
}
.zone5_slider_for div img{
  width: 100%;
}
.zone5_slider_nav{
  margin-top: 4vw;
}
.zone5_slider_nav div{
  margin: 0 0.7vw;
}
.zone5_slider_nav .slick-slide.slick-current.slick-center {
  border: 0.2vw solid #e1b12c;
}
.zone5_slider_nav .slick-slide{
  border: 0.2vw solid transparent;
}






























/*zone6*/
.zone6 {
  color: #2b3b66;
  display: flex;
}
.zone6 .left_side {
  display: inline-block;
  padding: 3vw 6vw 3vw 10vw;
  text-align: left;
}
.zone6 .left_side .title {
  text-align: initial;
  font-weight: 800;
  font-size: 2.5vw;
  line-height: 1;
  margin-bottom: 3vw;
}
.zone6 .right_side {
  display: inline-block;
  width: 75vw;
  position: relative;
  background: url(../img/zone6_img.png);
  background-size: cover;
  background-position: center;
}
/* .zone6 .right_side img{
  width: 100%;
} */
.zone6 .right_side video{
  position: absolute;
  object-fit: cover;
  width: 100%;
  top: 0;
  left: 0;
}

.zone6 .box {
  display: flex;
  border-bottom: 0.1vw solid #283a72;
  align-items: center;
  position: relative;
}
.zone6 .box:nth-child(5) {
  border-bottom: none;
}

.zone6 .amount {
  font-size: 4vw;
  font-weight: 900;
  margin-right: 2.5vw;
}
.zone6 .box:nth-child(4) .amount{
  margin-right: 0.5vw;
}
.zone6 .amount sup {
  font-size: 2vw;
}
.zone6 .text {
  font-size: 1vw;
}
.zone6 i {
  font-size: 0.9vw;
}
.zone6 .box .amount_input[type="checkbox"] {
  opacity: 0;
  z-index: -1;
  margin: 2vw;
}
.zone6 .box .checkbox_icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 2vw;
  height: 2vw;
  top: 2.5vw;
  left: 0vw;
  background: #fdfdfd;
  border: 0.15vw solid #2b3b66;
  border-radius: 0.6vw;
}
.zone6 .box .checkbox_icon::after {
  display: block;
  position: absolute;
  width: 2.5vw;
  height: 2.5vw;
  top: 0;
  left: 0;
  font-size: 1.5vw;
  line-height: 2.2vw;
  text-align: center;
}
.zone6 .box .amount_input[type="checkbox"]:checked + .checkbox_icon::after {
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: 1.5vw;
  line-height: 1.7vw;
  background: white;
  color: #2b3b66;
  top: 2.5vw;
  left: 0;
  width: 2vw;
  height: 2vw;
  border-radius: 0.6vw;
  border: 0.15vw solid #2b3b66;
  font-weight: 100;
}
.zone6 .box:nth-child(5) .checkbox_icon::before {
  top: 2.2vw;
}
.zone6 .box:nth-child(5) .amount_input[type="checkbox"]:checked + .checkbox_icon::after{
  top: 2.2vw;
}
.zone6 .box .free_amount {
  font-size: 2.3vw;
  font-weight: 900;
  width: 100%;
  display: inline-block;
  padding: 0vw 8vw 0.3vw 0vw;
  margin: 1.5vw auto;
  color: #2b3b66;
  background-color: transparent;
}
.zone6 .box .free_amount_parent{
  position: relative;
  display: block;
}
.zone6 .box .free_amount_parent:after{
  content: "€";
  position: absolute;
  color: #2b3b66;
  font-size: 2.3vw;
  top: 1.5vw;
  right: 6vw;
  font-weight: 900;
}
.zone6 .don {
  width: 100%;
  font-size: 1.5vw;
  text-align: center;
  padding: 1.5vw;
}
.zone6 .don:hover {
  color: #dba52a;
  border: 0.12vw solid #dba52a;
}


/*zone7*/
.zone7 {
  background-color: #5eb6de;
  padding: 5vw 0;
  color: white;
  position: relative;
}
.zone7 h2 {
  font-style: italic;
  margin: 0;
  padding: 0;
  font-size: 2vw;
  font-family: serif;
}
.zone7 h1 {
  font-size: 5vw;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3vw;
  margin: 0.7vw 0;
}
.zone7 .subtitle {
  font-size: 1.3vw;
  letter-spacing: 0.1vw;
}
.zone7 .form_block {
  display: inline-block;
  width: 65vw;
  margin: 9vw auto 5vw;
}
.zone7 input {
  background-color: transparent;
  font-size: 1.3vw;
  font-weight: 600;
  color: white;
  padding-bottom: 1.1vw;
  border-bottom: 0.2vw solid white;
  width: 26vw;
  margin: 0.6vw 1.5vw;
}
.zone7 input::-webkit-input-placeholder {
  line-height: normal !important;
}
.zone7 ::-webkit-input-placeholder { /* Edge */
  color: white;
  opacity: 1;
}
.zone7 :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
  opacity: 1;
}
.zone7 ::placeholder {
  color: white;
  opacity: 1;
}
.zone7 textarea {
  color: white;
  background-color: transparent;
  width: 84%;
  margin: 1vw 0;
  font-size: 1.3vw;
  font-weight: 600;
  border-bottom: 0.2vw solid white;
}
.zone7 textarea:focus{
  outline: none;
}
.zone7 .file_parent {
  display: inline-block;
  position: relative;
}
.zone7 .file_parent .pictures{
  position: absolute;
  top: 1vw;
  right: 1.5vw;
  width: 1.7vw;
}
.zone7 input[type="file"] {
  padding-right: 3vw;
}
.zone7 .textarea_parent {
  display: block;
  position: relative;
}
.zone7 button{
  position: absolute;
    bottom: 3vw;
    font-size: 1.3vw;
    font-weight: 600;
    right: 7vw;
}
.zone7 button img {
  width: 0.7vw;
  margin-left: 2vw;
}
.zone7 .stick1 {
  position: absolute;
  left: 0;
  width: 15vw;
  top: 7vw;
}
.zone7 .stick2 {
  position: absolute;
  right: 0;
  top: 6vw;
  width: 18vw;
}
.zone7 .stick3 {
  position: absolute;
  left: 0;
  width: 15vw;
  bottom: 12vw;
}
.zone7 .stick4 {
  position: absolute;
  right: 0;
  width: 11vw;
  bottom: 4vw;
}















/*footer*/
.footer {
  background-color: #2b3b66;
  color: white;
  padding: 2vw 8vw;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1vw;
}
.footer .logo{
  width: 5vw;
  margin: 0 2vw 0 0;
}
.footer p{
  margin: 0 1vw 0 4vw;
}
.footer .mention{
  margin: 0 1vw;
}
.footer .contact{
  margin: 0 1vw;
}
.footer .social {
  position: absolute;
  right: 8vw;
  text-align: left;
}
.footer .social a img{
  width: 1.3vw;
  margin: 0 0.5vw;
}











































.modal_video .modal-body {
  padding: 4vw 1vw 1vw 1vw;
  display: block;
  text-align: left;
  position: relative;
}
.modal_video .modal-dialog{
  max-width: 50vw;
}
.modal_video video{
  width: 100%;
}

























































/** cookie alert */
.cookie-alert{
  position: fixed;
  display: flex;
  bottom: 0;
  background-color: rgba(0,0,0,1);
  color: white;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
  place-content: center;
  padding: 1vw 4vw;
  width: 100%;
  font-size: 0.9vw;
  z-index: 5000;
}
.cookie-alert .cta {
  margin: 0 2vw;
}
.cookie-alert .accepte{
  background-color: #e1b12c;
  color: #ffffff;
  text-decoration: none;
  padding: 0.3vw 0.5vw;
  font-weight: bold;
  border: 0.1vw solid white;
  margin: 0 0.2vw;
}
.cookie-alert .closed {
  position: absolute;
  right: 1.5vw;
  top: 0.5vw;
  width: 2vw;
  height: 2vw;
  opacity: 0.3;
  z-index: 100;
}
.cookie-alert .closed:hover {
  opacity: 1;
}
.cookie-alert .closed:before, .closed:after {
  position: absolute;
  content: ' ';
  height: 1.5vw;
  width: 0.1vw;
  background-color: white;
}
.cookie-alert .closed:before {
  transform: rotate(45deg);
}
.cookie-alert .closed:after {
  transform: rotate(-45deg);
}
@media(max-width:767px){
  .cookie-alert {
    display: block;
    font-weight: 200;
    padding: 8vw 4vw;
    font-size: 4vw;
    line-height: 1.2;
  }
  .cookie-alert .cta {
    margin: 5vw 2vw 0vw;
  }
  .cookie-alert .accepte {
    padding: 1vw 6.5vw;
    margin: 0 0.2vw;
  }
  .cookie-alert .closed {
    right: 1.5vw;
    top: 1.5vw;
    width: 6vw;
    height: 6vw;
  }
  .cookie-alert .closed:before, .closed:after {
    height: 6vw;
    width: 0.5vw;
  }
}













#exampleModalCenter_zone1_video_youtube iframe,
#exampleModalCenter_zone2_video2 iframe{
  width: 100%;
  height: 50vh;
}