
/*! General properties  */
@font-face {
    font-family: "oswald";
    src: url("../fonts/Oswald/Oswald-Regular.ttf");
}
@font-face {
  font-family: "burraq";
  src: url('../fonts/Open_Sans/OpenSans-Regular.ttf');
}
.purple {
  color: #940876;
  font-family: "burraq";
  font-size: 1em;
}
.burraq {
  font-family: "burraq" !important;
}
.bold {
  font-weight: 600;
}
.xBold {
  font-weight: 900;
}
* {
    font-family: oswald;
    font-size: 1rem;
}
body {
    margin: 0;
    background-color: #e9e9e9;
    overflow-x: hidden;
}
li {
    list-style: none;
}
a {
    text-decoration: none !important;
    color: white !important;
}
.textBlue {
    color: #004B6A;
}
.mainBtn > a {
    color: #004B6A !important;
}
.mainBtn {
    border-radius: 15px;
    border: 2px solid rgb(255, 255, 255);
    color: #004B6A !important;
    padding: 0.5rem;
    background: #ffffff;
    transition: 0.4s;
}
.mainBtn:hover > a {
    color: #ffffff !important ;
}
.mainBtn:hover {
    background: #cd09a6;
    border: 2px solid rgb(255, 255, 255);
    font-weight: 800;
    padding: 0.5rem;

}
body  {
    background: linear-gradient(to bottom right, #ebebeb 40%, white 40%);

}


.fabwa {
    color: #4173a0 !important;
    font-size: 2em;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: 0.4s;
}
.fabwa > a > i {
    font-size: 2em;
    color: #4173a0 !important;
    background: white;
    padding: 0.2em;
    border-radius: 50%;
    text-align: center;
}
.fabwa > a:hover > i{
    color: #940876 !important;
}

/*! NavBar  */
.navL {
    background-color: #004B6A;
    padding: 1em;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 1em;
    /* width: 100vw !important; */
}
.logo {
    display: flex;
}
@media only screen and (max-width: 600px) {
    .logo {
        display: flex;
        justify-content: center;
        margin: auto;
    }
}
.wFixe {
    width: 220px;
    display: flex;
    gap: 1em;
}
.navLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: auto;
    text-align: center;
    padding: 0 1em;
    /* margin: auto 30px !important; */
}
.navLinks > li {
    text-align: center;
}
.navLinks > li:hover {
    font-weight: 600;
} 
.btns {
    display: flex;
    gap: 1em;
    justify-content: center;
}



/*! Carousel  */


.carousel2 {
  height: 480px;
  margin: 0;
  display: grid;
  grid-template-rows: 500px 50px;
  grid-template-columns: 1fr 30px 30px 30px 30px 30px 30px 30px 30px 30px 1fr;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}
main#carousel {
  grid-row: 1 / 2;
  grid-column: 1 / 12;
  width: 100vw;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 600px;
  --items: 9;
  --middle: 5;
  --position: 1;
  pointer-events: none;
}
div.item {
  position: absolute;
  width: 300px;
  height: (min-content);
  background-color: #004B6A;
  --r: calc(var(--position) - var(--offset));
  --abs: max(calc(var(--r) * -1), var(--r));
  transition: all 0.25s linear;
  transform: rotateY(calc(-10deg * var(--r)))
    translateX(calc(-300px * var(--r)));
  z-index: calc((var(--position) - var(--abs)));
}
.item {
  background: #004B6A !important;
  border-right: 4px solid #ffffff;
  border-left: 4px solid  #ffffff;
}
.item > * {
  color: white;
  font-weight: 600;
}
.item > h4 {
  font-family: 'Burraq';
  font-size: large;
  text-align: center;
  padding: 1em auto !important;
}
div.item:nth-of-type(1) {
  --offset: 1;
  background-color: #940876;
}
div.item:nth-of-type(2) {
  --offset: 2;
  background-color: #004B6A;
}
div.item:nth-of-type(3) {
  --offset: 3;
  background-color: #940876;
}
div.item:nth-of-type(4) {
  --offset: 4;
  background-color: #004B6A;
}
div.item:nth-of-type(5) {
  --offset: 5;
  background-color: #940876;
}
div.item:nth-of-type(6) {
  --offset: 6;
  background-color: #004B6A;
}
div.item:nth-of-type(7) {
  --offset: 7;
  background-color: #940876;
}
div.item:nth-of-type(8) {
  --offset: 8;
  background-color: #004B6A;
}
div.item:nth-of-type(9) {
  --offset: 9;
  background-color: #940876;
}
input:nth-of-type(1) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
input:nth-of-type(1):checked ~ main#carousel {
  --position: 1;
}
input:nth-of-type(2) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
input:nth-of-type(2):checked ~ main#carousel {
  --position: 2;
}
input:nth-of-type(3) {
  grid-column: 4 /5;
  grid-row: 2 / 3;
}
input:nth-of-type(3):checked ~ main#carousel {
  --position: 3;
}
input:nth-of-type(4) {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
}
input:nth-of-type(4):checked ~ main#carousel {
  --position: 4;
}
input:nth-of-type(5) {
  grid-column: 6 / 7;
  grid-row: 2 / 3;
}
input:nth-of-type(5):checked ~ main#carousel {
  --position: 5;
}
.imgCarousel2 {
  width: 100% ;
}
input:nth-of-type(6) {
  grid-column: 7 / 8;
  grid-row: 2 / 3;
}
input:nth-of-type(7) {
  grid-column: 8 / 9;
  grid-row: 2 / 3;
}
input:nth-of-type(8) {
  grid-column: 9 / 10;
  grid-row: 2 / 3;
}
input:nth-of-type(9) {
  grid-column: 10 / 11;
  grid-row: 2 / 3;
}
input:nth-of-type(6):checked ~ main#carousel {
  --position: 6;
}
input:nth-of-type(8):checked ~ main#carousel {
  --position: 8;
}
input:nth-of-type(7):checked ~ main#carousel {
  --position: 7;
}
input:nth-of-type(9):checked ~ main#carousel {
  --position: 9;
}
/*! Fin Carousel  */
@keyframes carousel {
  0% { --position: 1; }
  11.11% { --position: 2; }
  22.22% { --position: 3; }
  33.33% { --position: 4; }
  44.44% { --position: 5; }
  55.55% { --position: 6; }
  66.66% { --position: 7; }
  77.77% { --position: 8; }
  88.88% { --position: 9; }
  100% { --position: 1; }
}

main#carousel {
  animation: carousel 30s infinite;
}


/*! Intro */
.sectionIntro  {
    background-image: url('../assets/img/headerBg.jpeg') !important;
    background-color: #000000db;
    background-size:cover;
    -webkit-animation: slidein 100s;
    animation: slidein 100s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate; 
    /* margin: 1em;     */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@-webkit-keyframes slidein {
from {background-position: top; background-size:3000px; }
to {background-position: -100px 0px;background-size:2750px;}
}
@keyframes slidein {
from {background-position: top;background-size:3000px; }
to {background-position: -100px 0px;background-size:2750px;}
}
@keyframes slideon {
  from {background-position: center;background-size:3000px; }
  to {background-position: 200px 50px;background-size:2750px;}
  }
.introCenter
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  /* background: #a6936289; */
  /* background: #950678; */
  border-radius: 3px;
  padding: 3em;
}
.introCenter h1{
  text-align:center;
  color:white;
  text-transform:uppercase;
}
.txtBlue {
  color: #004B6A;
  font-size:1em;
}
.introCenter >p {
  color: #004B6A;
}
.btnsIntro {
  display: flex;
  gap: 1em;
  padding-top: 5px;
}

.picPlane {
  position: relative;
  animation: float 3s ease-in-out infinite;
}
.animFloat {
  animation: float 3s ease-in-out infinite;

}


@media only screen and (max-width: 600px) {
  .introCenter{
  padding: 0.8em;
  margin: 0.8em;
  }
  .picPlane {
    width: 80vw;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*! About Burraq Travel */





/*! Our Services  */
.s1 {
    background: #004B6A;
    background: url('../assets/img/headerBg.jpeg');
    padding: 4em 1em;
    margin: 2em 0;
    color: #004B6A;
    /* background: linear-gradient(to top, #141c4ca, #004B6A, #1218437e); */

}
.titleSection {
    width:fit-content;
    margin: auto;
    font-size: 2.4rem;
    letter-spacing: 2px;
    color: white !important;
    margin-bottom: 1em;
    font-weight: 800 !important;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    padding: 4em 1em;
    width: 80vw;
    margin: auto;
    /* background: #ffffff; */
    backdrop-filter:blur(30px);
    border: 1px solid lightgray;
    /* border-top-left-radius: 50px;
    border-bottom-right-radius: 50px; */
  animation: float 3s ease-in-out infinite; /* Animation continue */    
}
@media only screen and (max-width: 1000px) {
  .s1 {
    padding: 1em;
  }
  .services {
    width: 96%;
    padding: 2em;
  }
  .introCenter{
  padding: 0.8em;
  margin: 0.8em;
  }
  .picPlane {
    width: 80vw;
  }
}
.service {
    display: flex;justify-content: center;
    align-items: center;
    gap: 1em;
    height: 3em;
    /* margin: auto; */
    /* border: 2px solid #ffffff; */
    border-radius: 5px;

    padding: 0.5em;
    background-color: white;
    /* border: 1px solid #cfcfcf; */
    box-shadow: -5px 5px 7px 2px rgb(185, 185, 185) !important;
-webkit-box-shadow: -5px 5px 7px 2px rgb(135, 135, 135) !important;
-moz-box-shadow: -5px 5px 7px 2px rgba(191,191,191,1) !important;

}
.serviceLogo > i {
    font-size: 0.8em;
}
.rightService {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  margin: auto !important;
}

.serviceTitle {
  font-family: "burraq";
  display: flex;
  align-items: center;
  margin: auto;
  font-weight: 400;
}

/*! Airlines Logos  */
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-270px * 8));
    }
  }
  .slider {
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.481);
    height: 150px;
    margin: 2em;
    overflow: hidden !important;
    position: relative;
    /* width: 100; */
    display: flex;
    align-items: center;
  }
  .slider::before,
  .slider::after {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    content: "";
    height: 200px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    animation: scroll 20s linear infinite;
    display: flex;
    width: auto;
  }
  .slider .slide {
    height: 100px;
  }
  .slide {
    margin: 1em;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*! Fin Airlines Logos  */



  /*! Footer  */
  .btn-floating {
    background: #cd09a6 !important;
    border: 2px solid #cd09a6
  }
  .schedule {
    border: 3px solid #004B6A !important;
  }




  /*! Travel Service Section  */
  .travel {
    /* background: #004B6A; */
    font-family: "burraq";
    color: #004B6A !important;
    display: flex !important;
    flex-wrap: wrap; 
    justify-content:space-around;
    width: 80VW;
    align-items: flex-start;
    /* gap: 2em; */
    margin: 4em auto;
    padding: 2em 1em;
  }
  .travelTitle {
    padding: 0 0 1em 0;
  }
  .mtTitle {
    padding: 0 0 1em 0;
  }
  .leftSide {
    text-align: left;
    height: max-content;
  }
  .travelList > *{
    font-size: 1.2em;
    font-family: "burraq" !important;
    font-weight: 600;
  }
  .travelList > h4 {
    padding: 0.4em;
  }

  .travelPic {
    width: 40vw;
    border-radius: 5px;
  }
  .mtPic {
    border-radius: 5px;
    width: 35vw;
  }
  .pays {
    width: 40vw;
    margin: 0;
  }
  .sliderPays {
    margin: 2em 1em !important;
    height: 100px;
    border-radius: 5px;
  }
  .fl {
    margin: 0 !important
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-80px * 13));
    }
  }
 
  .fl {
    margin: 1em;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  @media only screen and (max-width: 1200px) {
    .travel {
      justify-content: center;
      width: 94%;
    }
    .mtPic {
      width: 98vw;
      margin: 0;
    }
    .travelPic {
      margin: 1em !important;
      width: 90vw;
    }
    .mtTitle, .travelTitle {
      padding: 0em 0 1em 0.4em;
      margin-top: 1.2em;
    }
    .pays {
      width: auto !important;
      margin: 0 auto !important;
    }
    .travelList {
      margin: 0 auto;
      width: 96vw; 
      padding: 0 1em;
    }

  }
  .btnTravelService {
    border-radius: 50px;
    border: 2px solid rgb(255, 255, 255);
    color: white !important;
    padding: 0.8em 0.8rem;
    background: #cd09a6;
    border: 2px solid #940876;
    transition: 0.4s;  
    font-family: "burraq" !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em 0;
    position: relative;
    z-index: 2;
  }
  .btnTravelService:hover {
    background-color: #004B6A;
    border: 2px solid #00354c;
    /* color: white; */
  }
  .btnTravelService:hover > .planeAnimBtn {
    animation: movePlane 3s ;
    -webkit-animation: movePlane 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate; 
    transition: ease-in
  }
  .wa {
    font-weight: 900;
    font-size: 1em;
  }
  
  .planeAnimBtn {
    font-size: 2em !important;
    position: absolute;
    top: 0.1em !important;
    left: 150%;
    transform: rotate(180deg);

  }
  @keyframes movePlane {
    from {left: 150%; color: #940876 8
      ; }
    to {left: 102%; color: #00354c;}
    }

.qnaSection {
  background: #004B6A;
  /* color: white */
  padding: 2em 1em;
  margin: 2em;
  font-family: "burraq";
}
.qna {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin: 1em 2em;
  background: #004B6A;
  padding: 1em;
  font-family: 'burraq' !important;
}
.collapseBtn {
  font-family: 'burraq';
  border-radius: 20px;
  text-align: left !important;
  height: 3.6em;
  width: fit-content !important;
}
.card-body {
  font-family: "burraq" !important;
  flex-wrap: wrap;
}
.question {
  background: white;
  width: 40vw;
  height: max-content;
  text-align: left !important;
  /* flex-grow: 1; */
}
.collapseBtn:hover {
  color: #004B6A !important;
}
@media only screen and (max-width: 1000px) {
  .collapseBtn {
    width: 0vw;
    height: fit-content !important;
  }
  .question {
    width: 80vw;
  }
  .qnaSection, .qna {
    padding: 1em 0em !important;
  }

  /* .fa-ul > li {
    margin: 0 !important;
    display: flex;
    justify-content: center;
  }
  .fa-li {
    display: flex;
    justify-content: center;
    align-items: center;
    background: red;
    left: -500px;
    position: relative;

  } */

}
.discl {
  margin: auto;
  /* width: 80vw; */
  overflow-x: hidden;
  width: 100%; 
  height: 50px; 
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.disclaimer {
  margin: auto;
  text-align: center;
  font-family: "burraq";
  padding: auto 1em;
  font-size: 0.8em;
  white-space: nowrap; 
  /* overflow: hidden; Pour masquer tout texte qui dépasse */
  animation: defilement 25s linear infinite; 
}
@keyframes defilement {
  0% {
    transform: translateX(100%); /* Démarre à droite */
  }
  100% {
    transform: translateX(-100%); /* Va à gauche */
  }
}
