:root{
  --bleu: #6F9ABB;
  --beige: #F6F0DD;
  --gutter: 20px;
  --margin: 50px;
  --padding: 30px;
  --space-elements: 30px;
  --or: #D0BD8B;
  --or-pale: #FBF9F4;
  --megaspace: calc(var(--margin)*1.5);
  --middlespace: calc(var(--margin)*1.2);
}

body{
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}

/* ****************************************************************************************** */
/*  CONTAINER
/* ****************************************************************************************** */
.container{
  max-width: 1840px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.min{
  max-width: 1500px;
}

.container.nano{
  max-width: 1100px;
}

@media only screen and (min-width: 1000px) {
  .container.mid{
    padding-left: calc(var(--gutter)*1.5);
    padding-right: calc(var(--gutter)*1.5);
  }
}

@media only screen and (min-width: 1480px) {
  .container.mid{
    padding-left: calc(var(--gutter)*3);
    padding-right: calc(var(--gutter)*3);
  }
}

@media only screen and (min-width: 800px) {
  :root{
    --space: 50px;
    --gutter: 30px;
    --margin: 50px;
    --padding: 40px;
    --megaspace: var(--margin);
  }
}

@media only screen and (min-width: 1000px) {
  :root{
    --gutter: 50px;
    --margin: 50px;
    --space: 80px;
    --megaspace: calc(var(--margin)*2);
  }
}

@media only screen and (min-width: 1480px) {
  :root{
    --margin: 80px;
    --megaspace: calc(var(--margin)*2);
  }
}

/* empêche le scroll de la page derrière la popup */
body.no-scroll {
  overflow: hidden;
}
/* optionnel : bloque le scroll quand popup ouverte */
.no-scroll {
  overflow: hidden;
}

/* overlay */
.video-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
}

.video-popup-overlay.is-active {
  display: flex;
}

/* boîte */
.video-popup-inner {
  position: relative;
  width: min(1000px, 100%);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

/* bouton fermer */
.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

/* ratio 16/9 -> donne une hauteur réelle à l'iframe */
.video-popup-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-popup-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



.cta{
  background-color: var(--beige);
  padding: 10px 25px 10px 10px;
  position: relative;
  border-radius: 320px;
  display: inline-flex;
  color: inherit;
  transition: all .2s ease;
  align-items: center;
  box-shadow: 0;
  flex-direction: row-reverse;
  font-size: 14px;
}

@media only screen and (min-width: 1000px) {
  .cta{
    padding: 10px 10px 10px 25px;
    flex-direction: row;
    font-size: inherit;
  }

}


.cta svg{
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 1000px) {
  .cta svg{
    margin-left: 15px;
    margin-right: 0;
    width: unset;
    height: unset;
  }
}

.cta:hover{
  background-color: var(--bleu);
  color: #FFFFFF !important;
  /*box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.05);*/
}


.cta.invert{
  background: #FFFFFF;
}

.cta.invert:hover{
  background: var(--or);
}

.cta.invert svg .svg-round{
  fill: var(--beige);
}

.cta.invert:hover .svg-round{
  fill: #FFFFFF;
}

.cta.invert svg .svg-arrow{
  fill: #FFFFFF;
}

.pretitle{
  font-size: 16px;
  text-transform: uppercase;
  color: var(--bleu);
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

h2{
  font-weight: 700;
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 1.16rem + 0.69vw, 2rem);
}

.etiquette{
  display: inline-flex;
  padding: 5px 15px;
  text-transform: uppercase;
  background: var(--or);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 30px;
}


ul.checks{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (min-width: 1480px) {
  ul.checks{
    gap: var(--space-elements);
  }
}

ul.checks li{
  display: inline-flex;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.7em;
}

ul.checks li::before{
  content: '';
  width: 16px;
  height: 24px;
  background: url("https://www.jeld-wen.fr/getmedia/9a2390e0-cf89-426e-91f4-46feb2d653bb/li.aspx") no-repeat left 5px / 16px transparent;
  margin-right: 15px;
  flex-shrink: 0;
}

/* ****************************************************************************************** */
/*  HEADER
/* ****************************************************************************************** */
#header{
  padding: var(--padding) 0;
  position: sticky;
  top: 0;
  z-index: 6;
  background: #FFFFFF;
  transition: all .1s ease;
  transform: translateY(0);
}

#header.out{
  transform: translateY(-100%);
}

#header-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
@media only screen and (min-width: 1000px) {
  #header{
    display: block;
  }
}
*/

#header img{
  display: block;
  max-width: 160px;
}

@media only screen and (min-width: 1000px) {
  #header img{
    max-width: unset;
  }
}

#navigation{
  display: none;
}

.openNavigation #navigation{
  display: block;
  position: fixed;
  z-index: 2;
  background: rgba(0,0,0,.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  bottom: 0;
  min-height: 100vh;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (min-width: 1000px) {
  #navigation{
    display: block;
  }
}

#navigation ul{
  display: flex;
  gap: var(--margin);
  align-items: center;
}

.openNavigation #navigation ul{
  background: #FFF;
  flex-direction: column;
  min-height: 100vh;
  align-items: stretch;
  gap: unset;
}

#navigation ul a{
  color: inherit;
  font-size: 14px;
  position: relative;
}


.openNavigation #navigation li + li{
  border-top: 1px solid #cecece;
}

.openNavigation #navigation ul li:not(:last-child) a{
  padding: 20px;
  display: block;
}

/*
#navigation ul li:not(:last-child) a:hover{
  color: var(--bleu) !important;
}
*/

.openNavigation #navigation ul li:last-child a{
  margin: 15px;
}

#navigation ul li:not(:last-child) a::after{
  background: var(--beige);
  opacity: .5;
  width: 110%;
  height: 0;
  content: '';
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -5px;
  left: -5%;
  transition: all .2s ease;
}

#navigation ul li:not(:last-child) a:hover::after{
  height: 80%;
}

#navigation .smartline-menu{
  display: none;
}

@media only screen and (min-width: 1000px) {
  #navigation .smartline-menu.open {
  	position: absolute;
  	left: 0;
  	background: var(--beige);
  	margin-left: -30px;
  	margin-right: -30px;
  	padding: var(--margin);
  	top: 90px;
    display: block;
  }
}

#burger {
	display: flex;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
}

#burger span{
	width: 32px;
	height: 4px;
	margin: 2px;
	display: block;
	background: #000;
	border-radius: 20px;
}

@media only screen and (min-width: 1000px) {
  #burger{
    display: none;
  }
}


/* ****************************************************************************************** */
/*  BANNIERE
/* ****************************************************************************************** */
#banniere{
  background: linear-gradient(180deg, #F6F0DD 0%, #FFF 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media only screen and (min-width: 800px) {
  #banniere{
    background: linear-gradient(90deg, #F6F0DD 0%, #FFF 100%);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

#banniere-left{
  padding: var(--padding);
}

@media only screen and (min-width: 800px) {
  #banniere-left{
    width: 60%;
  }
}

@media only screen and (min-width: 800px) {
  #banniere-left{
    padding: calc(var(--margin)*1.5);
  }
}

@media only screen and (min-width: 800px) and (max-width: 1000px) {
  #banniere-left{
    padding: calc(var(--margin)*2) calc(var(--margin)*1.5) calc(var(--margin)*1.5) calc(var(--margin)*1.5);
  }
}

@media only screen and (min-width: 1400px) {
  #banniere-left{
    padding: var(--megaspace);
  }
}

#banniere-left h1{
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.98rem + 1.73vw, 4.06rem);
  line-height: normal;
  font-weight: 700;
}

@media only screen and (min-width: 800px) and (max-width: 1000px) {
  #banniere-left h1{
    font-size: 40px;
  }
}

#banniere-left p:not(.etiquette){
  margin: var(--padding) 0;
  font-size: 1rem;
  font-size: clamp(1rem, 0.912rem + 0.28vw, 1.25rem);
  line-height: 1.8em;
  font-weight: 700;
}

#banniere .etiquette {
	transform: translateX(-30px);
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  margin-bottom: 20px;
}

@media only screen and (min-width: 800px) {
  #banniere .etiquette {
  	position: absolute;
  	left: 0;
  	top: var(--padding);
  	transform: translateX(-30px);
  }
}

#banniere-left .cta{
  background: #000000;
  color: #FFFFFF;
}

#banniere-right{}

@media only screen and (min-width: 800px) {
  #banniere-right{
      width: 40%;
      margin-bottom: calc(var(--margin)*-1);
  }
}

#banniere-right img{
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}


/* ****************************************************************************************** */
/*  VIDEO
/* ****************************************************************************************** */
#video-wrapper{
  margin: var(--megaspace) 0;
}

#video{
  display: flex;
  justify-content: center;
  gap: var(--padding);
  align-items: center;
  flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  #video{
    flex-direction: row;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1000px) {
  #video{
    max-width: 640px;
    margin: 0 auto;
  }
}

#video-left {
  padding: 0 var(--padding);
}

@media only screen and (min-width: 1000px) {
  #video-left {
    width: 35%;
  }
}

@media only screen and (min-width: 1480px) {
  #video-left {
    padding: 0 var(--middlespace);
  }
}

#video h2{
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.2301587301587302rem + 1.0582010582010584vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--margin);
}

#video h2 span{
  position: relative;
}

#video h2 span::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: url("https://www.jeld-wen.fr/getmedia/bf855819-c12a-4dfe-b7fd-6b52799a5375/lines.aspx") no-repeat center / contain transparent;
  width: 60px;
  height: 30px;
  transform: translateY(calc(100% - 15px));
}

#video-left ul{
  background: var(--or-pale);
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: var(--space-elements);
}

#video-left ul li{
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  text-transform: uppercase;
  padding-left: 45px;
  position: relative;
}

#video-left ul li span{
  text-transform: unset;
  display: block;
  font-size: 70%;
  font-weight: 500;
  margin-top: 5px;
}

#video-left ul li::before{
  content: '';
  display: block;
  background: url("https://www.jeld-wen.fr/getmedia/4a972231-ba5d-41e0-b181-8d58a071f62f/check.aspx") no-repeat center / contain transparent;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 1000px) {
  #video-right {
    width: 55%;
  }
}

#video-right img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ****************************************************************************************** */
/* SMARTLINE
/* ****************************************************************************************** */
#smartline-wrapper{
  position: relative;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}

@media only screen and (min-width: 800px) {
  #smartline-wrapper{
    padding-top: var(--middlespace);
    padding-bottom: 0;
  }
}

#smartline-wrapper::before{
  background: linear-gradient(90deg, #FAFAFA 0%, #FFFBF2 100%);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

@media only screen and (min-width: 800px) {
  #smartline-wrapper::before{
    height: 70%;
  }
}

#smartline-top{
  display: flex;
  gap: var(--space-elements);
  flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  #smartline-top{
    justify-content: center;
    flex-direction: row;
    gap: var(--middlespace);
  }
}

@media only screen and (min-width: 1000px) {
  #smartline-top-left{
    width: 30%;
    text-align: right;
  }
}

#smartline-top-left .etiquette{
  margin-bottom: 20px;
}

#smartline-top-left h2{
  text-transform: uppercase;
  font-weight: 500;
  max-width: 80%;
}

@media only screen and (min-width: 1000px) {
  #smartline-top-left h2{
    max-width: 50%;
    margin: 0;
    margin-left: auto;
  }
}

#smartline-top-right{
  line-height: 1.8em;
}

@media only screen and (min-width: 1000px) {
  #smartline-top-right{
    width: 35%;
  }
}

#smartline-top-right p + p{
  margin-top: var(--space-elements);
}

#smartline-bottom{
  margin-top: var(--middlespace);
}

/* ****************************************************************************************** */
/* GAMME MENU
/* ****************************************************************************************** */
.smartline-menu ul{
  display: flex;
  gap: var(--padding);
  padding: 0;
  flex-wrap: wrap;
}

@media only screen and (min-width: 800px) {
  .smartline-menu ul{
    padding: 0 5vw;
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1000px) {
  .smartline-menu ul{
    padding: 0 15vw;
  }
}

.smartline-menu li{
  width: 45%;
}

@media only screen and (min-width: 800px) {
  .smartline-menu li{
    width: 25%;
  }
}

.smartline-menu li a {
	display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.smartline-menu li img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1;
}

.smartline-menu h3 + p{
  font-size: 12px;
  color: rgba(0, 0, 0, 0.50);
  margin-top: 15px;
}

@media only screen and (min-width: 800px) {
  .smartline-menu h3 + p{
    padding-left: 75px;
    padding-right: 15px;
  }
}


/* ****************************************************************************************** */
/* SMART TITLE
/* ****************************************************************************************** */
.smart-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.smart-title .etiquette{
  font-size: 24px !important;
  margin-top: 15px;
}

.smart-title .gamme{
  text-transform: uppercase;
  font-weight: 900;
  color: var(--or);
  font-size: 24px;
  padding-left: 25px;
  padding-top: 10px;
  background: url('https://www.jeld-wen.fr/getmedia/6833bc29-7708-4ff4-afef-927fdb8ca972/menu-line.aspx') no-repeat left top / 15px transparent;
}


/* ****************************************************************************************** */
/* GAMME
/* ****************************************************************************************** */
#smartline-gamme-wrapper{
  margin-top: 10vw;
}

#smartline-gamme {
	display: flex;
	flex-direction: column;
	gap: var(--padding);
}

@media only screen and (min-width: 800px) {
  #smartline-gamme {
  	gap: var(--margin);
  	padding: 0 7vw;
  }
}

.smartline-item{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.smartline-item-cover{
  cursor: pointer;
}

.smartline-item-cover-bg {
	position: absolute;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.smartline-item-cover-bg::after{
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: '';
  display: block;
}

.smartline-item-cover-bg img {
	width: 100%;
	display: block;
	height: 100%;
  object-fit: cover;
  transition: all .2s ease;
}

@media only screen and (min-width: 1000px) {
  .smartline-item-cover-bg img {
    object-fit: unset;
  }
}

.smartline-item-cover:hover .smartline-item-cover-bg img {
  transform: scale(1.1);
}

.smartline-item-cover-bloc{
  z-index: 2;
  position: relative;
  padding: var(--padding);
  display: flex;
  gap: var(--padding);
  flex-direction: column;
}

@media only screen and (min-width: 800px) {
  .smartline-item-cover-bloc{
    padding: var(--margin);
  }
}

.smartline-item-cover-bloc img{
  border-radius: 320px;
  width: 120px;
  height: 120px;
  display: block;
}

@media only screen and (min-width: 800px) {
  .smartline-item-cover-bloc img{
    width: 160px;
    height: 160px;
  }
}

.smartline-item-cover-bloc h2{
  color: #FFFFFF;
}

@media only screen and (min-width: 800px) {
  .smartline-item-cover-bloc h2{
    max-width: 45%;
  }
}

.smartline-item-command{
  width: 42px;
  height: 42px;
  right: 15px;
  bottom: 15px;
  position: absolute;
  z-index: 4;
  background: var(--or);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 320px;
  transition: all .2s ease;
}

@media only screen and (min-width: 800px) {
  .smartline-item-command{
    width: 64px;
    height: 64px;
    right: var(--margin);
    bottom: var(--margin);
  }
}

@media only screen and (max-width: 800px) {
  .open .smartline-item-command{
    bottom: unset;
    top: 15px;
  }
}

.smartline-item:hover .smartline-item-command{
  background: #FFFFFF;
}

.smartline-item:hover .smartline-item-command span{
  background: var(--or);
}

.smartline-item-command span{
  width: 22px;
  height: 4px;
  background: #FFFFFF;
  display: block;
  transition: all .2s ease;
}

@media only screen and (min-width: 800px) {
  .smartline-item-command span{
    width: 28px;
  }
}

.smartline-item-command span:last-child{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all .2s ease;
}

.open .smartline-item-command span:last-child{
  transform: translateX(-50%) translateY(-50%) rotate(0);
}

.smartline-item.open .smartline-item-cover{
  opacity: 0;
}

.smartline-item-content{
  display: none;
}

.smartline-item.open{
  overflow: visible;
  z-index: 5;
}

.smartline-item.open .smartline-item-content{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--beige);
  justify-content: space-between;
  border-radius: 30px;
  overflow: hidden;
  flex-direction: column;
}

@media only screen and (min-width: 800px) {
  .smartline-item.open .smartline-item-content{
    flex-direction: row;
  }
}

.smartline-item-content-left {
	padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: var(--padding);
  align-items: flex-start;
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-left {
  	width: 50%;
  	padding: var(--margin);
  }
}

.smartline-item-content-right {
  padding: 10px;
	position: relative;
	display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-right {
  	width: 40%;
    padding: var(--padding) 0;
  	align-items: center;
  	justify-content: center;
    flex-direction: row;
  }
}

.smartline-item-content-right-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.smartline-item-content-right-background {
  display: none;
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-right-background {
  	position: absolute;
  	height: 100%;
    display: block;
  }
}

.smartline-item-content-box {
	background: #FFFFFF;
  padding: var(--padding);
	border-radius: 30px;
	position: relative;
	z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
  row-gap: 15px;
  grid-auto-rows: minmax(110px, auto);
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-box {
    transform: translateX(-50%);
    padding: var(--padding);
    column-gap: 30px;
  }
}

.smartline-porte{
  font-size: 10px;
  position: relative;
}

.smartline-porte.isolante::after{
  background: url("https://www.jeld-wen.fr/getmedia/1b0005fb-96bb-4fc7-b1b8-8d7d52349d64/version-isolante.aspx") no-repeat center / contain transparent;
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 3;
}

.smartline-porte.isolante2::after{
  background: url("https://www.jeld-wen.fr/getmedia/4f8ce8a0-4743-4551-8908-c04f83308b7a/version-isolante2.aspx") no-repeat center / contain transparent;
  width: 40px;
  height: 40px;
  display: block;
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 3;
}

.smartline-item-content-box.force3{
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-box.force3{
    transform: translateX(-100%);
  }
}

.smartline-item-content-box.force1{
  grid-template-columns: repeat(1, 1fr);
  row-gap: 30px;
}

@media only screen and (min-width: 800px) {
  .smartline-item-content-box.force1{
    transform: translateX(-100%);
  }
}

.smartline-item-content-box.force3 .smartline-porte{
  max-width: 60px;
}

.smartline-porte img {
	width: 100%;
  max-width: 110px;
	height: auto;
	display: block;
  margin-bottom: 5px;
}

.smartline-item-content-box.force1 .smartline-porte img {
  max-width: 300px;
}

/* ****************************************************************************************** */
/* SMARTPLUS
/* ****************************************************************************************** */
#smartplus-wrapper{
  margin-top: var(--megaspace);
    position: relative;
}

#smartplus{
  position: relative;
}

.smartplus-cover{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.smartplus-cover img{
  width: 100%;
  height: auto;
  display: block;
  min-height: 50vh;
  object-fit: cover;
}

@media only screen and (min-width: 800px) {
  .smartplus-cover img{
    min-height: unset;
    object-fit: none;
  }
}

#smartplus h2{
  padding: var(--megaspace) 0;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
}

#smartplus h2 span{
  display: block;
  font-size: 3.75rem;
  font-size: clamp(3.75rem, 3rem + 3.75vw, 7.5rem);
  text-transform: uppercase;
  font-weight: 900;
}

#atouts{
  padding: var(--margin) var(--padding) var(--padding) var(--padding);
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  background: url("https://www.jeld-wen.fr/getmedia/d65b5369-83be-4f29-a74c-d13d0082850d/avantages.aspx") no-repeat 90% 5% / 64px #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 4px 48px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 800px) {
  #atouts{
      padding: var(--margin);
  }
}

#atouts .etiquette{
  transform: translateY(calc(var(--padding)*-1)) translateX(calc(var(--padding)*-1));
}

@media only screen and (min-width: 800px) {
  #atouts .etiquette{
    transform: translateY(calc(var(--padding)*-1)) translateX(calc(var(--margin)*-1));
  }
}

#atouts h3{
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  margin-bottom: var(--space-elements);
  font-weight: 900;
}

#atouts-footer{
  margin: var(--padding) calc(var(--padding)*-1) calc(var(--padding)*-1) calc(var(--padding)*-1);
  background: var(--beige);
  padding: var(--padding);
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 800px) {
  #atouts-footer{
    margin: var(--margin) calc(var(--margin)*-1) calc(var(--margin)*-1) calc(var(--margin)*-1);
  }
}



/* ****************************************************************************************** */
/* RESPONSABLE
/* ****************************************************************************************** */
#eco-wrapper{
  background: url("https://www.jeld-wen.fr/getmedia/8ce41e7e-2a23-4833-8a3b-33f202adf668/eco.aspx") no-repeat left top / cover transparent;
  margin-top: 10vw;
}


#eco{
  padding: var(--margin) 0;
}

@media only screen and (min-width: 800px) {
  #eco{
    display: flex;
    justify-content: center;
    gap: var(--megaspace);
    padding: var(--megaspace);
  }
}

#eco-left{
  color: #FFFFFF;
  margin-bottom: var(--padding);
}

@media only screen and (min-width: 800px) {
  #eco-left{
    width: 35%;
    margin-bottom: 0;
  }
}

#eco-left h2{
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 1.45rem + 2.125vw, 4rem);
  margin-bottom: var(--padding);
  line-height: .9em;
}

#eco-left p{
  font-size: 1rem;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 1.6em;
}

#eco-right{
}

@media only screen and (min-width: 1400px) {
  #eco-right{
    width: 50%;
    display: flex;
    gap: var(--padding);
  }
}

.eco-col{
  display: flex;
  flex-direction: column;
  gap: var(--padding);
}

@media only screen and (min-width: 1400px) {
  .eco-col{
    width: calc(50% - var(--padding));
  }
}

.eco-col + .eco-col{
  margin-top: var(--padding);
}

@media only screen and (min-width: 1400px) {
  .eco-col + .eco-col{
    margin-top: var(--margin);
  }
}

.eco-item{
  background: #FFF;
  padding: var(--padding);
  border-radius: 28px;
}

.eco-item h3{
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 10px;
}

.eco-item img{
  height: 64px;
  width: auto;
  display: block;
}

.eco-item p{
  font-size: 14px;
  line-height: 1.6em;
}

.eco-item p + p{
  margin-top: 20px;
}

.eco-item p a{
  color: inherit;
  text-decoration: underline;
}

.eco-item p a:hover{
  color: var(--or);
}

/* ****************************************************************************************** */
/* CTA EXPERT
/* ****************************************************************************************** */
#cta-expert-wrapper{
  margin-top: var(--margin);
  margin-bottom: var(--margin);
}

@media only screen and (min-width: 1000px) {
  #cta-expert-wrapper{
    margin-top: var(--megaspace);
    margin-bottom: var(--megaspace);
  }
}

#cta-expert{
  padding: var(--padding);
  background: url("https://www.jeld-wen.fr/getmedia/6cec22a9-db87-4a86-8f99-65e3bf02384c/cta-expert-bg.aspx") no-repeat center center / cover transparent;
  display: flex;
  border-radius: 30px;
  color: #FFFFFF;
  flex-direction: column;
}


@media only screen and (min-width: 800px) {
  #cta-expert{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--padding);
  }
}

@media only screen and (min-width: 1000px) {
  #cta-expert{
    padding: var(--margin);
  }
}

@media only screen and (min-width: 800px) {
  #cta-expert-left{
    width: 45%;
  }
}

#cta-expert p{
  margin: var(--padding) 0;
  line-height: 1.8em;
}

@media only screen and (min-width: 1000px) {
  #cta-expert p{
    max-width: 80%;
  }
}

#cta-expert .cta{
  color: #000000;
  background: #FFFFFF;
}

#cta-expert .svg-round{
  fill: var(--beige);
}

#cta-expert .cta:hover{
  background: var(--beige);
    color: #000000 !important;
}

#cta-expert .cta:hover .svg-round{
  fill: #ffffff;
}



/* ****************************************************************************************** */
/* FOOTER
/* ****************************************************************************************** */
#footer{
  background: #1D446B;
  padding: 30px 0;
}

#footer img{
  display: block;
  max-width: 120px;
}

@media only screen and (min-width: 1000px) {
  #footer img{
    max-width: 240px;
  }
}

@media only screen and (min-width: 1000px) {
  #footer{
    padding: 50px 0;
  }
}

#footer-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer-socials{
  display: flex;
}

#footer-socials a{
  width: 24px;
  height: 24px;
  font-size: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 10px;
  transition: all .2s ease;
}

@media only screen and (min-width: 1000px) {
  #footer-socials a{
    width: 32px;
    height: 32px;
  }
}

@media only screen and (min-width: 1000px) {
  #footer-socials a{
    width: 48px;
    height: 48px;
  }
}
#footer-socials a:hover{
  background-color: var(--azur);
}

#fs-ins{
  background-image: url('https://www.jeld-wen.fr/getmedia/772d54ea-808a-4f0c-a8e3-df1b6d6182fc/instagram@2x.aspx');
}

#fs-in{
  background-image: url('https://www.jeld-wen.fr/getmedia/fec20f2f-7257-495e-9ef1-2b51c329801c/linkedin@2x.aspx');
}


.popup-inner-video{
	padding: 0;
  background: none;
  cursor:
}

.popup-inner-video iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16/9;
	/* max-width: 1000px; */
	max-height: 85vh;
	display: block;
}
