
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Comforter&display=swap');


:root{
    --main-color:#049DD9;
    --black:##172601;
    --white:#fff;
    --light-black:#777;
    --light-white:#fff9;
    --dark-bg:rgba(0,0,0,.7);
    --light-bg:#eee;
    --border:.1rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --text-shadow:0 1.5rem 3rem rgba(0,0,0,.3);
 }

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    outline: none;
    
}
html{
    font-size: 65%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 1rem;
}
html::-webkit-scrollbar-track{
    background: var(--white);
}
html::-webkit-scrollbar-thumb{
    background: var(--main-color);
}
section {
    padding: 5rem 10%;
    
}


.btn {
    display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
	margin-bottom:15px;
 border-radius: 5px;


}
.btn:hover{
  box-shadow : 0 0 2px black;
  /* Styles lorsque le bouton est survolé */
  background: #162B73;
  color: var(--white);
  transform: scale(0.9); /* Réduction de 10% de la taille */
  transition: transform 0.3s ease; /* Animation de transition fluide de 0.3 seconde */
 border-radius: 5px;

}

.heading-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 8rem;
    color: var(--black);
    font-family: comforter;
    font-weight: 500;
}

/* Mise en forme du header */
.header{
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 1000 !important;
    background: var(--white);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 2rem;
     padding-bottom: 2rem;
     box-shadow: var(--box-shadow);
}
.header .logo {
    font-size: 3.5rem;
    color: var(--black);
    font-family: comforter;
}
.header .navbar {
	z-index: 1000;
    text-transform: capitalize;
    display: flex;
    flex-wrap: wrap;
  padding :10px;
    align-items: center; 
}

.header .navbar a{
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--black);
}
.header .navbar a:hover {
    color: var(--main-color);
}
#menu-btn{
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--black);
    display: none;
}

.home{
    padding: 0;
	
}
.home .slide {
    text-align: center;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    min-height: 60rem;

	
}
.home .slide img {
  max-width: 100%;
  height: auto;
}

/* barre de recherche taille */
.home .slide .content{
    width: 39rem;
    display: none; 
	
}	

 



.home .swiper-slide-active .content{
    display: inline-block;
}

@keyframes fade {
    0%{
        transform: scale(0);
        opacity: 0;
    }
}

.home .slide .content span{
    display: block;
    font-size: 6rem;
    color: var(--light-bg);
    padding-bottom: 1rem;
    animation: fade .3s linear backwards .2s;
    border-radius: 10px;
    font-family: comforter;
    
 
}
.home .slide .content h3{
    font-size: 1.5vw;
    color: var(--white);
    line-height: 1;
    text-shadow: var(--text-shadow);
    padding: 0.1rem 0;
    animation: fade .3s linear backwards .4s;
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    font-family: 'comics';
    letter-spacing: 2px;
    
}
.home .slide .content .btn {
    animation: fade .3s linear backwards .6s;
	   color: var(--white);
	
}

.swiper-button-next,
.swiper-button-prev{
   height: 7rem;
   width: 7rem;
 
    color: var(--white);


}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    color: var(--white);


}
.swiper-button-next:after,
.swiper-button-prev:after{
 font-size: 2rem;
    color: var(--white);
}



.home-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.home-about .image{
    flex: 1 1 41rem;
}
.home-about .image img{
    width: 100%;
}
.home-about .content{
    flex:  1 1 41rem;
    padding: 3rem;
    background: var(--light-bg);
}
.home-about .content h3{
    font-size: 3rem;
    color: #034C8C;
}
.home-about .content p{
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 2;
    color: var(--black);
}

.home-packages{
    background: var(--light-bg);
	
}
.home-packages .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    gap: 2rem;
	
}
.home-packages .box-container .box {
    border: var(--border);
    box-shadow: var(--box-shadow);
    background: var(--white);
	  display: flex;
    flex: 1 1 500px; /* Ajustez la largeur des boîtes selon vos besoins */
  flex-direction: column;
  align-items:center;
	
    
}
.home-packages .box-container .box .image{
    height: 39rem;
	width:99%;
    overflow: hidden;
	margin:0.5%;
	padding:1px;
		
}
.home-packages .box-container .box:hover .image img{
    transform: scale(1.1);
}
.home-packages .box-container .box .image img{
    height: 100%; width: 100%;
    object-fit: cover;
    transition: .2s linear;
	
}
.home-packages .box-container .box .content{
    padding-top: 2rem;
    text-align: center;
margin-top: auto;
  flex: 1 1 300px; /* Ajustez la largeur des boîtes selon vos besoins */
  display: flex;
  flex-direction: column;
}
.home-packages .box-container .box .content h3{
    font-size: 2.2rem;
    color: var(--black);
	
	
}
.home-packages .box-container .box .content p{
    font-size: 1.5rem;
    color: var(--light-black);
    line-height: 1.8;
	padding:2.2rem;
	text-align:justify;
	
     display: flex;
    justify-content: center;
	
}
.home-packages .load-more{
    text-align: center;
    margin-top: 2rem;
}

.home-offer{
    text-align: center;

}
.home-offer .content{
    max-width: 70rem;
    margin: 0 auto;
}
.home-offer .content h3{
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--black);
}
.home-offer .content p{
    font-size: 1.5rem;
    color: var(--light-black);
    line-height: 2;
    padding: 1rem 0;
}

.footer{
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
    gap: 1rem;
	
}
.footer .box-container .box h3{
    color: #049DD9;
    font-size: 1.5rem;
    display: block;
}
.footer .box-container .box a{
    color: #034C8C;
    font-size: 1.5rem;
    display: block;
}
.footer .box-container .box a i{
    color: var(--main-color);
    padding-right: .5rem;
    transition: .2s linear;
}
.footer .box-container .box a:hover i{
    padding-right: 2rem;
}
.footer .home-right{
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: .1rem solid var(--#049DD9);
    font-size: 2rem;
    color: var(--#049DD9 );
}
.footer .home-right span {
    color: var(--main-color);
}


@media (max-width:1200px){
    section{
        padding: 3rem 5%;
    }
}
@media (max-width: 991px){
    html{
        font-size: 55%;
    }
    section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px){
    #menu-btn{
        display: inline-block;
        transition: .3s linear;
    }
    #menu-btn.fa-times{
        transform: rotate(180deg);
    }

    .header .navbar {
        position: absolute;
        top: 99%; left: 0; right: 0;
        background: var(--white);
        padding: 2rem;
        border-top: var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .3s linear;
    }

    .header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        text-align: center;
        margin: 2rem;
    }
}

@media (max-width: 450px){
    html{
        font-size: 50%;
    }
    .heading-title{
        font-size: 3.5rem;
    }
}
/* Styles par défaut pour le menu <select> */
.responsive-select {
  /* Ajoutez ici vos styles par défaut pour le menu <select> */
}

/* Styles pour le menu <select> lorsqu'il est affiché sur un petit écran */
@media (max-width: 768px) {
  .responsive-select {
    /* Ajoutez ici vos styles pour le menu <select> sur un petit écran */
  }
}
logo {
       max-width: 200px; /* Largeur maximale de l'image */
       max-height: 100px; /* Hauteur maximale de l'image */
        }
		

#togg1 {
 display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
 border-radius: 5px;

	
}
#togg1:hover{
  box-shadow : 0 0 2px black;
  /* Styles lorsque le bouton est survolé */
  background: #162B73;
  color: var(--white);
  transform: scale(0.9); /* Réduction de 10% de la taille */
  transition: transform 0.3s ease; /* Animation de transition fluide de 0.3 seconde */
	 border-radius: 5px;
 
}
.button-container {
  display: flex;
  justify-content: center; 
  margin-bottom: 10px; 
   color:var(--white);
   
 
}


.dropdown-menu {
 border-radius: 5px;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background-color: var(--main-color);
  color: var(--white);
}

#togg2 {
 border-radius: 5px;

    display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
}
#togg2:hover{
 border-radius: 5px;

  box-shadow : 0 0 2px black;
  /* Styles lorsque le bouton est survolé */
  background: #162B73;
  color: var(--white);
  transform: scale(0.9); /* Réduction de 10% de la taille */
  transition: transform 0.3s ease; /* Animation de transition fluide de 0.3 seconde */
	 
}

/*page faq*/
.faq-container {
    line-height: 1.5; /* Espacement des lignes */
}

.faq-faq-question,faq-answer {
    line-height: 2.5; /* Espacement des lignes */
}
.faq-container p {
    font-size: 20px; /* Taille du texte */
}
.faq-container h3 {
    font-size: 24px; /* Taille du texte */
}	
.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-question i {
    margin-right: 5px;
}

.faq-answer {
    display: none;
}

/* Styles pour les icônes */
.fa-bars {
    cursor: pointer;
    font-size: 24px;
}

.fas {
    font-size: 16px;
    margin-right: 5px;
}
.ligne-separation {
    border: none;
    height: 2px;
    background-color: black;
    margin: 20px 0;
}	
	
	
form {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
 background-color: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.8) inset;
}


h2 {
	text-align:center;
   font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;

  margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
 background-color: #f9f9f9;
   font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

select {
 border-radius: 5px;

  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
  font-size: 16px;
}


button:hover {
 border-radius: 5px;

  background-color: #123b8f;
}



.hidden-form {
  display: none;
}

.toggle-form-btn {
 border-radius: 5px;

   display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
	margin-bottom:15px;
  margin:2%;
}
.toggle-form-btn:hover{
  box-shadow : 0 0 2px black;
  /* Styles lorsque le bouton est survolé */
  background: #162B73;
  color: var(--white);
  transform: scale(0.9); /* Réduction de 10% de la taille */
  transition: transform 0.3s ease; /* Animation de transition fluide de 0.3 seconde */
	 
}

/*page faq*/
.faq-container {
    line-height: 1.5; /* Espacement des lignes */

}

.faq-faq-question,faq-answer {
    line-height: 2.5; /* Espacement des lignes */
}
.faq-container p {
    font-size: 20px; /* Taille du texte */
}
.faq-container h3 {
    font-size: 24px; /* Taille du texte */
}	
.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-question i {
    margin-right: 5px;
}

.faq-answer {
    display: none;
}

/* Styles pour les icônes */
.fa-bars {
    cursor: pointer;
    font-size: 24px;
}

.fas {
    font-size: 16px;
    margin-right: 5px;
}
.ligne-separation {
    border: none;
    height: 2px;
    background-color: black;
    margin: 20px 0;
}	
	


button:hover {
 border-radius: 5px;

  background-color: #123b8f;
}


/* cache le formulaire guide */
.hidden-form {
  display: none;
}

.toggle-form-btn {
 border-radius: 5px;

   display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
	margin-bottom:15px;
  margin:2%;
}
.toggle-form-btn:hover{
  box-shadow : 0 0 2px black;
  /* Styles lorsque le bouton est survolé */
  background: #162B73;
  color: var(--white);
  transform: scale(0.9); /* Réduction de 10% de la taille */
  transition: transform 0.3s ease; /* Animation de transition fluide de 0.3 seconde */
	 
}
.formulaire {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background-color:white;
  box-shadow: 1px -1px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 50px 60px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px; /* Added max-width to limit the form width */
  margin-bottom: 20px;
}

.formulaire h2 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 24px;
  color: #162B73;
  margin-bottom: 25px;
}

.formulaire input[type="text"],
.formulaire input[type="number"],
.formulaire input[type="email"],
.formulaire textarea,
.formulaire select {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: #F2F2F2;
  border: 1px solid #049DD9;
  color: #162B73;
  margin-bottom: 20px;
}

.formulaire textarea {
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.formulaire label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #162B73;
  text-align: center;
}

.formulaire .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 16px;
}

.home-packages .box-container .box1 {
  border: var(--border);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-packages .box-container .box3  p{
    font-size: 1.5rem;
    color: var(--light-black);
    line-height: 1.8;
	padding:2.5rem;
	margin-left:10%;
	margin-right:10%;
	text-align:justify;
     display: flex;
    justify-content: center;
	
}

.home-packages .box-container .box4 {
    font-size: 1.5rem;
    background-color:white;
    line-height: 1.8;
	padding:2.5rem;
	margin-left:10%;
	margin-right:10%;
	text-align:justify;
     display: flex;
    justify-content: center;
	
}
#search {
    height: 35px;
    width: 100%;
    max-width: 360px;
    padding: 1px;
    text-align: center;
}

@media (max-width: 768px) {
    #search {
        max-width: 240px; /* Ajustez la taille maximale selon vos besoins */
    }
}



#search:hover{
	 border-radius: 5px;
	width: 359px;
	padding:1px;
	background-color:white;
}

.search-icon{
	width:25px;
	height:25px;
  color: white;
  background-color: #049DD9;
  padding :5px;
 border-radius: 5px;


}
.search-icon:hover {
  width: 24px;
  height: 24px;
  color: white;
  background-color: #162B73;
  padding: 5px;
  transform: scale(1.1); /* Zoom de 10% */
  transition: transform 0.3s ease;
 border-radius: 5px;

}
