html, body{
	width: 100%;
	height: 100%;
	margin:0;
	padding:0;
}

body{
	font-family: "omnes-semicond", sans-serif;
	color: #0a220b;
	font-size: 17px;
	background-color: #FFF9E8;
    font-weight: 400;
}

.body--2{
    background-color: #fff;
}

a{
	text-decoration: none;
	color: inherit;
}

h1{
	margin:0px;
}

mark{
    background-color: #D6A6F8;
}

b{
    font-weight: 600;
}

.container{
	max-width: 1300px;
	margin: auto;
}

p {
    margin: 10px 0px;
}

.link{
    color: #c998ec;
    font-weight: 500;
}

.pt-50{
	padding-top: 50px;
}

.p-0-20{
    padding: 0px 20px;
}

.pb-50{
	padding-bottom: 50px;
}

.pt-20{
    padding-top: 20px;
}

.mt-no{
    margin-top: 0px;
}

.m-10{
	margin: 10px;
}

.mt-30{
	margin-top: 30px;
}

.mt-20{
	margin-top: 20px;
}

.mr-10{
    margin-right: 10px;
}

.mb-30{
    margin-bottom: 30px;
}

.p-20{
	padding: 20px;
}

.section--header{
	height: 425px;
}

 @media screen and (max-width: 500px){
    .section--header{
        height: 240px;
    }
 }

.section--footer{
	height: 335px;
}

.background-color-green{
	background-color: #0E3012;
}

.background-color-purple{
	background-color: #D6A6F8;
}

.background-color-green-2{
	background-color: #A0F7C8
}

.background-color-FFEEDE{
    background-color: #FFEEDE
}


.color-white{
	color: #fff;
}


.color-FFEEDE{
    color: #FFEEDE;
} 

.color-green{
    color: #0E3012;
}


.header__logo-highco{
	text-align: right;
	padding: 20px;
}

.text-center{
	text-align: center;
}

.img-line{
	width: 100%;
	display: block;
}

.flex{
	display: flex;
	flex-wrap: wrap;
}

.space-between{
	justify-content: space-between;
}

 @media screen and (max-width: 1100px){
    .space-between{
        justify-content: center;
    }
 }

.center{
	justify-content: center;
}

.end{
	justify-content: end;
}

.column{
    flex-direction: column;
}

.block-height{
    display: flex;
    flex-direction: column;
    height: 330px;
}

.flex-grow{
    flex-grow: 1;
}

.flex-grow--2{
    flex-grow: 2;
}

.relative{
	position: relative;
}

.absolute{
	position: absolute;
}

.block{
	height: 550px;
	width: 370px ;
	border-radius: 20px;
	padding: 20px;
}

 @media screen and (max-width: 500px){
    .block{
        width: 330px;
    }
 }

p.date {
    font-size: 22px;
    font-weight: 500px;
}

.emphasize {
    padding: 10px;
    border-radius: 15px;
    width: 80px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.clock svg{
	vertical-align: text-bottom;
}

.clock{
	font-size: 25px;
}

h1.block__title {
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 38px;
}

p.block__hour {
    font-size: 30px;
    font-weight: 500;
    padding: 0;
    margin: 0px;
}

.btn {
    font-size: 20px;
    text-transform: uppercase;
    border: solid 2px;
    width: 130px;
    margin: auto;
    border-radius: 20px;
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: .2s transform ease-in-out;
  	will-change: transform;
}

.btn::after {
  background-color: #A0F7CC;
  border-radius: 3rem;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.btn--2::after{
    background-color: #D6A6F8;
}

.btn:hover::after {
  transform: translate(0, 0);
}
.btn:hover {
  border: 2px solid transparent;
  color: #0E3012;
  transform: scale(1.05);
  will-change: transform;
  font-weight: 600;
}

.btn--2:hover{
    color: #0F3112;
}

.block__perso img{
	display: block;
}

.width-perso{
    width: 300px;
}

.width-perso-2{
    width: 245px;
}

.block__perso{
	bottom: 0;
}

.block__perso--3{
    bottom: -26px;
    left: 69px;
}

.block__perso--4{
    bottom: -42px;
     left: 69px;
}

.block__perso--5{
    bottom: -34px;
    left: 79px;
}


.block__perso--2 img {
    width: 255Px;
}

.block__perso--2{
    left: 79px;
}

 @media screen and (max-width: 500px) {
    .block__perso--2{
        left: 64px;
    }
    .block__perso--phone img{
        width: 293px;
    }
 }

.left-50{
    left: 50px;
}


/* pop up  */

.popup-overlay{ 
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 4000;
	width: 100%;
	height: 100%;
	display: none;
 }

 @media screen and (max-height: 656px) {
    .popup-overlay {
        overflow: scroll;
    }
}

 .popup-overlay.open{
 	display: block !important;
 }

 .popup-content{
 	max-width: 1200px;
 	width: 100%;
 	background-color: #fff;
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%, -50%);
 	padding: 30px;
 	max-height: 747px;
 	border-radius: 20px;
 }


.popup-content-2{
    max-width: 1200px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 20px;
 }

 @media screen and (max-width: 1300px){
 		.popup-content, .popup-content-2{
            max-width: inherit;
 			max-height: inherit;
 			height: 100%;
 			top: inherit;
 			left: inherit;
 			transform: inherit;
            position: initial;
            padding: 0px;
 		}

 		.popup-overlay{
 			overflow: scroll;
 		}
 }

  @media screen and (max-height: 656px){
        .popup-content{
            max-width: inherit;
            max-height: inherit;
            height: 100%;
            top: inherit;
            left: inherit;
            transform: inherit;
            position: initial;
            padding: 0px;
        }
  }

 .popup-exit{
 	position: absolute;
 	top: 0;
 	right: 0;
 	text-decoration: none;
 	font-size: 27px;
 	width: 40px;
 	height: 40px;
 	color: #fff;
 	background-color:#0E3012;
 	border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    cursor: pointer;
 }

.popup-exit:hover{
	background-color: #154d1c;
}


.background-popup{
	background-color: #fff;
	padding: 10px;
}

img.logos-collab {
    height: 80px;
}

p.info {
    font-size: 28px;
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 50px;
}

img.img-info {
    width: 500px;
    border-radius: 11px;
}

 @media screen and (max-width: 500px){
    img.img-info{
        width: 300px;
    }
 }

.text-info {
    max-width: 600px;
    padding: 20px 40px;
}


.text-info-2 {
    padding: 0px 30px;
}

.btn-info {
    background-color: #D6A6F8;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    width: 259px;
    padding: 7px;
    border-radius: 29px;
    text-align: center;
    box-shadow: 0px 5px 0px 1px #203232;
    margin-top: 40px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: .2s transform ease-in-out;
  	will-change: transform;
}

.btn-info--2{
    width: 300px;
}

.btn-info::after {
  background-color: #0E3012;
  border-radius: 29px;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(0deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.btn-info:hover::after {
  transform: translate(0, 0);
}
.btn-info:hover {
  color: #fff;
  transform: scale(1.05);
  will-change: transform;
  font-weight: 600;
}


.figurine img{
	 position: absolute;
    bottom: -40px;
    right: 0;
    width: 177px;
}


.figurine--2 img{
    width: 150px;
}

.figurine--3 img{
    width: 215px;
}

.figurine--4 img{
    width: 115px;
}

.figurine--5 img{
    width: 295px;
}

.figurine--6 img{
    width: 125px;
}

.figurine--7 img{
    width: 100px;
}

.figurine-2 img {
    position: absolute;
    bottom: 2px;
    left: 68px;
    width: 155px;
}

 @media screen and (max-width: 1300px){
    .figurine-2 img, .figurine img {
        position: initial;
    }
 }

 /*/


 /*footer */ 
.contact {
    line-height: 12px;
}

 .border-solid{
 	border-top: solid #fff 1px;
 }

 p.mail{
 	font-size: 25px;
 }

 .logos-footer-collab img {
    height: 80px;
}


 @media screen and (max-width: 500px){
    .header__title img{
        width: 350px;
    }

    h1.block__title.color-green{
        padding: 20px;
    }

    p.info {
    padding: 0 20px 0px 20px;
    }

    .left.pt-20 iframe {
        width: 350px;
    }
}

.reglement{
    margin: 21px 0px;
    font-size: 20px;
}
