@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
body{
    font-family: 'Poppins', sans-serif;
}

/*---COLORS---*/

.clPrimary{
	color: #157db5;
}

.clSecondary{
    color: #00796B;
}

.clTertiary{
    color: #A4A7AB;
}

.clRed{
    color: #dc3545;
}

.clOrange{
    color: #eb9f16;
}

.clAmber{
    color: #ffb300;
}

.clViolet{
    color: #592A5E;
}

.bgPrimary{
    background-color: #2A3976;
}

.bgSecondaryOp{
    background-color: #00796B;
    opacity: .8;
}

.bgSecondary{
    background-color: #00796B;
}

.bgTertiary{
    background-color: #A4A7AB;
}

.bgWhite{
    background-color: #ffff;
    opacity: .9;
}

.bgBlueLight{
	background-color: #f7f7f7;
}

.bgRed{
    background-color: #d50000;
}


/*---NAV BAR---*/

.account{
    font-size: normal;
    text-align: right;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.navFixed{
    z-index: 2000;
    position:fixed;
    top: 0;
    width: 100%;
    background-color: #ffff;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, .5);
}

a{
    text-decoration: none;
}

nav{
    height: 50px;
    z-index: 999;
}

nav ul {
    display: flex;
    text-transform: uppercase;
    align-items: center;
}

nav ul .principalLi {
    list-style-type: none;
    transform: translateX(100rem);
    animation: slideIn .5s forwards;
}

nav ul .principalLiDropDown{
    position: relative;
    z-index: 1000;
}

#subMenuOne, #subMenuTwo{
    position: absolute;
    left: 0;
    top: 2rem;
    border-radius: 5px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, .5);
    background-color: #fff;
    line-height: 2rem;
    z-index: 999;
    transition: all 0.2s ease; 
}

#subMenuOne{
    left: 0;
}

#subMenuTwo{
    right: 0;
}

#directionOne, #directionTwo {
    transition: all 0.2s ease;
}


nav ul li:nth-child(1) {
    animation-delay: 0s;
}

nav ul li:nth-child(2) {
    animation-delay: .5s;
}

nav ul li:nth-child(3) {
    animation-delay: 1s;
}

nav ul li:nth-child(4) {
    animation-delay: 1.5s;
}

nav ul li:nth-child(5) {
    animation-delay: 2s;
}

nav ul li:nth-child(6) {
    animation-delay: 2.5s;
}

nav ul li:nth-child(7) {
    animation-delay: 3s;
}

nav ul li .principalA,  nav ul li .principalADropDown{
    padding: 1rem 0;
    margin: 0 2rem;
    position: relative;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
}

nav ul li .principalA:hover {
    color: #000;
}

nav ul li .principalA:last-child {
    margin-right: 0;
}


nav ul li .principalA::before,
nav ul li .principalA::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #A4A7AB;
    left: 0;
    transform: scaleX(0);
    transition: all .5s ease;
}

nav ul li .principalA::before {
    top: 0;
    transform-origin: left;
}

nav ul li .principalA::after {
    bottom: 0;
    transform-origin: right;
}

nav ul li .principalA:hover::before,
nav ul li .principalA:hover::after {
    transform: scaleX(1);
}

.logo {
    transform: translateX(-100rem);
    animation: slideIn .5s forwards;
}

.menu{
    font-size: 25px;
    color: rgb(192, 192, 192);
    transform: translateX(100rem);
    animation: slideIn .5s forwards;
}

nav .menu-bloc {
    display: none;
}

@media screen and (max-width: 1024px) {

    .account{
        font-size: 10px;
        text-align: left;

    }

    nav {
        z-index: 1000;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
        text-align: center;
        position: absolute;
        background-color: #fff;
        top: 50px;
        width: 100%;
        height: calc(100vh - 50px);
        left: -100%;
        transition: all .5s ease;
    }

    nav ul li {
        margin: 15px 0px;
        text-align: center;
        list-style-type: none;
        transform: translateX(100rem);
        animation: slideIn 0s forwards;
    }

    nav ul li:nth-child(1) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(2) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(3) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(4) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(5) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(6) {
        animation-delay: 0s;
    }
    
    nav ul li:nth-child(7) {
        animation-delay: 0s;
    }

    nav ul li a {
        padding: 1rem 0;
        margin: 0;
        position: relative;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        height: 100%;
    }

    nav ul li a, .active {
        color: rgb(255, 255, 255);
    }

    nav .menu-bloc {
        display: block;
        transition: all .5 ease;
    }
}



/*---KEYFRAM---*/

@keyframes slideIn {
    from {

    } 
    to {
        transform: translateX(0);
    }
}

/*---IMAGES---*/

.utiliserEkenaImage{
    height: 250px;
}

.bgAboutEkenaImage{
    background: url("../img/backgrounds/plage.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.etapeAchatImage{
    width: 100%;
}

.imageResultat{
	height: 60px; 
	width: 60px; 
	border-radius: 50%;
}

@media screen and (max-width: 360px) {
    .imageResultat{
		height: 40px; 
		width: 40px; 
		border-radius: 50%;
	}
}

.imageBillet{
	border-radius: 50%;
	border-style: solid;
	border-width: 5px;
	border-color: #FFFFFF; 
	margin-left: auto; 
	margin-right: auto;
    height: 100px; 
	width: 100px; 
}

.btnDownload {
	border-radius: 5%;	
}

/*--BOUTON--*/

.btnOutPrimary{
    border: solid 1px #2A3976;
    background: none;
    width: 6.25rem;
    transition: all .5s ease;
}

.btnOutPrimary:hover, .btnPrimary{
    border: solid 1px #2A3976;
    background: #2A3976;
    width: 6.25rem;
    color: #ffff;
}

/*---Z-INDEX*/
.z1{
    z-index: 1;
}

.z2{
    z-index: 2;
}

/*---SECTIONS---*/
/*---WHY---*/

.why {
    margin-top: 20px;
}

@media screen and (max-width: 540px) {
    .why {
        margin-top: -100px;
    }
}

@media screen and (max-width: 280px) {
    .why {
        margin-top: -230px;
    }
}

/*---ABOUT---*/

#about{
    height: 300px;
}

/*---COMMENT CA MARCHE---*/

.howTo{
    border: solid 2px #037B7C;
    border-radius: 50%;
    padding: 10px 15px;
}

#how {
    margin-top: 150px;
}

@media screen and (max-width: 540px) {
    #how {
        margin-top: 150px;
    }
}

@media screen and (max-width: 280px) {
    #how {
        margin-top: 200px;
    }
}

/*---NOS DESTINATION---*/

.img-destinations {
	border-radius: 20px;
	height: 200px;
}

/*---DEVENIR PARTENAIRE---*/

.imgJoinUs{
    width: 100%;
}

/*---FOOTER---*/

footer{
    border-top: solid 3px #2A3976;
}

footer a{
    text-decoration: none;
}

#preloader{
    background: #fff url("../img/loader.gif") no-repeat center center;
    background-size: 30%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 5000;
}

/*---DIAPORAMA---*/

.surcouche{
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.description{
    position: absolute;
    bottom: 0;
    opacity: .65;
}

