@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* COLORS */
/* SIZES */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  scroll-behavior: smooth;
  background-color: #000000;
  color: #000000;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  max-width: 100%;
  width: 1920px;
  margin: 0 auto;
}

header {
  background-color: #000000;
  color: #af1d22;
  padding: 50px 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  box-shadow: 0px 5px 20px 0px rgba(0, 128, 222, 0.1);
}
header .languages {
  display: flex;
  position: absolute;
  top: 50px;
  right: 80px;
  z-index: 1;
}
header .languages li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 35px;
  height: 25px;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
header .languages li:hover {
  transform: scale(1.1);
}
header .languages li a {
  display: block;
  width: 100%;
  height: 100%;
}
header .languages li img {
  display: none;
}
header .languages li.lang-item-fr {
  background-image: url(../img/fr.png);
}
header .languages li.lang-item-en {
  background-image: url(../img/gb.png);
}
header .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
header .logo a {
  display: block;
  font-size: 0;
  transition: all 0.3s ease;
}
header .logo a:hover {
  transform: scale(1.03);
}
header .logo img {
  max-width: 100%;
  width: 100%;
  max-height: 300px;
}
header .social {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 0 50px;
}
header .social a {
  margin-right: 30px;
  height: 30px;
  display: block;
  transition: all 0.3s ease;
}
header .social a:last-of-type {
  margin-right: 0;
}
header .social a i {
  height: 30px;
  max-width: 30px;
  font-size: 30px;
  color: #af1d22;
  transition: all 0.3s ease;
}
header .social a:hover {
  transform: scale(1.1);
}
header .social a:hover i {
  color: #fff;
}
header .anchors {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 0;
  width: 100%;
}
header .anchors i {
  color: #af1d22;
  font-size: 30px;
  display: none;
}
header .anchors i.fa-xmark {
  font-size: 40px;
  line-height: 30px;
}
header .anchors .anchor-element {
  padding: 0 15px;
  color: #af1d22;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 27px;
  line-height: 75%;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: pre;
}
header .anchors .anchor-element:first-of-type {
  padding: 0 15px 0 0;
}
header .anchors .anchor-element:last-of-type {
  padding: 0 0 0 15px;
}
header .anchors .anchor-element:hover, header .anchors .anchor-element.active {
  color: #fff;
}
header.breakpointOne {
  padding: 30px;
}
header.breakpointOne .languages {
  top: 30px;
  right: 30px;
}
header.breakpointOne .logo {
  width: 100%;
  max-width: 656px;
  margin: 0 auto;
}
header.breakpointOne .social {
  position: relative;
  top: 0;
  right: auto;
  margin: 0 auto 50px;
  width: 100%;
  justify-content: center;
}
header.breakpointOne .anchors {
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}
header.burgerBreakpoint {
  padding: 30px;
}
header.burgerBreakpoint .languages {
  top: 32px;
  right: 30px;
}
header.burgerBreakpoint .social {
  position: relative;
  top: 0;
  right: auto;
  margin: 0 auto 50px 0;
}
header.burgerBreakpoint .anchors {
  width: 100%;
  justify-content: center;
  margin-top: 50px;
  position: relative;
}
header.burgerBreakpoint .anchors i.fa-bars {
  display: block;
}
header.burgerBreakpoint .anchors i.fa-xmark {
  display: none;
}
header.burgerBreakpoint .anchors .anchors-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: -9999px;
  background-color: #000000;
  padding: 50px;
  width: 100vw;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
  opacity: 0;
}
header.burgerBreakpoint .anchors .anchors-inner .anchor-element {
  padding: 20px 0;
  color: #fff;
  font-size: 23px;
}
header.burgerBreakpoint .anchors.open .anchors-inner {
  top: 60px;
  opacity: 1;
  width: 100vw;
}
header.burgerBreakpoint .anchors.open i.fa-bars {
  display: none;
}
header.burgerBreakpoint .anchors.open i.fa-xmark {
  display: block;
}

main {
  display: flex;
  flex: 1;
  background-color: #fff;
}
main h1 {
  color: #af1d22;
  font-weight: 900;
  font-size: 50px;
  text-transform: uppercase;
  max-width: 100%;
  width: 1920px;
  padding: 0 50px;
}
main p {
  max-width: 100%;
  width: 1200px;
  padding: 0 50px;
  margin: auto;
}
main article {
  width: 100%;
  background-color: #fff;
}
main .wpcf7 {
  max-width: 100%;
  width: 1200px;
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
}
main .wpcf7 form {
  max-width: 100%;
  width: 900px;
}
main .wpcf7 form p {
  padding: 0;
  display: inline-block;
  text-align: center;
}
main .wpcf7 form p input,
main .wpcf7 form p textarea {
  max-width: 100%;
  width: 900px;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  background-color: #5a0000;
  border: none;
  border-radius: 10px;
  color: #fff;
}
main .wpcf7 form p input::-moz-placeholder, main .wpcf7 form p textarea::-moz-placeholder {
  font-style: italic;
  color: #fff;
  opacity: 0.7;
}
main .wpcf7 form p input::placeholder,
main .wpcf7 form p textarea::placeholder {
  font-style: italic;
  color: #fff;
  opacity: 0.7;
}
main .wpcf7 form p input.wpcf7-submit,
main .wpcf7 form p textarea.wpcf7-submit {
  width: auto;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #5a0000;
  color: #fff;
  border: none;
  font-size: 20px;
  transition: all 0.3s ease;
}
main .wpcf7 form p input.wpcf7-submit:hover,
main .wpcf7 form p textarea.wpcf7-submit:hover {
  background-color: #5f9120;
  color: #fff;
}
main .wpcf7 form p .wpcf7-spinner {
  margin: 0 0 0 20px;
  position: relative;
  top: 4px;
  display: none;
  visibility: visible;
}
main .wpcf7 form .wpcf7-not-valid-tip {
  margin: 10px 0;
}
main .wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: 0;
}
main .wpcf7 form.submitting .wpcf7-spinner {
  display: inline-block;
}
main .wp-block-embed.is-type-video {
  max-width: 100%;
  width: 1200px;
  margin: 0 auto 50px;
  padding: 0 50px;
}
main .wp-block-embed.is-type-video:last-of-type {
  margin-bottom: 0;
}
main .wp-block-embed.is-type-video iframe {
  width: 100%;
}
main .youtube-videos-wrapper {
  max-width: 100%;
  width: 1200px;
  margin: 0 auto 50px;
  padding: 0 50px;
}

footer {
  background-color: #000000;
  color: #af1d22;
  padding: 80px 30px;
  box-shadow: 0px -5px 20px 0px rgba(0, 128, 222, 0.1);
}
footer .footer-inner {
  text-align: center;
}
footer .social {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
footer .social a {
  margin-right: 30px;
  height: 30px;
  display: block;
  transition: all 0.3s ease;
}
footer .social a:last-of-type {
  margin-right: 0;
}
footer .social a i {
  height: 30px;
  max-width: 30px;
  font-size: 30px;
  color: #af1d22;
  transition: all 0.3s ease;
}
footer .social a:hover {
  transform: scale(1.1);
}
footer .social a:hover i {
  color: #fff;
}

.scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999999;
  background-color: #af1d22;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
}
.scrollToTop.hidden {
  display: none;
}
.scrollToTop svg {
  height: 30px;
}
.scrollToTop svg path {
  fill: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.scrollToTop:hover {
  background-color: #5a0000;
}

@media (max-width: 580px) {
  header.burgerBreakpoint .social {
    justify-content: flex-start;
  }
}