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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  list-style: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}
* {
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

html {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

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

/* simple grid --------------- */
.row {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  justify-content: flex-start;
}
@media only screen and (min-width:1440px) {
  .row {
    padding: 0;
  }
}
.row.s-left {
  justify-content: flex-start;
}
.row.s-center {
  justify-content: center;
}
.row.s-right {
  justify-content: flex-end;
}
.row.s-between {
  justify-content: space-between;
}
.row.s-evenly {
  justify-content: space-evenly;
}
@media only screen and (min-width:640px) {
  .row.m-left {
    justify-content: flex-start;
  }
  .row.m-center {
    justify-content: center;
  }
  .row.m-right {
    justify-content: flex-end;
  }
  .row.m-between {
    justify-content: space-between;
  }
  .row.m-evenly {
    justify-content: space-evenly;
  }
}
@media only screen and (min-width:1024px) {
  .row.l-left {
    justify-content: flex-start;
  }
  .row.l-center {
    justify-content: center;
  }
  .row.l-right {
    justify-content: flex-end;
  }
  .row.l-between {
    justify-content: space-between;
  }
  .row.l-evenly {
    justify-content: space-evenly;
  }
}

.cols {
  padding: 0 10px;
  position: relative;
  flex-grow: 0;
  flex-basis: 0;
  min-height: 1px;
}
.cols.s-1 {
  min-width: 8.3333333333%;
}
.cols.s-offset-1 {
  margin-left: 8.3333333333%;
}
.cols.s-2 {
  min-width: 16.6666666667%;
}
.cols.s-offset-2 {
  margin-left: 16.6666666667%;
}
.cols.s-3 {
  min-width: 25%;
}
.cols.s-offset-3 {
  margin-left: 25%;
}
.cols.s-4 {
  min-width: 33.3333333333%;
}
.cols.s-offset-4 {
  margin-left: 33.3333333333%;
}
.cols.s-5 {
  min-width: 41.6666666667%;
}
.cols.s-offset-5 {
  margin-left: 41.6666666667%;
}
.cols.s-6 {
  min-width: 50%;
}
.cols.s-offset-6 {
  margin-left: 50%;
}
.cols.s-7 {
  min-width: 58.3333333333%;
}
.cols.s-offset-7 {
  margin-left: 58.3333333333%;
}
.cols.s-8 {
  min-width: 66.6666666667%;
}
.cols.s-offset-8 {
  margin-left: 66.6666666667%;
}
.cols.s-9 {
  min-width: 75%;
}
.cols.s-offset-9 {
  margin-left: 75%;
}
.cols.s-10 {
  min-width: 83.3333333333%;
}
.cols.s-offset-10 {
  margin-left: 83.3333333333%;
}
.cols.s-11 {
  min-width: 91.6666666667%;
}
.cols.s-offset-11 {
  margin-left: 91.6666666667%;
}
.cols.s-12 {
  min-width: 100%;
}
.cols.s-offset-12 {
  margin-left: 100%;
}
@media only screen and (min-width:640px) {
  .cols.m-1 {
    min-width: 8.3333333333%;
  }
  .cols.m-offset-1 {
    margin-left: 8.3333333333%;
  }
  .cols.m-2 {
    min-width: 16.6666666667%;
  }
  .cols.m-offset-2 {
    margin-left: 16.6666666667%;
  }
  .cols.m-3 {
    min-width: 25%;
  }
  .cols.m-offset-3 {
    margin-left: 25%;
  }
  .cols.m-4 {
    min-width: 33.3333333333%;
  }
  .cols.m-offset-4 {
    margin-left: 33.3333333333%;
  }
  .cols.m-5 {
    min-width: 41.6666666667%;
  }
  .cols.m-offset-5 {
    margin-left: 41.6666666667%;
  }
  .cols.m-6 {
    min-width: 50%;
  }
  .cols.m-offset-6 {
    margin-left: 50%;
  }
  .cols.m-7 {
    min-width: 58.3333333333%;
  }
  .cols.m-offset-7 {
    margin-left: 58.3333333333%;
  }
  .cols.m-8 {
    min-width: 66.6666666667%;
  }
  .cols.m-offset-8 {
    margin-left: 66.6666666667%;
  }
  .cols.m-9 {
    min-width: 75%;
  }
  .cols.m-offset-9 {
    margin-left: 75%;
  }
  .cols.m-10 {
    min-width: 83.3333333333%;
  }
  .cols.m-offset-10 {
    margin-left: 83.3333333333%;
  }
  .cols.m-11 {
    min-width: 91.6666666667%;
  }
  .cols.m-offset-11 {
    margin-left: 91.6666666667%;
  }
  .cols.m-12 {
    min-width: 100%;
  }
  .cols.m-offset-12 {
    margin-left: 100%;
  }
  .cols.m-offset-0 {
    margin-left: 0;
  }
}
@media only screen and (min-width:1024px) {
  .cols.l-1 {
    min-width: 8.3333333333%;
  }
  .cols.l-offset-1 {
    margin-left: 8.3333333333%;
  }
  .cols.l-2 {
    min-width: 16.6666666667%;
  }
  .cols.l-offset-2 {
    margin-left: 16.6666666667%;
  }
  .cols.l-3 {
    min-width: 25%;
  }
  .cols.l-offset-3 {
    margin-left: 25%;
  }
  .cols.l-4 {
    min-width: 33.3333333333%;
  }
  .cols.l-offset-4 {
    margin-left: 33.3333333333%;
  }
  .cols.l-5 {
    min-width: 41.6666666667%;
  }
  .cols.l-offset-5 {
    margin-left: 41.6666666667%;
  }
  .cols.l-6 {
    min-width: 50%;
  }
  .cols.l-offset-6 {
    margin-left: 50%;
  }
  .cols.l-7 {
    min-width: 58.3333333333%;
  }
  .cols.l-offset-7 {
    margin-left: 58.3333333333%;
  }
  .cols.l-8 {
    min-width: 66.6666666667%;
  }
  .cols.l-offset-8 {
    margin-left: 66.6666666667%;
  }
  .cols.l-9 {
    min-width: 75%;
  }
  .cols.l-offset-9 {
    margin-left: 75%;
  }
  .cols.l-10 {
    min-width: 83.3333333333%;
  }
  .cols.l-offset-10 {
    margin-left: 83.3333333333%;
  }
  .cols.l-11 {
    min-width: 91.6666666667%;
  }
  .cols.l-offset-11 {
    margin-left: 91.6666666667%;
  }
  .cols.l-12 {
    min-width: 100%;
  }
  .cols.l-offset-12 {
    margin-left: 100%;
  }
  .cols.l-offset-0 {
    margin-left: 0;
  }
}

/* --------------------------- */
/* show/hide ----------------- */
.s-hide, .hide {
  display: none !important;
}

@media only screen and (min-width:640px) {
  .m-hide {
    display: none !important;
  }
  .m-show {
    display: initial !important;
  }
}
@media only screen and (min-width:1024px) {
  .l-hide {
    display: none !important;
  }
  .l-show {
    display: initial !important;
  }
}
@media only screen and (min-width:1440px) {
  .full-hide {
    display: none !important;
  }
  .full-show {
    display: initial !important;
  }
}
/* --------------------------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, body, div, table, td, li, input, select, textarea, p {
  font-family: "Montserrat", sans-serif;
}

off-canvas .menu-structure, off-canvas .menu-structure > li, off-canvas .menu-structure > ul, off-canvas .menu-structure > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
}
off-canvas .menu-structure:before, off-canvas .menu-structure > li:before, off-canvas .menu-structure > ul:before, off-canvas .menu-structure > ul > li:before {
  display: none;
  position: relative;
  top: unset;
  left: unset;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: none;
}

button[data-off-canvas-toggle] {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: left;
  border-radius: 0;
}

body, div, table, td, li, input, select, textarea, p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #1B1B1B;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media only screen and (min-width:1024px) {
  h1, .h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}

h2, .h2 {
  font-size: 2rem;
  line-height: 2rem;
}
@media only screen and (min-width:1024px) {
  h2, .h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #A49BA8;
}

ol {
  padding-left: 25px;
}
ol li {
  padding-left: 5px;
}

ul {
  margin-left: 5px;
  list-style: none;
}
ul li {
  position: relative;
  padding-left: 15px;
}

strong {
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  z-index: 99999;
  bottom: -100%;
  right: 25px;
  width: calc(100vw - 50px);
  padding: 30px 40px;
  animation-name: show;
  animation-fill-mode: forwards;
  animation-duration: 0.75s;
}
@media only screen and (min-width:640px) {
  .cookie-banner {
    width: auto;
    right: 50px;
  }
}
.cookie-banner strong {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width:640px) {
  .cookie-banner strong {
    font-size: 18px;
  }
}
.cookie-banner::after {
  content: "";
  position: absolute;
  background-color: #1B1B1B;
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  z-index: -1;
}
.cookie-banner a {
  color: #fff;
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
}
@media only screen and (min-width:640px) {
  .cookie-banner a {
    font-size: 16px;
  }
}
.cookie-banner a.cookie-accept, .cookie-banner a.cookie-deny {
  background-color: #E521EB;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 20px;
  transition: all 0.5s ease;
  width: 100%;
  margin: 10px 0;
}
@media only screen and (min-width:1024px) {
  .cookie-banner a.cookie-accept, .cookie-banner a.cookie-deny {
    width: auto;
    margin: 0 20px 0 0;
  }
}
.cookie-banner a.cookie-accept:hover, .cookie-banner a.cookie-deny:hover {
  background-color: #fff;
  color: #E521EB;
}
.cookie-banner a.privacy-link {
  display: block;
  margin-bottom: 25px;
}

@keyframes show {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background-color: transparent;
  width: 100vw;
  z-index: 999;
  transition: background-color 0.5s ease;
}
.menu.sticky {
  background-color: #1B1B1B;
}
.menu .row, .menu .cols {
  position: relative;
  height: 100%;
}
@media only screen and (min-width:1280px) {
  .menu {
    height: 110px;
  }
}
.menu .menu-border {
  position: absolute;
  width: 300%;
  height: 90px;
  right: 0;
  bottom: -70px;
}
@media only screen and (min-width:640px) {
  .menu .menu-border {
    width: 200%;
  }
}
@media only screen and (min-width:1024px) {
  .menu .menu-border {
    width: 100%;
  }
}

.main-menu {
  position: relative;
  transition: background-color 0.4s ease;
  height: 100%;
  padding: 20px 0;
  background-color: #1B1B1B;
}
@media only screen and (min-width:1024px) {
  .main-menu {
    padding: 20px 50px 0 50px;
  }
}
.main-menu .cols {
  padding: 0;
}
.main-menu .logo {
  position: relative;
  transition: top 0.5s ease;
  z-index: 99;
  top: 10px;
}
.main-menu .logo .logoImg {
  -webkit-mask-image: url(../img/svg/arcane-embers-logo.svg);
  mask-image: url(../img/svg/arcane-embers-logo.svg);
  width: 200px;
  height: 100px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: contain;
          mask-position: contain;
  background-color: #fff;
  transition: background-color 0.5s ease;
}
@media only screen and (min-width:1024px) {
  .main-menu .logo .logoImg {
    width: 300px;
  }
}
.main-menu .logo .logoImg:hover {
  background-color: #E521EB;
}
.main-menu .logo:hover {
  top: 5px;
}
.main-menu .logo a {
  text-decoration: none;
}
.main-menu .menucol {
  display: none;
}
@media only screen and (min-width:1280px) {
  .main-menu .menucol {
    display: block;
    height: 100%;
  }
}
.main-menu ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}
.main-menu ul .nav-item {
  padding: 0 15px;
  align-self: center;
}
@media only screen and (min-width:1370px) {
  .main-menu ul .nav-item {
    padding: 0 20px;
  }
}
.main-menu ul .nav-item .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.main-menu ul .nav-item .nav-link span {
  position: relative;
  display: inline-flex;
  top: 0;
  transition: transform 0.25s ease, top 0.5s ease, background-color 0.5s ease;
}
.main-menu ul .nav-item .nav-link span .iconImg {
  background-image: url(../img/png/arcane-embers-icon-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
@media only screen and (min-width:1024px) {
  .main-menu ul .nav-item .nav-link span .iconImg {
    background-color: #fff;
    background-image: none;
    -webkit-mask-image: url(../img/svg/arcane-embers-icon.svg);
    mask-image: url(../img/svg/arcane-embers-icon.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
.main-menu ul .nav-item .nav-link.active {
  color: #E521EB;
}
.main-menu ul .nav-item .nav-link:hover span {
  top: -5px;
  color: #E521EB;
  transform: scale(1.1);
}
.main-menu ul .nav-item .nav-link:hover span .iconImg {
  background-color: none;
}
@media only screen and (min-width:1024px) {
  .main-menu ul .nav-item .nav-link:hover span .iconImg {
    background-color: #E521EB;
  }
}

off-canvas {
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: -100vw;
  z-index: 998;
  overflow: auto;
  padding: 150px 40px 40px;
  opacity: 0;
  transition: ease 0.5s;
  transition-property: opacity, left;
  background-color: #1B1B1B;
}
off-canvas .off-canvas-logo {
  display: block;
  position: absolute;
  width: 75px;
  height: 75px;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/png/arcane-embers-icon-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width:1024px) {
  off-canvas .off-canvas-logo {
    background-color: #fff;
    background-image: none;
    -webkit-mask-image: url(../img/svg/arcane-embers-icon.svg);
    mask-image: url(../img/svg/arcane-embers-icon.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
off-canvas::before {
  left: 0;
}
off-canvas::after {
  right: 0;
}
off-canvas.show-menu {
  left: 0;
  opacity: 1;
}
@media only screen and (min-width:1280px) {
  off-canvas.show-menu {
    left: -100vw;
    opacity: 0;
  }
}
off-canvas .dropdown-titel, off-canvas .dropdown-subtitel {
  display: none;
}
off-canvas .menu-structure {
  text-align: center;
}
off-canvas .menu-structure li {
  margin-bottom: 20px;
}
off-canvas .menu-structure a, off-canvas .menu-structure span {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: color ease 0.3s;
}
@media only screen and (min-width:1520px) {
  off-canvas .menu-structure a, off-canvas .menu-structure span {
    font-size: 18px;
  }
}
html:not(.touch) off-canvas .menu-structure a:hover, off-canvas .menu-structure a.active, html:not(.touch) off-canvas .menu-structure span:hover, off-canvas .menu-structure span.active {
  color: #A49BA8;
}
off-canvas .menu-structure .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
off-canvas .menu-structure .nav-link span {
  position: relative;
  display: inline-flex;
  top: 0;
  transition: transform 0.25s ease, top 0.5s ease, background-color 0.5s ease;
}
off-canvas .menu-structure .nav-link span .iconImg {
  background-image: url(../img/png/arcane-embers-icon-white.png);
  width: 40px;
  height: 40px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width:1024px) {
  off-canvas .menu-structure .nav-link span .iconImg {
    background-color: #fff;
    background-image: none;
    -webkit-mask-image: url(../img/svg/arcane-embers-icon.svg);
    mask-image: url(../img/svg/arcane-embers-icon.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
off-canvas .menu-structure .nav-link.active {
  color: #E521EB;
}
off-canvas .menu-structure .nav-link:hover span {
  top: -5px;
  color: #E521EB;
  transform: scale(1.1);
}
off-canvas .menu-structure .nav-link:hover span .iconImg {
  background-color: #E521EB;
}

button[data-off-canvas-toggle] {
  cursor: pointer;
  position: relative;
  text-decoration: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: #1B1B1B;
  color: #fff;
}

button[data-off-canvas-toggle] {
  transition: transform ease 0.3s;
  float: right;
}
@media only screen and (min-width:1280px) {
  button[data-off-canvas-toggle] {
    display: none;
  }
}
button[data-off-canvas-toggle]:before,
button[data-off-canvas-toggle] span, button[data-off-canvas-toggle]:after {
  position: absolute;
  left: 13px;
  right: 13px;
  background-color: #fff;
  height: 2px;
  transition: all ease 0.3s;
}
button[data-off-canvas-toggle]:before, button[data-off-canvas-toggle]:after {
  content: "";
}
button[data-off-canvas-toggle]:before {
  top: 13px;
}
button[data-off-canvas-toggle] span {
  top: 19px;
  overflow: hidden;
  color: transparent;
  font-size: 0px;
  line-height: 0;
}
button[data-off-canvas-toggle]:after {
  top: 25px;
}
html:not(.touch) button[data-off-canvas-toggle]:hover:before,
html:not(.touch) button[data-off-canvas-toggle]:hover span, html:not(.touch) button[data-off-canvas-toggle]:hover:after {
  background-color: #fff;
}
button[data-off-canvas-toggle].show-menu span {
  opacity: 0;
}
button[data-off-canvas-toggle].show-menu:before, button[data-off-canvas-toggle].show-menu:after {
  top: 19px;
  right: 10px;
  left: 10px;
}
button[data-off-canvas-toggle].show-menu:before {
  transform: rotate(45deg);
}
button[data-off-canvas-toggle].show-menu:after {
  transform: rotate(-45deg);
}
html:not(.touch) button[data-off-canvas-toggle].show-menu:hover {
  transform: rotate(90deg);
}
html:not(.touch) button[data-off-canvas-toggle].show-menu:hover:before, html:not(.touch) button[data-off-canvas-toggle].show-menu:hover:after {
  top: 21px;
  right: 10px;
  left: 10px;
}
html:not(.touch) button[data-off-canvas-toggle].show-menu:hover:before {
  transform: rotate(45deg);
}
html:not(.touch) button[data-off-canvas-toggle].show-menu:hover:after {
  transform: rotate(-45deg);
}

.homeHeader {
  position: relative;
  margin-top: 110px;
  height: 60vh;
}
@media only screen and (min-width:640px) {
  .homeHeader {
    height: 80vh;
  }
}
.homeHeader .headerSlider {
  position: relative;
  width: 100%;
  height: 100%;
}
.homeHeader .headerSlider .headerSlide {
  position: relative;
  width: 100%;
  height: 100%;
}
.homeHeader .headerSlider .headerSlide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.homeHeader .sliderPagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 40px;
  background-color: #1B1B1B;
  border-radius: 10px 10px 0 0;
}
@media only screen and (min-width:640px) {
  .homeHeader .sliderPagination {
    height: 50px;
  }
}
.homeHeader .sliderPagination ul {
  margin-left: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  height: 100%;
}
.homeHeader .sliderPagination ul li {
  background-color: #A49BA8;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 0 10px;
  transition: background-color 0.5s ease;
}
@media only screen and (min-width:640px) {
  .homeHeader .sliderPagination ul li {
    width: 20px;
    height: 20px;
  }
}
.homeHeader .sliderPagination ul li.active {
  background-color: #E521EB;
}
.homeHeader .sliderPagination ul li:hover {
  background-color: #E521EB;
  cursor: pointer;
}

.about {
  padding: 100px 0;
  background-color: #1B1B1B;
}
.about .aboutImg {
  position: relative;
  min-height: 200px;
  height: 100%;
}
.about .aboutImg img {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 100%;
  max-width: none;
  height: 300px;
}
@media only screen and (min-width:1024px) {
  .about .aboutImg img {
    width: 120%;
    height: auto;
    bottom: 0;
  }
}
.about .aboutText {
  padding: 50px 0;
}
@media only screen and (min-width:1024px) {
  .about .aboutText {
    padding: 100px 0;
  }
}
.about .aboutText h1 {
  color: #E521EB;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 20px;
}
.about .aboutText img {
  width: 300px;
  margin-bottom: 50px;
}
@media only screen and (min-width:1024px) {
  .about .aboutText img {
    width: 450px;
  }
}
.about .aboutText p {
  color: #A49BA8;
  font-weight: 600;
  margin: 0 0 25px 0;
}

.games {
  position: relative;
  background-color: #222222;
  padding: 100px 0;
}
@media only screen and (min-width:1024px) {
  .games {
    padding: 150px 0;
  }
}
.games::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(74, 34, 90) 100%);
}
.games::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(74, 34, 90) 75%);
}
.games .gamesLogo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media only screen and (min-width:1024px) {
  .games .gamesLogo {
    margin-bottom: 100px;
  }
}
.games .gamesLogo img {
  max-width: none;
  width: 700px;
}
.games .gameCol {
  position: relative;
  padding: 50px 20px;
}
@media only screen and (min-width:1024px) {
  .games .gameCol {
    padding: 0 20px;
  }
}
.games .gameCol .gameImg {
  position: relative;
  width: 100%;
  height: 250px;
}
.games .gameCol .gameImg.videoLink ::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url(../img/png/video-btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1);
  transition: all 0.5s ease;
}
.games .gameCol .gameImg.videoLink:hover ::after {
  transform: scale(1.1);
}
.games .gameCol .gameImg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.games .gameCol .gametitleCol {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width:1024px) {
  .games .gameCol .gametitleCol {
    flex-direction: row;
    gap: 0;
  }
}
.games .gameCol .gameTitle h3 {
  font-size: 22px;
  color: #fff;
}
.games .gameCol .gameTitle h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s ease;
}
.games .gameCol .gameTitle h3 a:hover {
  color: #E521EB;
}
.games .gameCol .storeLogo {
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-color 0.5s ease;
  margin: 0 5px;
}
@media only screen and (min-width:1024px) {
  .games .gameCol .storeLogo {
    background-color: #fff;
  }
}
.games .gameCol .storeLogo.steam {
  background-image: url(../img/png/steam-icon.png);
}
@media only screen and (min-width:1024px) {
  .games .gameCol .storeLogo.steam {
    -webkit-mask-image: url(../img/svg/steam-icon.svg);
    mask-image: url(../img/svg/steam-icon.svg);
    background-image: none;
  }
}
.games .gameCol .storeLogo.epic {
  background-image: url(../img/png/epic-games-store-icon.png);
}
@media only screen and (min-width:1024px) {
  .games .gameCol .storeLogo.epic {
    -webkit-mask-image: url(../img/svg/epic-games-store-icon.svg);
    mask-image: url(../img/svg/epic-games-store-icon.svg);
    background-image: none;
  }
}
.games .gameCol .storeLogo:hover {
  background-color: #E521EB;
}
.games .gameCol p {
  color: #A49BA8;
  font-weight: 600;
}

.careers {
  background-color: #1B1B1B;
  padding: 100px 0 300px 0;
}
@media only screen and (min-width:1024px) {
  .careers {
    padding: 200px 0;
  }
}
.careers .careerInfo, .careers .careerPostings {
  padding: 30px 0;
}
@media only screen and (min-width:1024px) {
  .careers .careerInfo, .careers .careerPostings {
    padding: 0 50px;
  }
}
.careers .careerInfo h2, .careers .careerPostings h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 50px;
}
.careers .careerInfo p, .careers .careerPostings p {
  color: #A49BA8;
  font-weight: 600;
}
.careers .careerInfo .careerBtn, .careers .careerPostings .careerBtn {
  margin-top: 50px;
}

.contact {
  position: relative;
  padding: 0;
  background-color: #1B1B1B;
}
@media only screen and (min-width:640px) {
  .contact {
    padding: 0 0 150px 0;
  }
}
@media only screen and (min-width:1024px) {
  .contact {
    padding: 100px 0 100px 0;
  }
}
@media only screen and (min-width:1921px) {
  .contact {
    padding: 200px 0 100px 0;
  }
}
.contact .contactArt {
  position: absolute;
  width: 100vw;
  max-width: 450px;
  height: 100%;
  left: 0;
  bottom: auto;
  top: calc(-100% - 50px);
}
@media only screen and (min-width:640px) {
  .contact .contactArt {
    width: 60vw;
    top: -100%;
    max-width: none;
  }
}
@media only screen and (min-width:1024px) {
  .contact .contactArt {
    display: block;
    width: 100vw;
    bottom: -35%;
    top: auto;
  }
}
@media only screen and (min-width:1921px) {
  .contact .contactArt {
    display: block;
    width: 80vw;
    bottom: -35%;
    top: auto;
  }
}
.contact .contactArt img {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  max-width: none;
  width: 100%;
}
.contact .contactArt::after {
  content: "";
  display: block;
  width: 100vw;
  height: 60px;
  background-color: #1B1B1B;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: all;
}
@media only screen and (min-width:640px) {
  .contact .contactArt::after {
    height: 80px;
  }
}
@media only screen and (min-width:1024px) {
  .contact .contactArt::after {
    display: none;
  }
}
.contact .contactInfo {
  position: relative;
  z-index: 5;
}
.contact .contactInfo .socialBlock {
  background-color: #1B1B1B;
  display: flex;
  align-items: center;
  height: 80px;
  margin-top: 50px;
}
.contact .contactInfo .socialBlock .socialIcon {
  display: inline-block;
  position: relative;
  background-color: none;
  width: 30px;
  height: 30px;
  top: 0;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.5s ease;
  margin: 0 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width:1024px) {
  .contact .contactInfo .socialBlock .socialIcon {
    width: 50px;
    height: 50px;
    background-color: #E521EB;
  }
}
.contact .contactInfo .socialBlock .socialIcon:hover {
  background-color: #fff;
  top: -5px;
}
.contact .contactInfo .socialBlock .socialIcon.instagram {
  background-image: url(../img/png/instagram-icon.png);
}
@media only screen and (min-width:1024px) {
  .contact .contactInfo .socialBlock .socialIcon.instagram {
    -webkit-mask-image: url(../img/svg/instagram-icon.svg);
    mask-image: url(../img/svg/instagram-icon.svg);
    background-image: none;
  }
}
.contact .contactInfo .socialBlock .socialIcon.youtube {
  background-image: url(../img/png/youtube-icon.png);
}
@media only screen and (min-width:1024px) {
  .contact .contactInfo .socialBlock .socialIcon.youtube {
    -webkit-mask-image: url(../img/svg/youtube-icon.svg);
    mask-image: url(../img/svg/youtube-icon.svg);
    background-image: none;
  }
}
.contact .contactInfo .socialBlock .socialIcon.discord {
  background-image: url(../img/png/discord-icon.png);
}
@media only screen and (min-width:1024px) {
  .contact .contactInfo .socialBlock .socialIcon.discord {
    -webkit-mask-image: url(../img/svg/discord-icon.svg);
    mask-image: url(../img/svg/discord-icon.svg);
    background-image: none;
  }
}
.contact .contactInfo .socialBlock .socialIcon.twitter {
  background-image: url(../img/png/x-icon.png);
}
@media only screen and (min-width:1024px) {
  .contact .contactInfo .socialBlock .socialIcon.twitter {
    -webkit-mask-image: url(../img/svg/x-icon.svg);
    mask-image: url(../img/svg/x-icon.svg);
    background-image: none;
  }
}
.contact .contactInfo .newsletter {
  margin-top: 50px;
}
.contact .contactInfo .newsletter h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.contact .contactInfo .newsletter p {
  font-weight: 600;
  margin-bottom: 30px;
}

footer {
  background-color: #1B1B1B;
  position: relative;
  z-index: 5;
}
footer p, footer a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 15px 0;
  margin: 0;
  color: #fff;
}
footer .topFooter {
  padding: 20px 0 0 0;
}
footer .topFooter .arcaneLogo {
  display: none;
  justify-content: center;
}
@media only screen and (min-width:640px) {
  footer .topFooter .arcaneLogo {
    display: flex;
  }
}
footer .topFooter .arcaneLogo img {
  width: 130px;
  margin-top: -50px;
}
footer .topFooter .footerBorder {
  display: flex;
  justify-self: center;
  margin: 40px 0 20px 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(235, 235, 235, 0.5), rgba(235, 235, 235, 0.5), rgba(255, 255, 255, 0));
  width: 75%;
}
footer .bottomFooter {
  padding: 30px 0;
  text-align: center;
}
@media only screen and (min-width:1024px) {
  footer .bottomFooter {
    text-align: left;
  }
}
footer .bottomFooter .copyright p {
  color: #E521EB;
  font-weight: 700;
}
footer .bottomFooter .links a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-decoration: underline;
  padding: 10px;
  transition: color 0.5s ease;
}
@media only screen and (min-width:1024px) {
  footer .bottomFooter .links a {
    padding: 15px 20px;
  }
}
footer .bottomFooter .links a:hover {
  color: #E521EB;
}
footer .bottomFooter .designBy p {
  text-align: center;
  font-weight: 500;
  color: #A49BA8;
}
@media only screen and (min-width:1024px) {
  footer .bottomFooter .designBy p {
    text-align: right;
  }
}
footer .bottomFooter .designBy p a {
  color: #A49BA8;
  transition: color 0.5s ease;
}
footer .bottomFooter .designBy p a:hover {
  color: #fff;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: calc(0.75em + 1vmin);
  background: #1B1B1B;
  color: #fff;
  opacity: 1 !important;
  transform: none !important;
  transition: ease 0.5s 0.3s;
  transition-property: opacity, transform;
}
body.no-scroll {
  overflow: hidden;
}

::-moz-selection {
  background: #E521EB;
}

::selection {
  background: #E521EB;
}

*:active,
*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.form-control:focus {
  box-shadow: none;
}

.Btn {
  position: relative;
  display: block;
  background-color: #E521EB;
  border-radius: 0;
  color: #fff;
  padding: 10px 60px 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: 0.5s;
  border: 2px solid #E521EB;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
}
@media only screen and (min-width:1024px) {
  .Btn {
    display: inline-block;
    width: auto;
    padding: 16px 60px 16px 30px;
  }
}
.Btn:hover {
  background-color: #fff;
  color: #E521EB;
  font-size: 1.1rem;
}

.arrowBtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(../img/svg/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.5s ease;
  background-color: none;
}
@media only screen and (min-width:1024px) {
  .arrowBtn::after {
    -webkit-mask-image: url(../img/svg/arrow-right.svg);
    mask-image: url(../img/svg/arrow-right.svg);
    background-image: none;
    background-color: #fff;
  }
}
.arrowBtn:hover::after {
  background-color: #E521EB;
  right: 5px;
}

form input {
  background-color: #1B1B1B;
  color: #A49BA8;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px 16px 20px;
  border: 1px solid #A49BA8;
  min-width: 300px;
  width: 100%;
}
@media only screen and (min-width:1024px) {
  form input {
    width: auto;
  }
}/*# sourceMappingURL=site.css.map */