
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.point{
	color:  #ff6200;
}


.our_service h1, .recent_work h1 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    max-width: max-content ;
    padding-bottom: 0.3rem;
    text-align: center;
}
/*START NAVBAR*/
nav{
    background: white;
}
.navBar{
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;

}
.navBar-info{
    width: 100%;
    background-color: #ff6200;
    padding: 10px;
}

.navBar-info li{
    margin-left: 15px;
    color: #fff;
}

.navBar .max-width{
    display: flex;
    align-items:center ;
    justify-content: space-between;
}

.navBar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navBar-info li, .navBar .menu li{
    /*pour aligner verticalement les element de la liste*/
    list-style: none;
    display: inline-block;
}

.navBar .menu li a{
    color: #272727;
    font-size: 20px;
    font-weight: 800;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navBar .menu li a:hover{
    color:  #ff6200;
}

.navBar .menu li a.devis{
    display: inline-block;
    background: #ff6200;
    color: #fff;
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #ff6200;
    transition: all 0.3s ease;

}

.navBar .menu li a.devis:hover{
    color: #fff;
    background: #00235a;
    border: #00235a;
}

.navBar.sticky{
    padding:15px 0 ;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0%;
}

.navBar.sticky .menu  li a  {
    color: #fff;
}

.navBar.sticky .menu li a:hover{
    color: #fff;
}

.menu-icon{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.title_items{
    width: max-content;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
}

.line{
    width: 50%;
    transition: all ease 0.3s;
    border-bottom: 5px solid #ff6200;
}



/*END NAVBAR*/

/*START HOME*/
.home{
    height: 100vh;
    background-image:
    linear-gradient(to bottom, rgba(000, 000, 000, 0.3), rgba(000, 00, 00, 0.3)),
    url("../images/sotimi-image1.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
}



.home_info{
    position: absolute;
    top: 40%;
    left: 20%;
    /* transform: translate(-50%, -50%); */
    color: #fff;
    text-align: left;
    
}

.home_info .p1{
    font-size: 20px;
}

.home_info .p2{
    font-size: 60px;
    font-weight: bold;
    line-height: 0.9;
}
.home_info button{
    margin-top: 50px;
    padding: 8px  20px ;
    background-color: #ff6200;
    color: white;
    border: 1px solid #ff6200;
    /* border-radius: 20px; */
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;

}

/*END HOME*/

/*START OUR QUALITY*/

.our_quality_content{
    display: flex;
    justify-content: space-between;
    margin-top: -7rem;
    margin-bottom: 5rem;
}

  
  .flip-card {
    background-color: transparent;
    width: 16rem;
    height: 15rem;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front i{
      color: #ff6200;
    font-size: 4rem;  
    margin-bottom: 2rem;
}

.flip-card-front span{
  font-size: 1.3rem;  
  font-weight: bold;
}
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
  }
  
  .flip-card-front {
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .flip-card-back {
    background-color: #ff6200;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: rotateY(180deg);
  }

  .flip-card-back h1{
    margin-bottom: 1rem;

  }

  .flip-card-back p{
font-size: 1.1rem;
  }

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: white;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #ff6200;
  color: white;
  transform: rotateY(180deg);
}
/*END OUR QUALITY*/

/**START ABOUT_US**/
.about_us{
    margin-bottom: 5rem;
}
.about_us .parts{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.left_part,.right_part{
    width: 50%;
    padding: 1rem;
}

.left_part{
    font-size: 1.3rem;
    word-spacing: 2px;
    text-align: justify;
}

.right_part{
    background-color: green;

}

/**END  ABOUT_US**/

/**START OUR_SERVICES**/

.our_service{
    background-image:
    linear-gradient(to bottom, rgba(000, 000, 000, 0.73), rgba(000, 00, 00, 0.73)),
     url('../images/industry2.avif');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
}
.our_service-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.our_service-items .box{
    position: relative;
    height: 18rem;
    width: 35rem;
    /* margin-top: 30px; */
    overflow: hidden;
    max-width: 21rem;
    border: 1px solid #ff6200;
    margin-bottom: 2rem;
    border-radius: 10px;
    color: white;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our_service-items .box .info{
    text-align: center;
    color: #fff;
    height: 70%;
}

.our_service-items .box .info h2{
    margin: 1.5rem 0;
}

.box i{
font-size: 3rem;}

.box .title{
    font-size: 1.8rem;
}

.our_serviceOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff6200;  
}

.our_service-items .box .our_serviceOverlay{
    transform: translate(0, -50px);
    transition: .5s;
    opacity: 0;
}


.our_service-items .box:hover .our_serviceOverlay{
    opacity: 1;
    transform: translate(0,0);
}
/**END OUR_SERVICES**/

/**START OUR PARTNER**/
.recent_work{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
}
.recent_work .title{
    color: #000;
}
/**END OUR PARTNER**/
.our_partenaire{
padding: 2rem 0;
text-align: center;    
background-color: #eff2f7;
display: flex;
flex-direction: column;
align-items: center;
}

.our_partenaire h1{
    font-size: 3rem;
    font-weight: bold;
    max-width: max-content ;
    text-align: center;
    transition: all ease 0.3s;
}

.swiper {
    width: 100%;
    height: 13rem;

}

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

}

  .swiper-wrapper{
    width: 10rem !important;
    height: 10rem !important;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .swiper-pagination{
      position: absolute !important;

    }
 
  .swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: red;
    opacity: 1;
    background: #ff6200 !important;
  }

  .swiper-pagination-bullet-active {
    color: #fff;
    background: red;
  }

/**START FOOTER**/
.recent_work{
    padding: 0 4rem;
}

/**START RECENT WORK**/
.recent_work h1{
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recent_work_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.recent_work_items .box{
    position: relative;
    height: 26rem;
    width: 50rem;
    /* margin-top: 30px; */
    overflow: hidden;
    max-width: 30%;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recent_work .box img{
    height: 100%;
    width: 100%;
}
/**END RECENT WORK**/


footer{
    background: #000;
    padding: 20px 23px ;
    color: #fff;
    text-align: center;
}
footer span a{
    color: #ff6200;
}
/**END FOOTER**/

.our_service{
    text-align: center;
    background-color: black;
    display: flex;
    justify-content: center;
    padding: 5rem 0;
}

.our_service .max-width{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our_service h1{
    font-size: 3rem;
    font-weight: 600;
    color: white;
    max-width: max-content ;
    text-align: center;
}

.our_partenaire h1{
    color: black;
}


.overlay
{
    background: rgba(255,255,255, 0.95);
    height: 100%;
    width: 190px;
   border-radius: 10px 0 0 10px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
}
article h4
{
    border-bottom:  1px solid #ddd;
    padding-bottom: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
#possibilities p
{
    text-align: center;
    margin-bottom: 20px;
    font-size:14px;
}
.button-2
{
    color: #fff;
    background-color: #ff6200;
    padding: 6px 20px;
    border-radius: 3px;
}
.button-2:hover
{
    color: #fff;
    background-color: #02b8dd;
}

/*END CIRCUIT*/

/*START CONTACT*/
.contact .title{
    text-align: center;
    width: 400px;
    text-transform: uppercase;
    margin: 60px auto 20px auto;
    border-bottom:  1px solid #02b8dd;
    padding-bottom: 20px;
    text-align: center; 
    font-size: 30px;
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p{
    text-align: justify;
}

.contact .contact-content .left .icons{
    margin : 10px 0;
}

.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: #02b8dd;
}

.contact .contact-content  .info .head{
    font-weight: 500;
}

.contact .contact-content .row .info .sub-title{
    color: #333;
}

.contact .right form .fields{
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .name{
    margin-right: 10px;

}
.contact .right form .email{
    margin-left: 10px;
}

.contact .right form .textarea {
    height: 80px;
}


.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: #02b8dd !important;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins';
}

.contact .right form .textarea textarea{
     padding-top: 10px;
}

.contact .right form .button{
    height: 47px;
    width: 170px;
}

.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #02b8dd;
    background: #02b8dd;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .right form .button button:hover{
    color: #02b8dd;
    background: none;
}

.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    
}

/*END CONTACT*/

/*Responsive */

@media(max-width : 991px){
    .max-width{
        padding: 0 50px;  
    }

}

/*navBar*/
@media(max-width : 985px){
   

    .max-width{
        padding: 0 50px;  
    }
    .menu-icon{
        
        display: block;
        z-index: 999;
    }

    .navBar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left:0;
        top: -100%;
        background: #ff6200;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navBar .menu.active{
        top: 0;
    }

    .navBar .menu li{
        display: block;
    }

    .navBar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    /*end navBar*/
    /*start home*/
   
    .home_info button{
        margin-top: 30px;
        padding: 6px  17px ;
        background-color: #ff6200;
        color: white;
        border: 1px solid #ff6200;
        border-radius: 20px;
        font-size: 16px;
        transition: all 0.3s ease;
    
    }
    /*End home*/
}
/*start destination*/
@media(max-width : 690px){
    .max-width{
        padding: 0 25px;  
    }
   
    
.destination .destination-content .card
    
    {
        width: 100%;
        
    }

   
}
/*End destination*/

/*start circuit*/
@media(max-width : 690px){
    .max-width{
        padding: 0 25px;  
    }
   
    .circuit .circuit-content .card{
        width: 100%;
        margin-bottom: 20px;
       
       
    }

   
}
/*End Circuit*/
/*start contact */
@media(max-width : 690px){

    .contact .contact-content .column{
        width: calc(100%);
       
    }
}

/*End contact */
/*End responsive*/