/***************************************************\
				GENERAL VARIABLES
\***************************************************/
.container{
 	max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
ul{
   list-style: none;
   margin: 0;
   padding: 0;
}
a{
   text-decoration: none;
}

/***************************************************\
				PAGE ACCUEIL
\***************************************************/

/*========= HEADER STYLING START ===============*/

.header{
	position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 15px;
}
.header-main{
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-radius: 5px;
}
.header .logo{      
    padding: 0 15px;
}
.header .logo a{      
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}
.header .nav-menu{      
    padding: 0 15px;
}
.header .menu > .menu-item{
    display: inline-block;
    margin-left: 70px;
    position: relative;
}
.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left: 5px;
    pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    background-color: #000;
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
    background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
    transform: translate(-50%,-50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    color: #e91e63;
}
.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    padding: 10px 0;
    border-top: 3px solid #e91e63;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

/*========= MEDIA QUERY START ===============*/

@media(min-width: 992px){
	.header .menu > .menu-item:hover > .sub-menu{
    	transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
    .header .menu > .menu-item-has-children:hover > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
      }
    }

/*========= MEDIA QUERY END ===============*/

.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    box-sizing: border-box;
}
.header .open-nav-menu span:before{
    top: -7px;
}
.header .open-nav-menu span:after{
    top: 7px;
}
.header .close-nav-menu{
    height: 40px;
    width: 40px;
    background-color: #fff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.header .close-nav-menu img{
    width: 16px;
}
.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}

/*============ HOME SECTION START ===============*/

.home-section{
    
}   
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 70px;

}
.text-box p{
	margin: 10px 0 40px;
	font-size: 22px;
	color: #fff;
	line-height: 40px;
	text-align: center;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 16px;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 5px;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #e91e63;
	transition: 1s;
	color: #fff;
}

/*========= MEDIA QUERY START ===============*/
    
@media(max-width: 991px){
	.header .nav-menu{
    	position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }
    .header .nav-menu.open{
        visibility: visible;
        right: 0px;
    }
    .header .menu > .menu-item{
        display: block;
        margin: 0;
    }
    .header .menu > .menu-item-has-children > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu > .menu-item > a{
        color: #fff;
        padding: 12px 15px;
        border-bottom: 1px solid #333;
    }
    .header .menu > .menu-item:first-child > a{
        border-top: 1px solid #333;
    }
    .header .menu > .menu-item > a .plus:before,
    .header .menu > .menu-item > a .plus:after{
        background-color: #fff;
    }
    .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        padding: 12px 45px;
        color: #fff;
        border-bottom: 1px solid #333;
    }
    .header .close-nav-menu,
    .header .open-nav-menu{
        display: flex;
    }
    .text-box h1{
		font-size: 50px;
		padding-top: 6rem;
	}
	.text-box p{
		font-size: 16px;
	}
}

@media (max-width:700px){
	.text-box h1{
		font-size: 30px;
	}
	.text-box p{
		font-size: 16px;
	}
}
    
/*========++++++= MEDIA QUERY END ==================*/
  
/*============== HOME SECTION END =================*/

/*============ ABOUT SECTION START ================*/
.course{
	width: 80%;
	margin: auto;
	padding-top: 100px;
}
.course h1{
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
}
.course p{
	color: #777;
	font-size: 1.3rem;
	font-weight: 300;
	line-height: 30px;
	padding: 10px;
	text-align: justify;
}
.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.course-col{
	flex-basis: 50%;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	
}

/*------ MEDIA QUERY COURSE --------*/

@media (max-width:700px){
	.row{
		flex-direction: column;
	}
	.course h1{
		font-size: 1.6rem;
	}
	.course p{
		font-size: 1rem;
	}
}
/*============ ABOUT SECTION END ================*/


/*============ DESTINATION SECTION START ================*/

.destination{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
.destination h1{
	font-size: 3rem;
}
.destination p{
	padding-top: 50px;
	font-size: 1.3rem;
	text-align: center;
	line-height: 30px;
}
.destination-col{
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}
.destination-col img{
	border-radius: 10px;
	width: 100%;
	display: block;
}
.layer{ 
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}
.layer:hover{
	background: rgba(226,0,0,0.7);

}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}
.layer:hover h3{
	bottom: 49%;
	opacity: 1;
}

/*------ MEDIA QUERY COURSE --------*/
@media (max-width:700px){

	.destination h1{
		font-size: 1.6rem;
	}
	.destination p{
		font-size: 1rem;
	}
}

/*============ DESTINATION SECTION END ================*/

/*============ TESTIMONIALS SECTION START ================*/
.testimonials{
	width: 80%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}
.testimonials h1{
	font-size: 3rem;
}
.testimonials p{
	padding-top: 50px;
	font-size: 1.3rem;
	text-align: center;
	line-height: 30px;
}
.testimonials-col{
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #fff3f3;
	padding: 25px;
	cursor: pointer;
	display: flex;
} 
.testimonials-col img{
	height: 80px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}
.testimonials-col p{
	padding: 0;
	text-align: left;
	font-size: 1rem;
}
.testimonials-col h3{
	margin-top: 15px;
	text-align: left;
}
.testimonials-col i{
	color: #FFC107;
}

/*------ MEDIA QUERY --------*/

@media (max-width:700px){
	.testimonials-col img{
		margin-left: 0px;
		margin-right: 15px;
	}
	.testimonials h1{
		font-size: 1.6rem;
	}
	.testimonials p{
		font-size: 1rem;
	}
	.testimonials-col{
		flex-basis: 100%;
	}
}

/*============ TESTIMONIALS SECTION END ================*/

/*============ CONTACT SECTION START ================*/
.contact-us{
	width: 80%;
	margin: auto;
}
.contact-us h1{
	font-size: 3rem;
	text-align: center;
	padding-top: 3rem;
}
.contact-us p{
	padding-top: 50px;
	font-size: 1.3rem;
	line-height: 30px;
}
.contact-col{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.contact-col div{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.contact-col div .fa-solid{
	font-size: 28px;
	color: #e91e63;
	margin: 10px;
	margin-right: 30px;
}
.contact-col div .fa-regular{
	font-size: 28px;
	color: #e91e63;
	margin: 10px;
	margin-right: 30px;
}
.contact-col div p{
	padding: 0;
	font-size: 1rem;
}
.contact-col div h5{
	font-size: 1rem;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.contact-col input, .contact-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}
.hero-btn2{
	display: inline-block;
	text-decoration: none;
	color: #e91e63;
	border: 1px solid #e91e63;
	padding: 12px 34px;
	font-size: 16px;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 5px;
}
.hero-btn2:hover{
	background: #e91e63;
	transition: 1s;
	color: #fff;
}

/*------ MEDIA QUERY --------*/

@media (max-width:700px){
	
	.contact-us h1{
		font-size: 1.6rem;
	}
	.contact-us p{
		font-size: 1rem;
	}
	
}

/*============ CONTACT SECTION END ================*/

/*============ SOCIAL NETWORK SECTION STAR ================*/
.social{
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.media-icons{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.media-icons a{
    text-decoration: none;
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 6px;
}
.media-icons a i{
    color: #fff;
}
.media-icons a .tooltip{
    position: absolute;
    left: 55px;
    font-size: 14px;
    font-weight: 400;
    pointer-events: none;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.2s linear;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
a:hover .tooltip{
    opacity: 1;
    transform: translateY(0);
}
a .tooltip::before{
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    top: 50%;
    left: -5px;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
}
.close-btn{
    display: flex;
    align-items: center;  
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    background-color: #8e36ff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*============ SOCIAL NETWORK SECTION END ================*/


/***************************************************\
				PAGE ETUDIER EN BELGIQUE
\***************************************************/

/*============ INFORMATION SECTION START ================*/


.information{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
.information h1{
	font-size: 3rem;
}
.information p{
	padding-top: 50px;
	font-size: 1.3rem;
	line-height: 30px;
}
.information-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.information-col a{
	text-decoration: none;
	color: #000;
}
.information-col a:hover{
	color: #e91e63;
	transition: 1s;
}
.information-col img{
	width: 100%;
	border-radius: 10px;
}

.information-col p{
	padding: 0;
}
.information-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: left;
}

/*------ MEDIA QUERY --------*/

@media (max-width:700px){
	
	.information h1{
		font-size: 1.6rem;
	}
	.information p{
		font-size: 1rem;
	}
	
}

