@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --margin-standard: 1.9rem;
  --padding-standard: 1.3rem;
  --padding-small: 0.6rem;
  --padding-large: 0.9rem;

  --font-size-standard: 0.9rem;
  --font-size-small: 0.8rem;

  --blue-50: #f1f8fe;
  --blue-100: #e2f0fc;
  --blue-200: #bfe0f8;
  --blue-300: #86c6f3;
  --blue-400: #40a6ea;
  --blue-500: #1d8dda;
  --blue-600: #1070b9;
  --blue-700: #0e5996;
  --blue-800: #104c7c;
  --blue-900: #134067;
  --blue-950: #0d2944;

  --pink-50: #fcf3f7;
  --pink-100: #fae9f1;
  --pink-200: #f8d2e3;
  --pink-300: #f3aeca;
  --pink-400: #ea7ca7;
  --pink-500: #df5587;
  --pink-600: #cd3565;
  --pink-700: #bc2751;
  --pink-800: #932140;
  --pink-900: #7b2039;
  --pink-950: #4a0d1d;
}

strong {
  color: var(--pink-600);
  font-weight: 500;
}

.blue-50 {
  color: var(--blue-50);
}
.blue-100 {
  color: var(--blue-100);
}
.blue-200 {
  color: var(--blue-200);
}
.blue-300 {
  color: var(--blue-300);
}
.blue-400 {
  color: var(--blue-400);
}
.blue-500 {
  color: var(--blue-500);
}
.blue-600 {
  color: var(--blue-600);
}
.blue-700 {
  color: var(--blue-700);
}
.blue-800 {
  color: var(--blue-800);
}
.blue-900 {
  color: var(--blue-900);
}
.blue-950 {
  color: var(--blue-950);
}

.pink-50 {
  color: var(--pink-50);
}
.pink-100 {
  color: var(--pink-100);
}
.pink-200 {
  color: var(--pink-200);
}
.pink-300 {
  color: var(--pink-300);
}
.pink-400 {
  color: var(--pink-400);
}
.pink-500 {
  color: var(--pink-500);
}
.pink-600 {
  color: var(--pink-600);
}
.pink-700 {
  color: var(--pink-700);
}
.pink-800 {
  color: var(--pink-800);
}
.pink-900 {
  color: var(--pink-900);
}
.pink-950 {
  color: var(--pink-950);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Rajdhani", sans-serif;
}

p {
  line-height: 1.3em;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c0c0c;
  min-height: 100vh;
  color: #fff;
  background-color: #191a1e;
  background-image: radial-gradient(
    ellipse at 33% 10%,
    #0f2233 0%,
    #05101b 75%
  );
  background-repeat: no-repeat;
  padding-top: 0px;
  overflow-x: hidden;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: var(--pink-700);
  text-shadow: -6px -5px 30px currentcolor;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.75em;
  color: var(--pink-700);
  text-shadow: -6px -5px 30px currentcolor;
}

h3 {
  font-size: 1.75em;
  margin-bottom: 1em;
  color: var(--pink-700);
  text-shadow: -6px -5px 30px currentcolor;
}

h4 {
  font-size: 1.5em;
  margin-bottom: 0.3em;
  color: var(--pink-700);
  text-shadow: -6px -5px 30px currentcolor;
}

h5 {
  font-size: 1em;
  color: var(--pink-700);
  text-shadow: -4px -3px 25px currentcolor;
}

.wrap-frame-container {
  display: flex;
  gap: var(--padding-large);
  flex-direction: column;
  align-items: center;
}

.frame-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--margin-standard);
  gap: var(--margin-standard);
  align-items: stretch;
  width: 800px;
}

.card-container .card {
  position: relative;
  overflow: visible;
}

.frame-container .card {
  position: relative;
  max-width: 300px;
  height: 215px;
  background-color: var(--blue-950);
  margin: var(--margin-standard) var(--padding-small);
  padding: var(--padding-standard) var(--padding-large);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.frame-container .merc {
  background: linear-gradient(
    45deg,
    transparent 5%,
    rgb(12 35 72) 50%,
    transparent 99%
  );
  border: 2px solid var(--blue-900);
  transition: 0.3s ease-in-out;
}

.frame-container .corpo {
  background: linear-gradient(
    45deg,
    transparent 5%,
    rgb(72 12 12) 50%,
    transparent 99%
  );
  border: 2px solid var(--pink-900);
  transition: 0.3s ease-in-out;
}

.frame-container .card:hover {
  height: 400px;
}

.frame-container .card .image {
  position: relative;
  width: 260px;
  height: 260px;
  top: -25%;
  left: 8px;
  z-index: 1;
}

.frame-container .card .image img {
  max-width: 100%;
}

.frame-container .card .content {
  position: relative;
  top: -85px;
  padding: var(--padding-small) var(--padding-large);
  color: #fff;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  font-size: var(--font-size-standard);
}

.frame-container .card:hover .content {
  margin-top: 20px;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.2s;
}

.frame-container .card .image img {
  transition: transform 0.3s ease;
}

.frame-container .card:hover .image img {
  transform: scale(1.09);
}

.card:hover::before {
  opacity: 1;
}

.merc::before {
  background: linear-gradient(
    45deg,
    transparent 5%,
    rgb(8 17 30) 50%,
    transparent 99%
  );
  border-radius: inherit;
  content: "";
  inset: 0px;
  opacity: 0;
  position: absolute;
  transition: opacity 400ms;
  z-index: 0;
}

.corpo::before {
  background: linear-gradient(
    45deg,
    transparent 5%,
    rgb(30 8 8) 50%,
    transparent 99%
  );
  border-radius: inherit;
  content: "";
  inset: 0px;
  opacity: 0;
  position: absolute;
  transition: opacity 400ms;
  z-index: 0;
}

.frame-container .card .card-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.frame-container .card .card-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-frame {
  transition: 0.3s ease-in-out;
  position: relative;
  background-color: #1e181eb8;
  border: 1px solid var(--pink-700);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1rem + 2px),
    calc(100% - 1rem + 2px) 100%,
    0 100%
  );
}


.card-frame:hover {
  background-color: #341f2db8;
}

.card-frame-alternate:hover {
  background-color: #341f2db8;
}

.card-frame::before {
    border: 1px solid var(--pink-700); /* Bordure extérieure */
    clip-path: polygon( 0 0, 100% 0, 100% calc(100% - 1rem + 2px), calc(100% - 1rem + 2px) 100%, 0 100% );
    z-index: -1;
}

.card-frame::after {
    border: 2px solid var(--pink-700);
    clip-path: polygon( 0 0, 100% 0, 100% calc(100% - 1rem + 2px), calc(100% - 1rem + 2px) 100%, 0 100% );
    margin: 9px;
    z-index: -2;
}

.card-title { display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-frame-body::before {
    background-color: var(--pink-700);
    bottom: 5px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    right: -6px;
    top: auto;
    transform: rotate(-45deg);
    width: 25.627416px;
    z-index: 100;
}

.card-frame-body::after {
    background-color: var(--pink-700);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    right: 7px;
    bottom: 15px;
    transform: rotate(-45deg);
    width: 17.882px;
    z-index: 100;
}

.videoBg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  margin: 0px;
  border: 0px;
  padding: 0px;
  overflow: hidden;
}
.videoBg2{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.8;
  margin: 0px;
  border: 0px;
  padding: 0px;
  overflow: hidden;
  background-image: url(zbtw.png);
  background-color: black;
}
.card-frame-body {
  cursor: default;
  padding: 1.8rem;
  background-image: url(zbtw.png);
  min-width: 500px;
  min-height: 400px;
}

hr {
  border-style: none;
}

hr::after {
  background-color: var(--pink-700);
  box-shadow: 0 0 5px var(--pink-700);
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  width: 100%;
}

.wrap-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card-frame::before, .card-frame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none; 
}

.card-frame-alternate {
  transition: 0.3s ease-in-out;
  position: relative;
  background-color: #1e181eb8;
  height: 100%;
  border: 2px solid var(--pink-700);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    calc(1rem - 2px) 100%,
    0 calc(100% - 1rem + 2px)
  );
}

.card-frame-alternate::before {
  background-color: var(--pink-700);
  bottom: 5px;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  left: -6px;
  top: auto;
  transform: rotate(45deg);
  width: 22.627416px;
  z-index: 100;
}

.form-label {
  background-color: var(--pink-700);
  font-size: 0.92rem;
  padding: 0.125em 0.75em;
  padding-right: 2em;
  padding-top: 0.3em;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: bottom;
  -webkit-clip-path: polygon(
    0.25em 0,
    calc(100% - 1em) 0,
    100% 100%,
    0.33em 100%,
    0 100%,
    0 0.25em
  );
  clip-path: polygon(
    0.25em 0,
    calc(100% - 1em) 0,
    100% 100%,
    0.33em 100%,
    0 100%,
    0 0.25em
  );
}

.form-label-reverse {
  background-color: var(--pink-700);
  font-size: 0.92rem;
  padding: 0.125em 0.75em;
  padding-left: 2em;
  padding-top: 0.3em;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: bottom;
  -webkit-clip-path: polygon(
    calc(100% - 0.25em) 0,
    1em 0,
    0 100%,
    calc(100% - 0.33em) 100%,
    100% 100%,
    100% 0.25em
  );
  clip-path: polygon(
    calc(100% - 0.25em) 0,
    1em 0,
    0 100%,
    calc(100% - 0.33em) 100%,
    100% 100%,
    100% 0.25em
  );
}

.button--primary {
  position: relative;
  background-color: transparent;
  border-radius: 2px;
  cursor: pointer;
  color: var(--blue-400);
  border-color: var(--blue-400);
}

.button--size-xl {
  padding: 0.55rem 1.4rem 0.55rem 1rem;
  border-width: 2px;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1rem + 2px),
    calc(100% - 1rem + 2px) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1rem + 2px),
    calc(100% - 1rem + 2px) 100%,
    0 100%
  );
}

.button--size-xl::before {
  background-color: currentcolor;
  bottom: 5px;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: -6px;
  top: auto;
  transform: rotate(-45deg);
  width: 22.627416px;
  z-index: 100;
}

.button {
  border: 1px solid;
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--font-size-small);
  margin-top: var(--padding-small);
  font-weight: 600;
}

.button__content {
  display: inline-block;
  z-index: 2;
}

.button--primary:hover {
  background-color: var(--blue-900);
  color: #2bc5ea;
}

.left-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 48%;
}

.center-frame {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 48%;
  height: 200px;
  width: 100%;
  justify-content: space-between;
}

.right-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 48%;
}

.separator {
  background-color: var(--pink-700);
  box-shadow: 0 0 5px var(--pink-700);
  height: 1px;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 5px;
}

.underlined-a {
  text-decoration: none;
  color: var(--blue-400);
  box-sizing: border-box;
  box-shadow: inset 0 -0.055em 0 var(--blue-500);
  transition: 0.2s;
  font-weight: 500;
}
.underlined-a:hover {
  color: #101010;
  box-shadow: inset 0 -2em 0 var(--blue-500);
  transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}

.tab-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -8px;
}
.tab-bar a {
  position: relative;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  color: var(--pink-500);
  text-shadow: -6px -5px 30px currentcolor;
  margin: 0 1rem;
  transition: text-shadow 300ms ease, color 300ms ease;
}
.tab-bar a .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #df55879c;
  transform: scaleX(0);
}
.tab-bar a.active {
  color: var(--pink-300);
  text-shadow: 0 0 20px var(--pink-500) 7c;
}
.tab-bar a:focus {
  outline: none;
  border: none;
}

.tab-content {
  display: none;
  min-height: 100%;
}
.tab-content.active {
  display: block;
}

#staff-content {
  display: block;
}

.staff-container {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 500px;
  margin-top: -25px;
}
.staff-container .box {
  position: relative;
  width: 120px;
  cursor: pointer;
  height: 130px;
  background: #000;
  transition: 0.5s;
  transform-style: preserve-3d;
  overflow: hidden;
  margin-right: 15px;
  margin-top: 45px;
  border: 1px solid var(--pink-500);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 1rem + 2px),
    calc(100% - 1rem + 2px) 100%,
    0 100%
  );
}
.staff-container .box:before {
  background-color: var(--pink-500);
  bottom: 5px;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: -6px;
  top: auto;
  transform: rotate(-45deg);
  width: 22.627416px;
  z-index: 100;
}
.staff-container:hover .box {
  transform: rotateY(25deg);
}
.staff-container .box:hover ~ .box {
  transform: rotateY(-25deg);
}
.staff-container .box:hover {
  transform: rotateY(0deg) scale(1.25);
  z-index: 1;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}
.staff-container .box .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.staff-container .box .imgBx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0, 149, 255), #000);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
  mix-blend-mode: multiply;
}
.staff-container .box:hover .imgBx:before {
  opacity: 1;
}
.staff-container .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(100%);
}
.staff-container .box .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 10px;
  align-items: flex-end;
  box-sizing: border-box;
}
.staff-container .box .content h2 {
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 13px;
  transform: translateY(200px);
  transition-delay: 0.3s;
}
.staff-container .box:hover .content h2 {
  transform: translateY(0px);
}
.staff-container .box .content p {
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
  transform: translateY(200px);
  transition-delay: 0.4s;
}
.staff-container .box:hover .content p {
  transform: translateY(0px);
  font-size: 10px;
}

.card-frame-center {
  cursor: default;
  padding: 1.3rem;
  background-image: url(zbtw.png);
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pegi-container {
  gap: 20px;
  display: flex;
  align-items: center;
  width: auto;
  justify-content: center;
}

.pegi-container img {
  height: 40px;
  filter: sepia(1) hue-rotate(160deg) saturate(2);
  transition: filter 0.3s ease;
}

.pegi-container img:hover {
  filter: sepia(1) hue-rotate(160deg) saturate(4);
}

.outline {
  background-color: rgba(13, 46, 66, 0.5);
  padding: 0.8rem;
  padding-left: 65px;
  padding-right: 65px;
  height: auto;
  margin-top: 0rem;
  border-top: 1px solid #0a456d;
  border-bottom: 1px solid #0a456d;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: space-between;
}

/*
 *  Reset bootstrap's default style
 */
.form-control::-webkit-input-placeholder,
::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

.form-control:-moz-placeholder,
:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: inherit;
}

.form-control::-moz-placeholder,
::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: inherit;
}

.form-control:-ms-input-placeholder,
:-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

button,
input,
select,
textarea,
label {
  font-weight: 400;
}

.btn {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover,
.btn:focus,
.btn:active:focus {
  outline: 0 none;
}

.btn-primary {
  background-color: #fa6862;
  border: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  height: 48px;
  line-height: 50px;
  padding: 0 42px;
  text-transform: uppercase;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  background-color: #f9423a;
}

.btn-border {
  border: 1px solid #d7d8db;
  display: inline-block;
  padding: 7px;
}

/*
  *  CSS Helper Class
  */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.pt-table {
}

.pt-tablecell {
  display: table-cell;
  vertical-align: middle;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
}

.relative {
  position: relative;
}

.primary,
.link:hover {
  color: #fa6862;
}

.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.no-gutter > [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.nicescroll-cursors {
  background: #fa6862 !important;
}

.preloader {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.preloader.active.hidden {
  display: none;
}

.loading-mask {
  background-color: #fa6862;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 20%;
  -webkit-transition: all 0.6s cubic-bezier(0.61, 0, 0.6, 1) 0s;
  -moz-transition: all 0.6s cubic-bezier(0.61, 0, 0.6, 1) 0s;
  -o-transition: all 0.6s cubic-bezier(0.61, 0, 0.6, 1) 0s;
  transition: all 0.6s cubic-bezier(0.61, 0, 0.6, 1) 0s;
}
.loading-mask:nth-child(2) {
  left: 20%;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.loading-mask:nth-child(3) {
  left: 40%;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.loading-mask:nth-child(4) {
  left: 60%;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.loading-mask:nth-child(5) {
  left: 80%;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.preloader.active.done {
  z-index: 0;
}

.preloader.active .loading-mask {
  width: 0;
}

/*------------------------------------------------
   Start Styling
 -------------------------------------------------*/

.site-wrapper {
  border-top: 4px solid #ff0037;
}

.page-close {
  font-size: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 100;
}

.page-title {
  margin-bottom: 15px;
}
.page-title img {
  margin-bottom: 20px;
}
.page-title h2 {
  font-size: 68px;
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
  font-weight: 900;
  text-transform: uppercase;
}
.page-title p {
  font-size: 14px;
  font-family: monospace;
  line-height: 21px;
}
.page-title .title-bg {
  color: rgba(30, 37, 48, 0.07);
  font-size: 158px;
  left: 0;
  letter-spacing: 10px;
  line-height: 0.7;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-title {
  margin-bottom: 20px;
}
.section-title h3 {
  display: inline-block;
  position: relative;
}
.section-title h3::before,
.section-title h3::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 8px;
  left: -webkit-calc(100% + 14px);
  left: -moz-calc(100% + 14px);
  left: calc(100% + 14px);
}
.section-title h3::before {
  background-color: #1e2530;
  width: 96px;
  bottom: 14px;
}
.section-title h3::after {
  background-color: #fa6862;
  width: 73px;
}
.section-title.light h3 {
  color: #fff;
}
.section-title.light h3::before {
  background-color: #fff;
}

.page-nav {
  bottom: 40px;
  left: 0;
  position: absolute;
  right: 0;
}
.page-nav span {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

/*------------------------------------------------
     Home Page
 -------------------------------------------------*/

.hexagon-item:first-child {
  margin-left: 0;
}

.page-home {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.page-home .overlay {
  background-color: rgba(14, 17, 24, 0.97);
  background-image: url();
}

/* End of container */
.hexagon-item {
  cursor: pointer;
  width: 200px;
  height: 173.20508px;
  float: left;
  margin-left: -29px;
  z-index: 0;
  position: relative;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
.hexagon-item:first-child {
  margin-left: 0;
}
.hexagon-item:hover {
  z-index: 1;
}
.hexagon-item:hover .hex-item:last-child {
  opacity: 1;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.hexagon-item:hover .hex-item:first-child {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.hexagon-item:hover .hex-item:first-child div:before,
.hexagon-item:hover .hex-item:first-child div:after {
  height: 2px;
}
.hexagon-item:hover .hex-item div::before,
.hexagon-item:hover .hex-item div::after {
  background-color: var(--blue-400);
}
.hexagon-item:hover .hex-content svg {
  -webkit-transform: scale(0.97);
  -moz-transform: scale(0.97);
  -ms-transform: scale(0.97);
  -o-transform: scale(0.97);
  transform: scale(0.97);
}

.page-home .hexagon-item:nth-last-child(1),
.page-home .hexagon-item:nth-last-child(2),
.page-home .hexagon-item:nth-last-child(3) {
  -webkit-transform: rotate(30deg) translate(87px, -80px);
  -moz-transform: rotate(30deg) translate(87px, -80px);
  -ms-transform: rotate(30deg) translate(87px, -80px);
  -o-transform: rotate(30deg) translate(87px, -80px);
  transform: rotate(30deg) translate(87px, -80px);
}

.hex-item {
  position: absolute;
  top: 0;
  left: 50px;
  width: 100px;
  height: 173.20508px;
}
.hex-item:first-child {
  z-index: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hex-item:last-child {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.hex-item div {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100px;
  height: 173.20508px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.hex-item div::before,
.hex-item div::after {
  background-color: var(--pink-800);
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.hex-item div:before {
  top: 0;
}
.hex-item div:after {
  bottom: 0;
}
.hex-item div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.hex-item div:nth-child(2) {
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
}
.hex-item div:nth-child(3) {
  -webkit-transform: rotate(120deg);
  -moz-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  -o-transform: rotate(120deg);
  transform: rotate(120deg);
}

.hex-content {
  color: #fff;
  display: block;
  height: 180px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  transform: rotate(-30deg);
  width: 156px;
}
.hex-content .hex-content-inner {
  left: 50%;
  margin: -3px 0 0 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hex-content .icon {
  display: block;
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 11px;
  color: var(--pink-600);
}

.hex-content .title {
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pink-400);
  text-shadow: -6px -5px 30px currentcolor;
}

.hex-content svg {
  left: -7px;
  position: absolute;
  top: -13px;
  transform: scale(0.87);
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.hex-content:hover {
  color: var(--blue-400);
}

.page-home .hexagon-item:nth-last-child(1),
.page-home .hexagon-item:nth-last-child(2),
.page-home .hexagon-item:nth-last-child(3) {
  -webkit-transform: rotate(30deg) translate(87px, -80px);
  -moz-transform: rotate(30deg) translate(87px, -80px);
  -ms-transform: rotate(30deg) translate(87px, -80px);
  -o-transform: rotate(30deg) translate(87px, -80px);
  transform: rotate(30deg) translate(87px, -80px);
}

.predef-container {
}

/* @media (min-width: 1200px) {
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
} */

@media (min-width: 1200px) {
  .col-lg-8 {
    width: 66.66666667%;
  }
}

.col-lg-8 {
  width: 760px;
}

.hexagon-item:first-child {
  margin-left: 0;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pt-table.desktop-768 .pt-tablecell {
}

.hexagon-item:hover .icon i {
  color: var(--blue-400);
  transition: 0.6s;
}

.hexagon-item:hover .hex-content .title {
  color: var(--blue-400);
}

.hexagon-item:hover .title {
  -webkit-animation: focus-in-contract 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: focus-in-contract 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.tooltip {
  transform: translate(-50%, -200%);
  display: none;
  position: absolute;
  color: var(--pink-400);
  background-color: #000;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 200px;
  top: 0;
  left: 50%;
  text-align: center;
}

.tooltip:after {
  content: "";
  display: block;
  position: absolute;
  border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 15px 15px 0;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
}

@-webkit-keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .hexagon-item {
    float: none;
    margin: 0 auto 50px;
  }
  .hexagon-item:first-child {
    margin-left: auto;
  }

  .page-home .hexagon-item:nth-last-child(1),
  .page-home .hexagon-item:nth-last-child(2),
  .page-home .hexagon-item:nth-last-child(3) {
    -webkit-transform: rotate(30deg) translate(0px, 0px);
    -moz-transform: rotate(30deg) translate(0px, 0px);
    -ms-transform: rotate(30deg) translate(0px, 0px);
    -o-transform: rotate(30deg) translate(0px, 0px);
    transform: rotate(30deg) translate(0px, 0px);
  }
}


#container-diagonale {
  position: relative;
  float: left;
  padding-right: 12px;
  height: 200px;
  aspect-ratio: 1;
  perspective: 1000px;
}
#wrapper-diagonale {
  transform: rotateX(-5deg) rotateY(10deg);
}
#modal {
  background: var(--blue-400);
  height: 200px;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    6% 100%,
    0 93%,
    0 68%,
    0 65%,
    5% 60%,
    5% 31%,
    0 24%
  );
}


#modal:after {
  width: 97%;
  height: 2px;
  background: var(--blue-400);
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  padding-bottom: 2px ;
}
#inner {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    6% 100%,
    0 93%,
    0 68%,
    0 65%,
    5% 60%,
    5% 31%,
    0 24%
  );
  height: 99%;
  width: 98%;
  background: #000;
  background: url("https://img.freepik.com/photos-premium/image-dessin-anime-rue-cyberpunk_763713-539.jpg")
    center/ cover;
}



#textInner {
  position: absolute;
  top: 4px;
  color: var(--blue-400);
  left: 8px;
  z-index: 20;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}