/* reset */


menu,
nav,
section {
  display: block;
}



ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}






.screen {
	font-size: 24px;
	position: static;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	background-color: transporent;
	overflow: hidden;
	z-index: 9;
}

nav {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: linear-gradient(to top, rgba(174, 4, 10, 0.92), #dc040d);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-bottom: solid 5px #e6dfdf;
}

.menu-container {
  position: relative;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.view-submenu .menu-container {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

nav ul {
	position: absolute;
    top: -23px;
    padding: 0;
    width: 100%;
    color: #ededed;
    background-color: #313131;
	padding: 10px 0px;
}

nav ul li a {
  opacity: 0;
  display: block;
  padding: 10px 12px;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: opacity 0.15s 0.1s ease-out,
    -webkit-transform 0.15s 0.1s ease-out;
  transition: opacity 0.15s 0.1s ease-out, -webkit-transform 0.15s 0.1s ease-out;
  transition: opacity 0.15s 0.1s ease-out, transform 0.15s 0.1s ease-out;
  transition: opacity 0.15s 0.1s ease-out, transform 0.15s 0.1s ease-out,
    -webkit-transform 0.15s 0.1s ease-out;
	color: #efefef;
	text-decoration: none;
}

ul li.has-children span {
  #text-indent: -9999px;
}

ul li.has-children span:after {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto auto auto 11px;
    padding: 4px;
    width: 0px;
    height: 0px;
    cursor: pointer;
    font-size: 0;
    border-bottom: 4px solid #ededed;
    border-right: 4px solid #ededed;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	transition-duration: 300ms;
}

ul li.has-children span:hover:after {
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg); 
}

.menu {
  opacity: 0;
  -webkit-transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
  transition: background-color 0.25s ease-out, opacity 0.15s ease-out;
}

.menu.is-visible {
  opacity: 1;
}

.menu.is-visible li a {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.view-submenu .menu {
  background-color: #3e3e3e;
}

.view-submenu .menu > li > a {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #313131;
}

.submenu li {
  margin-left: 60px;
}

.hide-submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  cursor: pointer;
  background-color: #313131;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.hide-submenu:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 4px;
    width: 6px;
    height: 6px;
    cursor: pointer;
    font-size: 0;
    border-bottom: 4px solid #ededed;
    border-right: 4px solid #ededed;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    left: 0;
    right: -6px;
    -webkit-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
}

.view-submenu .hide-submenu {
  background-color: #3e3e3e;
}

.view-submenu .hide-submenu:before {
  opacity: 1;
  -webkit-transition: opacity 0.15s 0.3s ease-out;
  transition: opacity 0.15s 0.3s ease-out;
}

.toggle {
	-webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 18px;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    height: 110px;
    display: table-cell;
    width: 28%;
    vertical-align: middle;
    text-align: center;
}

.toggle span {
	position: relative;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-size: 0;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    display: inline-block;
}

.toggle span:before,
.toggle span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  margin-left: -15px;
}

.toggle span:before {
  bottom: calc(100% + 6px);
}

.toggle span:after {
  top: calc(100% + 6px);
}

.is-visible .toggle span {
  background-color: transparent;
}

.is-visible .toggle span:before {
  bottom: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is-visible .toggle span:after {
  top: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}


ul.menu.is-visible a {
    color: #efefef;
    text-decoration: none;
	margin-left: 10px;
}

.fixed nav {
    height: 80px;
}


.fixed nav .top-logo-mob span {
    font-size: 10px;
    letter-spacing: 11.4px;
    margin-left: 10px;
}

.fixed nav .top-logo-mob {
    font-size: 38px;
}

.top-logo-header {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.top-logo-header.top-logo-span {
    width: 28%;
}

.top-logo-header span.online {
    vertical-align: middle;
    display: inline-block;
}

.top-logo-mob {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 1.1;
    vertical-align: middle;
    width: 44%;
    display: table-cell;
	cursor: pointer;
}

.top-logo-mob span {
	display: block;
    font-size: 14px;
    letter-spacing: 14.5px;
    margin-left: 14px;
}

nav>.cont-top-header-menu {
    width: 100%;
    display: table;
}

.fixed .toggle {
    height: 80px !important;
}