  /*!
 * ConvergenWeb - info@convergenceweb.ch
 * Loutan style.css 
 * Copyright (c) 2025 ConvergenceWeb
 */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  overflow-x: hidden !important; 
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight:normal ;
  font-style: normal;
  overflow-x: hidden; 
  width:100vw !important;
}

h1 {
  font-family: "Sora", sans-serif;
}

h2 {
  font-family: "Sora", sans-serif !important;
}

h3, h4, h5, h6, p, a {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
}

a {
  color: #cc0000;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

.waScrollToTopBtn {
    border-radius: 1vh;

}

@media screen and (max-width: 575px) and (orientation: portrait) {
.waScrollToTopBtn {
    right: 10px !important;
}
}

/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/
#.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(loutan.gif) center no-repeat rgba(0,0,0,0.8);
}

/*--------------------------------------------------------------
# Nice Scroll
--------------------------------------------------------------*/

::-webkit-scrollbar {
 width: 0.4vw;
 height: 20vh;
 -webkit-border-radius: 50vh;
}
 
::-webkit-scrollbar-track-piece {
 background-color: rgba(0,0,0,1);
}
 
::-webkit-scrollbar-thumb:vertical {
 height: 20vh;
 background-color: rgba(193,88,39,0.7);
 -webkit-border-radius: 50vh;
}

@media screen and (max-width: 575px) and (orientation: portrait) {
::-webkit-scrollbar {
 width: 1.5vw;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.cd-header {
    position: fixed !important;
    background: transparent;
    height: 10vh;
    width: 100vw;
    z-index: 9999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
}

.cd-header .is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: 0;
    background-color: rgba(68, 68, 68, 0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
.cd-header .is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.cd-header .menu-is-open {
/* add a background color to the header when the navigation is open */
	background-color: rgba(68, 68, 68, 0);
}
.cd-primary-nav-trigger {
    width: 5vw;
	height:10vh;
	cursor: pointer !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:  flex-end;
    align-items: flex-end;
	padding-right: 2vw;
}

.cd-primary-nav-trigger .cd-menu-icon {
/* this span is the central line of the menu icon */
	margin: 1vh 0 0 0;
	width:1vw;
	height: 0.3vh;
	border-radius: 5px;
	background: #c15827;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

/* these are the upper and lower lines in the menu icon */
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
	content: '';
	position: absolute;
	border-radius: 5px;
	background: #c15827;;
	/*box-shadow: 0px 1px 10px #000;*/
	right: 0;
	-webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
	-moz-transition: -moz-transform .3s, top .3s, background-color 0s;
	transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	top: -1vh;
	height: 0.3vh!important;
	width: 1.5vw!important;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
	width: 1.5vw!important;
	top: 1vh;
    height: 0.3vh!important;
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background: rgba(255, 255, 255, 0)!important;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: #fff;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.cd-menu-text {
	font-family: "Sora", sans-serif;
	font-weight:100;
	font-size: 0.6vw;
    color: #fff;
	padding: 1.5vh 0.5vw 0 0;
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1002;
  text-align: center;
  padding: 0 0 7vh 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  transition-duration: 1s;
  display:flex;
  flex-direction: column;
  flex-wrap: nowrap;
   justify-content: space-evenly;
}

.cd-primary-nav .trameimg {
	height: auto;
    width: 100vw;
    margin: -1vh 0 0 1.5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.cd-primary-nav .trameimg img {
  height: auto;
  width:9vw;
  display:flex;
}

.cd-primary-nav li {
  font-family: "Encode Sans Semi Condensed", sans-serif;
  font-size: 2.5vh;
  font-weight: 100;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-primary-nav a {
  color:#fff;
  text-decoration: none;
}
.cd-primary-nav span {
  font-size: 1.5vh;
  font-weight: 700;
  color: #00965c;
  padding-bottom:1vh;
  text-decoration: none;
}
.no-touch .cd-primary-nav a:hover {
  border-radius: 980px !important;
  padding :1vh 1vw  !important;
  background: #c15827  !important;
  color: #fff  !important;
  text-shadow: 0 0 10px #fff  !important;
  text-decoration: none  !important;
}
.cd-primary-nav .cd-label {
  font-family: "Sora", sans-serif;
  font-size: 3vh;
  color: #c15827 !important;
  text-transform: uppercase;
  font-weight: 400;
}

.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* iPad pro only */
@media (max-width: 1366px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
.cd-primary-nav-trigger .cd-menu-icon {
    width: 1.5vw;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	height: 0.3vh !important;
    width: 2.5vw !important;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
   height: 0.3vh !important;
    width: 2.5vw !important;
	padding-bottom: 0.35vh;
}
.cd-menu-text {
    font-size: 1vw;
    padding: 1.5vh 0.8vw 0 0;
}
.cd-primary-nav .trameimg img {
    width: 12vw;
}
.cd-primary-nav .trameimg {
    margin: -1vh 0 0 3.5vw;
}
}

@media screen and (max-width: 1199px) and (orientation: portrait) {
.cd-primary-nav-trigger .cd-menu-icon {
	margin: 0vh 0 0 0;
    width: 2.5vw;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	height: 0.3vh !important;
    width: 4vw !important;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
   height: 0.3vh !important;
    width: 4vw !important;
}
.cd-menu-text {
    font-size: 1.4vw;
    padding: 1.5vh 1.2vw 0 0;
}
.cd-primary-nav .trameimg img {
    width: 12vw;
}
.cd-primary-nav .trameimg {
    margin: -1vh 0 0 3.5vw;
}
}

@media screen and (max-width: 1199px) and (orientation: landscape) {
.cd-header {
    height: 14vh;
}
.cd-primary-nav-trigger .cd-menu-icon {
	margin: 2vh 0 0 0;
    width: 2vw;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	height: 0.3vh !important;
    width: 3vw !important;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
	height: 0.3vh !important;
    width: 3vw !important;
}

.cd-primary-nav .trameimg img {
    width: 12vw;
}
.cd-primary-nav .trameimg {
    margin: 0 0 0 3.5vw;
}
}

@media screen and (max-width:950px) and (orientation: landscape) {
.cd-header {
    height: 20vh;
}
.cd-primary-nav {
    padding: 0 0 1vh 0;
}
.cd-primary-nav-trigger {
	height: 16vh;
    width: 10vw;
	justify-content: center;
	padding-right: 0vw;
}
.cd-primary-nav-trigger .cd-menu-icon {
	margin: 4vh 1vw 0 0;
    width: 2vw;
	height: 0.6vh !important;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	top: -2.5vh;
	height: 0.6vh !important;
	width: 3vw !important;
	padding: 0.7vh 0 0 0;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
	top: 2.5vh;
    height: 0.6vh !important;
    width: 3vw !important;
	padding: 0 0 0.7vh 0;
}
.cd-menu-text {
    font-size: 1.3vw;
    padding: 4vh 2vw 0 0;
}
.cd-primary-nav .trameimg img {
    width: 12vw;
}
.cd-primary-nav .trameimg {
    margin: 1vh 0 0 3.5vw;
}
.cd-primary-nav .cd-label {
    font-size: 2vw;
}
.cd-primary-nav li {
    font-size: 2vw;
	
	padding: 0 0 1vh 0;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
.cd-header {
    height: 8vh;
    width: 100vw;
    right: 10px;
}
.cd-primary-nav {
    padding: 0 0 3vh 0;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
	width: 8vw !important;
	padding:0 0 0.4vh 0;
}
.cd-primary-nav-trigger .cd-menu-icon {
	width: 5.5vw;
	margin: 2vh 0 0 0;
	padding: 0.4vh 0 0 0;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
	width: 8vw !important;
	padding:0.4vh 0 0 0;
}
.cd-primary-nav-trigger {
    width: 14vw;
    height: 10vh;
	padding-right:0;
	margin:-3vw;
    justify-content: center;
    align-items: flex-end;
}
.cd-menu-text {
	font-size: 3vw;
    padding: 1vh 2.5vw 0 0;
}
.cd-primary-nav .trameimg img {
    width: 28vw;
}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# accueil
--------------------------------------------------------------*/

/*---# LOGO TOP  --*/

#hero {
    width: 100vw;
    height: auto;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:space-between;
	padding-left:0;
}

#hero .trame-logo {
	display: flex !important;
    flex-direction: row;
    justify-content: center;
    margin: 5vh 0 7vh 0;
	height: 12vh;
}

#hero .trame-souslogo {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 12vh;
}

#hero .logotop {
  width: auto;
  height: 9vh;
  margin: 0;
}

#hero .logotop2 {
  position: relative;
  width: auto;
  height: 7vh;
  margin: -8.5vh 0 0 0;
}

/*---# SLIDER NEWS  --*/

.carousel-inner {
    border-radius: 2vh;
}

.carousel-control-prev {
    left: -10.5vw;
}

 .carousel-control-prev-icon {
    width: 3vw;
    height: 5vh;
}

.carousel-control-next {
    right: -10vw;
}

.carousel-control-next-icon {
    width: 3vw;
    height: 5vh;
}

.carousel-indicators {
    bottom: -4vh;
}



.blockcomp-0-comp_2 > .wa_inner_col {

    border-radius:0 0 2vh 0 !important;
}

.blockcomp-1-comp_2 > .wa_inner_col {

    border-radius:0 0 2vh 0 !important;
}

.blockcomp-2-comp_2 > .wa_inner_col {

    border-radius:0 0 2vh 0 !important;
}

.carousel-item {
   
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
   
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media(min-width: 1200px) and (orientation: landscape) {
.blockcomp-0-comp_4 {
	padding-bottom: 3rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 2rem;
}
.blockcomp-1-comp_4 {
	padding-bottom: 3rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 2rem;
}
.blockcomp-2-comp_4 {
	padding-bottom: 3rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 2rem;
}
}

@media screen and (max-width: 1199px) and (orientation: portrait) {

#hero .logotop {
    width: auto;
    height: 8vh;
    margin: 0 0 0 0;
}
#hero .logotop2 {
    height: 5vh;
    margin: -6.5vh 0 0 0;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {

}

/*--------------------------------------------------------------
# sélécteur
--------------------------------------------------------------*/
/*-- Réglages début --*/
#trame-selecteur {
	width: 100vw;
	margin:8vh 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.ih-item.square {
	position: relative;
	width:20vw;
	height: auto;
	border: 0vw solid #ffffff;
	box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.3);
}

.ih-item {
  position: relative;
  max-height: 55vh;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item,
.ih-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ih-item a {
  color: #333333;
  border-radius: 2vh;
}
.ih-item a:hover {
  text-decoration: none;
}
.ih-item img {
	width: 100%;
    height:auto;
	border-radius: 2vh;
}

.ih-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ih-item.square.effect5 {
  overflow: hidden;
  border-radius: 2vh;
}
.ih-item.square.effect5.colored .info {
  background: rgba(193, 88, 39, 0.7);
}

.ih-item.square.effect5 .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.ih-item.square.effect5 .info {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect5 .info h3 {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 2.5vh;
  line-height:1.4;
  text-align:left;
  color:#fff;
  padding: 0 2vw;
  margin: 0 0 0 0;
  -webkit-transform: scale(4);
  -moz-transform: scale(4);
  -ms-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
  -webkit-transition: all 0.6s 0.3s ease-in-out;
  -moz-transition: all 0.6s 0.3s ease-in-out;
  transition: all 0.6s 0.3s ease-in-out;
  height: 100%;
  display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  
}
.ih-item.square.effect5 .info p {
  color: #ffffff;
  font-size: 2vh;
  font-weight: 300;
  position: relative;
  padding: 20px 20px 20px;
  text-align: center;
  -webkit-transform: scale(5);
  -moz-transform: scale(5);
  -ms-transform: scale(5);
  -o-transform: scale(5);
  transform: scale(5);
  -webkit-transition: all 0.35s 0.3s linear;
  -moz-transition: all 0.35s 0.3s linear;
  transition: all 0.35s 0.3s linear;
}
.ih-item.square.effect5 a:hover .img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.ih-item.square.effect5 a:hover .info {
  visibility: visible;
  opacity: 1;
}
.ih-item.square.effect5 a:hover .info h3,
.ih-item.square.effect5 a:hover .info p {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 1199px) and (orientation: portrait) {
#trame-selecteur {
	margin:5vh 0 5vh 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
}
.ih-item {
    max-height: 60vh;
}
.ih-item.square {
    width:50vw;
	margin-top: 8vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
.ih-item.square.effect5 .info h3 {
    font-size: 2.5vh;
    line-height: 1.3;
	padding: 0 5vw;
}

.ih-item.square {
  width: 75vw;
  height: auto;
}
}

#trame-selecteur .snip1487 {
  position: relative;
  overflow: hidden;
  width:20vw;
  height: auto;
  text-align: center;
  border-radius: 2vh;
}
#trame-selecteur .snip1487 *,
#trame-selecteur .snip1487 *:before,
#trame-selecteur .snip1487 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#trame-selecteur .snip1487 img {
  height: auto;
  width:20vw;
  backface-visibility: hidden;
  vertical-align: top;
}
#trame-selecteur .snip1487 figcaption {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  padding: 0;
  opacity: 0;
  
}
#trame-selecteur .snip1488 figcaption {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  padding: 0;
  opacity: 0;
  
}

#trame-selecteur .snip1488 {
  position: relative;
  overflow: hidden;
  width:20vw;
  height: auto;
  text-align: center;
  margin: 0;
  border-radius: 2vh;
}
#trame-selecteur .snip1488 h3 {
  background: linear-gradient(90deg, rgba(193, 88, 39, 1), rgba(193, 88, 39, 0));
  height:80vh;
  border-radius: 0;
  letter-spacing: 0;
  font-size: 1.5vw;
  font-weight: 300;
  line-height:1.4;
  color: #fff;
  padding: 0 1vw 0 1vw;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
#trame-selecteur .snip1488 p {
  height:6vh;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  border-radius: 0 ;
  font-family:'Sora', sans-serif;
  letter-spacing: 0;
  font-size: 2vw;
  font-weight: 100;
  color: #fff;
}

#trame-selecteur .snip1487 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#trame-selecteur .snip1487:hover img,
#trame-selecteur .snip1487.hover img {
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}
#trame-selecteur .snip1487:hover figcaption,
#trame-selecteur .snip1487.hover figcaption {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

/******************************** MEDIA QUERIES ********************************/

@media screen and (max-width: 525px) and (orientation: portrait) {
#trame-selecteur {
	margin: 5vh 0 0 0;
}
#trame-selecteur .snip1487 img {
  height: auto;
  width:70vw;
}
#trame-selecteur .snip1487 figcaption {
  top: 50%;
  width: 100%;
  padding: 0;
}
#trame-selecteur .snip1488 figcaption {
  top: 50%;
  width: 100%;
  padding: 0;
  
}
#trame-selecteur .snip1488 {
   width: 70vw;
  height:auto;
  margin-bottom:1vh;
}
#trame-selecteur .snip1488 h3 {
  background: linear-gradient(90deg, rgba(193,88,39,1), rgba(193,88,39,0));
  border-radius: 0;
  font-size: 6.5vw;
  padding: 2vh 4vw;
}
#trame-selecteur .snip1488 p {
  font-size: 5vw;
}
}

@media screen and (max-width: 1199px) and (orientation: portrait) {

#trame-selecteur .snip1487 img {
  height: auto;
  width:60vw;
}
#trame-selecteur .snip1487:hover img,
#trame-selecteur .snip1487.hover img {
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  opacity: 0.3;
  -webkit-transform: translateY(+0px);
  transform: translateY(+0px);
}
#trame-selecteur .snip1487 figcaption {
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  padding: 0;
}
#trame-selecteur .snip1488 figcaption {
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  padding: 0;
  
}
#trame-selecteur .snip1488 {
  width: 60vw;
  height:auto;
  margin-bottom:10vh;
}
#trame-selecteur .snip1488 h3 {
  background: linear-gradient(90deg, rgba(193,88,39,1), rgba(193,88,39,0));
  border-radius:0;
  font-size: 4vw;
  padding: 0 5vw 0 5vw;
  line-height: 1.6;
}
#trame-selecteur .snip1487 p {
  font-size: 2vh;
  line-height: 2.5vh;
  padding-top: 1vh
}

}

@media screen and (max-width: 1199px) and (orientation: landscape) {

#trame-selecteur .snip1487 {
  position: relative;
  overflow: hidden;
  height: 50vh;
  text-align: center;
  background-color: #282828;
  margin-top:0;
}
#trame-selecteur .snip1487 figcaption {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  padding: 0;
  opacity: 0;
}
#trame-selecteur .snip1487 img {
    height: auto;
    width: 30vw;
    backface-visibility: hidden;
    vertical-align: top;
}

#trame-selecteur .snip1488 {
  position: relative;
  overflow: hidden;
  height: 50vh;
  text-align: center;
  background-color: #282828;
  margin-top:0;
}
#trame-selecteur .snip1488 h3 {
    font-size: 1.6vw;
    font-weight: 300;
    line-height: 1.6;
    padding: 0 1vw 0 1vw;
}
}

@media screen and (max-width: 950px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
#trame-selecteur .snip1487 {
  width: 97%;
  height: auto;
}
#trame-selecteur .snip1488 {
  height: 70vh;
  width: 20vw;
}
#trame-selecteur .snip1487 figcaption {
  top: 50%;
  width: 100%;
  padding: 0;
}

#trame-selecteur .snip1487 img {
    height: 80vh;
	width: 25vw;
}
#trame-selecteur .snip1488 h3 {
	line-height: 1.5;
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    width: 100vw;
    height: auto;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:space-between;
	padding:10vh 0 2vh;
}

#footer .trame-logo {
	width: 100vw !important;
	display: flex !important;
    flex-direction: row;
    justify-content: center;
}

#footer .trame-tricar {
  width: auto;
  padding-right: 5vw;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-end !important;
}

#footer .tricar {
  width: auto;
  height: 6.5vh;
  margin: 0;
}

#footer .trame-footer1 {
	width: 15vw;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: flex-end !important;
}

#footer a {
	font-size:1.3vw;
}

#footer .trame-footer2 {
	width: 20vw;
	padding-left: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
}

#footer .trame-footer3 {
	margin-right: auto;
}

#footer br {
	display:flex !important;
}

#footer .trame-rs {
	width: 12vw;
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#footer .trame-rstop {
	width: 10vw;
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
}

#footer .trame-rstop .sb1 {
	width: 3vw;
	height: 5vh;
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#footer .trame-rsbot {
	width: 10vw;
	display: flex !important;
	flex-direction: raw;
	justify-content: center;
	align-items: flex-end;
}

#footer .trame-rsbot .sb1 {
	width: 3vw;
	height: 5vh;
	display: flex !important;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.icon-link {
  width: 3vh!important;
  height: 3vh !important;
  background-color: #fff;
  line-height: 3vh !important;
  cursor: pointer;
  outline: none;
  border-radius: 60px;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box;
      display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.icon-link.fill.facebook {
  background-color: #3b5998;
}
.icon-link.fill.facebook:hover {
  background-color: #fff;
}
.icon-link.fill.facebook:hover .fa-facebook {
  color: #3b5998;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.fill.instagram {
  background-color: #e4405f;
}
.icon-link.fill.instagram:hover {
  background-color: #fff;
}
.icon-link.fill.instagram:hover .fa-instagram {
  color: #e4405f;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.fill.linkedin {
  background-color: #007bb6;
}
.icon-link.fill.linkedin:hover {
  background-color: #fff;
}
.icon-link.fill.linkedin:hover .fa-linkedin {
  color: #007bb6;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.fill.envelope {
  background-color: #333;
}
.icon-link.fill.envelope:hover {
  background-color: #fff;
}
.icon-link.fill.envelope:hover .fa-envelope {
  color: #333;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.brand {
  background-color: #fff;
}
.icon-link.brand .fa {
  color: #006FC2;
}
.icon-link.round {
  border-radius: 50%;
}
.icon-link.round-corner {
  border-radius: 5px;
}
.icon-link:hover {
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
  height: 56px;
  line-height: 56px;
  width: 56px;
  background-color: #c15827;
}
.icon-link:hover.facebook {
  border: 2px solid #fff;
}
.icon-link:hover.instagram {
  border: 2px solid #fff;
}

.icon-link:hover.linkedin {
  border: 2px solid #fff;
}

.icon-link:hover.envelope {
  border: 2px solid #fff;
}

.icon-link:hover .fa {
  line-height: 56px;
}
.icon-link:hover .fa-facebook {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.icon-link:hover .fa-instagram {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link:hover .fa-linkedin {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link:hover .fa-envelope {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link .fa {
	color: #000;
	font-size: 1.8vh;
    line-height: inherit;
}

.brand-icons {
  background-color: #ddd;
  padding: 10px 0;
}

#footer p {
  font-size: 15;
  color: #fff;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
 .social-links {
  margin: 0 0 40px 0;
}
.social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

.icon-link.fill.facebook {
  background-color: #3b5998;
}
.icon-link.fill.facebook:hover {
  background-color: #fff;
}
.icon-link.fill.facebook:hover .fa-facebook {
  color: #3b5998;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.fill.instagram {
  background-color: #e4405f;
}
.icon-link.fill.instagram:hover {
  background-color: #fff;
}
.icon-link.fill.instagram:hover .fa-instagram {
  color: #e4405f;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.icon-link.fill.linkedin {
  background-color: #007bb6;
}
.icon-link.fill.linkedin:hover {
  background-color: #fff;
}
.icon-link.fill.linkedin:hover .fa-linkedin {
  color: #007bb6;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.icon-link.fill.envelope {
  background-color: #333;
}
.icon-link.fill.envelope:hover {
  background-color: #fff;
}
.icon-link.fill.envelope:hover .fa-envelope {
  color: #333;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link.brand {
  background-color: #fff;
}
.icon-link.brand .fa {
  color: #006FC2;
}
.icon-link.round {
  border-radius: 50%;
}
.icon-link.round-corner {
  border-radius: 5px;
}
.icon-link:hover {
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
  height: 3vh;
  line-height: 3vh;
  width: 3vh;
  background-color: #c15827;
}
.icon-link:hover.facebook {
  border: 2px solid #fff;
}
.icon-link:hover.instagram {
  border: 2px solid #fff;
}

.icon-link:hover.linkedin {
  border: 2px solid #fff;
}

.icon-link:hover.envelope {
  border: 2px solid #fff;
}
.icon-link:hover .fa {
  line-height: 3vh;
}
.icon-link:hover .fa-facebook {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.icon-link:hover .fa-instagram {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
.icon-link:hover .fa-linkedin {
  color: #fff;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.icon-link:hover .fa-envelope {
  color: #fff;
  -webkit-transition: color .6s ease-in-out;
  transition: color .6s ease-in-out;
}
.fa {
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

#footer .copyright {
  margin: 4vh 0 0.5vh 0;
  color: #fff;
  font-size:1.5vh;
  font-weight:100;
  text-align:center;
}
#footer .credits {
  font-size:1.5vh;
  font-weight:100;
  color: #fff;
  text-align:center;
}


@media screen and (max-width: 1199px) and (orientation: landscape) {
#footer .trame-footer1 {
  padding-right:2vw;
}
#footer .trame-footer1 a {
	padding-bottom:2vh
}
#footer .trame-footer2 {
	padding-left: 1vw;
	justify-content: space-around !important;
}

#footer .trame-tricar {
    padding-right: 8vw;
}
#footer .tricar {
    height: 10.5vh;
    margin: 0;
}
#footer .trame-rs {
    padding-left: 8vw;
	flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
#footer .trame-rstop,
#footer .trame-rsbot {
    width: 10vw;
    justify-content: space-around;
    /* align-items: flex-end; */
}
.icon-link {
	width: 4vh !important;
	height: 4vh !important;
	line-height: 4vh;
}
.icon-link .fa {
  line-height: 0vh;
  font-size: 2vh;
  
}
.icon-link:hover {
   width: 4vh;
  height: 4vh;
  line-height: 3.3vw;
}	
.icon-link:hover .fa {
    line-height: 3.3vh;
}	
}


@media screen and (max-width: 1199px) and (orientation: portrait) {
#footer {
	width:auto;
    height: auto;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding:10vh 0 2vh;
}
#footer .trame-logo {
	width: 100vw !important;
	display: flex !important;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}
#footer .trame-tricar {
    width: auto;
    padding-right: 0;
	padding-bottom: 4vh;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}
#footer .trame-footer1,
#footer .trame-footer2 {
	width: 40vw;
    padding-right: 0;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}
#footer .trame-footer2 {
    padding-right: 0;
	padding-left: 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
#footer .trame-footer1 a,
#footer .trame-footer2 a {
	font-size: 3vw;
	height:auto;
	display:flex;
}
#footer .trame-footer2 a {
    display:flex !important;
	text-align:center !important;
}
#footer .trame-footer3 {
	margin-right: auto;
}

#footer .trame-rs {
    padding-left: 0;
	padding-bottom:4vh;
	width:100vw;
    display: flex !important;
   flex-direction: row !important;
    flex-wrap: nowrap !important;
   justify-content: center !important;
}
#footer .trame-rstop,
#footer .trame-rsbot {
    width: 30vw;
	justify-content: space-around;
}
#footer .trame-rstop .sb1,
#footer .trame-rsbot .sb1 {
    width: 7vw !important;
    height: 6vh !important;
}
.icon-link {
	width: 5.5vh !important;
	height: 5.5vh !important;
	line-height: 3.5vh !important; 
}
.icon-link:hover {
   width: 3.5vh;
	height: 3.5vh;
  line-height: 3.5vh;
}
.icon-link:hover .fa {
    line-height: 3.5vh;
}	
.blue, a:link.blue_glow {
    padding-bottom: 4vh;
}
.icon-link .fa {
  font-size: 2.75vh!important;
  line-height: 3.5vh!important;
  
}
#footer .copyright {
    margin: 1vh 0 0.5vh 0;
    font-size: 1.2vh;
	font-weight:100;
    text-align: center;
}
#footer .credits {
	font-size: 1.2vh!important;
	font-weight:100!important;
}
}

/* Lg Screen iPad Pro landscape*/
@media only screen and (min-width: 1366px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
#footer .trame-footer1 {
    justify-content: space-between !important;
}
#footer .trame-footer2 {
	padding: 1vh 0 0 2vw;
    justify-content: space-evenly !important;
}
#footer .trame-logo {
       height: 15vh;
}
#footer .trame-rstop,
#footer .trame-rsbot {
    width: 10vw;
    justify-content: space-around;
    /* align-items: flex-end; */
}

.icon-link .fa {
  line-height: 1.4vw;
  font-size: 1.4vw;
}
.icon-link:hover {
  height: 3vw;
  line-height: 3.5vw;
  width: 3vw;
}
#footer .copyright {
    font-size: 1.2vh;
	font-weight:100;
}
#footer .credits {
    font-size: 1.2vh;
	font-weight:100;
}
}

@media screen and (max-width:950px) and (orientation: landscape) {
#footer {
	padding:18vh 0 2vh;
}
#footer .trame-footer1 {
  padding-right:2vw;
      width: 20vw;
}
#footer .trame-footer2 {
	padding-left: 2vw;
	width: 25vw;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
#footer .trame-footer1 a, #footer .trame-footer2 a {
   font-size: 5vw;
}
#footer .trame-rs {
	
	justify-content: space-around  !important;
}

#footer .trame-footer1, #footer .trame-footer2 {
	width: 75vw;
}
#footer .trame-rstop, #footer .trame-rsbot {
	width: 47vw;

}
#footer .trame-footer3 {
	margin-right: inherit !important;
}
#footer .trame-rstop .sb1, #footer .trame-rsbot .sb1 {
	width: 12vw !important;
	height: 6vh !important;
}
.icon-link .fa {
	font-size: 3vh !important;
}
#footer a {
    font-size: 3.3vw;
}
}


/********************************
# Glow 
********************************/
	
.blue, a:link.blue_glow {
	font-family: 'Sora', sans-serif;
    font-weight:100;
	font-size: 1.3vw;
	color: #ececed; 
	text-decoration: none;
	text-shadow: 1px 1px 1px #000;
	text-align:right;
}
.blue, a:visited.blue_glow {
	color: #ececed; 
	text-decoration: none;
}
.blue, a:hover.blue_glow {
	color: #c15827;
	font-weight:300;
	text-shadow: 0 0 5px #c15827;
	text-decoration: none;
	
}
.blue, a:active.blue_glow {
	color: #c15827;
	text-decoration: none;
}
.blue, a:link.blue_glow_contact {
	font-size: 1.9vw;
	color: #ececed; 
	line-height:100%;
	text-decoration: none;
	text-align: center;
	margin: 0 auto;
}	
.blue, a:visited.blue_glow_contact {
	color: #ececed; 
	text-decoration: none;
}
.blue, a:hover.blue_glow_contact {
	color: #ececed;
	text-shadow: 0 0 10px #ececed;
	text-decoration: none;
}
.blue, a:active.blue_glow_contact {
	color: #ececed; 
	text-decoration: none;	
}

@media screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 2)and (orientation: landscape) {
#footer .tricar {
    height: 13vh;
}

.blue, a:link.blue_glow {
	padding-bottom:3vh !important;
	font-size: 3vh
}
#footer a {
    font-size: 1.7vw;
}
#footer .trame-rs {
	padding-left: 5vw;
	width: 15vw;
}

#footer .trame-rstop .sb1,
#footer .trame-rsbot .sb1 {
    width: 5vw;
}
#footer .trame-rstop, #footer .trame-rsbot {
	width: 15vw;

}
.icon-link {
  width: 9vh !important;
  height: 9vh !important;
  line-height: 9vh !important;
}
.icon-link .fa {
  line-height: 10vh;
  font-size: 5.5vh;
}
.icon-link:hover {
  height: 9vh;
  width: 9vh;
  line-height: 9vh;
}
.icon-link:hover .fa {
    line-height: 10vh;
}
#footer .copyright {
    margin: 4vh 0 1vh 0;
    font-size: 2.5vh;
}
#footer .credits {
    font-size: 2.5vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
.icon-link {
  width: 10vw;
  height: 10vw;
  line-height: 10vw;
}
.icon-link .fa {
  font-size: 6vw;
  line-height: 10vw;
  
}
.icon-link:hover {
  height: 10vw;
  width: 10vw;
  line-height:10vw;
}
.icon-link:hover .fa {
    line-height: 10vw;
}			
}

@media screen and (min-width: 551px)and (max-width: 767px) and (orientation: portrait) {
.icon-link {
  width: 8vw;
  height: 8vw;
  line-height: 8vw;
  margin-right:5vw;
}
.icon-link .fa {
  font-size: 4vw;
  line-height: 8vw;
  
}
.icon-link:hover {
  height: 8vw;
  width: 8vw;
  line-height:8vw;
}
.icon-link:hover .fa {
    line-height: 8vw;
}			
}

@media screen and (max-width: 767px) and (orientation: landscape) {
.icon-link {
  width: 30px;
  height: 30px;
  line-height: 20px;
  margin: 0vh 1vw;
}
.icon-link .fa {
  line-height: 30px;
  font-size: 15px;
}
.icon-link:hover .fa {
  line-height: 30px;
}
.icon-link:hover {
  height: 30px;
  line-height: 30px;
  width: 30px;
}	
}

/*--------------------------------------------------------------
# Titres
--------------------------------------------------------------*/

.trame {
	background: linear-gradient(to right, rgba(193,88,39,1), rgba(193,88,39,0)); 
	height:16vh;
	max-width: fit-content;	
	margin-top:80vh;
}

.trametitre {
	max-width: fit-content;	
	padding:10vh 0 15vh;
}

.titrebig {
	display: table-cell;
    vertical-align: middle;
    position: relative;
	font-family:'Sora', sans-serif; 
	font-size: 6vw;
	line-height: 16vh;
	font-weight: 400; 
	color:#fff;
	max-width: fit-content; 
	text-align:left;
	padding:0 10vw 0 5vw;
	white-space: nowrap;
}

.titrebig small {
    font-family: 'Sora', sans-serif;
    font-size: 5.5vh;
    font-weight: 400;
    color: #fff;
    max-width: fit-content;
    text-align: left;
    padding: 1vh 0 1vh 0;
    white-space: nowrap;
}

.titre {
	display:table-cell;
	vertical-align:middle;
	background: linear-gradient(to right, rgba(193,88,39,1), rgba(193,88,39,0)); 
	font-family:'Sora', sans-serif;
	font-size: 4vw;
    line-height: 11vh;
	font-weight: 200;
	color:#fff; 	
	max-width: fit-content;
	padding: 0 10vw 0 5vw;
	text-align:left;
}

@media (max-width: 1199px) and (orientation: landscape) {

.trametitre {
    padding: 10vh 0 10vh;
}

}

@media (max-width: 1199px) and (orientation: portrait) {
	
.trame {
	height:10vh;
	max-width: fit-content;	
	margin-top:85vh;
}

.titrebig {
	font-size: 8vw;
	line-height: 10vh;
	font-weight: 400; 
	color:#fff;
	max-width: fit-content; 
	text-align:left;
	white-space: nowrap;
}
.trametitre {
    padding: 10vh 0 10vh;
}
.titre {
    line-height: 7vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
.trame {
	height: 8vh;
	margin-top: 90vh;
}
.trametitre {
    padding-bottom: 5vh;
	padding: 5vh 0 10vh;
}
.titrebig {
	font-size:9vw;
    padding: 0 10vw 0 4vw;
	line-height: 8vh;
}
.titrebig small {
    font-size: 7vw;
    padding: 1vh 0 1vh 0;
    white-space: nowrap;
}
.titre {
    font-size: 6vw;
    line-height: 5vh;
    padding: 0 10vw 0 8vw;
}
}

/*--------------------------------------------------------------
# page Loutant 1888
--------------------------------------------------------------*/

.text1888 {
	height:50vh;
	width:80vw;
	background: linear-gradient(to right, rgba(193,88,39,0.6), rgba(193,88,39,0)); 
	font-family:'Encode Sans Semi Condensed', sans-serif  !important; 
	font-weight: 100  !important;
	font-size:2.616058394160584vh;
	line-height: 3.5vh  !important;
	color:#fff;
	text-align:justify;
	margin: 25vh 10vw 20vh;
	padding:0 5vw 0 10vw;
	border-radius:50vw;
	display: flex;
	justify-content: space-between;
    vertical-align: middle;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.text1888 p {

	margin:0 5vw 0 0;
}

.imageintro1888{
	width:25vw;
	height: 43vh;
	border-radius:25vw;
}

.wa_inner_col {
	margin-bottom: 0rem;
	margin-left: 0 !important;
	margin-right: 0.5vw !important;
	margin-top: 0rem;
}

.wa-image-second-inner {
    padding: 1vh 1vw;
}

.wa-image-wrap .wa-img-overlay {
    font-size: 1.5vw !important;
}
.wa-image-wrap .wa-img-overlay p {
    font-size: 0.9vw !important;
	font-weight:200 !important;
}

/* ATELIERS */

#trame-ateliers {
	margin:0 3vw 0 5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

#trame-ateliers .ih-item {
  position: relative;
  min-width: 11.979166666666666vw;
  max-width: 75vw;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
#trame-ateliers .ih-item,
.ih-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#trame-ateliers .ih-item a {
  color: #333333;
}
#trame-ateliers .ih-item a:hover {
  text-decoration: none;
}
#trame-ateliers .ih-item img {
  width: 100%;
  height: auto;
  border-radius: 2vh;
  cursor: default !important;
}
#trame-ateliers .ih-item.square {
  position: relative;
  width: 97%;
  margin-right:2vw;
  height: auto;
  border: 0vw solid #ffffff;
  box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.3);
}
#trame-ateliers .ih-item.square .info {
  position: absolute;
  top: 1vh;
  bottom: 1vh;
  left: 0.7vw;
  right: 0.7vw;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: default !important;
}

/*-- Effet Les Ateliers --*/

.ih-item.square.effect8 {
  overflow: hidden;
}
.ih-item.square.effect8.colored .info {
  background: rgba(193, 88, 39, 0.9);
  border-radius: 2vh;
}
.ih-item.square.effect8.colored .info h3 {
  background: rgba(138, 137, 138, 0);
}
.ih-item.square.effect8 .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect8 .info {
  background: #333333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect8 .info h3 {
  color: #ececed;
  font-family:'Sora', sans-serif;
  font-weight: 400;
  letter-spacing: 0.10416666666666667vw;
  font-size: 1.5625vw;
  padding: 0.5208333333333334vw;
  background: #111111;
  margin: 3.0706243602865917vh 0 0 0;
}
.ih-item.square.effect8 .info p {
  color: #ececed;
  font-size: 1.3020833333333333vw;
  font-weight: 300;
  font-family:'Encode Sans Semi Condensed', sans-serif;
  position: relative;
  padding: 1vh 2vw 0 2vw;
  text-align: justify center;
}
.ih-item.square.effect8 a:hover .info {
  visibility: visible;
  opacity: 1;
}
.ih-item.square.effect8.left_to_right .img {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ih-item.square.effect8.left_to_right .info {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.ih-item.square.effect8.left_to_right a:hover .img {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.ih-item.square.effect8.left_to_right a:hover .info {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ih-item.square.effect8.right_to_left .img {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ih-item.square.effect8.right_to_left .info {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.ih-item.square.effect8.right_to_left a:hover .img {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.ih-item.square.effect8.right_to_left a:hover .info {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ih-item.square.effect8.top_to_bottom .img {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ih-item.square.effect8.top_to_bottom .info {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.square.effect8.top_to_bottom a:hover .img {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect8.top_to_bottom a:hover .info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ih-item.square.effect8.bottom_to_top .img {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ih-item.square.effect8.bottom_to_top .info {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect8.bottom_to_top a:hover .img {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.ih-item.square.effect8.bottom_to_top a:hover .info {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* HISTORIQUE */

.timeLine {
    position: relative;
    padding: 1vh 2vw 5vh;
    text-align: center;
    width: 100%;
    overflow: hidden;
}
.timeLine .row .lineHeader:before {
    position: absolute;
    top: 0;
    margin: auto;
    content: "\f102";
    font-family: FontAwesome;
    color: #ddd;
    font-size: 36px;
    margin-left: -10px;
}
.timeLine .row .lineHeader:after {
    content: "";
    width: 3px;
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 50%;
    border-radius: 50px;
    background-color: #ddd;
}
.timeLine .row .lineFooter:before {
    position: absolute;
    bottom: 0;
    margin: auto;
    content: "\f103";
    font-family: FontAwesome;
    color: #ddd;
    font-size: 36px;
    margin-left: -10px;
}
.timeLine .row .item {
    float: left;
    margin-bottom: 2%;
    padding: 0px;
    clear: left;
}
.timeLine .row .item:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid #c15827;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    right: -9px;
    top: 10px;
}
.timeLine .row .item:after {
    content: "";
    height: 1px;
    width: 5%;
    position: absolute;
    background-color: #ddd;
    top: 16px;
    right: 8px;
}
.timeLine .row .item .caption {
    margin: auto;
    width: 90%;
    background: #f0f0f0;
    min-height: auto;
    position: relative;
	border-radius: 2vh;
    color: #333;
    border: 0px solid #58585a;
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.5);
	z-index: 2;
}
.timeLine .row .item .caption .star {
    width: 6.5vw;
    position: absolute;
    z-index: 2;
    top: -2.2vh;
    left: -1.5vw;
	border-radius: 3vh;
    color: white;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.timeLine .row .item .caption .star h4 {
    font-family: "Sora", sans-serif;
    font-size: 1.6vw;
    font-weight: 400;
    line-height: 1 !important;
    color: white;
    padding-top: 0.5vh;
    margin-top: 1vh;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.timeLine .row .item .caption .star:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -10px;
    z-index: 1;
    border-right: 0px solid #5e0808;
    border-bottom: 0px solid transparent;
    border-top: 0px solid transparent;
}
.timeLine .row .item .caption .image {
    position: relative;
}
.timeLine .row .item .caption .image img {
    width: 100%;
    min-height: 50%;
    max-height: 100%;
	border-radius: 2vh;
}
.timeLine .row .item .caption .image video {
    width: 100%;
    height: 100%;
    position: relative;
}
.timeLine .row .item .caption .image .controll {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.timeLine .row .item .caption .image .title {
    width: 11vw;
    background-color: #c15827 !important;
    position: absolute;
    z-index: 1;
    left: 1.5vw;
    bottom: 0.8vh !important;
    opacity: 1 !important;
    color: white;
    cursor: pointer !important;
    border-radius: 2vw;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.timeLine .row .item .caption .image .title h3 {
       font-family: "Encode Sans Semi Condensed", sans-serif;
    font-weight: 300;
    font-size: 1.2vw !important;
    line-height: 1 !important;
    color: white;
	margin-top: 1vh;
    margin-bottom: 1vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.timeLine .row .item .caption .image .title .fa {
	padding-left:0.5vw;
	display:flex !important;
	flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.timeLine .row .item .caption .image .title:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    z-index: 2;
    border-left: 0px solid transparent;
    border-bottom: 0px solid transparent;
    border-top: 0px solid #5e0000;
}
.timeLine .row .item .textContent {
    padding: 15px 10px;
}
.timeLine .row .item .textContent p {
    font-family: "Encode Sans Semi Condensed", sans-serif;
    font-weight: 300;
    text-justify: justify;
    font-size: 1.2vw;
    text-align: left;
    padding: 0px 10px;
    border-left: 5px solid #5e0808;
    border-radius: 3px;
}
.timeLine .row .pull-right {
    float: right;
    margin-bottom: 0%;
    margin-top: 3%;
    clear: right;
}
.timeLine .row .pull-right:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid #c15827;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: -6px;
    top: 14px;
}
.timeLine .row .pull-right:after {
    content: "";
    height: 1px;
    width: 5%;
    position: absolute;
    background-color: #ddd;
    top: 21px;
    left: 12px;
}

/* LOUTAN 1888 @media */

@media only screen and (min-width: 1366px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
.text1888 {
    height: 40vh;
    width: 80vw;
    font-size: 2.1vh;
    margin: 18vh 10vw;
    padding: 0 5vw 0 10vw;
}
.imageintro1888{
	height: 33vh;
}

}

@media (max-width: 1199px) and (orientation: landscape) {
.text1888 {
	height: 60vh;
	font-size:1.6vw;
}
.text1888 p {
    margin: 3vh 3vw 3vh 3vw;
}
.imageintro1888{
	width:32vw;
}
}

@media (max-width: 1199px) and (orientation: portrait) {
.text1888 {
	height:125vh;
	width:80vw;
	background: linear-gradient(to bottom, rgba(193,88,39,0.6), rgba(193,88,39,0)); 
	margin:15vh 10vw 10vh;
	padding:0 10vw 0 10vw;
	border-radius:50vw;
	justify-content:center ;
    vertical-align: middle;
    flex-direction: column;
}
.text1888 p {

	margin:0 0 5vh 0;
}
.imageintro1888{
	width: 58vw;
    height: 43vh;
    border-radius: 30vw;
}
.wa-image-wrap .wa-img-overlay p {
    font-size: 2.5vw !important;
} 
#trame-ateliers .ih-item.square {
    margin-top: 0;
}
.ih-item.square.effect8 .info h3 {
   
    margin: 1.070624vh 0 0 0;
}
.timeLine .row .pull-right {
    margin-bottom: 3%;
}
.timeLine .row .item .caption .star h4 {
    padding-top: 0.5vh;
    margin-top: 0.3vh;
    margin-bottom: 0.7vh;
}
}

@media screen and (max-width:950px) and (orientation: landscape) {
.text1888 {
	height: 60vh;
	font-size: 1.6vw;
	line-height: 4.5vh !important;
}
.imageintro1888 {
    width: 26vw;
    height: 55vh;
}
.wa-image-wrap .wa-img-overlay {
    font-size: 3vw !important;
}
.wa-image-wrap .wa-img-overlay p {
    font-size: 2vw !important;
}
.timeLine {
	padding: 2vh 8vw 0vh;
}
.timeLine .row .item .caption {
    width: 85%;
}
.timeLine .row .item:before {
   display:none;
}
.timeLine .row .item:after {
     display:none;
}
.timeLine .row .pull-right {
    margin-bottom: 2%;
    margin-top: 3%;
}
.timeLine .row .item {
    margin-top: 3%;
    margin-bottom: 2%;
}
.timeLine .row .item .caption .star {
    width: 9.5vw;
    top: -2.2vh;
    left: -1.5vw;
    border-radius: 5vh;
}
.timeLine .row .item .caption .star h4 {
    font-size: 3vw;
    line-height: 1 !important;
    padding-top: 0.5vh;
    margin-top: 1vh;
    margin-bottom: 1vh;
}
.timeLine .row .item .caption .image .title {
    width: 18vw;
    left: 1.5vw;
    bottom: 0.8vh !important;
    border-radius: 2vw;
}
.timeLine .row .item .caption .image .title h3 {
    font-size: 2.2vw !important;
    line-height: 1 !important;
    margin-top: 1vh;
    margin-bottom: 1vh;
}
.timeLine .row .item .textContent p {
    font-size: 2.2vw;
    padding: 0px 10px;
    border-left: 5px solid #5e0808;
    border-radius: 3px;
}
}

@media (max-width: 991px) and (orientation: portrait) {

.wa-image-wrap .wa-img-overlay {
    font-size: 3vw !important;
}
.timeLine {
    padding: 0vh 8vw 0vh;
}
.timeLine .row .item:before {
   display:none;
}
.timeLine .row .item:after {
     display:none;
}
.timeLine .row .item {
    float: none !important;
    margin-bottom: 5vh;
    padding: 0px;
    clear: none;
}
.timeLine .row .pull-right {
    float: none;
    margin-bottom: 5vh;
    margin-top: 0;
    clear: none;
}
.timeLine .row .item .caption .star {
    width: 10.5vw;
}
.timeLine .row .item .caption .star h4 {
    font-size: 2.6vw;
}
.timeLine .row .item .caption .image .title {
    width: 20vw;
}
.timeLine .row .item .caption .image .title h3 {
    font-size: 2.2vw !important;
}
.timeLine .row .item .textContent p {
    font-size: 2.5vw;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
.text1888 {
	height: 110vh;
	width: 80vw;
	font-size: 4vw;
	margin: 10vh 10vw 0;
	padding: 0 10vw 0 10vw;
}
.imageintro1888 {
	width: 70vw !important;
	height: 32vh !important;
	border-radius: 50vw !important;
}
.wa-image-wrap .wa-img-overlay {
    font-size: 6vw !important;
}
.wa-image-wrap .wa-img-overlay p {
    font-size: 4vw !important;
}
#trame-ateliers {
    margin: 0 3vw 0 5vw;
	padding:0 !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;

}
#trame-ateliers .ih-item.square {
    margin-right: 0;
    margin-bottom: 5vh;
}
.ih-item.square.effect8 .info h3 {
    font-size: 4vw;
    padding: 0.5208333333333334vw;
    margin: 1vh 0 0 0;
}
.ih-item.square.effect8 .info p {
    font-size: 4vw;
    padding: 1vh 2vw 0 2vw;
}
.timeLine {
        padding: 2vh 8vw 0vh;
}
.timeLine .row .item .caption {
    width: 85%;
}
.timeLine .row .item .caption .star {
    width: 18.5vw;
      top: -1.8vh;
        left: -2.5vw;
}
.timeLine .row .item .caption .star h4 {
	font-size: 5.5vw;
	line-height: 2vh !important;
	padding-top: 0.3vh;
	margin-top: 1vh;
	margin-bottom: 1vh
}
.timeLine .row .item .caption .image .title {
    width: 25vw;
	left: -2.5vw;
	bottom: -1.2vh !important;
}
.timeLine .row .item .caption .image .title h3 {
    font-size: 3.2vw !important;
}
.timeLine .row .item .textContent p {
    font-size: 3.5vw;
	margin-bottom: 0;
	padding: 1vh 1vw;
}
.timeLine .row .item .caption .image .title .fa {
    padding-left: 1vw;
	    line-height: 0.5vh;
}
}

/*--------------------------------------------------------------
# page contact
--------------------------------------------------------------*/

/* INTRO */

#trame-contact {
	height:50vh;
	width:80vw;
	background: linear-gradient(to right, rgba(193,88,39,0.6), rgba(193,88,39,0)); 
	font-weight: 100  !important;
	font-size:1.8vw;
	line-height: 5.5vh  !important;
	color:#fff;
	border-radius:50vw;
	margin: 25vh 0 10vh 10vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

#trame-contact a {
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	font-weight: 100 !important;
    font-size: 1.8vw;
    line-height: 6vh !important;

}

#trame-contact p{
	font-family: 'Encode Sans Semi Condensed', sans-serif;
	margin-bottom: 0;
}

#trame-contact .textcontact{
	text-align:justify;
	width:80vw;
	padding:0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}

#trame-contact .soustrametext{
	height:25vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
}

#trame-contact .trame-rscontact{
	width: 15vw;
	margin: 0;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#trame-contact .trame-rscontact .icon-link{
	width: 6vh !important;
    height: 6vh !important;
    background-color: #fff;
    line-height: 5.5vh;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    outline: none;
    margin: 0 0 0 0;
    border-radius: 50vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#trame-contact .trame-rscontact .sb2 {
	width: 6.2vh !important;
	height: 6.2vh !important;
	display:flex;
}

#trame-contact .trame-rscontact .icon-link .fa{
	color: #000;
    font-size: 3vh;
    line-height: 6vh;
}

#trame-contact .trame-rscontact .icon-link:hover {
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
  height: 5.8vh !important;
  line-height: 5.9vh !important;
  width: 5.8vh !important;
  background-color: #c15827;
}

/* popup envoyé avec succès */

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 25vw;
    --bs-modal-padding: 2rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

@media (min-width: 576px) {
.modal-dialog {
	max-width: var(--bs-modal-width);
	margin-right: auto;
	margin-left: auto;
}
}

.modal-content {
	font-size: 1vw;
    position: relative;
    display: flex;
    flex-direction: column;
	flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)1rem) auto;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1vw;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #c15827;
    --bs-btn-border-color: #6c757d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #c15827;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-close {
    display: none;
}



/* MAP */
.tramemap {
	height:auto;
	width:100vw;
	display: flex;
	justify-content: center;
	vertical-align: middle;
	align-items: center;
}	
.contactmap {
	height:45vh;
	width:75vw;
	border-radius:1vh 25vw 25vw;
	border:0;
}	

/* contact @media */

@media only screen and (min-width: 1366px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

#trame-contact {
    height: 40vh;
}
#trame-contact .textcontact{
	padding:0 5vw 0 5vw !important;
}

#trame-contact p {
    padding: 0 2vw 0 0;
	margin-bottom: 3vh;
}
#trame-contact .trame-rscontact .icon-link {
    width: 5vh !important;
    height: 5vh !important;
    line-height: 5vh !important;
    margin: 0 0 0 0;
}
#trame-contact .trame-rscontact .icon-link .fa {
    font-size: 2.5vh;
	line-height: 5vh;
}
#trame-contact .trame-rscontact .icon-link:hover {
  height: 4.9vh !important;
  line-height: 4.9vh !important;
  width:  4.9vh !important;
}
#trame-contact img {
    margin: 0 -4vw 0 4vw;
}
.modal {
    --bs-modal-width: 40vw;
}
.modal-content {
    font-size: 2vw;
}
.btn {
    --bs-btn-font-size: 2vw;
}
}

@media (max-width: 1199px) and (orientation: portrait) {

#trame-contact {
	font-size: 3vw;
    height: auto;
    width: 70%;
	background: linear-gradient(to bottom, rgba(193,88,39,0.6), rgba(193,88,39,0)); 
    margin: 15vh 15vw 0vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#trame-contact .textcontact {
    padding: 10vh 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
#trame-contact .soustrametext {
    padding: 0;
	align-items: center;
}
#trame-contact .soustrametext a {
    font-size: 2.8vw;
    margin-bottom: 3vh;
}
#trame-contact p {
    padding: 0 0 0 0;
	margin-bottom: 5vh;
}
#trame-contact .trame-rscontact {
	width: 60vw;
    margin: 0 0 0 0;
    justify-content: space-evenly;
}
#trame-contact .trame-rscontact .icon-link {
    width: 6vh !important;
    height: 6vh !important;
    line-height: 6.5vh !important;
    margin: 0 1vw 0 0;
}
#trame-contact .trame-rscontact .icon-link .fa {
    font-size: 3vh !important;
}
#trame-contact img {
    margin:6vh 0vw -5vh 0vw;;
}
.modal {
    --bs-modal-width: 75vw;
}
}

@media (max-width: 1199px) and (orientation: landscape) {

#trame-contact .textcontact{
	padding:0 0vw 0 5vw !important;
}
#trame-contact .soustrametext {
    padding: 0 0 0 0;
}
#trame-contact .soustrametext a {
    margin-bottom: 0vh;
}
#trame-contact p {
    padding: 0 2vw 4vh 0;
	margin-bottom: 0;
}

#trame-contact .trame-rscontact .icon-link:hover {
    height: 6vh;
    line-height: 6.5vh;
    width: 6vh;
}
#trame-contact .imageintro1888 {
     width: 30vw;
	 height: 40vh;
}

#trame-contact .blue, a:link.blue_glow {
    padding-bottom: 5vh !important;
}
.modal {
    --bs-modal-width: 55vw;
}
.modal-content {
    font-size: 2.5vw;
}
.btn {
    --bs-btn-font-size: 2.5vw;
}
}


@media screen and (max-width:950px) and (orientation: landscape) {
.text1888 {
	height: 60vh;
	font-size: 1.6vw;
	line-height: 4.5vh !important;
}

#trame-contact p {
	padding: 0 2vw 6vh 0;
}
#trame-contact .blue, a:link.blue_glow {
	padding-bottom: 7vh !important;
}
#trame-contact .trame-rscontact {
    margin: 0 -1vw 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#trame-contact .trame-rscontact .icon-link {
	width: 8vh;
	height: 8vh;
	line-height: 7.5vh;
	margin: 0 0 0 0;
}
#trame-contact .trame-rscontact .icon-link .fa {
    font-size: 4vh;
}
#trame-contact .imageintro1888 {
     width: 23vw;
	 height: 45vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {

#trame-contact {
    font-size: 5vw;
    line-height: 3.5vh !important;
    margin: 15vh 10vw 5vh;
}
#trame-contact .soustrametext {
	padding: 0 0 2vh 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
#trame-contact p {
    padding: 0 0 0 0;
	margin-bottom: 1vh;
}
#trame-contact .soustrametext a {
    font-size: 5vw;
}

#trame-contact img {
    width: 55vw;
    height: 25vh;
	margin: 5vh 0vw -5vh 0vw;
}
.modal-content {
	font-size: 4vw;
}
.btn {
    --bs-btn-font-size: 4vw;
}
}


/*--------------------------------------------------------------
# page contact
--------------------------------------------------------------*/


#trame-mentions {
	height:auto;
	width:100vw;
}

#trame-mentions p{
	font-size:1.4vw;
	font-weight:100;
	text-align: justify;
	color: #fff;
	padding:0 12vw 0 12vw;
	margin-bottom: 7vh;
}

@media (max-width: 1199px) and (orientation: portrait) {
#trame-mentions p{
	font-size:2.5vw;
	margin-bottom: 1vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
#trame-mentions p {
     font-size: 4vw;
}
}

/*--------------------------------------------------------------
# car prestige
--------------------------------------------------------------*/

#trame-bodyfencetop {
	height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
}

#trame-bodyfencetop .trame-logosbf {
	margin:-10vh 0.5vw 0 0;
    display:flex;
	flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}
#trame-bodyfencetop .trame-logosbf2 {
	margin-right: 0.5vw;
	margin-top:0;
    display:flex;
	flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

#trame-bodyfencetop .logoloutantcov {
	width: 7vw;
	padding: 0 0 2vh 0;
    display:flex;
}

#trame-bodyfencetop .logohexis {
	width: 7vw;
	padding: 0 0 2vh 0;
    display:flex;
}

#trame-bodyfencetop .logobodyfence {
	width: 7vw;
	padding: 0 0 2vh 0;
    display:flex;
}

#trame-bodyfencetop .trame-titrebodyfence {
	margin: 0 0 -15vh 0;
    background: linear-gradient(to right, rgba(193, 88, 39, 1), rgba(193, 88, 39, 0));
    height: 16vh;
    max-width: fit-content;
    padding:0 ;
}

#trame-bodyfencetop .trame-titrecovering {
	margin: 0 0 -9vh 0;
    background: linear-gradient(to right, rgba(193, 88, 39, 1), rgba(193, 88, 39, 0));
    height: 16vh;
    max-width: fit-content;
    padding:0 ;
}

#trame-coveringboattop {
	height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#trame-coveringboattop .trame-logosbf2 {
	margin-right: 0.5vw;
	margin-top:12vh;
    display:flex;
	flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
}

#trame-coveringboattop .logoloutantcov {
	width: 8vw;
	padding: 0 0 2vh 0;
    display:flex;
}
#trame-coveringboattop .logohexis {
	width: 8vw;
	padding: 0 0 2vh 0;
    display:flex;
}


#trame-coveringboattop .trame-titrecoveringboat {
	margin: 0 0 3vh 0;
    background: linear-gradient(to right, rgba(193, 88, 39, 1), rgba(193, 88, 39, 0));
    height: 16vh;
    max-width: fit-content;
    padding:0 ;
}

.wa-image-wrap {
	border-radius: 2vh !important;
}
	
.wa-image-second-inner div {
	border-radius:2vh !important;
}

@media only screen and (min-width: 1366px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
#trame-bodyfencetop {
	padding: 5vh 0;
}
#trame-bodyfencetop .logoloutantcov {
    width: 10vw;
}
#trame-bodyfencetop .logohexis {
	width: 10vw;
}

#trame-bodyfencetop .logobodyfence {
	width: 10vw;
}
#trame-bodyfencetop .trame-logosbf2 {
    margin-right: 1vw;
    margin-top: -5vh;
}
#trame-bodyfencetop .trame-titrecovering {
    margin: 0 0 -15vh 0;
    height: 16vh;
}
#trame-bodyfencetop .trame-titrecoveringboat {
	margin: 0 0 -3vh 0;
}
#trame-coveringboattop .logoloutantcov {
	width: 10vw;
}
#trame-coveringboattop .logohexis {
	width: 10vw;
}
}

@media (max-width: 1199px) and (orientation: landscape) {
	
#trame-bodyfencetop .trame-titrecovering {
    margin: 0vh 0 10vh 0;
}
#trame-bodyfencetop .trame-logosbf {
    margin-right: 1vw;
    margin-top: -5vh;
}
#trame-bodyfencetop .trame-logosbf2 {
    margin-right: 1vw;
    margin-top: 0vh;
}
#trame-bodyfencetop .logoloutantcov {
	width: 10vw;
}
#trame-bodyfencetop .logohexis {
	width: 10vw;
}
#trame-coveringboattop .logoloutantcov {
	width: 10vw;
}
#trame-coveringboattop .logohexis {
	width: 10vw;
}
}

@media screen and (max-width:950px) and (orientation: landscape) {
#trame-bodyfencetop {
    justify-content: space-evenly;
}
#trame-bodyfencetop .trame-logosbf {
    margin-right: 1vw;
    margin-top: 0;
}
#trame-bodyfencetop .trame-logosbf2 {
	margin-right: 1.5vw;
	margin-top:15vh;
}
#trame-coveringboattop .trame-logosbf2 {
    margin-right: 1.5vw;
    margin-top: 20vh;
}
    #trame-bodyfencetop .trame-titrecovering {
        margin: 0vh 0 2vh 0;
    }
#trame-bodyfencetop .trame-titrecovering {
	margin: 0vh 0 0 0;
}
}

@media (max-width: 1199px) and (orientation: portrait) {
#trame-bodyfencetop {
	padding: 5vh 0;
	justify-content: space-between;
}
#trame-bodyfencetop .logoloutantcov {
    width: 12vw;
}
#trame-bodyfencetop .logohexis {
	width: 12vw;
}

#trame-bodyfencetop .logobodyfence {
	width: 12vw;
}
#trame-bodyfencetop .trame-titrebodyfence {
	margin: 0 0 -3vh 0;
	height: 10vh;
}
#trame-bodyfencetop .trame-titrecoveringboat {
	margin: 0 0 -3vh 0;
    height: 10vh;
}
#trame-bodyfencetop .trame-logosbf {
    margin-right: 1.5vw;
    margin-top: 4vh;
}
#trame-bodyfencetop .trame-logosbf2 {
    margin-right: 1.5vw;
    margin-top: 4vh;
}
#trame-bodyfencetop .trame-titrecovering {
   margin: 0 0 -3vh 0;
    height: 10vh;
}
#trame-coveringboattop {
	height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#trame-coveringboattop .trame-logosbf2 {
	margin-right: 1.5vw;
	margin-top:9vh;
}

#trame-coveringboattop .logoloutantcov {
	width: 15vw;
	padding: 0 0 2vh 0;
}
#trame-coveringboattop .logohexis {
	width: 15vw;
	padding: 0 0 2vh 0;
}
#trame-coveringboattop .trame-titrecoveringboat {
	margin: 0 0 3vh 0;
    height: 10vh;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
#trame-bodyfencetop {
	padding: 8vh 0;
}
#trame-bodyfencetop .trame-logosbf {
    margin-left: 8vw;
}
#trame-bodyfencetop .logoloutantcov {
	width: 25vw;
}
#trame-bodyfencetop .logohexis {
	width: 25vw;
}

#trame-bodyfencetop .logobodyfence {
	width: 25vw;
}
#trame-coveringboattop .trame-logosbf2 {
        margin-right: 2vw;
        margin-top: 8vh;
    }
#trame-bodyfencetop .trame-titrecovering {
   margin: 0 0 -5vh 0;
    height: 8vh;
}
#trame-bodyfencetop .trame-titrebodyfence {
	margin: 0 0 -5vh 0;
    height: 8vh;
}
#trame-coveringboattop .trame-titrecoveringboat {
	margin: 0 0 3vh 0;
    height: 8vh;
}
#trame-coveringboattop .logoloutantcov {
	width: 25vw;
}
#trame-coveringboattop .logohexis {
	width: 25vw;
}
}

/*--------------------------------------------------------------
# page trapèze
--------------------------------------------------------------*/

#trame-trapeze {
    width: 100vw;
    height: auto;
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:space-between;
	padding-left:0;
}

#trame-trapeze .text1888 {
    height: 50vh;
    width: 80vw;
    background: linear-gradient(to right, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0));
    font-family: 'Encode Sans Semi Condensed', sans-serif !important;
    font-weight: 100 !important;
    font-size: 2.616058394160584vh;
    line-height: 3.5vh !important;
    color: #fff;
    text-align: justify;
    margin: 25vh 10vw 20vh;
    padding: 0 5vw 0 10vw;
    border-radius: 50vw;
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

#trame-trapeze .text18882 {
    height: 50vh;
    width: 80vw;
    background: linear-gradient(to right, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0));
    font-family: 'Encode Sans Semi Condensed', sans-serif !important;
    font-weight: 100 !important;
    font-size: 2.616058394160584vh;
    line-height: 3.5vh !important;
    color: #fff;
    text-align: justify;
    margin: 0vh 10vw 20vh;
    padding: 0 5vw 0 10vw;
    border-radius: 50vw;
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

#trame-trapeze .text18883 {
    height: 50vh;
    width: 80vw;
    background: linear-gradient(to right, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0));
    font-family: 'Encode Sans Semi Condensed', sans-serif !important;
    font-weight: 100 !important;
    font-size: 2.616058394160584vh;
    line-height: 3.5vh !important;
    color: #fff;
    text-align: justify;
    margin: 0vh 10vw 20vh;
    padding: 0 5vw 0 10vw;
    border-radius: 50vw;
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
#trame-trapeze .titreaccueil {
font-family: "Sora", sans-serif;
font-weight: 300;
font-size: 4vh;
color: #fff;
padding-bottom:1vh;
}

#trame-trapeze .text1888 p {
    margin: 0 5vw 0 0;
}

#trame-trapeze .text18882 p {
    margin: 0 5vw 0 0;
}

#trame-trapeze .text18883 p {
    margin: 0 5vw 0 0;
}

@media (max-width: 1199px) and (orientation: portrait) {
#trame-trapeze .text1888 {
   height: 125vh;
   background: linear-gradient(to bottom, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0));
	margin: 15vh 10vw 10vh;
	padding: 0 10vw 0 10vw;
	justify-content: center;
	vertical-align: middle;
	flex-direction: column;
}
.imageintro1888 {
        width: 70vw;
        height: 43vh;
        border-radius: 30vw;
    }
	    .text1888 p {
        margin: 0 0 5vh 0 !important;
    }
.text18882 {
   height: 125vh !important;
	background: linear-gradient(to bottom, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0))!important;
	margin: 15vh 10vw 10vh !important;
	padding: 0 10vw 0 10vw !important;
	justify-content: center !important;
	vertical-align: middle !important;
	flex-direction: column !important;
}
.imageintro18882 {
        width: 58vw !important;
        height: 43vh !important;
        border-radius: 30vw !important;
    }
.text18882 p {
        margin: 0 0 5vh 0 !important;
    }
.text18883 {
   height: 125vh !important;
	background: linear-gradient(to bottom, rgba(193, 88, 39, 0.6), rgba(193, 88, 39, 0))!important;
	margin: 15vh 10vw 10vh !important;
	padding: 0 10vw 0 10vw !important;
	justify-content: center !important;
	vertical-align: middle !important;
	flex-direction: column !important;
}
.imageintro18883 {
        width: 58vw !important;
        height: 43vh !important;
        border-radius: 30vw !important;
    }
.text18883 p {
        margin: 0 0 5vh 0 !important;
    }
}

@media (max-width: 1199px) and (orientation: landscape) {
#trame-trapeze .text1888 {
    width: 90vw;
    margin: 25vh 5vw 20vh;
}
#trame-trapeze .text18882 {
    width: 90vw;
    margin: 0 5vw 20vh;
}
#trame-trapeze .text18883 {
    width: 90vw;
    margin: 0 5vw 20vh;
}
}

@media screen and (max-width:950px) and (orientation: landscape) {
#trame-trapeze .titreaccueil {
    font-size: 6vh;
    padding-bottom: 1vh;
}
#trame-trapeze .text1888 {
    font-size: 3.5vh;
    line-height: 3.5vh !important;
}
#trame-trapeze .text18882 {
    font-size: 3.5vh;
    line-height: 3.5vh !important;
}
#trame-trapeze .text18883 {
    font-size: 3.5vh;
    line-height: 3.5vh !important;
}
}

@media screen and (max-width: 575px) and (orientation: portrait) {
#trame-trapeze .text1888 {
    text-align: left;
}
#trame-trapeze .text18882 {
    text-align: left;
}
#trame-trapeze .text18883 {
    text-align: left;
}

}