/* TOP NAV STYLES */

.nav {
    padding-top: 5em;
    padding-bottom: 3em;
}
.menu-header {
    display: block;
    float: left;
    margin: 0 auto;
    width: 100%;
    height: 42px;
    text-transform: uppercase;
}
.menu-header ul, div.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-header li, div.menu li {
    float: left;
    position: relative;
    /*background: #0a2d52;*/
}
.menu-header ul li {
    margin-right: 55px;
}
.menu-header ul ul li {
    margin-right: 0px;
}
.menu-header ul ul {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    float: left;
    width: 120px;
    z-index: 99999;
}
.menu-header a {
    color: #487fbe;
    display: block;
    line-height: 41px;
    padding: 0;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.1rem;
    border-bottom: solid 2px transparent;
    transition: all 200ms;
    font-family: "Lato" sans-serif;
    font-weight: 900;
}
.menu-header ul li:hover > ul {
    width: auto;
    display: block;
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
}
.menu-header a:hover {
    border-bottom: solid 2px #20ffae;
}
.menu-header ul ul li:hover a {
    border-bottom: solid 2px transparent;
    background: #20ffae;
    color: #000;
}
.menu-header ul ul a {
    background: #fff;
    line-height: 1em;
    padding: 10px;
    width: 130px;
    height: auto;
    color: #000;
}
.logo {
    max-width: 400px;
    margin-top: 1em;
}
.logo img:hover, .logo-small img:hover {
    -webkit-animation: filter-animation 3s infinite;
}
.logo-small {
    max-width: 300px;
    margin-top: 0;
}
.spacer {
  padding-top:4em;
}

/*MOBILE NAV*/
.menu-mobile {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 42px;
    text-transform: uppercase;
    text-align: center;
}
.menu-mobile ul, div.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.menu-mobile li, div.menu li {
    position: relative;
    /*background: #0a2d52;*/
}
.menu-mobile ul li {
    margin-right: 55px;
}
.menu-mobile ul ul li {
    margin-right: 0px;
}
.menu-mobile ul ul {
    display: none;
    position: relative;;
    top: 0px;
    left: 0;
    width: 100%;

    z-index: 99999;
}
.menu-mobile a {
    color: #487fbe;
    display: block;
    line-height: 100px;
    padding: 0;
    text-decoration: none;
    font-weight: normal;
    font-size: 4rem;
    border-bottom: solid 2px transparent;
    transition: all 200ms;
    font-family: "Roboto" sans-serif;
    font-weight: 300;
}
.menu-mobile ul li:hover > ul {
    width: auto;
    display: block;
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
}
.menu-mobile a:hover {
    border-bottom: solid 2px #20ffae;
}
.menu-mobile ul ul li:hover a {
    border-bottom: solid 2px transparent;
    background: #20ffae;
    color: #000;
}
.menu-mobile ul ul a {
    background: #fff;
    line-height: 1em;
    padding: 10px;
    width: auto;
    height: auto;
    margin: 0 auto;
    color: #000;
    text-align: center;
}
#mobilenav {
  margin: 0 auto;
  max-width: 1200px;
  float:right;
  padding: 2rem 2rem;
}
#tastyburger {
  float:right;
  width: 40px;
  height: 25px;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 26;
  display: none;
}

#tastyburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#tastyburger span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#tastyburger span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#tastyburger span:nth-child(1), #tastyburger span:nth-child(2) {
  top: 0px;
}

#tastyburger span:nth-child(3), #tastyburger span:nth-child(4) {
  top: 12px;
}

#tastyburger span:nth-child(5), #tastyburger span:nth-child(6) {
  top: 24px;
}

#tastyburger.open span:nth-child(1),#tastyburger.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#tastyburger.open span:nth-child(2),#tastyburger.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#tastyburger.open span:nth-child(1) {
  left: 4px;
  top: 7px;
}

#tastyburger.open span:nth-child(2) {
  left: calc(50% - 4px);
  top: 7px;
}

#tastyburger.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#tastyburger.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#tastyburger.open span:nth-child(5) {
  left: 4px;
  top: 19px;
}

#tastyburger.open span:nth-child(6) {
  left: calc(50% - 4px);
  top: 19px;
}
#navbig {
  z-index:25;
  background: rgba(0, 0, 0, 0.85);
  width:100%;
  height:100%;
  position: absolute;
  margin: 0 auto;
  display:none;
  padding: 5em 2em;
}
/*JOBS*/
/*.panel-grid-cell {
  padding: 0 !important;
  margin: auto 25px;
}
.panel-grid-cell .widget {
    padding-right: 0px !important;
    padding-left: 0px !important;
}*/
.apply-form {
  padding: 0 25px;
  max-width:380px;
  background: #eee;
  margin-left:25px;
}
/*PAGINATION*/
.pagination_posts {
  text-align: center;
  width:100%;
  padding:2em 0;
  margin: 0 auto;
}

.pagination_posts li {
	display: inline;
}

.pagination_posts li a,
.pagination_posts li a:hover,
.pagination_posts li.active a,
.pagination_posts li.disabled {
  background-color: transparent;
  border: solid 2px rgba(72, 72, 72, 0.99);
  border-radius: .2rem;
  box-sizing: border-box;
  color: rgba(72, 72, 72, 0.99);;
  text-decoration: none;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
  transition: all 200ms;
}

.pagination_posts li a:hover {
  color: #000;
  background: #20ffae;
  border: solid 2px #20ffae;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.75);
  transition-timing-function: ease-in-out;
  -webkit-transform: translateY(-5%);
      -ms-transform: translateY(-5%);
          transform: translateY(-5%);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.pagination_posts li.active a {
	background-color: rgba(72, 72, 72, 0.99);
  color: #FFF;
  border: solid 2px rgba(72, 72, 72, 0.99);
}
@-webkit-keyframes filter-animation {
    0% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
    100% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }
}
.bg--hero {
    background: url("../img/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.bg--hero2 {
    background: url("../img/games-bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.bg--blr {
    background: url("../img/blr-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-text {
    margin-top: 1.5em;
    margin-bottom: 1em;
    color: #20ffae;
}
#jobs {
  margin-bottom: 3em;
}
#jobs-small {
    display: none;
}

/*GAMES*/

.games-home img {
    width: 100%;
    height: auto;
}
.games-home {
    padding: 0 25px 25px 0;
}
.games-home-details, .games-home-name {
    padding: 10px;
}
.games-home-name {
    text-transform: uppercase;
}
.games-home-details-small {
    padding: 10px;
    font-size: .75em;
    color: rgba(72, 72, 72, 0.99);
}

/*BLOG*/

.blog-home {
    transition: all 200ms;
    margin: 0 25px 25px 0;
}
.blog-home h4 {
    background: #FFF;
    font-size: 1.2em;
        padding: 25px;
}
.blog-home-title a, .blog-home-title a:visited {
    color: rgba(72, 72, 72, 0.99);
    text-decoration: none;

}
.blog-home-title a:hover {}
.blog-home:hover {
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.75);
    cursor: pointer;
}
.blog-home-excerpt {
    background: #FFF;
    padding: 25px;
    font-size: 1em;
    color: #000;
}
.blog-home-img {
    overflow: hidden;
    text-align: center;
    max-height: 200px;
}
.blog-home img {
    width: 100%;
    height: auto;
}
.PI_SimpleTwitterTweets {
    width: auto;
    background: #eee;
    padding-left:25px;
}
.PI_SimpleTwitterTweets a {
    text-decoration: none;
}
.PI_SimpleTwitterTweets ul {}
.PI_SimpleTwitterTweets ul li {
    list-style: none;
    margin-left: -22px;
    width: 100%;
    font-size: .9em;
}
.PI_SimpleTwitterTweets .stt-em {
    font-size: .8em;
}
.PI_SimpleTwitterTweets ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.PI_SimpleTwitterTweets ul li img {
    float: left;
    padding-right: 15px;
}
/*SHORTCODES*/
.shortcode--alertbox {
  border: solid 1px #e74c3c;
  padding: 15px;
  background: #e6a29b;
}
/*FOOTER*/
.footer h4 {
  color: rgba(250, 250, 250, 0.99);
}
.footer a, .footer a:visited {
  text-decoration: none;
  color: rgba(144, 144, 144, 0.99);
}
.footer a:hover {
  color: #20ffae;
}
.footer ul li {
  list-style: none;
  margin-left: -25px;
}

/* RESPONSIVE*/
@media (max-width: 920px) {
  #blr--header-hardsuit {
    display: none;
  }
}
@media (max-width: 780px) {
    .PI_SimpleTwitterTweets {
        display: none;
    }
    .nav {
      display: none;
    }
    #tastyburger {
      display: block;
    }
    .logo {
      padding-top:3em;
    }
    #jobs {
        display: none;
    }
    #jobs-small {
        display: block;
    }
}