/*
Theme Name: DontNod
Theme URI: https://kanbios.fr/
Author: Kanbios
Author URI: https://kanbios.fr/
Description: Theme kanbios
Requires at least: WordPress 5.9
Version: 1.0
*/

/* General Animation */

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes fade_in {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

.fade-in {
  opacity: 0;
  -webkit-animation: 2s fade_in forwards;
  animation: 2s fade_in forwards;
}

.delay-02 {
  animation-delay: 0.2s;
}

.delay-04 {
  animation-delay: 0.4s;
}

.delay-06 {
  animation-delay: 0.6s;
}

.delay-08 {
  animation-delay: 0.8s;
}

.delay-10 {
  animation-delay: 1s;
}

.delay-12 {
  animation-delay: 1.2s;
}

.delay-15 {
  animation-delay: 1.5s;
}

.delay-18 {
  animation-delay: 1.8s;
}

.delay-20 {
  animation-delay: 2s;
}

.excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* GENERAL */

:root {
  --primary: #fff;
  --black: #171618;
  --background-card: #202127;
  --gradient-1: #449996;
  --gradient-2: #01A7A2;
}

@media (max-width: 992px) {
  :root {
    overflow-x: hidden;
  }
}

@media (min-width: 992px) {
  .c-scrollbar_thumb {
    background: var(--gradient-1); 
    width: 10px;
  }
}

body {
  background-color: var(--black);
  color: var(--primary);
  font-family: "Author-Variable";
  overflow-x: hidden;
}
[data-scroll] {
  will-change: transform, opacity;
}

.text-gradient {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.color-gradient-1 {
  color: var(--gradient-1);
}

.color-gradient-2 {
  color: var(--gradient-2);
}

p,
li {
  opacity: 0.8;
  font-size: 18px;
}

.btn {
  border-radius: 0;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.no-btn {
  border: none;
  background-color: transparent;
}

.no-btn:hover {
  border: none;
  background-color: transparent;
}

.no-btn:focus {
  box-shadow: none;
}

.btn-primary {
  background: var(--gradient-1);
  background: -moz-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--gradient-1)",endColorstr="var(--gradient-2)",GradientType=1);
  border-radius: 0;
  transition: 0.5s;
  border: none;
  position: relative;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.5s;
  cursor: pointer;
}

.btn-primary span {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
  transition: 0.5s;
}

.btn-primary:hover::before {
  opacity: 0;
  transition: 0.5s;
}

.btn-primary:hover span {
  background: #fff;
  background: -webkit-linear-gradient(to right, #fff 0%, #fff 100%);
  background: -moz-linear-gradient(to right, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: 0.5s;
  letter-spacing: 0.03em;
}

.btn-outline-primary {
  transition: 0.5s;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-image: linear-gradient(to right, var(--gradient-1), var(--gradient-2))
    1;
  filter: brightness(200%) saturate(0%) contrast(1000%);
  -webkit-filter: brightness(200%) saturate(0%) contrast(1000%);
  -moz-filter: brightness(200%) saturate(0%) contrast(1000%);
  transition: 0.5s;
}

.btn-outline-primary:hover {
  filter: brightness(100%) saturate(100%) contrast(100%);
  -webkit-filter: brightness(100%) saturate(100%) contrast(100%);
  -moz-filter: brightness(100%) saturate(100%) contrast(100%);
  transition: 0.5s;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

.btn-link {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0;
}

.btn-link::after {
  content: "\F135";
  font-family: "bootstrap-icons";
  vertical-align: -0.3em;
  font-size: 21px;
  transition: 0.5s;
}

.btn-link.back-arrow::after {
  content: "";
}

.btn-link.back-arrow::before {
  content: "\F12F";
  font-family: "bootstrap-icons";
  vertical-align: -0.3em;
  font-size: 21px;
  transition: 0.5s;
}

.btn-link:hover {
  background: #fff;
  background: -webkit-linear-gradient(to right, #fff 0%, #fff 100%);
  background: -moz-linear-gradient(to right, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
  transition: 0.5s;
}

.btn-link:hover::after {
  padding-left: 10px;
  transition: 0.5s;
}

.btn-link.back-arrow:hover::after {
  padding-left: 0px;
  padding-right: 10px;
  transition: 0.5s;
}

.btn-filter {
  background-color: transparent;
  border: none;
  color: var(--primary);
  transition: 0.5s;
}

.btn-filter:hover {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
  background: var(--gradient-1);
  background: -moz-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--gradient-1)",endColorstr="var(--gradient-2)",GradientType=1);
  color: var(--primary);
}

.btn-filter.active {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
  background: var(--gradient-1);
  background: -moz-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--gradient-1)",endColorstr="var(--gradient-2)",GradientType=1);
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  font-family: "GeneralSans-Variable";
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

h1 {
  font-size: 48px;
  line-height: 65px;
}

h2,
.h2 {
  font-size: 30px;
  line-height: 41px;
}

h3 {
  font-size: 24px;
  line-height: 32px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
}

a,
p {
  color: var(--primary);
  margin-bottom: 0;
}

.text-opacity {
  opacity: 0.7;
}

.bg-black {
  background-color: var(--black) !important;
}

.object-fit-cover {
  object-fit: cover;
}

.form-select option {
  background-color: #232224;
}

.slick-dots li.slick-active button:before {
  color: var(--gradient-1);
  opacity: 1;
}

.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.grecaptcha-badge { 
  visibility: hidden;
}

/* HEADER */

.overflowHidden {
  overflow: hidden;
  height: 100vh;
}

header {
  z-index: 1000 !important;
  position: sticky;
  top: 0;
  width: 100%;
}

.navbar li {
  opacity: 1 !important;
}

#navabar-img-menu img {
  position: static;
  width: 359px;
  background: radial-gradient(
        42.24% 47.36% at 50% 50%,
        rgba(0, 0, 0, 0) 28.12%,
        #171618 100%
      )
      /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */,
    url(TM-Screenshot-14.png);
  order: 0;
  margin: 8px 0px;
}

@media (max-width: 992px) {
  #primary-menu li {
    padding-bottom: 3em;
  }

  #menu-secondaire {
    padding-bottom: 100vh;
  }
  header {
    position: fixed;
  }
}

header .navbar-toggler {
  border: none !important;
}

header .navbar-toggler .barre {
  width: 27px;
  height: 2px;
  display: block;
  margin-bottom: 7px;
  border-radius: 20px;
  background-color: #fff;
  opacity: 1;
  transition: 0.4s;
  transform: rotate(0deg);
}

header .barre:nth-child(3) {
  margin-bottom: 0;
}

header .navbar-toggler[aria-expanded="true"] .barre:nth-child(1) {
  transform: rotate(45deg);
  transition: 0.4s;
}
header .navbar-toggler[aria-expanded="true"] .barre:nth-child(2) {
  opacity: 0;
  transition: 0.4s;
}
header .navbar-toggler[aria-expanded="true"] .barre:nth-child(3) {
  transform: rotate(-45deg);
  transition: 0.4s;
  margin-top: -18px;
}

header .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

header .nav-link {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 0 20px !important;
  letter-spacing: 0.05em;
  position: relative;
}

header .nav-link:hover {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .nav-link.active {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .nav-link::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 0%;
  left: 50%;
  height: 2px;
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  transition: 0.5s;
  transition-timing-function: ease;
}

header .nav-link:hover::after {
  width: 70%;
  left: 15%;
  transition: 0.5s;
  transition-timing-function: ease;
}

header .nav-link.active::after {
  width: 70%;
  left: 15%;
  transition: 0.5s;
  transition-timing-function: ease;
}

header .menu-secondaire {
  margin: 12px 0;
}

header .menu-secondaire li {
  list-style: none;
}

header .menu-secondaire li a {
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: 0.5s;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  text-decoration: none;
  font-family: "GeneralSans-Variable";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-image: linear-gradient(to right, var(--gradient-1), var(--gradient-2))
    1;
  filter: brightness(200%) saturate(0%) contrast(1000%);
  -webkit-filter: brightness(200%) saturate(0%) contrast(1000%);
  -moz-filter: brightness(200%) saturate(0%) contrast(1000%);
  transition: 0.5s;
}

header .menu-secondaire li a:hover {
  filter: brightness(100%) saturate(100%) contrast(100%);
  -webkit-filter: brightness(100%) saturate(100%) contrast(100%);
  -moz-filter: brightness(100%) saturate(100%) contrast(100%);
  transition: 0.5s;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

/* HOMEPAGE */

#carousel_games {
  position: relative;
  z-index: 3;
}

#dontnod {
  position: relative;
  z-index: 2;
}

#intro {
  position: relative;
  z-index: 2;
  height: 600px;
}

#intro .wp-video {
  width: 100% !important;
  max-width: 1920px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#intro .image_intro_field_container {
  width: 100%;
  max-width: 1920px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 580px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s;
}
#intro .image_intro_field {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#intro .mejs-container {
  background-color: var(--black);
  height: 600px !important;
}

#intro .mejs-controls {
  display: none;
}

#intro .wp-video-shortcode video,
#intro video.wp-video-shortcode {
  max-width: 100%;
  display: block;
  align-items: end;
  float: right;
  width: 100% !important;
  height: 590px !important;
  margin-bottom: 10px;
  object-fit: cover;
  object-position: top;
}

.overlay-intro-OLD {
  z-index: 2;
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(
      43.88% 43.95% at 57.19% 35.3%,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(33, 55, 249, 0.13) 32.81%,
      rgba(33, 55, 249, 0) 100%
    ),
    radial-gradient(
      55.12% 48.99% at 78.96% 31.29%,
      rgba(0, 0, 0, 0) 0%,
      rgba(5, 5, 5, 0) 55.7%,
      #171518 100%
    );

  transition: 1s;
}

.overlay-intro {
  z-index: 2;
  width: 100%;
  max-width: 1922px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(
      43.88% 43.95% at 57.19% 35.3%,
      /* rgba(240, 0, 231, 0.2) 0%, */
      rgba(33, 55, 249, 0.13) 32.81%,
      rgba(33, 55, 249, 0) 100%
    ),
    radial-gradient(
      85.12% 58.99% at 38.96% 31.29%,
      rgba(0, 0, 0, 0) 0%,
      rgba(5, 5, 5, 0) 25.7%,
      #171518 100%
    );
  transition: 1s;
}

@media (min-width: 1920px) {
  .overlay-intro {
    max-width: 1922px;
    background: radial-gradient(
        43.88% 43.95% at 57.19% 35.3%,
        /* rgba(240, 0, 231, 0.2) 0%, */
        rgba(33, 55, 249, 0.13) 32.81%,
        rgba(33, 55, 249, 0) 100%
      ),
      radial-gradient(
        85.12% 58.99% at 38.96% 31.29%,
        rgba(0, 0, 0, 0) 0%,
        rgba(5, 5, 5, 0) 25.7%,
        #171518 100%
      ),
      linear-gradient(
        90deg,
        #171618 0%,
        rgb(12 12 12 / 48%) 19.47%,
        rgba(0, 0, 0, 0) 31.16%
      ),
      linear-gradient(
        270deg,
        #171618 0%,
        rgba(12, 12, 12, 0.48) 19.47%,
        rgba(0, 0, 0, 0) 31.16%
      );
  }
}

#intro .content_intro {
  position: relative;
  z-index: 3;
}

#intro .content_intro .row {
  height: 500px;
}

.text-intro-home {
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 32px;
}

.row-carousel {
  width: 100vw;
  position: relative;
  margin-top: 100px;
  left: 0%;
}

/* the slides */
.carousel-games .slick-slide {
  margin: 0 10px;
  transition: 0.5s;
  position: relative;
}

/* the parent */
.carousel-games .slick-list {
  margin: 0 -10px;
  padding: 40px 0;
  overflow: visible;
}

.carousel-games .slick-list.draggable::before {
  content: "";
  position: absolute;
  right: -25vw;
  width: 25vw;
  height: 300px;
  background: rgb(23, 22, 24);
  background: -moz-linear-gradient(
    -90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  background: -webkit-linear-gradient(
    -90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  background: linear-gradient(
    -90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#171618",endColorstr="#171618",GradientType=1);
  z-index: 1;
  top: 0px;
}

.carousel-games .slick-list.draggable::after {
  content: "";
  position: absolute;
  left: -25vw;
  width: 25vw;
  height: 300px;
  background: rgb(23, 22, 24);
  background: -moz-linear-gradient(
    90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(23, 22, 24, 1) 20%,
    rgba(23, 22, 24, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#171618",endColorstr="#171618",GradientType=1);
  z-index: 1;
  top: 0px;
}

.carousel-games .item-games {
  width: 295px;
  height: 225px;
  display: block;
  transition: 0.3s;
}

.carousel-games .img-item-games {
  cursor: pointer;
  height: 225px;
  position: relative;
  transition: 0.6s;
  /* z-index: -5; */
}

.carousel-games .item-games-card-hover {
  /* display: none; */
  transform: translate(-15%, -10%);
  visibility: collapse;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 2;
}

.carousel-games .card-img-hover .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-games .item-games[tabindex="0"]:hover .img-item-games{
  display: none;
}



.carousel-games .item-games[tabindex="0"]:hover .item-games-card-hover {
  /* display: block; */
  width: 440px;
  transition: 0.8s;
  transform: translate(-15%, -25%);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:992px) {

  .carousel-games .item-games:hover .img-item-games{
    display: block;
    transform: scale(0.97);
    transition: 0.6s;
    opacity: 0.8;
  }
  .carousel-games .item-games-card-hover {
    display: none;
  }
  .carousel-games .item-games[tabindex="0"]:hover .img-item-games {
    display: block;
  }
}

/* .first-slide-is-active111 {
  margin: 0 !important;
  --largeurscreen: 100vw;
  --largeurcontainer: 1140px;
  --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
  padding-left: calc(var(--margauto) / 2) !important;
  transition: 0.5s;
}
.first-slide-is-active111 .cover-logo {
  --largeurscreen: 100vw;
  --largeurcontainer: 1140px;
  --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
  margin-left: calc(var(--margauto) / 2) !important;
  transition: 0.5s;
}

@media screen and (max-width: 992px) {
  .first-slide-is-active111 {
    --largeurscreen: 100vw;
    --largeurcontainer: 960px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    padding-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
  .first-slide-is-active111 .cover-logo {
    --largeurscreen: 100vw;
    --largeurcontainer: 960px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .first-slide-is-active111 {
    --largeurscreen: 100vw;
    --largeurcontainer: 720px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    padding-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
  .first-slide-is-active111 .cover-logo {
    --largeurscreen: 100vw;
    --largeurcontainer: 720px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}
@media screen and (max-width: 576px) {
  .first-slide-is-active111 {
    --largeurscreen: 100vw;
    --largeurcontainer: 540px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    padding-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
  .first-slide-is-active111 .cover-logo {
    --largeurscreen: 100vw;
    --largeurcontainer: 540px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}

@media screen and (min-width: 1400px) {
  .first-slide-is-active111 {
    --largeurscreen: 100vw;
    --largeurcontainer: 1320px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    padding-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
  .first-slide-is-active111 .cover-logo {
    --largeurscreen: 100vw;
    --largeurcontainer: 1320px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}

.first-slide-is-active112 {
  margin: 0 !important;
  --largeurscreen: 100vw;
  --largeurcontainer: 1140px;
  --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
  margin-left: calc(var(--margauto) / 2) !important;
  transition: 0.5s;
}

@media screen and (max-width: 992px) {
  .first-slide-is-active112 {
    --largeurscreen: 100vw;
    --largeurcontainer: 960px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .first-slide-is-active112 {
    --largeurscreen: 100vw;
    --largeurcontainer: 720px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}
@media screen and (max-width: 576px) {
  .first-slide-is-active112 {
    --largeurscreen: 100vw;
    --largeurcontainer: 540px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
}

@media screen and (min-width: 1400px) {
  .first-slide-is-active112 {
    --largeurscreen: 100vw;
    --largeurcontainer: 1320px;
    --margauto: calc(var(--largeurscreen) - var(--largeurcontainer));
    margin-left: calc(var(--margauto) / 2) !important;
    transition: 0.5s;
  }
} */

.carousel-games .cover {
  width: 295px;
  height: 225px;
  object-fit: cover;
  filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.1));
  border-radius: 16px;
}

.carousel-games .cover-logo {
  position: absolute;
  width: 118px;
  height: 65px;
  left: 10px;
  bottom: 10px;
  object-fit: contain;
}

.next-arrow {
  background-color: transparent;
  border: none;
}
.prev-arrow {
  background-color: transparent;
  border: none;
}

.prev-arrow.slick-disabled,
.next-arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
}

.next-arrow svg,
.prev-arrow svg {
  filter: brightness(200%) saturate(0%) contrast(1000%);
  -webkit-filter: brightness(200%) saturate(0%) contrast(1000%);
  -moz-filter: brightness(200%) saturate(0%) contrast(1000%);
  transition: 0.5s;
}

.next-arrow:hover svg {
  filter: brightness(100%) saturate(100%) contrast(100%);
  -webkit-filter: brightness(100%) saturate(100%) contrast(100%);
  -moz-filter: brightness(100%) saturate(100%) contrast(100%);
  transition: 0.5s;
}

.prev-arrow svg:hover {
  filter: brightness(100%) saturate(100%) contrast(100%);
  -webkit-filter: brightness(100%) saturate(100%) contrast(100%);
  -moz-filter: brightness(100%) saturate(100%) contrast(100%);
  transition: 0.5s;
}

.contentitem {
  position: absolute;
  /* top: 60%;
  left: 50%;
  width: 150%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s; */
} 


.card-footer {
  border-top: 0px;
  background-color: transparent;
}

.contentitem .card {
  box-shadow: inset 0px 0px 40px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background-color: var(--background-card);
  transition: 0.3s;
}

.contentitem .card .card-img-top {
  width: 100%;
  height: 284px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.contentitem .card-img-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 47%;
  transform: translate(-50%);
  width: 60px;
  -moz-box-shadow: 0px 0px 25px #ccc;
  -webkit-box-shadow: 0px 0px 25px #ccc;
  box-shadow: 0px 0px 25px #ccc;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.wp-video {
  max-width: 100%;
}

.label-original p {
  line-height: 0;
}

.label-original img {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.badge-original {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  width: 40px;
}

.item-games .mejs-container {
  background-color: var(--background-card);
  height: 284px !important;
  border-radius: 16px 16px 0 0;
}

.item-games .mejs-controls {
  display: none !important;
  visibility: hidden !important;
}

.item-games .mejs-container:hover .mejs-controls {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.item-games .wp-video-shortcode video,
.item-games video.wp-video-shortcode {
  max-width: 100%;
  width: 100% !important;
  height: 284px !important;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
  text-decoration: none;
}

a[rel="tag"] {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
  text-decoration: none;
}

.card-img-hover {
  height: 280px;
}
.card-news .card-img-hover {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
}

.card-news .card-img-hover .card-img-top {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1400px) {
  .card-news .card-img-hover {
    height: 215px;
  }
  .card-news .card-img-hover .card-img-top {
    width: 100%;
    height: 215px;
    object-fit: cover;
    object-position: center;
  }
}

.playonyoutube {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  transition: 0.3s;
  opacity: 0.7;
}

.playonyoutube:hover {
  opacity: 1;
  transition: 0.3s;
  filter: drop-shadow(5px 5px 10px rgba(255, 255, 255, 0.44));
}

.link-card-hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.container-studio {
  position: relative;
  z-index: 3;
}

.container-studio div div {
  padding-left: 0;
  padding-right: 0;
}

.container-studio h3 {
  margin: 0 16px 16px;
}

.img-studio {
  width: 60%;
  height: 440px;
  margin: 5px 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: -3%;
  z-index: -1;
}

.overlay-img-studio {
  width: 60%;
  height: 450px;
  position: absolute;
  top: 0;
  left: -3%;
  z-index: 0;
  background: radial-gradient(
    47.21% 49.19% at 46.34% 50.1%,
    rgba(0, 0, 0, 0) 0%,
    rgba(5, 5, 5, 0) 17.01%,
    #171618 100%
  );
  transition: 0.5s;
}

.overlay-img-studio-hover {
  opacity: 0;
  transition: ease-in-out 2s;
}

@media (max-width: 992px) {
  .overlay-img-studio {
    position: static;
    display: none;
  }

  .img-studio {
    width: 100%;
    left: 0;
  }
}

.card {
  background-color: var(--background-card);
}

.card-small {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
  border-radius: 9px;
}

.card-small::before {
  content: "";
  position: absolute;
  transition: 0.5s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9px;
  padding: 1px;
  background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: brightness(20%) saturate(0%);
  -webkit-filter: brightness(20%) saturate(0%);
  -moz-filter: brightness(20%) saturate(0%);
}

.card-small:hover::before {
  transition: 0.5s;
  filter: brightness(100%) saturate(100%);
  -webkit-filter: brightness(100%) saturate(100%);
  -moz-filter: brightness(100%) saturate(100%);
}

.card-small:hover {
  transition: 0.5s;
  box-shadow: 0px 4px 54px rgba(123, 97, 255, 0.12);
}

.card-small img {
  transition: 0.5s;
  opacity: 0.6;
}

.card-small:hover img {
  transition: 0.5s;
  opacity: 1;
}

.card-news {
  border-radius: 16px;
  padding: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
  position: relative;
}

.card-news::before {
  content: "";
  position: absolute;
  transition: 0.5s;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: brightness(20%) saturate(0%);
  -webkit-filter: brightness(20%) saturate(0%);
  -moz-filter: brightness(20%) saturate(0%);
}

.card-news:hover::before {
  transition: 0.5s;
  filter: brightness(100%) saturate(100%);
  -webkit-filter: brightness(100%) saturate(100%);
  -moz-filter: brightness(100%) saturate(100%);
}

[data-scroll-class="appear"] {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.appear {
  opacity: 1;
  transform: translateY(0px);
  transition: 1s;
}

.card-news .card-img-top {
  border-radius: 16px !important;
}

.card-news .excerpt {
  opacity: 0.7;
}

.tag-list {
  padding: 0;
  margin: 0;
}

.tag-list li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}

.card-news a {
  text-decoration: none;
}

.card-news:hover {
  transition: 0.3s;
  box-shadow: 0px 4px 54px rgba(123, 97, 255, 0.12);
}

.card-news a:hover {
  text-decoration: none;
  color: inherit;
}

.card-news-ajax {
  opacity: 1;
  transform: translateY(0px);
  transition: 1s;
}

input.radiobtn {
  display: none;
}
#response {
  min-height: 500px;
}

.fondu {
  width: 100%;
  padding-top: 0px;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 20, 0) 0%,
    #171618 66.08%,
    #171618 66.08%
  );
  position: relative;
  z-index: 4;
  margin-top: -60px;
  margin-bottom: 80px;
}

/* FOOTER */

.bg-dark-footer-1 {
  background: #1f1d20;
}
.bg-dark-footer-2 {
  background: #242226;
}

.social-link {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}

footer ul {
  margin: 0 !important;
  padding: 0 !important;
}

footer ul li {
  list-style: none;
  margin-bottom: 5px;
}

footer ul li a {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  text-decoration: none;
}

footer a:hover {
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sib-email-area input[type="email"] {
  width: 60%;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 16px;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
}

.sib-email-area input[type="email"]:focus-visible {
  outline: none;
}

.sib-email-area input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;

  border-radius: 1px;
  height: 18px;
  width: 18px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  bottom: -5px;
}

.sib-email-area input[type="checkbox"]:hover {
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid var(--gradient-2);
}

.sib-email-area input[type="checkbox"]:checked {
  background: linear-gradient(90deg, var(--gradient-1) 0%, var(--gradient-2) 100%),
    url("/images/check.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0px;
  position: relative;
}

.sib-email-area button[type="submit"] {
  width: 39%;
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 24px 30px 24px 0px;
  color: #fff;
  margin-left: -3px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sib-email-area button[type="submit"]::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 20px;
  margin-left: 10px;
  background-image: url(images/arrow-right-white.svg);
  background-repeat: no-repeat;
  transition: 0.5s;
}

.sib-email-area button[type="submit"]:hover::after {
  transform: translateX(5px);
  transition: 0.5s;
}

#dropdownFooterMenuLink {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 140px;
  height: 44px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  gap: 32px;
}

#dropdownFooterMenuLink:hover {
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid var(--gradient-2);
}

footer .dropdown-menu {
  background-color: #232224;
}
footer .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #fff;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
/* SINGLE GAMES */

#intro_games .mejs-overlay-play {
  display: none;
}

.infos-intro-games .cover-logo {
  width: 300px;
  height: 150px;
  object-fit: contain;
  object-position: left;
}

.infos-intro-games {
  position: absolute;
  width: 100%;
  padding: 30px 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.image-games-intro-container {
  max-width: 1650px;
  margin: 0 auto;
  height: 100%;
}
.image-games-intro {
  width: 100%;
  height: 597px;
  object-fit: cover;
  object-position: top;
}

.overlay-video-games {
  position: absolute;
  width: 100%;
  max-width: 1650px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  background: linear-gradient(
    360deg,
    #171618 0%,
    rgb(12 12 12 / 48%) 19.47%,
    rgba(0, 0, 0, 0) 31.16%
  );
  bottom: 0;
  z-index: 1;
}

@media (min-width: 1920px) {
  .overlay-video-games {
    background: linear-gradient(
        360deg,
        #171618 0%,
        rgb(12 12 12 / 48%) 19.47%,
        rgba(0, 0, 0, 0) 31.16%
      ),
      linear-gradient(
        90deg,
        #171618 0%,
        rgb(12 12 12 / 48%) 19.47%,
        rgba(0, 0, 0, 0) 31.16%
      ),
      linear-gradient(
        270deg,
        #171618 0%,
        rgb(12 12 12 / 48%) 19.47%,
        rgba(0, 0, 0, 0) 31.16%
      );
  }
}

.content-intro-games .wp-video {
  width: 100% !important;
  max-width: 1650px;
  margin: 0 auto;
}

.content-intro-games video {
  width: 100% !important;
  height: 597px !important;
  object-fit: cover;
  object-position: top;
}

.content-intro-games .mejs-container {
  background-color: var(--black);
  height: 600px !important;
  width: 100%;
}

.content-intro-games .mejs-controls {
  display: none;
}

.seperate-section {
  box-shadow: inset 0px 0px 40px rgba(255, 255, 255, 0.1);
  padding: 80px 0;
}

.list-games-archive .card {
  height: 400px;
  border-radius: 32px;
  transition: 0.5s;
  padding: 24px;
}

.list-games-archive .card:hover {
  background: linear-gradient(
    90.13deg,
    rgba(23, 22, 24, 0.8) 7.62%,
    rgba(23, 22, 24, 0.256) 54.17%
  );
  transition: 0.5s;
}

.list-games-archive .card-img-top {
  position: absolute;
  width: 100%;
  height: 400px;
  border-radius: 32px;
  object-fit: cover;
  top: 0;
  left: 0;
}

.list-games-archive .content-card {
  z-index: 4;
  position: absolute;
  bottom: 30px;
  width: 92%;
  transition: 0.5s;
}

.overlay-list-games {
  position: absolute;
  width: 100%;
  height: 101%;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(
    25deg,
    rgba(23, 22, 24, 0.8) 28.62%,
    rgba(23, 22, 24, 0.256) 70.17%
  );
  border-radius: 32px;
  opacity: 0;
  transition: 0.5s;
}

.list-games-archive .cover-logo {
  width: 120px;
  margin-bottom: 18px;
  transform: translateY(50px);
  transition: 0.8s;
}

.list-games-archive .logo-plateforme {
  width: 25px;
  height: 30px;
  margin-left: 5px;
}

.list-games-archive .card:hover .cover-logo {
  transform: translateY(0px);
  transition: 0.2s;
}

.list-games-archive .excerpt {
  opacity: 0.7;
  width: 70%;

  height: 0px;
  transition: 0.5s;
}

.list-games-archive .card:hover .excerpt {
  height: 75px;
  transition: 0.5s;
}

.list-games-archive .card .btn-discover .btn-link {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(20px);
}

.list-games-archive .card:hover .btn-discover .btn-link {
  opacity: 1;
  transition: 0.5s;
  transform: translateY(0px);
}
.list-games-archive .card:hover .overlay-list-games {
  opacity: 1;
  transition: 0.5s;
}

.list-games-archive .mejs-controls {
  display: none;
}

.list-games-archive .mejs-overlay-play {
  display: none;
}

.list-games-archive .video-card-list-games {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
}

.list-games-archive .wp-video {
  width: 100% !important;
  height: 100% !important;
}

.list-games-archive .mejs-container {
  clear: both;
  max-width: 100%;
  width: 100% !important;
  height: 100% !important;
  border-radius: 32px;
}

.list-games-archive video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 32px;
}

.list-games-archive .card:hover .video-card-list-games {
  opacity: 1;
  transition: 0.5s;
}

@media (max-width: 992px) {
  .list-games-archive .card {
    height: 700px;
    border-radius: 32px;
    transition: 0.5s;
    padding: 24px;
  }
  .list-games-archive .cover-logo {
    width: 120px;
    margin-bottom: 18px;
    transform: none;
    transition: 0.8s;
  }
  .list-games-archive .excerpt {
    opacity: 0.7;
    width: 70%;
    height: 130px;
    transition: 0.5s;
  }
}

.filtergames .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filtergames .form-select:focus {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

.filtergames .btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.filtergames .btn:focus {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

.filtergames .btn.active {
  background: var(--gradient-1);
  background: -moz-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--gradient-1)",endColorstr="var(--gradient-2)",GradientType=1);
  border-radius: 0;
  transition: 0.5s;
  border: none;
  position: relative;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
}

.filtergames .btn.active span {
  -webkit-text-fill-color: #fff;
  color: #fff;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.filtergames .btn.active:hover {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
  transition: 0.5s;
}

.filtergames .btn.active:hover span {
  background: #fff;
  background: -webkit-linear-gradient(to right, #fff 0%, #fff 100%);
  background: -moz-linear-gradient(to right, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: 0.5s;
  letter-spacing: 0.03em;
}

.bandeau_intro {
  height: 600px;
  width: 100%;
  background-position: center;
  background-size: cover;
  transition: 0.5s;
}

.bandeau_intro.single-blog-intro {
  height: 100%;
}

.overlay-bandeau {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -2px;
  z-index: 0;
  background: linear-gradient(
    0deg,
    #171618 0%,
    rgba(10, 9, 10, 0.31) 53.78%,
    rgba(0, 0, 0, 0) 79.47%
  );
}

.content-bandeau {
  z-index: 1;
  position: relative;
  transform: translate(0%, 0%);
  transition: 0.5s;
}

.text-bandeau-intro {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  opacity: 0.8;
}

.btn-bandeau {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  transition: 0.5s;
  text-transform: uppercase;
  background: var(--gradient-1);
  background: -webkit-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -moz-linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    to right,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(200%) saturate(0%) contrast(1000%);
  -webkit-filter: brightness(200%) saturate(0%) contrast(1000%);
  -moz-filter: brightness(200%) saturate(0%) contrast(1000%);
}

.btn-bandeau:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
  transition: 0.5s;
  color: #fff;
  filter: brightness(100%) saturate(100%) contrast(100%);
  -webkit-filter: brightness(100%) saturate(100%) contrast(100%);
  -moz-filter: brightness(100%) saturate(100%) contrast(100%);
  transform: translateY(10px);
}

.btn-bandeau:hover svg {
  transform: translateY(10px);
  transition: 0.5s;
}

.nav-box {
  background-color: var(--black);
  border-radius: 8px;
}

.nav-box img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.7;
  transition: 0.5s;
}

span.txt-nav {
  position: absolute;
  transform: translate(-50%);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.5s;
  z-index: 2;
}

.nav-box.previous span {
  width: 100px;
  left: 50%;
  top: 20%;
}

.nav-box.next span {
  width: 70px;
  left: 58%;
  top: 20%;
}

span.txt-nav i {
  padding-top: 5px;
}

.nav-box a:hover {
  text-decoration: none;
  color: #fff;
}

.nav-box a:hover img {
  opacity: 1;
  transition: 0.5s;
}

.nav-box.previous a:hover span.txt-nav {
  left: 45%;
  transition: 0.5s;
}
.nav-box.next a:hover span.txt-nav {
  left: 55%;
  transition: 0.5s;
}

.img-related {
  width: 100%;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
}

.title-related {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.related-post a:hover {
  color: var(--primary);
}

.related-item {
  transition: 0.5s;
}
.related-item:hover {
  transform: translateY(-5px);
  transition: 0.5s;
}

.btn-back {
  background-color: transparent;
  border: none;
  color: var(--primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-back:hover {
  color: var(--gradient-1);
}

.alert-dark {
  background-color: var(--background-card);
  border-color: var(--gradient-1);
  color: var(--primary);
  text-align: center;
  height: fit-content;
}

.content-bandeau {
  z-index: 3;
}
.overlay-bandeau {
  z-index: 2;
}

.single-blog-intro .content-intro-games {
  z-index: 1;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width:992px) {

  .single-blog-intro {
    height: 100%;
  }

  .single-blog-intro .content-intro-games {
    position: static;
  }
}

/* BLOC COMMUNITY FEED */

.card-reviews {
  border-radius: 16px;
  cursor: pointer;
}

.card-reviews h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.img-community-feed {
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 16px;
}

#stickynews .img-community-feed-page {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
}

#stickynews .slick-slide {
  margin: 0 10px;
}

.img-community-feed-page {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.community-carrousel .wp-video {
  width: 100% !important;
}

.community-carrousel .wp-video .mejs-video {
  width: 100% !important;
  height: 224px !important;
}

.community-carrousel .wp-video .mejs-video video {
  width: 100% !important;
  height: 224px !important;
  object-fit: cover;
  border-radius: 16px;
}

.community-carrousel .mejs-controls {
  display: none;
}

.community-carrousel .slick-track {
  display: flex;
}
.community-carrousel .slick-slide {
  height: auto;
}

.community-carrousel .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--gradient-1);
}
.community-carrousel .slick-dots li button:before {
  color: #fff;
}

.community-carrousel .slick-dots {
  bottom: -40px;
}

.community-carrousel .card-reviews {
  cursor: pointer;
}

.community-carrousel .mejs-overlay-play {
  display: none;
}

.community-carrousel .slick-track {
  margin: auto;
}

.modalcommunity video,
.modalcommunity .mejs-video {
  width: 100%;
  max-height: 484px;
}

.modalcommunity .wp-video {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.modalcommunity .modal-content {
  background-color: #202127;
  border-radius: 16px;
  min-height: 400px;
  padding: 30px;
}

.img-large-community-feed {
  width: 80%;
  margin: 0 auto;
  border-radius: 16px;
  display: block;
}

.player-btn {
  position: absolute;
  width: 70px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#responsecommunity {
  width: 100%;
}

/* BLOC FORM CONTACT */

#bloc_contact_form {
  width: 100%;
  background: #141214;
  box-shadow: 0px 0px 70px rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 55px;
  margin: 30px auto;
}

.contact_form div span input[type="text"],
.contact_form div span input[type="email"] {
  padding: 16px !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px;
  border-color: #141214;
  color: #ffffffc2;
}

.contact_form div span input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;

  border-radius: 1px;
  height: 18px;
  width: 18px;
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgb(7, 7, 7); */
  position: relative;
  bottom: -5px;
  right: 17px;
}

.contact_form div span input[type="checkbox"]:hover {
  cursor: pointer;
  transition: 0.5s;
  border: 1px solid var(--gradient-2);
}

.contact_form div span input[type="checkbox"]:checked {
  background: linear-gradient(90deg, var(--gradient-1) 0%, var(--gradient-2) 100%),
    url("/images/check.svg");
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0px;
  position: relative;
}

.contact_form span textarea {
  padding: 16px;
  position: static;
  width: 100%;
  height: 100%;
  color: #ffffffc2;
  background: rgba(255, 255, 255, 0.05);
  /* margin: 0px 20px; */
  border: 1px;
  border-color: #141214;
}

.contact_form select {
  padding: 16px !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px;
  border-color: #141214;
  color: #757575;
}

.contact_form select option {
  background-color: #232224;
  /* color: #FFF; */
}

.contact_form a {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: -6%;
  bottom: 40%;
}

.contact_form div span input[type="file"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

.contact_form div span input[type="file"] {
  padding: 32px 37%;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  border: dashed 1px rgba(168, 100, 255, 0.6);
}

.contact_form div span input[type="file"]:checked {
  background: rgb(126, 126, 124);
  margin: 0px;
  position: relative;
}

#contact_form_response2,
#contact_form_response3,
#contact_form_response4 {
  display: none;
}

.box {
  border: 1px dashed #ffffffc2;;
  background-color: rgba(255, 255, 255, 0.05);
  width: 100%;
  padding: 28px;
  margin-left: 0px;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
}

.box:hover {
  border: 1px dashed var(--gradient-1);
}

.box:hover .box-span{
  color: var(--gradient-2);
}

.box--over {
  border-style: solid;
}

.box p .wpcf7-form-control-wrap input[type="file"] {
  display: none;
}

.box .depot_thumb {
  max-width: 20%;
  height: 170px;
  overflow: hidden;
  display: flex;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.box .depot_thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}

.box h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.box p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #ffffff;
  opacity: 0.6;
}

/* BLOC CONTENU 2 COLONNES */

.colonnes_1 {
  padding-left: 80px;
  padding-right: 40px;
}

.colonnes_2 {
  padding-right: 80px;
  padding-left: 5%;
}

@media screen and (max-width: 1000px) {
  /* BLOC FORM CONTACT */
  .contact_form a {
    position: absolute;
    width: 18%;
    right: 42%;
    bottom: 4%;
  }

  #bloc_contact_form {
    width: 100%;
    background: #141214;
    box-shadow: 0px 0px 70px rgb(255 255 255 / 10%);
    border-radius: 32px;
    padding: 0px;
    padding-bottom: 113px;
  }

  /* BLOC CONTENU 2 COLONNES */
  .colonnes_2 {
    padding-top: 40px;
    padding-left: 80px;
  }
}

#galleryModal .modal-content {
  background-color: #202127;
  border-radius: 16px;
}
.btn-close-modal {
  background-color: transparent;
  border: none;
  color: #fff !important;
  width: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  font-size: 25px;
}

.img-large-community-feed-page {
  width: 80%;
  height: 60vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 16px;
  display: block;
}

.modalyoutube iframe {
  width: 100%;
  height: 400px;
}

ul.content-share-social {
  padding: 0;
  margin: 0;
  padding: 0px 6px 6px 6px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  height: 35px;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px;
  z-index: 2;
  opacity: 1 !important;
}

li.item-social {
  list-style: none;
  transition: 0.5s;
  margin-bottom: 10px;
  border-radius: 20px;
  opacity: 1 !important;
}

li.item-social button {
  border-radius: 20px;
}

li.item-social:hover {
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
}

li.item-social a,
li.item-social button i {
  vertical-align: middle;
}

.content-share-social:hover {
  background: var(--background-card);
  height: auto;
  box-shadow: 0px 0px 70px rgb(255 255 255 / 10%);
  transition: 0.5s;
}

.content-share-social:hover li:first-child {
  opacity: 0;
  margin-top: -30px;
  transition: 0.5s;
}

#responsecommuniques {
  min-height: 500px;
}

/* Copy this @keyframes block to your CSS*/
@keyframes arrowAnimate {
  0.0% {
  }
  100% {
    transform: translate(0px, 0px);
  }
  50.3% {
    transform: translate(0px, 20px);
  }
}

/* Add the animation: property to whichever element you want to animate */
.animate-arrow {
  animation: arrowAnimate 2s ease 0s infinite normal none;
}

/* MODAL */

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 80%;
  margin: 0;
  bottom: 0;
  position: absolute;
}

#youtubeModal .modal-body {
  position: relative;
  padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}
.modal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-blog .card-img-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.content-blog iframe {
  width: 100%;
}

.content-blog img {
  margin: 20px 0;
  width: 100% !important;
  height: auto !important;
}

.media_bloc_text.rounded {
  border-radius: 32px !important;
}

.media_bloc_text {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media screen and (max-width: 450px) {
  #intro .content_intro {
    padding-top: 6rem;
  }

  #arrow_carousel_game {
    display: none;
  }

  .carousel-games .slick-list.draggable::before,
  .carousel-games .slick-list.draggable::after {
    display: none;
  }

  .overlay-img-studio {
    width: 100%;
    height: 327px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: radial-gradient(
      107.21% 49.19% at 46.34% 50.1%,
      rgba(0, 0, 0, 0) 0%,
      rgba(5, 5, 5, 0) 17.01%,
      #171618 100%
    );
  }
  .carousel-games .slick-list {
    overflow: hidden;
  }
}

@media (max-width: 992px){

  .btn-outline-primary {
    box-shadow: 0px 0px 30px rgb(255 255 255 / 15%);
    background: none;
    -webkit-text-fill-color: #fff;
    filter: none;
    color: #fff;
    border-image: none;
    border-color: #fff;
    transition: 0.5s;
  }

  .btn-outline-primary:hover {
    background: none;
    border-color: #fff;
  }

  .img-studio {
    width: 100%;
    height: 318px;
    margin: 5px 0;
    object-fit: contain;
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
/* TEMPLATE JOBS LIST */

#btn-link--jobpage::before {
  content: "\F12C";
  font-family: "bootstrap-icons";
  vertical-align: -0.3em;
  font-size: 21px;
  transition: 0.5s;
}

#btn-link--jobpage::after {
  content: "";
  font-family: "bootstrap-icons";
  vertical-align: -0.3em;
  font-size: 21px;
  transition: 0.5s;
}

.filterjobs .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filterjobs .btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.filterjobs .btn:focus {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

.filterjobs .btn.active {
  background: var(--gradient-1);
  background: -moz-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  background: linear-gradient(
    90deg,
    var(--gradient-1) 0%,
    var(--gradient-2) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--gradient-1)",endColorstr="var(--gradient-2)",GradientType=1);
  border-radius: 0;
  transition: 0.5s;
  border: none;
  position: relative;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.15);
}

.filterjobs .btn.active span {
  -webkit-text-fill-color: #fff;
  color: #fff;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.filterjobs .btn.active:hover {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
  transition: 0.5s;
}

.filterjobs .btn.active:hover span {
  background: #fff;
  background: -webkit-linear-gradient(to right, #fff 0%, #fff 100%);
  background: -moz-linear-gradient(to right, #fff 0%, #fff 100%);
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: 0.5s;
  letter-spacing: 0.03em;
}

a.card-job h5 {
  color: var(--primary);
}

a:hover {
  color: var(--gradient-2);
}

.card-job-img {
  width: 19px;
  height: 19px;
  margin-left: 5px;
  margin-bottom: 2px;

  filter: grayscale(100%);
}

.card:hover .card-job-img {
  filter: grayscale(0%);
}

.card:hover .card-job h5 {
  color: var(--gradient-2);
}

.p-link--jobpage {
  font-size: 18px;
  text-decoration: underline #fff;
}

.p-link--jobpage:hover {
  color: var(--gradient-2);
}

#section_job_alert {
  background: #141214;
  box-shadow: 0px 0px 70px rgba(255, 255, 255, 0.1);
  border-radius: 32px;

  margin-top: 140px;
  margin-bottom: 140px;
}

.jobalert .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.jobalert input {
  background-color: #232224;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  height: 38px;
  padding-left: 16px;
}

#job_alert_button {
  background-color: transparent;
  color: #ffffff;
  width: 94px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ffffff;
}

#job_alert_button:before {
  background-color: rgba(255, 255, 255, 0);
}

.filterjobs .form-select:focus {
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

.loadercard {
  background-color: var(--background-card);
  position: relative;
}
.loadercard:only-child {
  margin-top: 0;
}

.loadercard:after {
  content: "";
  background-color: rgb(24, 24, 24);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-name: loader-animate;
  animation-timing-function: linear;
  animation-direction: alternate;
  mix-blend-mode: overlay;
  background-blend-mode: overlay;
  background: -webkit-linear-gradient(
    to right,
    rgb(0 0 0 / 0%) 0%,
    rgb(181 181 181 / 60%) 50%,
    rgb(0 0 0 / 0%) 100%
  );
  background: -o-linear-gradient(
    to right,
    rgb(0 0 0 / 0%) 0%,
    rgb(181 181 181 / 60%) 50%,
    rgb(0 0 0 / 0%) 100%
  );
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 0%) 0%,
    rgb(181 181 181 / 60%) 50%,
    rgb(0 0 0 / 0%) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
}

@keyframes loader-animate {
  0% {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  50% {
    transform: translate3d(50%, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(120%, 0, 0);
    opacity: 0;
  }
}

.loadercard h5,
.loadercard p {
  color: transparent;
  background-color: rgb(68 65 69 / 50%);
  border-radius: 20px;
  max-height: 15px;
}

.loadercard img {
  filter: saturate(0%) brightness(2);
  opacity: 0.1;
}

a:hover .loadercard h5 {
  color: transparent !important;
}

.card.loadercard:hover::before {
  opacity: 0;
}

.card.loadercard:hover img {
  opacity: 0.1;
}

.card.loadercard:hover h5 {
  color: transparent !important;
}

.card.loadercard:hover {
  box-shadow: none;
}

@media (min-width: 992px) {
  .filterjobs-form {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* SINGLE PAGE - JOB */

.single-job-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 16px;
}
#single_job_post_btn {
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.25);
}

#single_job_post_btn span {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;

  text-align: center;
  letter-spacing: 0.03em;

  background: linear-gradient(90deg, #a864ff 0%, #6ab7fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.single-job-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
}

.editor ul li {
  opacity: 0.8;
  margin-bottom: 10px;
}

.start_aventure {
  transition: 0.5s;
}

.jobtop {
  margin-top: 200px;
  transition: 0.5s;
}

/* COOKIE BAR */

#cookie-law-info-bar {
  background-color: #202127 !important;
  color: #fff !important;
  width: 400px !important;
  border-radius: 16px !important;
  border: none !important;
}

/* cookie bar button */
#cookie_action_close_header_reject {
  background-color: #fff !important;
  color: var(--gradient-1) !important;
}
#wt-cli-accept-all-btn {
  background-color: var(--gradient-1) !important;
  color: #ffffff !important;
}
#wt-cli-accept-all-btn:hover,
#cookie_action_close_header_reject:hover  {
  opacity: 0.8 !important;
}
#cookie-law-info-bar .cli-bar-btn_container {
  display: flex;
  justify-content: space-between;
}


/* manage cookie modal */
.cli-modal-content {
  background-color: #202127 !important;
  color: #fff !important;
}
.cli-privacy-readmore {
  color: #fff !important;
}
.cli-privacy-readmore:hover {
  color: #449996 !important;
}
.cli-tab-header,
.cli-tab-content {
  background-color: #202127 !important;
}
.cli-privacy-content-text,
a.cli-nav-link,
.cli-necessary-caption,
.cli-slider:after,
.wt-cli-cookie-description {
  color: #fff !important;
}
.cli-switch .cli-slider {
  background-color: #ffffff75 !important;
}
.cli-switch input:checked + .cli-slider {
  background-color: #449996 !important;
}
#wt-cli-privacy-save-btn {
  background-color: #449996 !important;
  color: #fff !important;
}

/* cookie bar responsive */
@media (max-width: 992px) {
  #cookie-law-info-bar {
    inset: auto auto 0 0 !important;
    width: 100% !important;
  }
  #cookie-law-info-bar .cli-bar-btn_container {
    max-width: 400px;
  }
  
  #cookie-law-info-again {
    left: 2% !important;
  }
}
