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,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

input:focus,
textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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


:root {
  --blue: #25475f;
  --pink: #1b3548;
  --orange: #244760;
  --dark: #716265;
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #777777;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  color: #1a1a1a;
  font-family: 'Comic Sans MS', sans-serif;
  position: relative;
  font-weight: 800;
}

h1 {
  font-size: 400%;
}

h2 {
  font-size: 250%;
  margin-bottom: 30px;
}

h3 {
  font-size: 200%;
  margin-bottom: 20px;
}

h4 {
  font-size: 150%;
  margin-bottom: 15px;
}

h5 {
  font-size: 120%;
  margin-bottom: 10px;
}

p {
  margin: 15px 0;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

a {
  color: var(--pink);
}

a:hover,
a:focus,
a:active {
  color: var(--orange);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.justify {
  text-align: justify;
}

.color {
  color: var(--pink) !important;
}

.white {
  color: #ffffff !important;
}

.black {
  color: #1a1a1a !important;
}

.dark {
  color: var(--dark) !important;
}

.b {
  font-weight: 800;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.py-120 {
  padding: 120px 0 !important;
}

main {}

.section {
  padding: 25px 0;
}

.white-bg {
  background-color: #ffffff;
}

.pink-bg {
  background-color: var(--pink);
}

.pink-bg * {
  color: #ffffff;
}

.font1 {
  font-family: Arial;
}

.font2 {
  font-family: 'Comic Sans MS';
}

.w-50p {
  width: 50%;
}



header {
  font-family: 'Comic Sans MS';
  margin: 1.5% 0;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.1);
}

#nav-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  z-index: 9999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#nav-desktop li {
  text-align: center;
  padding: 0 20px;
}

#nav-desktop li a {
  color: var(--blue);
  font-size: 18px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
}

#nav-desktop img {
  max-height: 80px;
}


#slider {
  margin: 50px 0 30px 0;
}

#slider .slider-item {
  /* width: 400px; */
  padding: 30px 0;
  width: auto;
  height: 60vh;
}

#slider .slider-item img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  -o-transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

#slider .owl-item.center .slider-item img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.25);
}

#slider-info {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

#slider-info .slider-info-wrap {
  display: none;
  visibility: hidden;
  opacity: 0;
}

#slider-info .slider-info-wrap.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

#slider-info .slider-info-wrap img {
border-radius: 10px;
}

#tabs {
  background-color: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 60px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

#tabs a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#tabs a.active {
  color: #000000;
}

.tab-content {
  margin-top: 50px;
  padding: 0 50px;
  display: none;
  text-align: center;
}

.tab-content img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}



#news-section .container {
  max-width: 100%;
  width: 100%;
  padding: 0 150px;
}

#news-wrap {
  padding: 50px 50px 0 50px;
}

#news .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#news .owl-nav button {
  font-size: 80px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.6);
}

#news .owl-nav button:focus,
#news .owl-nav button:active,
#news .owl-nav button:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#news .owl-nav button i.fa {
  color: rgba(0, 0, 0, 0.6);
}

#news .owl-nav .owl-prev {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-left: -25px;
}

#news .owl-nav .owl-next {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  margin-right: -25px;
}

#news .owl-item img {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#sister-consirn img {
  max-height: 150px;
}

#addr>div:first-child {
  padding-right: 0;
  padding-left: 15px;
}

#addr>div:last-child {
  padding-right: 15px;
  padding-left: 0;
}

footer {
  overflow: hidden;
  color: #ffffff;
}

footer>.row {
  position: relative;
}

footer>.row:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 100%;
  height: 100px;
  margin-top: -50px;
  background-color: #1b3548;
}

footer>.row>* {
  position: relative;
}

footer .globe img {
  margin: 0 auto;
}

footer a {
  color: #ffffff;
}

#social {
  text-align: center;
  margin-top: 20px;
}

#social a {
  display: inline-block;
  margin-top: 15px;
  width: 60px;
}

#social a+a {
  margin-left: 10px;
}

#copyright {
  padding: 15px;
  margin: 30px 0 15px 0;
}



#nav-mobile,
#nav-mobile-toggle,
#logo-mobile {
  display: none;
}

#nav-mobile-toggle {
  margin-right: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 5px 15px;
  font-size: 20px;
}

#nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  background-color: #ffffff;
  height: 100%;
  width: 80%;
  max-width: 400px;
  z-index: 9999;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

#nav-mobile.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#nav-mobile li {
  padding: 5px 10px;
  font-size: 15px;
}

#close-nav {
  display: block;
  width: 30px;
  margin: 0 0 20px auto;
  cursor: pointer;
  font-size: 20px;
  text-align: center;
}

#mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  display: none;
}



#map {
  min-height: 65vh;
}

#map-overlap {
  margin-top: -80px;
  position: relative;
  z-index: 99;
}

#contact-addr,
#contact-addr2 {
  background-color: var(--blue);
  padding: 40px 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  height: 100%;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#contact-addr h4,
#contact-addr2 h4 {
  color: #ffffff;
}

#contact-addr {
  margin-right: 15px;
}

#contact-addr2 {
  background-color: #000000;
  margin-left: 15px;
}

#contact-addr a,
#contact-addr2 a {
  color: inherit;
}

#contact-addr a:hover,
#contact-addr2 a:hover {
  color: #ffffff;
}

#contact-addr i.fa,
#contact-addr2 i.fa {
  font-size: 80%;
  margin-right: 10px;
}


#ourgames-banner {
  background-color: #000000;
  padding: 80px 0;
}

#ourgames-banner h1 {
  color: rgba(255, 255, 255, 0.3);
  font-size: 50px;
}


/* #tilt-top, #tilt-bottom {
    position: relative;
}

#tilt-top:before, #tilt-bottom:before {
    content: '';
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform-origin: right bottom;
    transform: skewY(3deg);
}
#tilt-bottom:before {
    transform-origin: left top;
    transform: skewY(-1.5deg);
} */

#tilt-top {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  transform: skewY(-2deg);
  padding-bottom: calc(0.105 * 100vw);
  margin-bottom: calc(-0.070 * 100vw);
}

#tilt-top .container {
  -webkit-transform: skewY(2deg);
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

#tilt-bottom {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(2deg);
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
  padding: calc(0.035 * 100vw) 0 calc(0.070 * 100vw) 0;
  margin-top: calc(-0.070 * 100vw);
}

#tilt-bottom .container {
  -webkit-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  transform: skewY(-2deg);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

.game-section {
  background: transparent center center no-repeat;
  background-size: cover;
  color: #ffffff;
  padding: 30px 0 calc(0.070 * 100vw) 0;
}

.game-section h2 {
  margin-bottom: 0;
  line-height: 0;
}

#studio header {
  background-color: #ffffff;
  width: 100%;
}

#studio-desc {
  overflow: hidden;
  margin-top: -12%;
}

#studio-desc-bg {
  background-color: #244760;
}

#studio-desc-bg .col-6 {
  padding: 40px;
  color: #fff;
}

#studio-desc-bg .col-6+.col-6:before {
  content: '';
  position: relative;
  left: -40px;
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  float: left;
  display: block;
}

#squad-section {
  overflow: hidden;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 100px;
  text-align: center;
}

#studio-squad {
  background-color: #000000;
  color: #eeeeee;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  position: relative;
  font-family: 'Comic Sans MS', sans-serif;
}

#squad-heading {
  width: 200px;
  height: 200px;
  max-width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#squad-heading h3 {
  margin-bottom: 0;
}

#squad-cols>* {
  padding: 0 30px;
}

#squad-cols .squad-img {
  margin: 0 auto 15px auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  height: auto;
}

#squad-cols .squad-name {
  margin-bottom: 0;
  color: #eeeeee;
}

#squad-cols .squad-role {
  margin-top: 20px;
  font-size: 18px;
}

#squad-cols>* {
  margin-bottom: 70px;
}

#events-wrap {
  padding: 20px 50px;
}