
body {background-color:transparent;}

@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);
* {
  box-sizing: inherit;
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.headder-top	{padding:35px 0; background-color:rgb(41, 49, 51);}
.navbar-collapse	{border:0!important; box-shadow:none!important;}

/*@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);*/



.headder-top2	{padding: 5px; background-color: rgb(243, 165, 5); -moz-opacity:0.7; opacity: 0.7; filter:alpha(opacity=70);}



.navbar {
    top: 0px;
    margin-bottom: 0;
    margin-top: 0;
    background-color: rgba(243, 164, 5, 0.587);
    z-index: 9999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.42857143 !important;
    letter-spacing: 4px;
    border-radius: 0;
    width: 100%;
    position:absolute;


  overflow: visible !important;
  flex-wrap: wrap;
  justify-content: center;
 
}

.navbar-toggler { 
  color: #db383b;
  border-color: #db383b;
  background-color: rgb(243, 165, 5);
}



/** Logo */
/*.navbar-brand {width:151px; height:119px; float:left; margin-top:-35px;}*/

/** Liens */
.navbar-nav > li > a	    {color:#f5f9fa!important; font-size:20px;}
.navbar-nav > li > a:hover	{color:rgb(255, 82, 82)!important}
.navbar-nav > .active > a	{background:#fff!important; color:rgb(255, 82, 82)!important}

.dropdown-menu > li > a {letter-spacing: normal;}

/** Toggle */
.navbar-default .navbar-toggle    {background:rgb(255, 82, 82)!important}
.navbar-toggle:hover   {background:#222!important}
.icon-bar   {background:#fff!important}


.heroexpress  {
   
    position:absolute;
    }

.bgimage  {

  background-position: center;
  background-size: cover;
  width: 100vw;
  
  position: relative;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }

  .b-example-divider {
    height: 3rem;
    background-color:#f5a8ba8a;
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }


  .jumbotron {
	  display:inline-block;
	  background-color: #f5a8ba8a;
    color: #f31545;
	  padding-top: 5px; 
	  padding-bottom: 5px;
	  width:100%;
	  height: 100%;
	  overflow-y: hidden; 
  }


  .button2 {

    border-radius: 0.5rem;
    --y: -25;
    --x: 0;
    --rotation: 0;
    --speed: 2;
    --txt: "Besoin de plus d'info?";
    --padding: 1rem 1.25rem;
    cursor: pointer;
    padding: var(--padding);
    color: transparent;
    font-weight: bold;
    font-size: 1.25rem;
    transition: background 0.1s ease;
    background-color: rgb(255, 82, 82);
    border: 2px solid rgb(220,53,69);
    -webkit-animation-name: flow-and-shake;
            animation-name: flow-and-shake;
    -webkit-animation-duration: calc(var(--speed) * 1s);
            animation-duration: calc(var(--speed) * 1s);
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  .button2:after {
    content: var(--txt);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--padding);
    color: #fff;
  }
  .button2:hover {
    background: rgb(243, 165, 5);
    --speed: 0.1;
    --rotation: -1;
    --y: -1;
    --x: 1;
    --txt: "1-800-563-3672";
  }
  .button2:active {
    --speed: 4;
    --x: 0;
    --y: 5;
    --rotation: 0;
    --txt: "Merci :)";
    background: rgb(41, 49, 51);
  }
  .button__wrap {
    position: relative;
  
  }

  .button__shadow {
 
    width: 20%;
    position: absolute;
    border-radius: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #af9d9d;
    -webkit-animation: shadow 2s infinite ease-in-out;
            animation: shadow 2s infinite ease-in-out;
    z-index: -1;
  }
  @-webkit-keyframes shadow {
    0%, 100% {
      transform: scaleX(1);
      opacity: 1;
    }
    50% {
      opacity: 0.2;
      transform: scaleX(0.25);
    }
  }
  @keyframes shadow {
    0%, 100% {
      transform: scaleX(1);
      opacity: 1;
    }
    50% {
      opacity: 0.2;
      transform: scaleX(0.25);
    }
  }
  @-webkit-keyframes flow-and-shake {
    0%, 100% {
      transform: translate(calc(var(--x) * -1%), 0) rotate(calc(var(--rotation) * -1deg));
    }
    50% {
      transform: translate(calc(var(--x) * 1%), calc(var(--y) * 1%)) rotate(calc(var(--rotation) * 1deg));
    }
  }
  @keyframes flow-and-shake {
    0%, 100% {
      transform: translate(calc(var(--x) * -1%), 0) rotate(calc(var(--rotation) * -1deg));
    }
    50% {
      transform: translate(calc(var(--x) * 1%), calc(var(--y) * 1%)) rotate(calc(var(--rotation) * 1deg));
    }
  }

   .specfont2	{  
    text-align:center !important;
    text-transform: uppercase;
  line-height: 1.375em;
  color: #ffffff;
  font-weight: 400;
  padding-top: 19px;
  margin-bottom: 30px;
  font-size: 24px ;}

.specfont4	{
    text-align:center !important;
    padding-left: 0px; 
    color: #adadbc !important;
    font-weight: 300;
    font-size: 16px !important;}

    .specfont4b	{
    text-align:center !important;
    padding-left: 0px; 
    color: #adadbc !important;
    font-weight: 300;
    font-size: 13px !important;}

       .specfont4c	{
    text-align:center !important;
    text-decoration: underline;
    padding-left: 0px; 
    color: #adadbc !important;
    font-weight: 300;
    font-size: 20px !important;}

  
  .banniere {
	  display:inline-block;
	  background-color: rgba(243, 164, 5, 0.65);
    color: white;
	  padding-top: 5px; 
	  padding-bottom: 5px;
	  width:100vw;
	  height: 100%;
    flex-wrap: wrap;
	  overflow-y: hidden; 
    overflow-x: hidden;
    justify-content: center;
  }

  .banniere a:hover {color: #f31545;}

 .myfont1 {
  font-size: 2.5rem;
  font-family:sans-serif; 
  color: white;
  text-decoration:none;
  font-weight: bold;

 }

  .jumbotron p {
    color: white;
  }

  hr.style1 {
    border-top: 2px solid white;
    width: 70%;
    opacity: 1;
    
    
  }

  .button {
    border-radius: 0.5rem;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition-duration: 0.4s;
    margin: 4px 2px;
    font-size: 1.25rem;
    margin: 4px 2px;
    cursor: pointer;
  }

.button1 {
  background-color: rgb(255, 82, 82);
  border: 2px solid rgb(220,53,69);

} /* Rouge brand */

/*.button2 {background-color: #008CBA;} /* Blue */



.button1:hover {
  background-color: rgb(220,53,69);
  color: white;
}
  
.superposition		{position:absolute;top:0px; left:0px;color:#fff;width:100%; padding-bottom:5px;

}

.superposition00		{position:absolute;top:0px; left:0px;color:#fff;width:100%; padding-bottom:5px;
}

.superposition30		{position:relative; top:-200px; left:0px;color:#fff;width:100%; padding-bottom:5px;
}

.jumbocolor { background-color:rgba(255, 249, 168, 0.375);}

.marg1 {margin-top:200px;}

.text24 {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 70%;

  background: url(images2496/text24.png) no-repeat 50% 50%;
  background-size:cover;
  mix-blend-mode: overlay;
}



.bandeau1 {
   
 margin-top: 30px;


}

.bandeau2 {
   
  margin-top: 40px;
  margin-bottom: 40px;
 
 
 }

 
 .bandeau3 {

  max-width: 1200px;
 
  margin: 0 auto;

  text-align: center;
  justify-content:center;
  padding: 30px 30px;

}

.bandeau3 h1 {color:  rgb(243, 165, 5);}
.bandeau3 p { color:rgb(243, 165, 5) ;}
.bandeau3 h3 {color:rgb(255, 82, 82) ;}
.bandeau3 p a {color: #fff;}
.bandeau3 > p > a:hover {color: rgb(243, 165, 5);}


.col {
    
  width: 30%;
  margin-bottom: 40px;
  background-color: #fff3e3;
 
}


.col p {
  
  font-size: 1.0rem;
  padding: 10px 15px;
  line-height: 1.25rem; 
  color: #db383b;
}

.col img {
  width: 100%;
  height:auto;
}

.col p::first-line {
  font-weight: bold;
}

.text-muted {
  --bs-text-opacity: 1;
  color:#fff3e3 !important;
}

.bandeau {
   
  max-width: 1200px;
  margin: 0 auto;
 display: flex;
  flex-wrap: wrap;

  justify-content:center;
 padding: 30px 30px;

}


.margauto {
margin: auto;
margin-bottom: 10px;
padding-left: 0px;

}

.cartediv {
  margin-top: 20px;
}

.margb5 { margin-bottom: 5px;}
.margb20 { margin-bottom: 20px;}
.margb50 { margin-bottom: 50px;}
.margb100 { margin-bottom: 100px;}
.margb200 { margin-bottom: 200px;}

.margt20 { margin-top: 20px;}
.margt30 { margin-top: 30px;}
.margt50 { margin-top: 50px;}
.margt100 { margin-top: 100px;}


.grisanthracite { color: rgb(41, 49, 51);}
.grisardoise { color: rgb(67, 71, 80);}
.grisclaire { color: rgb(159, 164, 177);}
.jaunedahlia { color: rgb(243, 165, 5);}
.jaunelight { color: rgb(255, 249, 168);}
.rougebrand { color: rgb(255, 82, 82);}
.rougedanger {color: rgb(220,53,69);}

.opacity-50 {
  opacity: 2 !important;
}

.testimonials {
background-image: linear-gradient(90deg, #FC5E55  0%, rgb(243, 165, 5) 100%);
background-image: url(images/workericonebg.png) no-repeat 100% 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
margin-top: 50px;
margin-bottom: 100px;
}   

.tbox {
  width: 50%;
  padding: 50px;
  border: 1px solid white;
  box-sizing: border-box;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  color: white;
}

*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.conic {
	position: relative;
	z-index: 0;
	width: 50%;
  box-sizing: border-box;
background: transparent;
 margin-top: 50px;
  margin-bottom: 50px;
	border-radius: 10px;
	overflow: hidden;
  justify-content: center;
	padding: 50px;
  color: white;

  opacity: 0;
  -webkit-transform: translateY(4em) rotateZ(-5deg);
          transform: translateY(4em) rotateZ(-5deg);
  -webkit-transition: opacity .3s .25s ease-out,
              -webkit-transform 4s .25s cubic-bezier(0,1,.3,1);
  transition: opacity .3s .25s ease-out,
              -webkit-transform 4s .25s cubic-bezier(0,1,.3,1);
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out;
  transition: transform 4s .25s cubic-bezier(0,1,.3,1),
              opacity .3s .25s ease-out,
              -webkit-transform 4s .25s cubic-bezier(0,1,.3,1);
 /*width: 90%;*/

  will-change: transform, opacity;
}

.conic.is-visible {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
}
	
	.conic::before {
		content: '';
		position: absolute;
		z-index: -2;
    
	  background-color:rgb(41, 49, 51);
		background-repeat: no-repeat;
		background-position: 0 0;
		background-image: conic-gradient(transparent, rgb(255, 82, 82), transparent 30%);
		animation: rotate 4s linear infinite;
	}
	
	.conic::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background:rgba(255, 249, 168, 0.399) ;
		border-radius: 5px;
	}


.conic-demo::after {
	animation: opacityChange 5s infinite linear;
}

@keyframes opacityChange {
	50% {
		opacity:.5;
	}
	100% {
		opacity: 1;
	}
}


.tbox2 {
  width: 50%;
  padding: 10px;
  border: 1px solid white;
  background-color: white;
  box-sizing: border-box;
  margin-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  font-size: 50px;
  color: #f87d32;

  opacity: 0;
  -webkit-transform:none;
          transform:none;
          -webkit-transition: opacity .3s .25s ease-out,
          -webkit-transform 4s .5s cubic-bezier(0.17,1,.3,1);
transition: opacity .3s .25s ease-out,
          -webkit-transform 4s .5s cubic-bezier(0,1,.3,1);
transition: transform 4s .5s cubic-bezier(0,1,.3,1),
          opacity .3s .5s ease-out;
transition: transform 4s .5s cubic-bezier(0,1,.3,1),
          opacity .3s .5s ease-out,
          -webkit-transform 4s .5s cubic-bezier(0,1,.3,1);
  
  
  will-change: transform, opacity;
  
  
}

.tbox2.is-visible {

  opacity: 1;

}

.margb {margin-bottom: 30px;}
.mt50 {margin-top: 50px;}

th {
  text-align: right; 
}

/* Tablet view1 */
@media (max-width: 992px){

  .jumbocolor { background-color:rgb(255, 249, 168);}

  .bandeau1{
    margin-top: 800px;
  }

  .conic {
    width: 90%;
  }

  .tbox2 {
    width: 90%;
  }

  .cartediv {
    margin-top: 100px;
  }

}


  .business-hours {
  background-color: rgba(34, 34, 34, 0.349); 
  padding: 40px 14px;
  margin-top: 50px;
  position: relative;
  width: 100%;
  }
  .business-hours:before{
  content: '';
  width: 23px;
  height: 23px;
  background: #111;
  position: absolute;
  top: 5px;
  left: -12px;
  transform: rotate(-45deg);
  z-index: -1;
  }
  .business-hours .title {
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  padding-left: 5px;
  border-left: 4px solid #ffac0c; 
  }
  .business-hours li {
  color: #ffac0c;
  line-height: 30px;
  border-bottom: 1px solid #333; 
  }
  .business-hours li:last-child {
  border-bottom: none; 
  }
  .business-hours .opening-hours li.today {
  color: #ffac0c; 
  }


/* Tablet */
@media (max-width: 768px){

  .conic{
    width: 90%;
  }

  .tbox2 {
    width: 90%;
  }

}

/* Tablet mobile1 */
@media (max-width: 576px){


  .bandeau1{
    margin-top: 900px;
  }



}



/* Tablet mobile2 */
@media (max-width: 395px){


  .bandeau1{
    margin-top: 1020px;
  
    justify-content:center;
  
  }

  .conic {
    width: 100%;
  }

}

/* Tablet mobile3 */
@media (max-width: 320px){


  .bandeau1{
    margin-top: 1100px;
  
    justify-content:center;
  
  }

  .conic {
    width: 100%;
  }

}

@media (min-width: 1900px) {

 /* .superposition30		{position:relative; top:888px; left:0px;color:#fff;width:100vw;
  }*/


 
      .hide-mobile {
        display: none;
        }

        .hide-desktop-tablet {
          display: block;
        }

}


@media (min-width: 1440px) and (max-width:1899.99px){

/*.superposition30		{position:relative; top:650px; left:0px;color:#fff;width:100%; padding-bottom:5px;
}*/

  .hide-mobile {
    display: none;
    }

    .hide-desktop-tablet {
      display: block;
    }


}


@media (min-width: 1280px) and (max-height:720px) and (max-width:1439.99px){

/*.superposition30		{position:relative; top:500px; left:0px;color:#fff;width:100%; 
}*/


.hide-mobile {
  display: none;
  }

  .hide-desktop-tablet {
    display: block;
  }


}

@media (min-width: 1280px) and (min-height:730px) and (max-width:1439.99px){

 /* .superposition30		{position:relative; top:500px; left:0px;color:#fff;width:100%; 
  }*/

  .hide-mobile {
    display: none;
    }
  
    .hide-desktop-tablet {
      display: block;
    }
 
  }


@media (min-width: 830px) and (max-width:1023.99px){

/*.superposition30		{position:relative; top:210px; left:0px;color:#fff;width:100%;
}*/
 .hide-mobile {
    display: none;
    }

    .hide-desktop-tablet {
      display: block;
    }
  
}

@media (min-width: 1024.01px) and (max-width:1279.99px){

 /* .superposition30		{position:relative; top:500px; left:0px;color:#fff;width:100%;
  }*/

    .hide-mobile {
      display: none;
      }
  
      .hide-desktop-tablet {
        display: block;
      }  


    }
 
    
 
 @media (width: 1024px){

     /* .superposition30		{position:relative; top:500px; left:0px;color:#fff;width:100%;
      }*/

           .hide-mobile {
          display: none;
          }
      
          .hide-desktop-tablet {
            display: block;
          }  
    
        }


@media (min-width: 481px) and (max-width:829.98px){

/*.superposition30		{position:relative; top:-280px; left:0px;color:#fff;width:100%;z-index: 1025;
}*/

.hide-mobile {
  display: block;
  }

  .hide-desktop-tablet {
    display: none;
  }

}

@media (max-width:480px){
/*.superposition30		{position:relative; top:-35px; left:0px;color:#fff;width:100%; 
} */ 

  .hide-mobile {
    display: block;
    }

    .hide-desktop-tablet {
      display: none;
    }

}

@media (max-width:390px){


  .hide-mobile {
    display: block;
    }

    .hide-desktop-tablet {
      display: none;
    }

 
}


@media (max-width:360px){

  .hide-mobile {
    display: block;
    }

    .hide-desktop-tablet {
      display: none;
    }


}


@media (max-width:330px){

  .hide-mobile{
    display: block;
  }

   .hide-desktop-tablet {
      display: none;
    }

}

@media (max-width:250px){

  .hide-mobile{
    display: block;
  }

   .hide-desktop-tablet {
      display: none;
    }

}

