
/* -------------------------------------------------- */
/* ================================================== */
/* ===================== CENTRE ===================== */
/* ================================================== */
/* -------------------------------------------------- */

.btn-primary
{
  background-color: rgb(102,72,177);
  border: 1px solid rgb(102,72,177);
}

.btn-primary:hover
{
  background-color: rgb(86,61,124);
  border: 1px solid rgb(86,61,124);
}

.padding
{
  padding-bottom: 2rem;
}

.mb10px
{
  margin-bottom: 10px;
}

hr.light
{
  border-top: 1px solid rgb(213,213,213);
  width: 75%;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

hr.light-100
{
  border-top: 1px solid rgb(213,213,213);
  width: 100%;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}


/* ---------------------------------------- */
/* ================ ABOUT ================= */
/* ---------------------------------------- */
.about
{
  position: relative;
}

.about-inner
{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-inner img
{
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.about-caption
{
  position: absolute;
  right: 15%;
  bottom: 20px;
  top: 45%;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  text-align: center;
  transform: translateY(-50%);
}

.about-caption h1
{
  font-size: 500%;
  text-transform: uppercase;
  text-shadow: 3px 3px 15px black;
}

.about-caption h3
{
  font-size: 5vw;
  font-weight: 500;
  text-shadow: 2px 2px 15px black;
  padding-bottom: 1rem;
}

/* --------------------------------------- */
/* ============== jumbotron ============== */
/* --------------------------------------- */

.jumbotron
{
  padding: 1rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.welcome
{
  width: 75%;
  margin: 0 auto;
  padding-top: 2rem;
}

.welcome hr
{
  border-top: 2px solid rgb(180, 180, 180);
  width: 95%;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}

/* --------------------------------------- */
/* =============== project =============== */
/* --------------------------------------- */

.project
{
  background-color: rgb(233,236,239);
}

.item
{
  margin: 5%;
  background-color: white;
  box-shadow: 0 15px 35px rgba(50,50,50,0.1), 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  transform: translate3d(0, -1px, 0);
}

.item:hover
{
  transform: translate3d(0,10px,0);
}

.item img
{
  display: block;
  width: 100%;
  height: auto;
}

.item__body
{
  padding: 25px;
}

.item__title
{
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  color: rgb(35,35,35);
  text-align: center;
}

.item__description
{
  color: rgb(88, 88, 88);
}

/** Carousel **/

.carousel-manuel
{
    position: relative;
    /* overflow: hidden; */
}

.carousel__container
{
    transition: transform 0.3s;
    transform: translate3d( 0 , 0 , 0 );
}

.carousel__container::after
{
    content: "";
    clear: both;
    display: table;
}

.carousel__item
{
    float: left;
}

.carousel__next
{
    background: white url(../img/right2.png) center center no-repeat;
    right: 1vw;
}

.carousel__prev
{
    background: white url(../img/left2.png) center center no-repeat;
    left: 1vw;
}

.carousel__next, .carousel__prev
{
    position: absolute;
    width: 40px;
    height: 40px;
    
    background-size: 30px 30px;
    border-radius: 50%;
    top: 50%;
    margin-top: -20px;
    /* right: -20px; */
    box-shadow: 0 15px 35px rgba(50,50,50,0.1), 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition : transform 0.3s , opacity 0.3s;
}

.carousel__next:hover, .carousel__prev:hover
{
    transform: scale(1.2);
}

.carousel__prev--hidden , .carousel__next--hidden 
{
    opacity: 0;
}

.carousel__pagination
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    /* display: none;  */
}

.carousel__pagination__button
{
    background-color: rgb(94, 94, 94);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    box-shadow: 0 2px 5px rgba(50,50,50,0.1), 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.carousel__pagination__button--active, .carousel__pagination__button:hover
{
    transform: scale(1.4);
}


.comingSoon
{
  margin-top: 100px; 
}

.loader 
{
  position: absolute;
  margin-left: 30%;
  margin-top: -12px;
}
.dot 
{
  float: left;
  margin: 0 8px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: black;
}

/* --------------------------------------- */
/* =============== footer ================ */
/* --------------------------------------- */

.git
{
  margin-bottom: 15px;
}

.logo-git:hover, .logo-git:focus
{
  filter: invert(1);
  color: white;
}


.linkedin
{
  -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.linkedin:hover, .linkedin:focus
{
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  color: white;
}

footer
{
  background-color: rgb(63,63,63);
  color: rgb(213,213,213);
  padding-top: 2rem;
}


footer a 
{
  color: rgb(213,213,213);
}

.center-footer
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.portrait
{
  width: 88px;
  height: 88px;
  background-color: white;
  border-radius: 50%;
  margin: auto;
}

.flag
{
  width: 88px;
  height: 88px;
  background-image: linear-gradient(to right, blue, white, white, red);
  border-radius: 50%;
  margin: auto;
}

.lien
{
  text-decoration: none;
}

.lien:hover, .lien:focus
{
  color: white;
}



.rotate90
{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}



/* -------------------------------------------------- */
/* =================== Transition =================== */
/* -------------------------------------------------- */

.transit-1
{
    height: 100px;
    background-image: linear-gradient(180deg, rgb(233,236,239), rgb(255, 255, 255) );
}

.transit-2
{
    height: 100px;
    background-image: linear-gradient(180deg, rgb(255,255,255), rgb(233, 236, 239) );
}

.transit-3
{
    height: 100px;
    background-image: linear-gradient(180deg, rgb(233,236,239), rgb(63, 63, 63) );
}

/* -------------------------------------------------- */
/* ================================================== */
/* ================= Media Queries ================== */
/* ================================================== */
/* -------------------------------------------------- */

@media all and (max-width: 1200px)
{

}

@media (max-width: 992px) 
{

}

@media (max-width: 800px) 
{

}

@media (max-width: 768px) 
{

  .about-caption
  {
    top: 40%;
  }

  .about-caption h1
  {
    font-size: 350%;
  }

  .about-caption h3
  {
    font-size: 140%;
    font-weight: 400;
    padding-bottom: 0.2rem;
  }

  .about-caption .btn
  {
    font-size: 95%;
    padding: 8px 14px;
  }

  .display-4
  {
    font-size: 200%;
  }

}

@media (max-width: 576px) 
{
  .about-caption
  {
    top: 35%;
  }

  .about-caption h1
  {
    font-size: 250%;
  }

  .about-caption h3
  {
    font-size: 110%;
  }

  .about-caption .btn
  {
    font-size: 90%;
    padding: 4px 8px;
  }

  .display-4
  {
    font-size: 160%;
  }

}


/*---Firefox Bug Fix --*/
.carousel-item 
{
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

/*--- Fixed Background Image --*/
figure 
{
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}

/* .fixed-wrap 
{
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#fixed 
{
  background-image: url('img/1.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
} */

/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/








