/*
Theme Name: Burger King
Author: David DI SAN BONIFACIO
Author URI: https://daviddisanbonifacio.com
Description: Thème pour la franchise Burger King FR
Requires at least: Wordpress 5.0
Version 1.0
*/

/*
Theme Name:     Burger King
Author:         David DI SAN BONIFACIO
Author URI:     https://daviddisanbonifacio.com
Description:    Thème Burger King
Version:        1.0.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3.	Site Header
  4.  Site Footer		
  5. Content
  6. Marque Section
  7. Chiffres clés	
  8. Image Marque/Actus
  9. Section Actualités
  10. Image Actualités/Témoignages
  11. Témoignages
  12. 5 bonnes raisons
  13. Image Raisons/Conditions
  14. Archives actualités
  15. Single post actualités
  16. Archives temoignages
  17. Conditions d'accès
  18. Etapes de recrutement
  19. Rejoindre l'aventure
  20. Page Candidater

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */

@font-face {
  font-family: "Flame Bold";
  src: url("/wp-content/themes/burgerking/fonts/Flame-Bold.woff2")
      format("woff2"),
    url("/wp-content/themes/burgerking/fonts/Flame-Bold.woff") format("woff");
}
@font-face {
  font-family: "Flame Bold Variable";
  src: url("/wp-content/themes/burgerking/fonts/Flame-Bold-Variable.woff2")
      format("woff2"),
    url("/fonts/Flame-Bold-Variable.woff") format("woff");
}
@font-face {
  font-family: "Flame Regular";
  src: url("/wp-content/themes/burgerking/fonts/Flame-Regular.woff2")
      format("woff2"),
    url("/wp-content/themes/burgerking/fonts/Flame-Regular.woff") format("woff");
}
@font-face {
  font-family: "FlameSans Regular";
  src: url("/wp-content/themes/burgerking/fonts/FlameSans-Regular.woff2")
      format("woff2"),
    url("/wp-content/themes/burgerking/fonts/FlameSans-Regular.woff")
      format("woff");
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* -------------------------------------------------------------------------- */

html {
  --flery-red: #d62300;
  --flaming-orange: #ff8732;
  --bbq-brown: #502314;
  --mayo-egg-white: #f5ebdc;
  --crunchy-greeen: #198737;
  --melty-yellow: #ffaa00;
  --flame-regular: "Flame Regular", sans-serif;
  --flame-bold: "Flame Bold", sans-serif;
  --flame-bold-variable: "Flame Bold Variable", sans-serif;
  --flame-sans-regular: "FlameSans Regular", sans-serif;
  background-color: var(--mayo-egg-white);
}

h1 {
  font-family: var(--flame-bold);
  font-size: 72px;
}

h2 {
  font-family: var(--flame-bold);
  font-size: 60px;
}

h3 {
  font-family: var(--flame-regular);
  font-size: 30px;
}

h4 {
  font-family: var(--flame-regular);
  font-size: 20px;
}

p {
  font-family: var(--flame-sans-regular);
  font-size: 18px;
  line-height: 120%;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: var(--flame-sans-regular);
  font-size: 18px;
}

@media screen and (max-width: 1800px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
    font-weight: 900;
  }

  p,
  a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
    font-weight: 900;
  }

  a {
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */

/*	3. Site Header
/* -------------------------------------------------------------------------- */

.header-desktop,
.header-mobile {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 9999;
}

.logged-in .header-desktop,
.logged-in .header-mobile {
  top: 32px;
}

.header-mobile {
  display: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  height: 90px;
}

.header-desktop.sticky .header-container {
  background-color: #ffffff;
}

.header-mobile .header-container {
  background-color: #ffffff;
}

.header-desktop.sticky:hover .header-container {
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.header-menu #menu-menu-header {
  display: flex;
}

.header-menu #menu-menu-header li {
  font-family: var(--secondary-font);
  margin-right: 30px;
}

.header-menu #menu-menu-header li a {
  font-size: 15px;
  color: var(--bbq-brown);
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999600;
  text-align: center;
  width: 80px;
  padding: 1px;
  border-radius: 50%;
  top: 10px;
}

.header-logo img {
  width: 100%;
}

.candidater-button {
  background: var(--flery-red);
  color: #ffffff;
  padding: 8px 30px 10px 30px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

/* ---- Responsivity ------*/

@media screen and (max-width: 1200px) {
  /*Menu*/

  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .header-logo {
    width: 70px;
    top: unset;
  }

  .burger-menu-close {
    display: none;
    z-index: 99999;
    position: fixed;
    top: 25px;
    width: 40px;
    left: 10px;
  }

  .burger-menu-close.active {
    display: block;
  }

  .burger-menu-open {
    display: none;
  }

  .burger-menu-open.active {
    display: block;
  }

  .header-menu {
    width: 5%;
  }

  .header-menu-mobile-inner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: calc(100vh - 90px);
    background: var(--mayo-egg-white);
    overflow: auto;
    z-index: 9999;
  }

  .header-menu-mobile-inner.active {
    display: flex;
  }

  .header-menu-mobile-inner li {
    width: max-content;
    color: var(--bbq-brown);
    margin: 0 0 15px 20px;
  }

  .header-menu-mobile-inner li a {
    font-family: var(--flame-bold);
    font-size: 22px;
  }
}

@media screen and (max-width: 1000px) {
  .header-container {
    width: 100vw;
  }

  .header-logo {
    width: 60px;
  }

  .candidater-button {
    padding: 4px 15px 5px 15px;
    font-size: 12px;
  }
}

/* -------------------------------------------------------------------------- */

/*	4. Site Footer
/* -------------------------------------------------------------------------- */

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
  margin-top: -5px;
}

.footer-inner {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
}

#menu-menu-footer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-menu-footer-container{
  width: 80%;
  padding: 30px 0;
}

#menu-menu-footer .menu-item{
  color: var(--bbq-brown);
  margin: 0 30px;
}

/* ---- Responsivity ------*/

@media screen and (max-width: 1000px) {
  #menu-menu-footer {
    flex-direction: column;
  }

  #menu-menu-footer .menu-item{
    margin: 5px 0;
    text-align: center;
  }
}

/* -------------------------------------------------------------------------- */

/*	5. Content
/* -------------------------------------------------------------------------- */

.main-content {
  margin-top: 150px;
  max-width: 100vw;		
  min-height: calc(100vh - 225px);
}

/* -------------------------------------------------------------------------- */

/*	6. Marque Section
/* -------------------------------------------------------------------------- */

.marque-section {
  width: 100%;
  z-index: 9;
}

.marque-row {
  display: flex;
}

.marque-col-1 {
  width: 45%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marque-title {
  color: var(--bbq-brown);
  padding-left: 20%;
  margin-bottom: 20px;
}

.marque-subtitle {
  font-size: 30px;
  color: var(--flaming-orange);
  padding-left: 20%;
  margin-bottom: 20px;
}

.marque-text {
  padding-left: 20%;
  color: var(--bbq-brown);
  margin-bottom: 50px;
}

.marque-cta {
  font-family: var(--flame-regular);
  color: var(--flery-red);
  margin-left: 20%;
  border: solid 3px var(--flery-red);
  border-radius: 90px;
  padding: 12px 40px;
}

.marque-cta:hover {
  color: var(--mayo-egg-white);
  margin-left: 20%;
  border: solid 3px var(--mayo-egg-white);
  background: var(--flery-red);
}

.marque-col-2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  margin-bottom: 0;
}

.marque-video {
  width: 100%;
}

.marque-video iframe {
  height: 28vw;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .marque-row {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .marque-col-1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .marque-title {
    padding-left: 0;
  }

  .marque-subtitle {
    padding-left: 0;
  }

  .marque-text {
    padding-left: 0;
  }

  .marque-button {
    text-align: center;
  }

  .marque-cta {
    margin-left: 0;
    text-align: center;
  }

  .marque-col-2 {
    display: block;
    width: 100%;
    margin-bottom: 0;
  }

  .marque-video {
    width: 100%;
  }

  .marque-video iframe {
    height: 36vw;
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .marque-video iframe {
    height: 45vw;
  }
}

/* -------------------------------------------------------------------------- */

/*	7. Chiffres clés
/* -------------------------------------------------------------------------- */

.key-figures-section {
  margin-top: 60px;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-figures-row-1 {
  display: flex;
  width: 80%;
  position: absolute;
}

.key-figures-col {
  width: 20%;
  margin: 0 2%;
  text-align: center;
}

.key-figure-number {
  font-family: var(--flame-bold);
  margin-bottom: 10px;
  font-size: 40px;
  color: var(--bbq-brown);
}

.key-figure-text {
  color: var(--mayo-egg-white);
  font-family: var(--flame-regular);
}

.background-stripe {
  overflow: hidden;
}

.background-stripe img {
  width: 100%;
}

.key-figures-row-2 img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .key-figures-row-1 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .key-figures-col {
    width: 40%;
    margin: 20px 5px;
    text-align: center;
  }

  .key-figure-number {
    font-size: 30px;
  }

  .background-stripe {
    width: 100vw;
  }

  .background-stripe img {
    width: auto;
  }
}

/* -------------------------------------------------------------------------- */

/*	8. Image Marque/Actus
/* -------------------------------------------------------------------------- */

.image-marque-actus-section {
  height: 70vh;
  min-height: 200px;
  max-height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -30px;
}

/* -------------------------------------------------------------------------- */

/*	9. Section Actualités
/* -------------------------------------------------------------------------- */

.actualites-section {
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.actualites-row-1 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  width: 100%;
}

.actualites-col-1 {
  width: 30%;
}

.home-actualite {
  position: relative;
}

.home-actualite-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -60px;
  right: -60px;
}

.actualites-title {
  margin-bottom: 20px;
  color: var(--mayo-egg-white);
}

.actualites-text {
  margin-bottom: 50px;
  color: var(--mayo-egg-white);
}

.actualites-cta {
  font-family: var(--flame-regular);
  color: var(--bbq-brown);
  border: solid 3px var(--mayo-egg-white);
  border-radius: 90px;
  padding: 10px 40px 12px 40px;
}

.actualites-cta:hover {
  color: var(--mayo-egg-white);
  border: solid 3px var(--bbq-brown);
  background-color: var(--bbq-brown);
}

.actualites-col-2 {
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin-left: 12%;
}

.home-actualites-link {
  width: 40%;
}

.home-actualites-link:last-child .home-actualite-title {
  top: -60px;
  right: -60px;
}

.home-actualite-thumbnail img {
  border-radius: 50%;
  width: 100%;
  height: auto;
}

.home-actualite-title {
  background-color: var(--mayo-egg-white);
  border-radius: 50%;
  font-size: 16px;
  color: var(--bbq-brown);
  padding: 50px;
  text-align: center;
  width: 30%;
  height: 30%;
}

.actualites-row-2 {
  overflow: hidden;
}

.actualites-row-2 img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .actualites-section {
    display: block;
  }

  .actualites-row-1 {
    display: block;
    margin-top: 50px;
    padding-bottom: 60px;
  }

  .actualites-col-1,
  .actualites-col-2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .actualites-col-1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
  }

  .actualites-col-2 {
    display: block;
    margin-bottom: 50px;
  }

  .home-actualite {
    margin-bottom: 30px;
  }

  .home-actualite-thumbnail {
    text-align: center;
  }

  .home-actualite-thumbnail img {
    border-radius: 50%;
    width: 150px;
    height: auto;
  }

  .home-actualite-title {
    position: relative;
    bottom: 0;
    right: 0;
    margin: auto;
    background: none;
    border-radius: 0;
    padding: 0;
    height: inherit;
    width: inherit;
    text-align: center;
    color: var(--mayo-egg-white);
  }

  .home-actualites-link:last-child .home-actualite-title {
    top: 0;
    right: 0;
  }

  .actualites-cta {
    position: absolute;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    left: 0;
    right: 0;
  }

  .actualites-row-2 img {
    width: auto;
  }
}

/* -------------------------------------------------------------------------- */

/*	10. Image Actualités/Témoignages
/* -------------------------------------------------------------------------- */

.image-actus-temoignages-section {
  height: 70vh;
  min-height: 200px;
  max-height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -140px;
}

/* -------------------------------------------------------------------------- */

/*	11. Témoignages
/* -------------------------------------------------------------------------- */

.temoignages-section {
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.temoignages-row-1 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  height: 100%;
}

.temoignages-col-1 {
  width: 55%;
  margin-left: 8%;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-temoignage {
  width: 100%;
  margin-right: 50px;
}

.home-temoignage-video {
  width: 100%;
}

.home-temoignage-video iframe {
  width: 100%;
  height: 23vw;
}

.home-temoignages {
  position: relative;
}

.home-temoignages-title {
  position: absolute;
  bottom: -60px;
  right: -60px;
}

.temoignages-text {
  font-family: var(--flame-regular);
  font-size: 30px;
  color: var(--mayo-egg-white);
  padding-right: 10%;
}

.temoignages-author {
  margin-bottom: 50px;
  text-align: right;
  color: var(--mayo-egg-white);
  padding-right: 10%;
}

.temoignages-cta {
  font-family: var(--flame-regular);
  color: var(--bbq-brown);
  border: solid 3px var(--mayo-egg-white);
  border-radius: 90px;
  padding: 10px 40px 12px 40px;
}

.temoignages-cta:hover {
  color: var(--mayo-egg-white);
  border: solid 3px var(--bbq-brown);
  background-color: var(--bbq-brown);
}

.temoignages-col-2 {
  width: 40%;
}

.temoignages-row-2 {
  width: 100%;
}

.temoignages-row-2 img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .image-actus-temoignages-section {
    margin-top: -150px;
  }

  .temoignages-row-2 img {
    width: auto;
  }

  .temoignages-row-1 {
    flex-direction: column;
    width: 80%;
  }

  .temoignages-col-1,
  .temoignages-col-2 {
    display: block;
    width: 100%;
  }

  .temoignages-col-1 {
    height: auto;
    margin-left: 0;
  }
	
  .home-temoignage {
    margin-right: 0;
  }

  .home-temoignage-video iframe {
    width: 100%;
    height: 45vw;
    margin-bottom: 30px;
  }
}

/* -------------------------------------------------------------------------- */

/*	12. 5 bonnes raisons
/* -------------------------------------------------------------------------- */

.reasons-section {
  margin-top: 150px;
}

.reasons-row-1 {
  display: flex;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 99;
}

.reasons-col-1 {
  width: 50%;
  margin-right: 5%;
}

.reasons-col-2 {
  width: 45%;
}

.reason img {
  width: 150px;
}

.reason-infos {
  margin-left: 30px;
}

.devenir-franchise-title {
  margin-bottom: 30px;
  color: var(--bbq-brown);
}

.devenir-franchise-subtitle {
  margin-bottom: 50px;
  color: var(--bbq-brown);
}

.reason {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.reason-title {
  margin-bottom: 20px;
  color: var(--flaming-orange);
}

.reason-text {
  color: var(--bbq-brown);
}

.reasons-row-2 {
  margin-top: -200px;
  overflow: hidden;
}

.reasons-row-2 img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .reasons-section {
    margin-top: 0;
  }

  .reasons-row-1 {
    display: block;
  }

  .reasons-col-1,
  .reasons-col-2 {
    width: 100%;
  }

  .reason {
    flex-direction: column;
  }

  .reason-infos {
    margin-left: 0;
    text-align: center;
  }

  .reasons-row-2 {
    width: 100vw;
    overflow: hidden;
  }

  .reasons-row-2 img {
    width: auto;
  }
}

/* -------------------------------------------------------------------------- */

/*	13. Image Raisons/Conditions
/* -------------------------------------------------------------------------- */

.image-reasons-conditions {
  height: 80vh;
  min-height: 200px;
  max-height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -120px;
}

/* -------------------------------------------------------------------------- */

/*	14. Archives actualités
/* -------------------------------------------------------------------------- */

.archive-actualites {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
}

.archive-actualite {
  width: 29%;
  float: left;
  margin: 0 2% 50px 2%;
  background: #ffffff;
  border-radius: 12px;
}

.archive-actualites-heading {
  text-align: center;
  margin-bottom: 50px;
  color: var(--bbq-brown);
}

.archive-actualite-thumbnail {
  height: 200px;
  border-radius: 12px 12px 0 0;
  background-size: cover !important;
  background-position: center !important;
}

.archive-actualite-title {
  font-family: var(--flame-regular);
  font-size: 18px;
  color: var(--bbq-brown);
  padding: 20px 20px 5px;
}

.archive-actualite-date {
  font-family: var(--flame-regular);
  font-size: 13px;
  color: var(--flery-red);
  padding: 0 20px 20px;
  text-transform: capitalize;
}

.archive-actualite-excerpt {
  padding: 0 20px 20px 20px;
}

.archive-actualite-excerpt .read-more{
  margin-top: 15px;
  display: flex;
  color: var(--flery-red);
}

.read-more-arrow{
  font-size: 20px;
  margin-left: 5px;
}

@media screen and (max-width: 1000px) {
  .archive-actualite {
    width: 100%;
    margin: 0 0 50px 0;
    float: none;
  }
}

/* -------------------------------------------------------------------------- */

/*	15. Single post actualités
/* -------------------------------------------------------------------------- */

.single-actualite {
  width: 80%;
  max-width: 800px;
  margin: auto;
  margin-top: 150px;
  margin-bottom: 150px;
}

.single-actualite h2,
.single-actualite h3,
.single-actualite h4,
.single-actualite p {
  margin-bottom: 20px;
}

.single-actualite img {
  max-width: 100%;
  height: auto;
}

.single-actualite-title {
  text-align: center;
  color: var(--bbq-brown);
  margin-bottom: 10px;
}

.single-actualite-date {
  font-family: var(--flame-regular);
  font-size: 16px;
  color: var(--flery-red);
  padding: 0 20px 30px;
  text-transform: capitalize;
  text-align: center;
}

.single-actualite-thumbnail {
  height: 300px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-bottom: 30px;
}

.post__navigation {
  display: flex;
  justify-content: space-between;
  margin: 50px;
  position: absolute;
  width: 90%;
  max-width: 1000px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .single-actualite-thumbnail {
    background-size: contain !important;
    height: 200px;
  }
}

/* -------------------------------------------------------------------------- */

/*	16. Archives temoignages
/* -------------------------------------------------------------------------- */

.archive-temoignages {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
}

.archive-temoignage {
  width: 45%;
  float: left;
  margin: 0 2% 80px 2%;
}

.archive-temoignage-video iframe {
  width: 100%;
  min-height: 300px;
}

.archive-temoignage-heading {
  text-align: center;
  margin-bottom: 50px;
  color: var(--bbq-brown);
}

.archive-temoignage-title {
  font-family: var(--flame-regular);
  font-size: 18px;
  color: var(--bbq-brown);
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  .archive-temoignage {
    width: 100%;
    float: none;
    margin: 0 20px 40px 0;
  }

  .archive-temoignage-video iframe {
    width: 100%;
    height: auto;
  }
}

/* -------------------------------------------------------------------------- */

/*	17. Conditions d'accès
/* -------------------------------------------------------------------------- */

.conditions-acces-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.conditions-acces-row-1 {
  position: absolute;
  width: 100%;
  margin-top: -50px;
}

.conditions-acces-row-2 {
  margin-top: -100px;
}

.conditions-acces-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--bbq-brown);
}

.conditions-acces-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--mayo-egg-white);
}

.conditions-acces-subtitle {
  margin-bottom: 10px;
}

.conditions-acces-col {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .conditions-acces-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .conditions-acces-col {
    margin: 0 10px 20px 10px;
  }
}

/* -------------------------------------------------------------------------- */

/*	18. Etapes de recrutement
/* -------------------------------------------------------------------------- */

.etapes-recrutement-section {
  background-color: var(--bbq-brown);
  margin-top: -50px;
  padding: 100px 0;
  position: relative;
  height: 40vw;
  min-height: 700px;
}

.etapes-recrutement-title {
  max-width: 300px;
  font-size: 60px;
  color: var(--flaming-orange);
}

.etapes-recrutement-row-1 {
  width: 80%;
  margin: auto;
}

.etapes-recrutement-right-col {
  margin-left: auto;
  max-width: 65%;
}

.etapes-recrutement-texts {
  position: absolute;
  left: -80px;
  bottom: -5vw;
  padding: 100px;
  background: var(--mayo-egg-white);
  height: 30vw;
  border-radius: 50%;
  width: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etape-recrutement-text {
  width: 300px;
  margin-top: -150px;
  margin-left: 30px;
  font-size: 25px;
  display: none;
  color: var(--bbq-brown);
}

.etape-recrutement {
  font-size: 40px;
  cursor: pointer;
}

.etape-recrutement.orange {
  color: var(--flaming-orange);
}

.etape-recrutement.white {
  color: var(--mayo-egg-white);
}

.etape-recrutement.active {
  opacity: 1;
}

.etape-recrutement-text {
  display: none;
}

.etape-recrutement-text.active {
  display: block;
}

.etapes-recrutement-steps {
  text-align: right;
}

.etape-recrutement {
  margin-bottom: 20px;
  opacity: 0.5;
}

@media screen and (max-width: 1450px) {
  .etapes-recrutement-section {
    min-height: 650px;
  }

  .etapes-recrutement-texts {
    bottom: 0;
  }

  .etape-recrutement-text {
    margin-top: -60px;
  }
}

@media screen and (max-width: 1200px) {
  .etapes-recrutement-right-col {
    max-width: 55%;
  }

  .etape-recrutement {
    font-size: 35px;
  }

  .etape-recrutement-text {
    font-size: 18px;
  }
}

.etape-recrutement-text.active {
  display: block;
}

@media screen and (max-width: 1000px) {
  .etapes-recrutement-section {
    min-height: 700px;
  }

  .etapes-recrutement-right-col {
    max-width: 100%;
  }

  .etapes-recrutement-texts {
    width: 30vw;
    height: 30vw;
  }

  .etape-recrutement-text {
    font-size: 15px;
    margin-top: -90px;
  }
}

@media screen and (max-width: 800px) {
  .etapes-recrutement-title {
    font-size: 40px;
  }

  .etape-recrutement {
    font-size: 20px;
  }

  .etapes-recrutement-steps {
    text-align: left;
    margin-top: 30px;
  }

  .etapes-recrutement-texts {
    width: 30vw;
    height: 30vw;
  }
}

@media screen and (max-width: 500px) {
  .etapes-recrutement-texts {
    width: 50vw;
    height: 50vw;
  }
}

/* -------------------------------------------------------------------------- */

/*	19. Rejoindre l'aventure
/* -------------------------------------------------------------------------- */

.rejoindre-aventure-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -150px;
}

.rejoindre-aventure-row-1 {
  position: absolute;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rejoindre-aventure-title {
  margin-bottom: 20px;
  color: var(--mayo-egg-white);
  text-align: center;
}

.rejoindre-aventure-contact-text {
  color: var(--mayo-egg-white);
}

.rejoindre-aventure-contact-title,
.rejoindre-aventure-subtitle {
  color: #ffffff;
  color: var(--mayo-egg-white);
  margin-bottom: 20px;
  font-size: 20px;
}

.rejoindre-aventure-button {
  margin-top: 20px;
  margin-bottom: 40px;
  font-family: var(--flame-regular);
  font-size: 20px;
  background-color: var(--mayo-egg-white);
  width: 30%;
  min-width: 200px;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  color: var(--bbq-brown);
}

.rejoindre-aventure-contact-text {
  text-align: center;
  max-width: 600px;
  line-height: 120%;
}

/* -------------------------------------------------------------------------- */

/*	20. Page Candidater
/* -------------------------------------------------------------------------- */

.candidate-form-section {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.candidate-form-container {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.candidate-form-inner {
  display: flex;
  flex-direction: column;
}

.candidate-form-notice {
  color: var(--bbq-brown);
  margin-bottom: 30px;
}

.candidate-form-notice .important {
  color: var(--flaming-orange);
}

.candidate-form-notice a {
  font-size: 20px;
  color: var(--flaming-orange);
  text-decoration: underline;
}

.candidate-form-fields {
  display: flex;
  margin-bottom: 20px;
}

.candidate-form-field {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  font-family: var(--flame-regular);
  width: calc(50% - 40px);
}

.candidate-form-field label {
  margin-bottom: 10px;
  color: var(--bbq-brown);
}

.candidate-form-field label .required-field {
  color: var(--flery-red);
}

.form-message {
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-message-empty-fields,
.form-message-error {
  color: var(--flery-red);
}

.form-message-sent {
  color: #198737;
}

.candidate-form-field input {
  border: none;
  border-radius: 10px;
  height: 20px;
  margin-left: -8px;
  padding-left: 10px;
}

.candidate-form-field textarea {
  border: none;
  border-radius: 10px;
  height: 150px;
  resize: none;
  margin-left: -8px;
  padding-left: 8px;
  margin-right: -6px;
}

.candidate-form-field.textarea {
  width: 93%;
}

.candidate-form-field select {
  border: none;
  border-radius: 16px;
  height: 24px;
  margin-left: -8px;
  margin-right: -6px;
  padding: 0 32px 0 10px;
  font-family: var(--flame-regular);
  font-size: 12px;
  color: var(--bbq-brown);
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23502314' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.candidate-form-field.select {
  width: 93%;
  margin-bottom: 20px;
}

.candidate-form-field.submit {
  margin-top: 20px;
  background-color: var(--flery-red);
  color: var(--mayo-egg-white);
  border: none;
  border-radius: 10px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 20px 10px 20px;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  .candidate-form-field.textarea,
  .candidate-form-field.select {
    width: 90%;
  }
  .candidate-form-fields {
    display: block;
    margin: 0;
  }
  .candidate-form-field {
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: auto;
  }
}

/* -------------------------------------------------------------------------- */

/*	21. 404
/* -------------------------------------------------------------------------- */

.error-404-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 250px;
}

.error-404-message {
  line-height: 60px;
  margin-bottom: 30px;
  color: var(--bbq-brown);
}

.error-404-button-link {
  margin-top: 20px;
  background-color: var(--flery-red);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 20px 10px 20px;
  cursor: pointer;
}
