

/* PORTFOLIO DIAPORAMA */ 

#services .heading  {
padding-bottom:0px;	
}

    .fade-container {
      position: relative;
      width: 80%;
      max-width: 600px;
      aspect-ratio: 3 / 2; /* ✅ Hauteur automatique selon largeur */
      margin: 40px auto;
      overflow: hidden;
    }

    .image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .image-wrapper.active {
      opacity: 1;
      z-index: 1;
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      text-align: center;
      padding: 10px;
      font-size: 1.2em;
    }

    @media (max-width: 768px) {
		
	#services .heading  h2{
	font-size: 1.6em;
	}


      .fade-container {
        width: 100%;
        aspect-ratio: 4 / 3; /* ✅ Ratio plus haut pour mobile */
      }

      .caption {
        font-size: 1em;
        padding: 8px;
      }
    }
/* ===FIN PORTFOLIO DIAPORAMA===*/ 



/*
.modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
*/

.container_video {
display: grid;
}

.img_video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  opacity:0.3;
}

.content_video, .overlay_video {
  grid-area: 1 / 1;
}




.carousel-indicators  {
    float: bottom;
    bottom: -10% !important;
    /*left: inherit; */
}

.carousel-indicators > li{
    background-color: #00bfff;
    border-color:  #00bfff;
}




@arrowColor: #ffcc00;
@arrow: escape('@{arrowColor}');

select {  
  background-color:#00bfff;
  background-image: url(~"data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20256%20448%22%20enable-background%3D%22new%200%200%20256%20448%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E.arrow%7Bfill%3A@{arrow}%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22arrow%22%20d%3D%22M255.9%20168c0-4.2-1.6-7.9-4.8-11.2-3.2-3.2-6.9-4.8-11.2-4.8H16c-4.2%200-7.9%201.6-11.2%204.8S0%20163.8%200%20168c0%204.4%201.6%208.2%204.8%2011.4l112%20112c3.1%203.1%206.8%204.6%2011.2%204.6%204.4%200%208.2-1.5%2011.4-4.6l112-112c3-3.2%204.5-7%204.5-11.4z%22%2F%3E%3C%2Fsvg%3E%0A");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: auto 50%;
  border-radius: 2px;
  border: none;
  color: #ffffff;
  padding: 2px 10px 0px 10px;
  
  // disable default appearance
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  &::-ms-expand { display: none };
}

// remove dotted firefox border
@-moz-document url-prefix() {
  select {
    color: rgba(0,0,0,0);
    text-shadow: 0 0 0 #ffffff;
  }
}

// Codepen Layout
@import url(https://fonts.googleapis.com/css?family=Lato:300,400);
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: #34495E;
  select {
    margin: 50px auto 0;
    display:block;
  }
}


svg {
height:40px;
fill : #313131;
}

/*filter: invert(48%) sepia(79%) saturate(100) hue-rotate(86deg) brightness(118%) contrast(119%);*/


* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* ---- button ---- */

.button {
  display: inline-block;
  padding: 0.5em 1.0em;
  background: #EEE;
  border: none;
  border-radius: 7px;
  background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2) );
  color: #222;
  font-family: sans-serif;
  font-size: 16px;
  text-shadow: 0 1px white;
  cursor: pointer;
}

.button:hover {
  background-color: #8CF;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #222;
}

.button:active,
.button.is-checked {
  background-color: #28F;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }

/* ---- isotope ---- */

.grid {
  background: #EEE;
  max-width: 1200px;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ui group */

.ui-group {
  display: inline-block;
}

.ui-group h3 {
  display: inline-block;
  vertical-align: top;
  line-height: 32px;
  margin-right: 0.2em;
  font-size: 16px;
}

.ui-group .button-group {
  display: inline-block;
  margin-right: 20px;
}

/* grid-items */

.grid-items {
  width: 70px;
  height: 70px;
  margin: 5px;
  float: left;
}





/* Client Feedback
--------------------------------------------------------*/

.carousel-control.left,.carousel-control.right  {background:none;width:25px;}
.carousel-control.left {left:-50px;}
.carousel-control.right {right:-25px;}




.broun-block {
   background:#F39D17;
    padding-bottom: 34px;
}

.block-text ins {
    bottom: -44px;
    left: 50%;
    margin-left: -60px;
}

.block {
    display: block;
}

.block-text {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 0 #2c2222;
    color: #626262;
    font-size: 14px;
    margin-top: 27px;
    padding: 15px 18px;
}
.block-text a {
 color: #7d4702;
    font-size: 25px;
    font-weight: bold;
    line-height: 21px;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.mark {
    padding: 12px 0;background:none;
}
.block-text p {
    color: #585858;
    font-family: Georgia;
    font-style: italic;
    line-height: 20px;
}

.person-text {
    padding: 10px 0 0;
    text-align: center;
    z-index: 2;
}
.person-text a {
   color: #222222;
display: block;
font-size: 15px;
margin-top: 3px; 
font-weight: bold;
}
.person-text i {
    color: #fff;
    font-family: Georgia;
    font-size: 13px;
}
.rel {
    position: relative;
}













/*Packages*/
.cuadro_intro_hover {
    padding: 0px;
    position: relative;
    overflow: hidden;
    height: 190px;
	margin-bottom:20px;
}

.cuadro_intro_hover:hover .caption {
    opacity: 1;
    transform: translateY(-150px);
    -webkit-transform: translateY(-150px);
    -moz-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    -o-transform: translateY(-150px);
}

.cuadro_intro_hover img {
    z-index: 4;
}

.cuadro_intro_hover .caption {
    position: absolute;
    top: 150px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.cuadro_intro_hover .blur {
    background-color: rgba(255, 130, 47, 0.82);
    height: 300px;
    z-index: 5;
    position: absolute;
    width: 100%;
}

.cuadro_intro_hover .caption-text {
    z-index: 10;
    color: #fff;
    position: absolute;
    height: 300px;
    text-align: center;
    top: -26px;
    width: 100%;
}

.caption-text p {
    color: #FFFFFF;
    padding: 0 10px;
}

.caption-text h3 {
    padding: 18px;
    font-size: 16px;
    color: #fff;
}


/* ====== bulletin modal ========== */ 

.modal-body, .modal-header, .modal-footer { 
  background-color: #25272c;
  border :  none;
}

h5 {
    color: #fff;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.modal-title, .MyModalName, .MyModalEmail, .MyModalConfirm, .msg_contactfrm {
color:white;
}

.red {
color:red;
}

.btn_modal {
	background-color: #6C757D;
	float:left;
}


/* ==== boutique ====*/

#our-team h4{
	font-size:1.2em;
	line-height: normal;
	}

#our-team button{
	font-size:1.2em;
	}

#our-team .heading p{
	line-height: normal;
	}
	


@media (max-width: 768px) {
	#our-team h4{
	font-size:0.7em;
	line-height: normal;
	}

	#our-team .heading p{
	font-size:1.2em;
	line-height: normal;
	margin:20px;
	}

	#our-team .heading {
	margin:0px;
	}

	
	#our-team button{
	font-size:0.8em;
	}
}





/* ==== collegiale === */

#team .team-member h4{
	font-weight:bold;
	}
	
#team .team-member span{
	font-size:1.2em;
	line-height: normal;
	}
	
#team .heading {
	margin:0px;
}

	
@media (max-width: 768px) {

#team .team-member h4{
	font-size:1em;
	line-height: normal;
	}

#team .team-member span{
	font-size:1em;
	line-height: normal;
	}
	
#team h4{
	font-size:1em;
	line-height: normal;
	}

#team .heading p{
	line-height: normal;
	font-size:1.2em;
	}
	
}


/* ==== top home arrow ===*/
.topHome {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size:12px;
  cursor: pointer;;
}

