@font-face {
  font-family: 'Primary-Font';
  src: url("../../fonts/Outfit-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Primary-Font-SemiBold';
  src: url("../../fonts/Outfit-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Primary-Font-Bold';
  src: url("../../fonts/Outfit-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.clearfix {
  clear: both;
}
ul.list-unstyled {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.column-holder {
  overflow: hidden;
}
.column-holder .half {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .column-holder .half {
    width: 48%;
    float: left;
  }
  .column-holder .half:nth-child(even) {
    margin-right: 4%;
  }
}
.read-more {
  text-decoration: none;
  color: #07305d;
  font-family: 'Primary-Font-SemiBold';
  display: inline-block;
  position: relative;
}
.read-more::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 30%;
  width: 16px;
  height: 16px;
  background-image: url(../../images/right-arrow.png);
  display: inline-block;
  background-size: 16px 16px;
  opacity: 0;
  transition: all 0.3s ease;
}
.read-more:hover::before {
  opacity: 1;
  right: -30px;
}
.section-title {
  font-size: 1.5em;
  position: relative;
}
.section-title::after {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -0.5px;
  content: "";
  display: block;
  z-index: 1;
}
.section-title span {
  display: inline-block;
  border-radius: 13px;
  padding: 10px 25px;
  background-color: #07305d;
  border: 1px solid #fff;
  background-image: url(../../images/lines.svg);
  position: relative;
  z-index: 2;
}
.section-title.white-bg span {
  background-color: #fff;
  color: #07305d;
  border-color: #07305d;
  background-image: url(../../images/lines-dark.svg);
}
.section-title.white-bg::after {
  background-color: #07305d;
}
html,
body {
  padding: 0px;
  font-family: 'Primary-Font';
  margin: 0px;
  font-size: 14px;
}
html.entered .page-loader,
body.entered .page-loader {
  top: -100%;
}
.container {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #07305d;
  transition: top 0.5s ease 2s;
}
.page-loader .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "Primary-Font-Bold";
  color: hsla(0, 0%, 100%, 0.3);
  font-size: 3em;
}
@keyframes loading {
  from {
    max-width: 0;
  }
}
.page-loader .text:before {
  content: attr(data-content);
  position: absolute;
  overflow: hidden;
  max-width: 4em;
  color: white;
  animation: loading 2s linear;
}
#above18 {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(7, 48, 93, 0.7);
  z-index: 8;
  width: 100%;
  height: 100%;
  display: none;
}
#above18.show {
  display: block;
}
#above18 .box {
  width: 90%;
  max-width: 550px;
  padding: 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#above18 .box .logo {
  display: block;
  margin-bottom: 10px;
  color: #07305d;
  background: #fff;
  font-family: "Primary-Font-Bold";
  font-size: 2em;
  text-decoration: none;
  position: relative;
  text-align: center;
}
#above18 .box .info {
  margin: 20px 0px;
}
#above18 .box .age-btn {
  width: 100%;
  display: block;
  line-height: 45px;
  color: #fff;
  text-align: center;
  background: #07305d;
  text-decoration: none;
  margin: 10px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#above18 .box .age-btn:hover {
  background: #0d437d;
}
#above18 .box .age-btn.under18-btn {
  background: gray;
}
#main-header {
  position: relative;
  z-index: 3;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
}
#main-header::before {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #07305d;
  content: "";
  display: block;
  transition: width 0.3s ease;
}
#main-header .logo {
  float: left;
  display: block;
  padding: 10px 25px;
  color: #07305d;
  background: #fff;
  font-family: "Primary-Font-Bold";
  font-size: 2em;
  text-decoration: none;
  z-index: 3;
  position: relative;
}
#main-header a:not(.logo) {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  display: inline-block;
  padding: 7px 0px;
  position: relative;
  z-index: 3;
}
#main-header #main-navigation {
  margin-left: 100px;
  margin-top: 8px;
  float: left;
  z-index: 3;
}
#main-header #main-navigation ul {
  overflow: hidden;
}
#main-header #main-navigation ul li {
  float: left;
}
#main-header #main-navigation ul li:not(.last-child) {
  margin-right: 20px;
}
#main-header #main-navigation ul li a::before {
  width: 0%;
  bottom: 0px;
  left: 0px;
  background-color: #fff;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  transition: width 0.3s ease;
}
#main-header #main-navigation ul li a.active::before,
#main-header #main-navigation ul li a:hover::before {
  width: 100%;
}
#main-header .cta {
  float: right;
  font-family: "Primary-Font-Bold";
  border-radius: 7px;
  padding: 7px 15px !important;
  transition: all 0.3s linear;
  margin-right: 25px;
  margin-top: 8px;
  z-index: 3;
}
#main-header .cta:hover {
  background: #fff;
  color: #07305d;
}
#main-header .hamburger-menu {
  display: none !important;
  cursor: pointer;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  width: 26px;
  margin-right: 25px;
  float: right;
  margin-top: 13px;
}
#main-header .hamburger-menu .box {
  width: 26px;
  height: 13px;
  display: inline-block;
  position: relative;
}
#main-header .hamburger-menu .box .inner,
#main-header .hamburger-menu .box .inner::before,
#main-header .hamburger-menu .box .inner::after {
  width: 26px;
  height: 1px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
#main-header .hamburger-menu .box .inner {
  top: 0.5px;
  transition: background-color 0s 0.13s linear;
  display: block;
  margin-top: -5px;
}
#main-header .hamburger-menu .box .inner::before {
  width: 50%;
  content: "";
  display: block;
  top: 6px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#main-header .hamburger-menu .box .inner::after {
  width: 75%;
  left: auto;
  right: 0;
  bottom: -6px;
  content: "";
  display: block;
  top: 12px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#main-header .hamburger-menu.active .box .inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
#main-header .hamburger-menu.active .box .inner::before {
  width: 100%;
  top: 0px;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(45deg);
}
#main-header .hamburger-menu.active .box .inner::after {
  top: 0px;
  width: 100%;
  left: auto;
  right: auto;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 6px, 0) rotate(-45deg);
}
#main-header.scrolled {
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}
#main-header.scrolled::before {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  #main-header .hamburger-menu {
    display: block !important;
  }
  #main-header::before {
    width: 100%;
  }
  #main-header #main-navigation {
    position: fixed;
    top: 55px;
    height: calc(100% - 55px);
    background: #fff;
    width: 100%;
    left: -100%;
    z-index: 3;
    margin: 0px;
    transition: all 0.3s ease;
  }
  #main-header #main-navigation.active {
    left: 0px;
  }
  #main-header #main-navigation ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: -55px;
  }
  #main-header #main-navigation ul li {
    float: none;
    display: block;
    text-align: center;
  }
  #main-header #main-navigation ul li a {
    color: #07305d;
    font-size: 1.5em;
  }
}
#hero {
  /* height: 100vh; */
  position: relative;
}
#hero .owl-item {
  /* height: 100vh; */
}
#hero video {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hero video::-webkit-media-controls {
  display: none !important;
}
#hero .slide {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
}
#hero .slide::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#hero .slide .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  z-index: 3;
  width: 90%;
  max-width: 700px;
  text-align: center;
}
#hero .slide .text h1 {
  font-family: "Primary-Font-Bold";
  font-size: 3em;
}
@media only screen and (min-width: 992px) {
  #hero .slide .text h1 {
    font-size: 5em;
  }
  #hero .owl-item { height: 100vh; }
  #hero { height: 100vh; }
  #hero .slide { position: absolute; }
  #hero .slide img { display: none; }
}
@media only screen and (max-width: 991px) {
  #hero {
    margin-top: 62px;
  }
  #hero .slide { background: none !important; }
  #hero .slide .text h1 {
    font-size: 5em;
    display: none;
  }
}
#hero .owl-dots {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
#hero .owl-dots .owl-dot {
  width: 16px;
  border-radius: 50%;
  height: 16px;
  border: 2px solid #fff;
  margin-right: 5px;
  position: relative;
}
#hero .owl-dots .owl-dot.active::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -3px;
  content: "";
  background-color: #fff;
}
#hero .scroll-down {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}
#hero .scroll-down span {
  width: 20px;
  height: 20px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: -10px;
  animation: scrolldown 2s infinite;
}
#hero .scroll-down span:nth-child(2) {
  animation-delay: -0.2s;
}
#hero .scroll-down span:nth-child(3) {
  animation-delay: -0.4s;
}
.text-section {
  padding: 50px 0px;
  background-color: #fff;
  position: relative;
}
.text-section::before,
.text-section::after {
  position: absolute;
  background-color: #07305d;
  width: 40%;
  height: 15px;
  max-width: 600px;
  content: "";
  display: block;
  top: 0;
  left: 0;
}
.text-section::after {
  top: auto;
  bottom: 0px;
  left: auto;
  right: 0px;
}
.text-section .text {
  width: calc(100% - 80px);
  float: left;
}
.text-section .text h1 {
  font-family: 'Primary-Font-Bold';
  font-size: 2em;
  margin-bottom: 30px;
}
.text-section .text .userText {
  font-size: 1.2em;
}
.text-section .right {
  width: 70px;
  height: 70px;
  float: right;
  position: relative;
  line-height: 70px;
  color: #07305d;
  font-size: 65px;
  text-align: center;
  font-family: 'Primary-Font-Bold';
}
@media only screen and (min-width: 768px) {
  .text-section .text {
    width: calc(100% - 280px);
  }
  .text-section .right {
    width: 256px;
    height: 256px;
    line-height: 256px;
    font-size: 128px;
  }
}
#top-games {
  padding: 50px 0px 50px 0px;
  background-color: #fff;
  color: #fff;
  overflow: hidden;
}
#top-games .list-with-games {
  margin: 35px 0px 14px 0px;
}
#top-games .list-with-games .game-item {
  box-sizing: border-box;
  position: relative;
}
#top-games .list-with-games .game-item .game-item-info {
  height: 450px;
  position: relative;
}
#top-games .list-with-games .game-item .game-item-info .visible-part {
  height: 450px;
  transform: skew(-10deg);
  margin-left: 40px;
  transition: all 0.3s ease;
  overflow: hidden;
}
#top-games .list-with-games .game-item .game-item-info .visible-part .game-image {
  position: absolute;
  left: -40px;
  width: calc(100% + 80px);
  height: 100%;
  top: 0;
  transition: all 0.3s ease;
  display: block;
  transform: skew(0deg);
  background-size: cover;
  background-position: 50% 50%;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo {
  position: absolute;
  bottom: 0px;
  padding: 20px;
  width: calc(100% - 60px);
  left: 0px;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo::before {
  background-color: #07305d;
  content: "";
  width: 0px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease 0.3s;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text {
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease 0.6s;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text .name {
  float: left;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text .play {
  text-decoration: none;
  float: right;
  display: block;
  width: 32px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s ease;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text .play::before {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-image: url(../../images/play-button.png);
  display: inline-block;
  content: "";
  vertical-align: middle;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text .play::after {
  display: inline-block;
  vertical-align: middle;
  content: "Demo";
  margin-left: 15px;
  color: #fff;
}
#top-games .list-with-games .game-item .game-item-info .name-and-demo .text .play:hover {
  width: 85px;
}
#top-games .list-with-games .game-item .game-item-info:hover .visible-part .game-image {
  transform: scale(0.9);
}
#top-games .list-with-games .game-item .game-item-info:hover .name-and-demo::before {
  width: 100%;
}
#top-games .list-with-games .game-item .game-item-info:hover .name-and-demo .text {
  opacity: 1;
}
@media only screen and (max-width: 650px) {
  #top-games .list-with-games .game-item .game-item-info .visible-part {
    transform: none;
    margin-left: 0px;
  }
  #top-games .list-with-games .game-item .game-item-info .visible-part .game-image {
    transform: none;
    width: 100%;
    left: 0px;
  }
  #top-games .list-with-games .game-item .game-item-info .name-and-demo {
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  #top-games .list-with-games .game-item .game-item-info .name-and-demo::before {
    width: 100%;
  }
  #top-games .list-with-games .game-item .game-item-info .name-and-demo .text {
    opacity: 1;
  }
  #top-games .list-with-games .game-item .game-item-info .name-and-demo .text .play {
    width: 32px !important;
  }
}
#top-games .owl-dots {
  position: absolute;
  bottom: -30px;
  right: 0px;
}
#top-games .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  background-color: #07305d;
  border-radius: 50%;
  position: relative;
}
#top-games .owl-dots .owl-dot:not(:last-child) {
  margin-right: 5px;
}
#top-games .owl-dots .owl-dot.active::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  background-color: #fff;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  content: "";
}
.timeline {
  padding: 50px 0px;
  position: relative;
  max-width: 635px;
  margin: 50px auto;
  width: 100%;
}
.timeline::before {
  position: absolute;
  top: 0px;
  left: 290px;
  height: 100%;
  width: 15px;
  background-color: #ededed;
  content: "";
  display: block;
}
.timeline .entry:not(:last-child) {
  margin-bottom: 50px;
}
.timeline .entry .event {
  width: 270px;
  position: relative;
  text-align: right;
  float: left;
}
.timeline .entry .event .date {
  font-family: "Primary-Font-Bold";
  color: #07305d;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.timeline .entry .event .event-name {
  font-size: 1.2em;
}
.timeline .entry .event::before {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -35.5px;
  background: #fff;
  top: 0px;
  content: "";
  display: block;
  border-radius: 50%;
  z-index: 1;
}
.timeline .entry .event::after {
  position: absolute;
  top: 4px;
  right: -31.5px;
  width: 8px;
  height: 8px;
  background: #df1515;
  display: block;
  content: "";
  z-index: 2;
  border-radius: 50%;
}
.timeline .entry .event-info {
  float: right;
  width: 310px;
}
@media only screen and (max-width: 768px) {
  .timeline {
    max-width: auto;
  }
  .timeline::before {
    left: 0px;
  }
  .timeline .entry {
    padding-left: 30px;
  }
  .timeline .entry .event {
    float: none;
    width: auto;
    text-align: left;
  }
  .timeline .entry .event::before {
    left: -30.5px;
  }
  .timeline .entry .event::after {
    left: -27px;
  }
  .timeline .entry .event-info {
    float: none;
    width: auto;
  }
}
#main-footer {
  padding: 50px 0px;
}
#main-footer .copyright {
  border-top: 1px solid #e1e1e1;
  padding: 10px 0px;
}
#main-footer .footer-row {
  overflow: hidden;
}
#main-footer .footer-row .column {
  padding-bottom: 20px;
}
#main-footer .footer-row .column h1 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
#main-footer .footer-row .column p {
  margin: 0px;
}
#main-footer .footer-row .column .social-icons {
  overflow: hidden;
  margin-top: 15px;
}
#main-footer .footer-row .column .social-icons a {
  display: block;
  float: left;
  margin-right: 10px;
  border-radius: 7px;
  text-decoration: none;
  width: 35px;
  height: 35px;
  background-color: #434343;
  transition: all 0.3s ease;
}
#main-footer .footer-row .column .social-icons a::before {
  width: 16px;
  height: 16px;
  margin: 9.5px auto;
  display: block;
  content: "";
  background-size: 16px 16px;
}
#main-footer .footer-row .column .social-icons a.fb::before {
  background-image: url(../../images/fb-icon.png);
}
#main-footer .footer-row .column .social-icons a.fb:hover {
  background-color: #3b5998;
}
#main-footer .footer-row .column .social-icons a.in::before {
  background-image: url(../../images/in-icon.png);
}
#main-footer .footer-row .column .social-icons a.in:hover {
  background-color: #0077B5;
}
#main-footer .footer-row .column .social-icons a.yt::before {
  background-image: url(../../images/yt-icon.png);
}
#main-footer .footer-row .column .social-icons a.yt:hover {
  background-color: #FF0000;
}
#main-footer .footer-row .column .social-icons a.it::before {
  background-image: url(../../images/it-icon.png);
}
#main-footer .footer-row .column .social-icons a.it:hover {
  background-color: #C13584;
}
#main-footer .footer-row .column.licenses {
  text-align: left;
}
#main-footer .footer-row .column.licenses > a {
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  height: 110px;
  width: 110px;
  white-space: nowrap;
  position: relative;
  text-align: center;
  font-size: 0px;
  margin-left: -4px;
}
#main-footer .footer-row .column.licenses > a img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  display: inline-block;
}
#main-footer .footer-row .column.licenses > a::before {
  height: 100%;
  display: inline-block;
  content: "";
  vertical-align: middle;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #main-footer .footer-row .column.oengine-info,
  #main-footer .footer-row .column.licenses {
    float: left;
  }
  #main-footer .footer-row .column.licenses {
    margin-left: 40px;
  }
  #main-footer .footer-row .column:not(.oengine-info):not(.licenses) {
    clear: both;
  }
}
@media only screen and (min-width: 992px) {
  #main-footer .footer-row .column {
    float: left;
  }
  #main-footer .footer-row .column.oengine-info {
    width: 200px;
  }
  #main-footer .footer-row .column.licenses {
    width: 400px;
    text-align: center;
  }
  #main-footer .footer-row .column.licenses > a {
    width: 120px;
    height: 120px;
  }
  #main-footer .footer-row .column.licenses > a img {
    filter: grayscale(100%);
    transition: filter 0.5s;
  }
  #main-footer .footer-row .column.licenses > a:hover img {
    filter: grayscale(0%);
  }
  #main-footer .footer-row .column:not(.oengine-info):not(.licenses) {
    width: calc(100% - 600px);
  }
}
@media only screen and (min-width: 1200px) {
  #main-footer .footer-row .column.licenses {
    width: calc(100% - 550px);
  }
  #main-footer .footer-row .column:not(.oengine-info):not(.licenses) {
    width: 350px;
  }
}
#main-footer .terms-links li {
  display: inline-block;
  margin-right: 5px;
}
#main-footer .terms-links li a {
  color: #07305d;
  text-decoration: none;
}
#main-footer .terms-links li a:hover {
  text-decoration: underline;
}
@keyframes scrolldown {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}
.inner-page {
  padding: 100px 0px;
  position: relative;
}
.inner-page::before,
.inner-page::after {
  position: absolute;
  display: none;
  content: "";
}
@media only screen and (min-width: 600px) {
  .inner-page::before,
  .inner-page::after {
    display: block;
  }
}
.inner-page::before {
  top: 0;
  left: 30px;
  background-color: #e1e1e1;
  width: 1px;
  height: 100%;
}
.inner-page::after {
  top: 97px;
  width: 3px;
  left: 29px;
  background: #07305d;
  height: 60px;
}
.inner-page h1 {
  margin-bottom: 20px;
  font-size: 3em;
  color: #07305d;
  font-family: 'Primary-Font-Bold';
}
.inner-page#contacts .cards-contact .card-info {
  background-color: #0d437d;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.inner-page#contacts .cards-contact .card-info .icon {
  float: left;
  width: 50px;
  height: 50px;
  display: block;
  margin-right: 20px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.inner-page#contacts .cards-contact .card-info .icon::before {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 13px;
  left: 13px;
  background-size: 24px 24px;
  display: inline-block;
  content: "";
}
.inner-page#contacts .cards-contact .card-info .icon.office::before {
  background-image: url(../../images/location.png);
}
.inner-page#contacts .cards-contact .card-info .icon.contact::before {
  background-image: url(../../images/email.png);
}
.inner-page#contacts .cards-contact .card-info .text {
  width: calc(100% - 70px);
  float: left;
  color: #fff;
  font-size: 1.1em;
  line-height: 21px;
}
.inner-page#contacts .cards-contact .card-info .text h3 {
  font-family: 'Primary-Font-SemiBold';
  letter-spacing: 1px;
}
.inner-page#contacts .cards-contact .card-info .text a {
  color: #fff;
}
@media only screen and (min-width: 750px) and (max-width: 991px) {
  .inner-page#contacts .cards-contact {
    overflow: hidden;
  }
  .inner-page#contacts .cards-contact .card-info {
    float: left;
    width: 47.5%;
  }
  .inner-page#contacts .cards-contact .card-info:nth-child(2) {
    margin-left: 5%;
  }
}
@media only screen and (min-width: 992px) {
  .inner-page#contacts .cards-contact {
    float: left;
    width: 30%;
  }
}
.inner-page#contacts #contact-form {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .inner-page#contacts #contact-form {
    margin-top: 0px;
    float: right;
    width: 67%;
  }
}
.inner-page#contacts #contact-form form.loading {
  position: relative;
}
.inner-page#contacts #contact-form form.loading::before {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  content: "";
  display: block;
  left: 0;
  top: 0;
}
.inner-page#contacts #contact-form textarea {
  height: 120px;
}
.inner-page#contacts #contact-form button {
  width: 100%;
  padding: 15px;
  border: none;
  outline: none;
  background: #07305d;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}
.inner-page#contacts #contact-form button span {
  position: relative;
  display: inline-block;
}
.inner-page#contacts #contact-form button span::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 30%;
  width: 24px;
  height: 24px;
  background-image: url(../../images/right-arrow-white.png);
  display: inline-block;
  background-size: 24px 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
.inner-page#contacts #contact-form button:hover {
  background: #0d437d;
}
.inner-page#contacts #contact-form button:hover span::before {
  opacity: 1;
  right: -49px;
}
.inner-page #google-map {
  margin-top: 40px;
  height: 350px;
}
#careers .career-item {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#careers .career-item h2 {
  font-size: 1.3em;
}
#careers .career-item h2 a {
  color: #353535;
  display: block;
  text-decoration: none;
  font-family: 'Primary-Font-SemiBold';
  position: relative;
}
#careers .career-item h2 a .plusminus {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
#careers .career-item h2 a .plusminus:before,
#careers .career-item h2 a .plusminus:after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.35s;
  width: 100%;
  height: 2px;
}
#careers .career-item h2 a .plusminus:before {
  transform: translatey(-50%);
}
#careers .career-item h2 a .plusminus:after {
  transform: translatey(-50%) rotate(90deg);
}
#careers .career-item h2 a.active .plusminus:before {
  transform: translatey(-50%) rotate(-90deg);
  opacity: 0;
}
#careers .career-item h2 a.active .plusminus:after {
  transform: translatey(-50%) rotate(0);
}
#careers .career-item .text {
  margin-top: 10px;
  height: 140px;
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease;
}
#careers .career-item .text::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 0px;
  width: 100%;
  height: 122px;
  background: rgba(255, 255, 255, 0.3);
  transition: opacity 0.3s ease 0.3s;
}
#careers .career-item .text.active::after {
  opacity: 0;
}
.news-categories-tabs {
  overflow: hidden;
}
.news-categories-tabs li {
  float: left;
  margin-right: 10px;
}
.news-categories-tabs li a {
  border: 1px solid #07305d;
  display: block;
  border-radius: 7px;
  color: #07305d;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.news-categories-tabs li:hover a,
.news-categories-tabs li.active a {
  background: #07305d;
  color: #fff;
}
#news .article-holder {
  margin: 0 auto;
}
#news .article-holder article:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
#news .article-holder article .img-holder {
  background-position: 50% 50%;
  height: 350px;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #news .article-holder article .img-holder {
    width: 51%;
    float: left;
  }
  #news .article-holder article .img-holder.right {
    float: right;
  }
}
#news .article-holder article .img-holder .read-more-holder {
  background: #ffff;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  padding: 15px 45px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.75);
}
#news .article-holder article .article-text {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  #news .article-holder article .article-text {
    width: 48%;
    float: right;
    margin-top: 0px;
  }
  #news .article-holder article .article-text.left {
    float: left;
  }
}
#news .article-holder article .article-text h2 {
  font-size: 1.5em;
  color: #07305d;
  font-family: 'Primary-Font-SemiBold';
  margin-bottom: 10px;
}
#news .article-holder article .article-text .date {
  color: #525252;
}
#news .article-holder article .article-text .summary {
  font-size: 1.2em;
}
#client-area .sign-in-container {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}
#client-area .sign-in-container button {
  width: 100%;
  padding: 15px;
  border: none;
  outline: none;
  background: #07305d;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}
#client-area .sign-in-container button span {
  position: relative;
  display: inline-block;
}
#client-area .sign-in-container button span::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 30%;
  width: 24px;
  height: 24px;
  background-image: url(../../images/right-arrow-white.png);
  display: inline-block;
  background-size: 24px 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
#client-area .sign-in-container button:hover {
  background: #0d437d;
}
#client-area .sign-in-container button:hover span::before {
  opacity: 1;
  right: -49px;
}
#client-area .file-list .file-list-item {
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  overflow: hidden;
}
#client-area .file-list .file-list-item input {
  float: left;
  margin-top: 5px;
}
#client-area .file-list .file-list-item a {
  text-decoration: none;
  float: right;
  width: calc(100% - 40px);
  display: block;
  position: relative;
  color: #0d437d;
}
#client-area .file-list .file-list-item a:hover {
  color: #07305d;
}
#client-area .file-list .file-list-item a::before {
  width: 16px;
  height: 16px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: 16px 16px;
  margin-right: 15px;
  background-image: url(../../images/file.png);
}
#client-area .file-section-name {
  margin-top: 20px;
  font-family: 'Primary-Font-SemiBold';
  border-bottom: 1px solid #e1e1e1;
  font-size: 1.2em;
  padding-bottom: 5px;
}
#games-list-page .game-item {
  box-sizing: border-box;
  position: relative;
}
#games-list-page .game-item .game-item-info {
  height: 450px;
  position: relative;
}
#games-list-page .game-item .game-item-info .visible-part {
  height: 450px;
  transition: all 0.3s ease;
  overflow: hidden;
}
#games-list-page .game-item .game-item-info .visible-part .game-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all 0.3s ease;
  display: block;
  background-size: cover;
  background-position: 50% 50%;
}
#games-list-page .game-item .game-item-info .name-and-demo {
  position: absolute;
  bottom: 0px;
  padding: 20px;
  width: 100%;
  left: 0px;
}
#games-list-page .game-item .game-item-info .name-and-demo::before {
  background-color: #07305d;
  content: "";
  width: 0px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease 0.3s;
}
#games-list-page .game-item .game-item-info .name-and-demo .text {
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease 0.6s;
}
#games-list-page .game-item .game-item-info .name-and-demo .text .name {
  float: left;
  color: #fff;
}
#games-list-page .game-item .game-item-info .name-and-demo .text .play {
  text-decoration: none;
  float: right;
  display: block;
  width: 32px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s ease;
}
#games-list-page .game-item .game-item-info .name-and-demo .text .play::before {
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-image: url(../../images/play-button.png);
  display: inline-block;
  content: "";
  vertical-align: middle;
}
#games-list-page .game-item .game-item-info .name-and-demo .text .play::after {
  display: inline-block;
  vertical-align: middle;
  content: "Demo";
  margin-left: 15px;
  color: #fff;
}
#games-list-page .game-item .game-item-info .name-and-demo .text .play:hover {
  width: 85px;
}
#games-list-page .game-item .game-item-info:hover .visible-part .game-image {
  transform: scale(0.9);
}
#games-list-page .game-item .game-item-info:hover .name-and-demo::before {
  width: 100%;
}
#games-list-page .game-item .game-item-info:hover .name-and-demo .text {
  opacity: 1;
}
#game-preview {
  width: 100%;
  height: calc(100dvh - 62px);
  margin-top: 62px;
}
#game-preview #game-play {
  width: 100%;
  height: 100%;
}
#team h3 {
  color: #07305d;
  font-family: 'Primary-Font-SemiBold';
  margin: 50px 0px;
  font-size: 19px;
}
#team .team-member {
  margin-bottom: 30px;
  text-align: center;
}
#team .team-member::after {
  width: 30px;
  height: 3px;
  display: block;
  margin: 0 auto;
  content: "";
  background-color: #df1515;
}
#team .team-member .img-holder img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s;
}
#team .team-member h3 {
  margin: 10px 0px;
}
#team .team-member .position {
  font-family: 'Primary-Font-SemiBold';
}
#team .team-member:hover img {
  filter: grayscale(0%);
}
#team #team-values .value-holder {
  padding: 10px;
  background: #0d437d;
  color: #fff;
}
.cookies-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #07305d;
  z-index: 7;
  color: #fff;
  display: none;
}
.cookies-alert.show {
  display: block;
}
.cookies-alert .text {
  margin-bottom: 10px;
}
.cookies-alert .text a {
  color: #fff;
  text-decoration: underline;
}
.cookies-alert .ok-cookie {
  background: #fff;
  border-radius: 9px;
  display: inline-block;
  color: #07305d;
  padding: 10px 15px;
  vertical-align: middle;
  margin-left: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cookies-alert .ok-cookie:hover {
  background: #0d437d;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cookies-alert {
    text-align: center;
  }
  .cookies-alert .text {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0px;
    width: calc(100% - 304px);
  }
}