
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #fe4d00;
  --secondary: #133554;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

body{
  padding-top: 70px;
}
@media (min-width: 768px){
  body{
    padding-top: 0;
  }
}


/* BOOTSTRAP */
@media (min-width: 576px){
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px){
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    max-width: 1200px;
  }
}


.text-primary{
  color: var(--primary) !important;
}
.text-secondary{
  color: var(--secondary) !important;
}
.text-facebook{
  color: #4168b2
}
.text-facebook:hover{
  text-decoration: none;
}
.text-youtube{
  color: #ff0000;
}
.text-youtube:hover{
  text-decoration: none;
}

.font-weight-bolder{
  font-weight: 900;
}

.bg-primary{
  background: var(--primary) !important;
}
.bg-secondary-with-pattern {
  background: url(../images/bg-secondary.png) top center no-repeat #133554 !important;
  background-size: 1200px !important;
  padding-top: 65px;
}
.bg-secondary{
  background: var(--secondary) !important;
}

.bg-pattern{
  background: #fff;
}

@media (min-width: 768px){
  .bg-pattern{
    background: url(../images/bg-pattern.png) top center no-repeat #fff !important;
    background-size: 1200px !important;
    position: relative;
    overflow: hidden;
  }
}  
.bg-gradient{
  background: rgb(213,213,213);
  background: -webkit-linear-gradient(rgba(213,213,213,1) 0%, rgba(255,255,255,1) 10%);
  background: -o-linear-gradient(rgba(213,213,213,1) 0%, rgba(255,255,255,1) 10%);
  background: linear-gradient(rgba(213,213,213,1) 0%, rgba(255,255,255,1) 10%);
}

.border-right, .border-left{
  border-width: 0.1px !important;
}
.carousel-indicators {
    bottom: 10px;
    left: 0;
    -ms-flex-pack: left;
    justify-content: left;
    margin-left: 100px;
}
.carousel-indicators li {
  height: 10px;
  background-color: #fff;
  transform: skew(-10deg);
}
.carousel-indicators li.active{
  background-color: var(--primary);
}
.carousel-control-next, .carousel-control-prev {
  font-size: 7em;
  text-shadow: 0 0 10px #000;
}
.carousel-caption{
  position: absolute;
  right: 200px;
  left: auto;
  bottom: 30px;
  color: var(--secondary);
  text-align: left;
  background: var(--secondary) !important;
  color: white;
  width: 40%;
  padding: 10px 15px;
  height: 100px;
}
.carousel-caption:after{
  content: ' ';
  position: absolute;
  right: -60px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 60px 0 0;
  border-color: var(--secondary) transparent transparent transparent;
}
.carousel-caption:before{
  content: ' ';
  position: absolute;
  left: -60px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 60px;
  border-color: transparent transparent var(--secondary) transparent;
}

.carousel-caption .with-icone{
  position: absolute;
  right: 15px;
  top: 20px;
}

#carousel .carousel-item{
  height: 500px;
  overflow: hidden;
}
#carousel .carousel-item img{
  object-fit: cover;
}


a.with-icone{
  font-weight: 700;
  line-height: 50px;
  padding-right: 60px;
  position: relative;
  height: 50px;
  display: inline-block;
}
a.text-primary:hover{
  text-decoration: none;
  color: #a93300 !important;
}
a.text-secondary:hover{
  text-decoration: none;
  color: #03090f !important;
}

a.with-icone .icone-right{
  background: url(../images/icone-right.png) top center no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
a.with-icone .icone-right-primary{
  background: url(../images/icone-right-primary.png) top center no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}

.icone-map-marker{
  background: url(../images/icone-map-marker.png) top center no-repeat;
  background-size: 30px;
  width: 40px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}

.icone-comments{
  background: url(../images/icone-comments.png) top center no-repeat;
  background-size: 40px;
  width: 55px;
  height: 55px;
  display: inline-flex;
  margin-right: 10px;
  margin-top: 6px;
}


/* APP */
body{
  font-family: 'Montserrat', sans-serif;
  color: #133554;;
}


header .navbar .nav-link{
  color: #fff !important;
}

@media (min-width: 768px) {
  header{
    background: url(../images/header-bg.png) bottom center no-repeat transparent;
    background-size: 1200px;
    height: 190px;
  }
  header .logo{
    position: relative;
    left: -10px;
  }
  header .navbar{
    background: transparent !important;
    height: 60px;
    margin-top: 15px;
  }
  header .navbar ul>li.nav-item{
    position: relative;
    line-height: 60px;
  }
  header .navbar ul>li.nav-item .dropdown-item{
    line-height: 30px;
  }
  header .navbar .nav-item+.nav-item:before{
    content: ' ';
    width: 1px;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #CCC;
    transform: rotate(20deg);
  }
  header .navbar li>.nav-link{
    text-transform: uppercase;
    font-style: italic;
    color: var(--secondary) !important;
    font-weight: 700;
    line-height: 16px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1.15em;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
  }
  header .phone .highlight{
    font-size: 1.2em;
  }
}

.phone{
  font-size: 1.35em;
  font-style: italic;
  font-weight: 700;
  padding-left: 50px;
  background: url(../images/ico-phone.png) no-repeat left center;
  min-height: 35px;
}

#carousel .header-title{
font-size: 3em;
}

.media .media-picture{
  width: 45%;
}

.header-title{
  font-weight: 900;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 35px;
  position: relative;
}

@media (min-width: 768px){
  .header-title{
    padding-left: 70px;
  }

  .header-title:before{
    content: ' ';
    width: 10px;
    height: 100%;
    background: var(--primary);
    display: block;
    position: absolute;
    left: 30px;
    transform: skew(-35deg);
    top: -5px;
  }
}

.header-title-2{
  background: url(../images/h1-bg.png) no-repeat top left #fff;
  background-size: 340px auto;
  font-size: 24px !important;
  height: 110px;
  padding: 21px 0 20px 44px;
  font-weight: 700;
  text-align: center;
  width: 350px;
}
.header-title-2 .inner{
  transform: rotate(-3deg);
  display: block;
}

}
.text-white .header-title:before{
  background: #fff;
}
.header-title small{
  font-size: 60%;
  font-weight: 200;
}

.mv-title{
  padding: 5px 8px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  perspective-orig.in: 150% 150%;
  transform-style: preserve-3d;
  perspective: 5px;
  box-shadow: 0 0 5px #000;
  transform: skew(0deg, -4deg);
  font-weight: 700;
}
.mv-title:before{
  content: '';
  position: absolute;
  display: block;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
  -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0);
  clip-path: polygon(100% 100%, 100% 0, 0 0);
}
.mv-title:after{
  content: '';
  position: absolute;
  display: block;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
  -webkit-clip-path: polygon(0 100%, 100% 0, -10% 0);
  clip-path: polygon(0 100%, 100% 0, -10% 0);
}
.mv-title.bg-secondary:before, .mv-title.bg-secondary:after{
  background: var(--secondary);
}
.mv-title.bg-white:before, .mv-title.bg-white:after{
  background: #fff;
}


.activite{
  position: relative;
}
.activite-title{
  position: relative;
  bottom: 30px;
  left: 10%;
  right: auto;
  /* margin: 0 auto; */
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  /* align-content: flex-end; */
  /* align-content: center; */
  min-width: 50%;
}

.post{
  box-shadow: 0px 0px 3px #000;
  border-bottom: solid 3px #133554;
}

.slideshow {
  position: relative;
  padding: 0 30px;
  overflow: hidden;
}
.slideshow .slideshow-content{
  list-style: none;
  position: relative;
  max-width: 100%;
  margin-left: 30px;
  margin-right: 30px;
}
.slideshow .slideshow-inner{
  min-width: 20000px;
} 
.slideshow .slideshow-content img{
  margin: 0 5px;
  width: auto;
  height: 200px;
}
.slideshow .slideshow-content .slideshow-item{
  float: left;
  display: inline-block;
}
.slideshow .slideshow-control{
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 30px;
  text-align: center;
  line-height: 100px;
  font-size: 2em;
  z-index: 1000;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow .slideshow-control:hover{
  text-decoration: none;
}
.slideshow .slideshow-control.slideshow-control-right{
  right: 0;
}
.slideshow .slideshow-control.slideshow-control-left{
  left: 0;
}

.gallery{
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.gallery img{
  object-fit: cover;
}


footer{
  background: url(../images/footer-bg.png) repeat top center;
  font-size: 0.9em;
}

footer h3{
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700 !important;
}
footer ul{
  padding-left: 5px;
}
footer ul li{
  list-style: none;
  position: relative;
  padding-left: 5px;
}
footer ul li:before{
  content: '- ';
  position: absolute;
  left: -5px;
}
footer ul li>a{
  color: #fff;
}
footer ul li>a:hover{
  color: #fff;
}