/**
 ** @author Grzegorz Bielak <kontakt@grzegorzbielak.pl>
*/
:root {
  --color_batman: #9e0c5e;
  --color_batman_sub: #d94a4e;

  --color_robin: #0c4e65;
  --color_robin_sub: #11858b;

  --font_neuropol: 'Neuropol', Tahoma, sans-serif;
  --font_opensans: 'OpenSans', Tahoma, sans-serif;

  --gradient_batman: linear-gradient(45deg, var(--color_batman), var(--color_batman_sub));
  --gradient_batman_inverse: linear-gradient(275deg, var(--color_batman_sub), var(--color_batman));
  --gradient_robin: linear-gradient(45deg, var(--color_robin), var(--color_robin_sub));
  --gradient_robin_inverse: linear-gradient(275deg, var(--color_robin_sub), var(--color_robin));

  --transition: all 0.2s ease 0s;
  --rwd_mobile: 481px;
  --rwd_tablet: 769px;
  --rwd_desktop: 1025px;
  --rwd_desktop_large: 1281px;
  --top_size: 100vh;

  @media (min-width: 1025px) {
    --top_size: 80vh;
  }
}

/* ===========================================================
   Normalize
   =========================================================== */
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.15;
}
img {
  border-style: none;
  max-width: 100%;
}
a,
button {
  border: none;
  outline: none;
  text-decoration: none;
  background-color: initial;
  padding: 0;
}
ul, li {
  margin: 0;
}

/* -----------------------------------
   Neuropol
   ----------------------------------- */



/* ===========================================================
   Top
   =========================================================== */
.top {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  height: var(--top_size);
  border: 2px solid white;

}
.top-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}

/* TOP BOX */
.top-box-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: repeat(4, 25%);
  align-content: center;
  justify-content: center;
}

.top-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 0;
}
@media (min-width: 1025px) {
  .top-content-wrapper {
    flex-direction: row;
  }
}
.top-content--batman,
.top-content--robin {
  height: calc(var(--top_size) * .5);

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
}
@media (min-width: 1025px) {
  .top-content--batman,
  .top-content--robin {
    width: 50%;
    height: var(--top_size);
    justify-content: center;
  }
}
.top-content-left img {
  position: absolute;
  top: calc(50% - 114px);
  left: calc(50% - 90px);
  width: 180px;
}
@media (min-width: 1025px) {
  .top-content-left img {
    top: calc(50% - 85px);
    left: calc(50% - 110px);
    width: 220px;
  }
}
.top-content-left {
  color: white;
  font-size: 2.2rem;
  text-align: center;
  text-shadow:
          1px 2px 4px rgba(0, 0, 0, 0.2),
          2px 8px 24px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1025px) {
  .top-content-left {
    margin-right: 200px;
    text-align: right;
  }
}
.top-content-listing {
  display: none;
}
@media (min-width: 1025px) {
  .top-content-listing {
    display: block;
  }
}
.top-content-listing li {
  list-style: none;
}
.top-content-left__slogan {
  font-size: 110%;
  font-weight: 500;
  display: none;
}
@media (min-width: 1025px) {
  .top-content-left__slogan {
    display: block;
    font-size: 100%;
  }
}
.top-content-right {
  color: white;
  font-size: 1.8rem;
  text-align: center;
  text-shadow:
          1px 2px 4px rgba(0, 0, 0, 0.2),
          2px 8px 24px rgba(0, 0, 0, 0.1);

  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, 50%);
  align-content: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .top-content-right {
    margin-left: 100px;
    grid-row-gap: 12rem;
  }
}
.top-content-right__image {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-content-right__image img {
  height: 65px;
}
@media (min-width: 1025px) {
  .top-content-right__image img {
    height: 140px;
  }
}
.top-content-right__image p {
  font-size: 1.3rem;
}
@media (min-width: 1025px) {
  .top-content-right__image p {
    display: block;
    font-size: 1.8rem;
  }
}
.top-content-right__arrow--right,
.top-content-right__arrow--down,
.top-content-right__arrow--left {
  display: none;
}
@media (min-width: 1025px) {
  .top-content-right__arrow--right,
  .top-content-right__arrow--down,
  .top-content-right__arrow--left {
    display: block;
  }
}
.top-content-right__arrow--right {
  width: 50px;
  height: 2px;
  background-color: white;

  position: absolute;
  top: 100px;
  right: -25px;
}
.top-content-right__arrow--right:before {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: inherit;
}
.top-content-right__arrow--right:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 0;
  width: 8px;
  height: 2px;
  transform: rotate(315deg);
  background: inherit;
}
.top-content-right__arrow--down {
  width: 2px;
  height: 50px;
  background-color: white;

  position: absolute;
  top: calc(100% + 25px + 2rem);

}
.top-content-right__arrow--down:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: inherit;
}
.top-content-right__arrow--down:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 8px;
  height: 2px;
  transform: rotate(315deg);
  background: inherit;
}
.top-content-right__arrow--left {
  width: 50px;
  height: 2px;
  background-color: white;

  position: absolute;
  top: 100px;
  right: -25px;
}
.top-content-right__arrow--left:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 2px;
  transform: rotate(-45deg);
  background: inherit;
}
.top-content-right__arrow--left:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  background: inherit;
}

.top-content-company {
  font-family: var(--font_neuropol);
  font-size: 2.4rem;
  letter-spacing: -2px;
}
@media (min-width: 1025px) {
  .top-content-company {
    font-size: 3.6rem;
  }
}


.top-box {
  position: relative;
  border: 2px solid white;
}

.top-box--batman {
  grid-column: 1 / 5;
  grid-row: 1 / 3;

  background-image: url('./assets/images/orange_shapes_wb.jpg');
  background-position: 50% 0;
  background-size: cover;
}
@media (orientation: landscape) {
  .top-box--batman {
    grid-column: 1 / 3;
    grid-row: 1 / 5;
  }
}
@media (min-width: 1025px) {
  .top-box--batman {
    grid-column: 1 / 3;
    grid-row: 1 / 5;
  }
}

.top-box--batman::after {
  content: '';

  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background: linear-gradient(90deg, var(--color_batman_sub), var(--color_batman));
  opacity: 0.9;
}

.top-box--robin {
  grid-column: 1 / 5;
  grid-row: 3 / 5;

  background-image: url('./assets/images/piora.jpg');
  transform: scale(-1, 1);

  background-position: 50% 0;
}
@media (orientation: landscape) {
  .top-box--robin {
    grid-column: 3 / 5;
    grid-row: 1 / 5;
  }
}
@media (min-width: 1025px) {
  .top-box--robin {
    grid-column: 3 / 5;
    grid-row: 1 / 5;
  }
}
.top-box--robin::after {
  content: '';

  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background: linear-gradient(270deg, var(--color_robin_sub), var(--color_robin));
  opacity: 0.9;
}

/* TOP STICKY */
.top--sticky {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-position: 50% 0;
  transform: translateY(-80px);
  will-change: opacity, tansform;
  transition: all 0.5s ease 0s;
  font-family: var(--font_neuropol);
  color: white;
  border: 4px solid white;
  border-bottom: none;
  background-image: url('assets/images/piora.jpg');
}
.top--sticky::after {
  content: '';
  position: fixed;
  background: linear-gradient(90deg, var(--color_batman_sub), var(--color_batman));
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.9;
  z-index: -1;
}
.top--sticky a {
  font-family: var(--font_neuropol);
  color: white;
  margin-right: 2rem;
}
@media (min-width: 1025px) {
  .top--stickyIn {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOP SOCIALS */
.top-socials {
  position: absolute;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 2rem;
  top: 2rem;

  height: 8rem;
}
@media (min-width: 1025px) {
  .top-socials {
    top: 4rem;
  }
}
@media (min-width: 1025px) {
  .top-socials {
    top: 4rem;
  }
}
.top-socials__item--facebook {
  margin-right: -4px;
}
.top-socials__item--facebook img {
  width: 47px;
  height: 47px;
}
.top-socials__item--instagram img {
  width: 40px;
  height: 40px;
}
.top-socials__item--tiktok img {
  width: 41px;
  height: 41px;
}
.top--sticky .top-socials {
  display: none;
}
.top-logo {
  position: absolute;
  opacity: 0;
  top: 74px;
  transition: all 0.2s ease 0s;
}
.top--stickyIn .top-logo {
  top: 2rem;
}
@media (min-width: 769px) {
  .top--stickyIn .top-logo {
    opacity: 1;
  }
}

@media (min-width: 1025px) {
  .top-menu {
    position: absolute;
    right: 0;
  }
}








/* nav-icon-4 */
.nav-icon-4 {
  width: 35px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  will-change: transform;
  transition: all 0.3s linear;
}
.nav-icon-4 span {
  background-color:#FFF;
  position: absolute;
  border-radius: 2px;
  transition: .3s linear;
}
.nav-icon-4 span:nth-child(1){
  width: 100%;
  height:  4px;
  display: block;
  top: 0;
  left: 0;
}
.nav-icon-4 span:nth-child(2) {
  width: 100%;
  height:  4px;
  display: block;
  top: 13px;
  left: 0px;
}
.nav-icon-4 span:nth-child(3) {
  width: 100%;
  height:  4px;
  display: block;
  bottom: 0px;
  left: 0px;
}


.open .nav-icon-4 {
  transform: rotate(90deg);
}
.open .nav-icon-4 span:nth-child(1){
  left:3px;
  top: 12px;
  width: 30px;
  transition: .3s linear;
  transform: rotate(90deg);
  transition-delay: 150ms;
}
.open .nav-icon-4 span:nth-child(2){
  left:2px;
  top: 20px;
  width: 20px;
  transition: .3s linear;
  transform: rotate(45deg);
  transition-delay: 50ms;
}
.open .nav-icon-4 span:nth-child(3){
  left:14px;
  top: 20px;
  width: 20px;
  transition: .3s linear;
  transform: rotate(-45deg);
  transition-delay: 100ms;
}



.top-menu__burger {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 50;

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  width: 8rem;
  height: 8rem;
  background: var(--gradient_robin);
  padding: 2rem;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .top-menu {
    top: 4rem;
  }
}
.top--stickyIn .top-menu {
  top: 0;
}

@media (min-width: 1025px) {
  .top-menu__burger {
    display: none;
  }
}
@media (max-width: 1024px) {
  .top-menu__wrapper {
    display: table;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 80px;
    background-image: url('assets/images/orange_shapes_wb.jpg');
    background-color: var(--color_batman);
    transform: translateX(-100%);
    z-index: 49;
  }
  .top-menu__wrapper::after {
    content: '';

    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: linear-gradient(90deg, var(--color_batman_sub), var(--color_batman));
    opacity: 0.9;
    z-index: 49;
  }
}
@media (min-width: 1025px) {
  .top-menu__wrapper {
    animation: none;
  }
}
.top-menu__content ul {
  position: relative;
  z-index: 50;

  display: flex;
  gap: 0 .5rem;
  padding: 2rem;
  width: calc(100vw - 8rem);
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 1rem;
}
@media (min-width: 1025px) {
  .top-menu__content ul {
    justify-content: flex-end;
    width: auto;

  }
}
.top-menu__content li {
  list-style: none;
}

.top-menu a {
  font-size: 1.5rem;
  line-height: 3rem;
  font-family: var(--font_neuropol);
  font-weight: 500;
  color: white;
  height: 3rem;
}

@media (max-width: 1024px) {
  .top-menu__content a {
    display: block;
  }
}
@media (min-width: 1025px) {
  .top-menu a {
    font-size: 2rem;
  }
}
.top--sticky {
  z-index: 100;
}
.top--sticky .top-base {
  display: none;
}



/* ===========================================================
   Utilities
   =========================================================== */
.u-m_top_60 {
  margin-top: 6rem !important;
}
.u-m_top_100 {
  margin-top: 10rem !important;
}
.u-m_bottom_10 {
  margin-bottom: 1rem !important;
}
.u-m_bottom_25 {
  margin-bottom: 2rem !important;
}
.u-m_bottom_40 {
  margin-bottom: 4rem !important;
}
.u-m_bottom_100 {
  margin-bottom: 10rem !important;
}
.u-t_center {
  text-align: center;
}



/* ===========================================================
   Animations
   =========================================================== */
.animation--slide_in_left {
  animation-name: slideInLeft;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.86, 0.17, 0.29, 1.04);
  animation-fill-mode: both;
  will-change: transform;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1025px) {
  /* for mobile menu */
  .animation--slide_out_left {
    animation-name: slideOutLeft;
    animation-duration: 0.75s;
    animation-timing-function: cubic-bezier(0.86, 0.17, 0.29, 1.04);
    animation-fill-mode: both;
    will-change: transform;
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(-100%);
  }
}
.animation--slide_in_top {
  animation-name: slideInTop;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.86, 0.17, 0.29, 1.04);
  animation-fill-mode: both;
  will-change: transform;
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-80px);
    position: static;
  }
  100% {
    opacity: 100;
    transform: translateY(0);
    position: fixed;
  }
}
.animation--slide_out_top {
  animation-name: slideInTop;
  animation-duration: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  will-change: transform;
}
@keyframes slideOutTop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.animation--image_slide_in_left {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.75s ease 0s;
}
.animation--image_slide_in_left_attached {
  will-change: transform, opacity;
  transform: translateX(0);
  opacity: 1;
}
.animation--image_slide_in_right {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.75s ease 0s;
}
.animation--image_slide_in_right_attached {
  will-change: transform, opacity;
  transform: translateX(0);
  opacity: 1;
}

/* ===========================================================
   Grid
   =========================================================== */
.grid-item {
  position: relative;
  display: block;
  float: left;
  box-sizing: border-box;
  width: 100%;
}
.grid-item--3of4 {
  width: 75%;
}
.grid-item--2of3 {
  width: 66.66%;
}
.grid-item--1of2 {
  width: 50%;
}
.grid-item--1of3 {
  width: 33.33%;
}
.grid-item--1of4 {
  width: 25%;
}
@media (min-width: 481px) {
  .grid-item--s_3of4 {
    width: 75%;
  }
  .grid-item--s_2of3 {
    width: 66.66%;
  }
  .grid-item--s_1of2 {
    width: 50%;
  }
  .grid-item--s_1of3 {
    width: 33.33%;
  }
  .grid-item--s_1of4 {
    width: 25%;
  }
}
@media (min-width: 769px) {
  .grid-item--m_3of4 {
    width: 75%;
  }
  .grid-item--m_2of3 {
    width: 66.66%;
  }
  .grid-item--m_1of2 {
    width: 50%;
  }
  .grid-item--m_1of3 {
    width: 33.33%;
  }
  .grid-item--m_1of4 {
    width: 25%;
  }

}
@media (min-width: 769px) {
  .grid-item--l_1of1 {
    width: 100%;
  }
  .grid-item--l_4of5 {
    width: 80%;
  }
  .grid-item--l_3of4 {
    width: 75%;
  }
  .grid-item--l_2of3 {
    width: 66.66%;
  }
  .grid-item--l_1of2 {
    width: 50%;
  }
  .grid-item--l_1of3 {
    width: 33.33%;
  }
  .grid-item--l_1of4 {
    width: 25%;
  }
}
@media (min-width: 1025px) {
  .grid-item--xl_1of1 {
    width: 100%;
  }
  .grid-item--xl_5of6 {
    width: 83.34%;
  }
  .grid-item--xl_4of5 {
    width: 80%;
  }
  .grid-item--xl_3of4 {
    width: 75%;
  }
  .grid-item--xl_2of3 {
    width: 66.66%;
  }
  .grid-item--xl_1of2 {
    width: 50%;
  }
  .grid-item--xl_1of3 {
    width: 33.33%;
  }
  .grid-item--xl_1of4 {
    width: 25%;
  }

}
/* -----------------------------------
   Types
   ----------------------------------- */
.grid {
  *zoom: 1;
  /* -----------------------------------
     Gutter
     ----------------------------------- */
}
.grid:before,
.grid:after {
  content: '';
  display: table;
}
.grid:after {
  clear: both;
}
.grid--inline {
  display: block;
  margin-left: 4px;
  text-align: center;
}
.grid--inline .grid-item {
  display: inline-block;
  vertical-align: top;
  margin-left: -4px;
  float: none;
}
.grid--table {
  display: table;
  width: 100%;
}
.grid--table .grid-item {
  display: table-cell;
  vertical-align: top;
  float: none;
}
@media (min-width: 769px) {
  .grid--table--m_up {
    display: table;
    width: 100%;
  }
  .grid--table--m_up .grid-item {
    display: table-cell;
    vertical-align: top;
    float: none;
  }
}
.grid--block {
  display: block;
}
.grid--block .grid-item {
  display: block;
  float: left;
  margin-left: 0;
}
.grid--middle .grid-item {
  vertical-align: middle;
}
.grid--to_left {
  text-align: left;
}
.grid--gutter_sm {
  margin: -5px;
}
.grid--gutter_sm .grid-item {
  padding: 5px;
}
.grid--gutter_md {
  margin: -20px;
}
.grid--gutter_md .grid-item {
  padding: 20px;
}


/* ===========================================================
   Layout
   =========================================================== */
html,
body {
  font: 500 62.5%/1.35 var(--font_opensans), Arial, sans-serif;
  color: #222;
  height: 100%;
}
#page {
  font-size: 2.4rem;
  overflow: hidden;
  letter-spacing: -1px;
  color: #435154;
}
.l-container {
  position: relative;
  width: 90vw;
  max-width: 1600px;
  margin: 0 auto;
  *zoom: 1;
}
.l-container:before,
.l-container:after {
  content: '';
  display: table;
}
.l-container:after {
  clear: both;
}
@media (min-width: 1025px) {
  .l-container {
    width: 90vw;
  }
}
/* ===========================================================
   Fonts
   =========================================================== */
/* -----------------------------------
   Icons
   ----------------------------------- */

/* -----------------------------------
   Open Sans
   ----------------------------------- */
@font-face {
  font-family: 'OpenSans';
  src: url('assets/fonts/open-sans/opensans-regular.woff');
  /*src: url('assets/fonts/open-sans/opensans-regular.eot?#iefix') format('embedded-opentype'), url('assets/fonts/open-sans/opensans-regular.woff') format('woff'), url('assets/fonts/open-sans/opensans-regular.ttf') format('truetype'), url('assets/fonts/open-sans/opensans-regular.svg#OpenSans') format('svg');*/
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans';
  src: url('assets/fonts/open-sans/opensans-regularitalic.woff');
  /*src: url('assets/fonts/open-sans/opensans-regularitalic.eot?#iefix') format('embedded-opentype'), url('assets/fonts/open-sans/opensans-regularitalic.woff') format('woff'), url('assets/fonts/open-sans/opensans-regularitalic.ttf') format('truetype'), url('assets/fonts/open-sans/opensans-regularitalic.svg#OpenSans') format('svg');*/
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'OpenSans';
  src: url('assets/fonts/open-sans/opensans-semibold.woff');
  /*src: url('assets/fonts/open-sans/opensans-semibold.eot?#iefix') format('embedded-opentype'), url('assets/fonts/open-sans/opensans-semibold.woff') format('woff'), url('assets/fonts/open-sans/opensans-semibold.ttf') format('truetype'), url('assets/fonts/open-sans/opensans-semibold.svg#OpenSans') format('svg');*/
  font-weight: 600;
  font-style: normal;
}


/*!* -----------------------------------*/
/*   Suggested*/
/*   ----------------------------------- *!*/
/*@font-face {*/
/*  font-family: 'Suggested';*/
/*  src: url('assets/fonts/suggested/suggested-regular.eot');*/
/*  src: */
/*	url('assets/fonts/suggested/suggested-regular.eot?#iefix') format('embedded-opentype'),*/
/*	url('assets/fonts/suggested/suggested-regular.woff') format('woff'),*/
/*	url('assets/fonts/suggested/suggested-regular.ttf') format('truetype'),*/
/*	url('assets/fonts/suggested/suggested-regular.svg#Suggested') format('svg');*/
/*}*/

/* ===========================================================
   Icons
   =========================================================== */
.icon {
  font-size: 1.5rem;
  font-style: normal;
}
.icon--smooth {
  color: #e2e2e2;
}
.icon--light {
  color: #e5e8e8;
}
.icon--white {
  color: #fff;
}
.icon--lg {
  font-size: 5rem;
}
.icon--md {
  font-size: 2rem;
}
.icon--shadowed {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ===========================================================
   Header
   =========================================================== */
.header {
  display: block;
  text-align: center;
}
.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6 {
  display: inline-block;
  font-family: var(--font_neuropol);
  letter-spacing: -2px;
  background-image:  var(--gradient_batman);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header--robin h1,
.header--robin h2,
.header--robin h3,
.header--robin h4,
.header--robin h5,
.header--robin h6 {
  background-image: var(--gradient_robin);
}

.header--white h1,
.header--white h2,
.header--white h3,
.header--white h4,
.header--white h5,
.header--white h6 {
  background-image: none;
  -webkit-text-fill-color: white;
  color: white;
}

/* ===========================================================
   Product
   =========================================================== */
.product {
	position: relative;
	
	/* outline: 2px solid #bbb; */
	/* box-shadow: rgba(100, 100, 111, 0.2) 0 8px 32px 0; */
}

.product img {
	display: block;
	border: 4px solid white;
}

/* ===========================================================
   Button
   =========================================================== */
.button {
	display: inline-block;
    font-family: var(--font_neuropol);
    font-weight: 600;
    font-size: 2.8rem;
    -webkit-background-clip: text;
	padding: 1rem 5rem;
	border-radius: 6rem;
	text-align: center;
	transition: var(--transition);
}

.button span {
	position: relative;
	top: -2px;
}

.button:hover {
	transform: translateY(4px);
}





.button--small {
    font-size: 1rem;
	padding: 0.6rem 2rem 0.5rem;
}

.button--batman {
	background: var(--gradient_batman);
	box-shadow: 0 6px 0 var(--color_batman), 0 6px 12px rgba(0, 0, 0, 0.35);
	background-image: var(--gradient_batman);
	-webkit-text-fill-color: white;
}

.button--batman:hover {
	box-shadow: 0 2px 0 var(--color_batman), 0 2px 4px rgba(0, 0, 0, 0.35);
}

.button--batman:active {
	background: var(--gradient_batman_inverse);
}

.button--robin {
	background: var(--gradient_robin);
	box-shadow: 0 6px 0 var(--color_robin), 0 6px 12px rgba(0, 0, 0, 0.35);
	background-image: var(--gradient_robin);
	-webkit-text-fill-color: white;
}

.button--robin:hover {
	box-shadow: 0 2px 0 var(--color_robin), 0 2px 4px rgba(0, 0, 0, 0.35);
}

.button--robin:active {
	background: var(--gradient_robin_inverse);
}

.button--shop {
	font-weight: 500;
}

.button--shop svg {
	margin-left: 1rem;
	width: 2.4rem;
	height: 2.4rem;
	fill: white;
}

.button--empty {
	background: transparent;
	-webkit-text-fill-color: white;
}

.button--empty:hover {
	background: var(--gradient_batman);
}

.button--empty:active {
	background: var(--gradient_batman_inverse);
}




/* ===========================================================
   Slogan
   =========================================================== */
.slogan {
  display: block;
  text-align: center;
  font-family: 'OpenSans';
  font-size: 24px;
  margin: 2rem 0 0.5rem;
}

/* ===========================================================
   Article
   =========================================================== */
.article {
  font-size: 1.9rem;
  line-height: 1.6;
  margin-top: -6px;
}

/* ===========================================================
   TILES
   =========================================================== */
.tiles {
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(1, 100%);
  grid-template-rows: 0.75fr 0.75fr 0.75fr 2fr 1fr 1fr;
  align-content: center;
  justify-content: center;
  gap: 0;
}
@media (min-width: 769px) {
  .tiles {
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: 1fr 2fr;
  }
}
@media (min-width: 1025px) {
  .tiles {
    grid-template-columns: repeat(3, 33.33%);
    grid-template-rows: 1fr 2fr;
  }
}
.tile {
	border: 4px solid white;
	border-top: none;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
@media (min-width: 1025px) {
  .tile--centerDesktop {
    border-left-width: 0;
    border-right-width: 0;
  }
}
.tile__corner--batman.tile__corner--batman:before,
.tile__corner--batman.tile__corner--batman:after,
.tile__corner--batman.tile__corner--opposite:before,
.tile__corner--batman.tile__corner--opposite:after {
	background: var(--color_batman);
}
.tile--batman .tile--robin:before,
.tile--batman .tile__robin--batman:after {
	background: var(--color_robin);
}
.tile__corner {
	position: absolute;
	right: 0;
	top: 0;
}
.tile__corner:before,
.tile__corner:after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	background: var(--color_robin);
	transition: var(--transition);
	transition-delay: 0.25s;
	transition-duration: 0.4s;
}
.tile__corner:before {
	width: 40px;
	height: 2px;
}
.tile__corner:after {
	height: 40px;
	width: 2px;
}
.tile__corner--opposite {
	position: absolute;
	bottom: 0;
	left: 0;
}
.tile__corner--opposite:before,
.tile__corner--opposite:after {
	position: absolute;
	display: table;
	content: '';
	bottom: 0;
	left: 0;
	background: var(--color_robin);
	transition: var(--transition);
	transition-delay: 0.25s;
	transition-duration: 0.4s;
}
.tile__corner--opposite:before {
	width: 40px;
	height: 2px;
}
.tile__corner--opposite:after {
	height: 40px;
	width: 2px;
}
.tile:hover .tile__corner--opposite:before,
.tile:hover .tile__corner:before {
	width: 60px;
}
.tile:hover .tile__corner--opposite:after,
.tile:hover .tile__corner:after {
	height: 60px;
}
.tile--batman {
	background: var(--gradient_batman);
	
}
.tile--robin {
	background: var(--gradient_robin);
}

.tile__header {
	padding: 2rem;
}
.tile__header h4 {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.8;
}
.tile__header p {
	font-size: 2rem;
	font-style: italic;
	text-align: center;
}
.tile__sub {
	position: relative;
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 2rem;
}
.tile__icon {
	width: 8rem;
	height: 8rem;
	animation-duration: 0.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	will-change: transform;
	animation-delay: 0.35s;
}
.tile__icon--delivery {
  width: 11.5rem;
  height: 11.5rem;
  margin: -2.25rem;
}
@media (min-width: 1025px) {
  .tile:hover .tile__icon {
    animation-name: tileImgMove;
  }
}
@keyframes tileImgMove {
    0% {
		opacity: 1;
		transform: translateY(0);
	}
	20% {
		opacity: 0;
		transform: translateY(100%);
	}
	40% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
  text-align: center;
}
.contact__icon {
  margin: 3rem 0 0;
  width: 8rem;
  height: 8rem;
}



/* ===========================================================
   Footer
   =========================================================== */
.footer {
	position: relative;
	background-image: url('assets/images/orange_shapes_wb.jpg');
	background-color: #080e0e;
	background-position: 50% 86%;
	background-size: cover;
	overflow: hidden;
	text-align: center;
	color: #fff;
    z-index: 0;
}

.footer::before {
  content: '';

  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  bottom: 50%;
  right: 0;

  border-bottom: 2px solid white;
  border-right: 4px solid white;
  border-left: 4px solid white;
  background: linear-gradient(90deg, var(--color_batman_sub), var(--color_batman));
  opacity: 0.9;
}
.footer::after {
  content: '';

  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;

  border-top: 2px solid white;
  border-right: 4px solid white;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  background: linear-gradient(90deg, var(--color_robin_sub), var(--color_robin));
  opacity: 0.9;
}
.footer__content {
	position: relative;
	z-index: 1;
}
.footer__logo {
  margin: 8rem 0 4rem;
  height: 250px;
}
.footer__menu li {
  display: inline-block;
}
.footer__menu a {
  display: block;
  color: #fff;
  font-size: 1.7rem;
  text-transform: uppercase;
  padding: 10px;
  font-weight: 600;
}
@media (min-width: 769px) {
  .footer__menu a {
    padding: 5px 10px;
  }
}
.footer__socials {
  margin: 2rem 0 8rem;
}
.footer__socials__item {
  color: white;
  text-decoration: none;
}
.footer__socials__icon {
  margin-right: 1rem;
}
.footer__socials__icon img {
  width: 48px;
  height: 48px;
}
.footer__socials__icon--facebook img {
  width: 56px;
  height: 56px;
  position: relative;
  top: 4px;
  left: 3px;
}







.swiper-container {
  --swiper-theme-color: var(--color_batman);
  position: relative;
  width: 100vw;
  height: 320px;
  max-height: 60vh;
}

@media (min-width: 640px) {
  .swiper-container {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .swiper-container {
    height: 560px;
  }
}

@media (min-width: 2048px) {
  .swiper-container {
    height: 640px;
  }
}

.swiper-slide {
  height: 100%; /* all slides same height */
  width: auto !important; /* important: prevent full-width slides */
  flex-shrink: 0; /* don’t collapse */
}

.swiper-slide img {
  height: 100%; /* fill vertical space */
  width: auto;  /* maintain aspect ratio */
  display: block;
  cursor: zoom-in;
}

.swiper-pagination {
  --swiper-pagination-top: calc(100% + 25px);
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border: 10px solid white;
  margin: 0 !important;
  padding: 0 !important;
}

.swiper-navigation-icon path {
  border: 2px solid white;
}

.swiper-button-next {
  right: 20px !important;
}

.swiper-button-prev {
  left: 20px !important;
}

.view-image-tools__count {
  font-size: 1.45rem;
}

