body {
  font-family: 'Roboto', sans-serif;
}

/*
* RESETS
*/

.container-fluid {
    padding:0 60px;
}

/* ----------------- */
/* STRUCTURE         */
/* ------------------*/


/* SECTIONS */

.padding-b-l {padding-bottom: 100px;}
.padding-b-s {padding-bottom: 40px;}

#section-games {
  font-size: 1.2rem;
  line-height: 2rem;
}

/* HEADER */

#header {
    background-color: #fff; /* Grey background */
    padding: 50px 10px; /* Some padding */
    color: 545454;
    text-align: center; /* Centered text */
    font-size: 90px; /* Big font size */ 
    font-weight: bold; 
    position: fixed; /* Fixed position - sit on top of the page */
    top: 0; 
    width: 100%; /* Full width */
    transition: 0.2s; /* Add a transition effect (when scrolling - and font size is decreased) */
  }

  .navbar-brand {
    padding-left: 0;
  }

.navbar {
    font-size: 1.2rem;
    padding: 2.5rem 0;
  }

.navbar-right .nav-item:last-child {
    padding-right:0px !important;
    margin-right:0px !important;
}
  
  .navbar .dropdown-toggle::after {
    vertical-align: 0.3em;
    position: relative;
    top: 0.2rem;
  }
  .navbar .navbar-toggler {
    border: none;
    padding: 0;
    font-size: inherit;
  }
  .navbar .navbar-toggler:focus {
    outline: none;
  }
  .navbar .nav-link {
    transition: color 0.1s ease;
    color: #545454;
    font-weight: 300;
  }
  .navbar .nav-link:hover {
    color: #6e9d01;
  }
  .navbar .active .nav-link {
    color: #252930;
  }
  .navbar .dropdown-menu {
    border-color: #fff;
    padding: 0;
    margin-top:-1px;
  }
  .navbar .dropdown-menu:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    left: 2rem;
    top: -8px;
  }
  .navbar .dropdown-menu:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e7e9ed;
    position: absolute;
    left: 2rem;
    top: -9px;
  }
  .navbar .dropdown-item {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-bottom:1px solid #f1f1f1;
  }
  .navbar .dropdown-item.has-icon {
    padding-left: 1rem;
  }
  .navbar .dropdown-item .theme-icon-holder {
    font-size: 0.75rem;
    padding-top: 0.5rem;
  }
  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:active,
  .navbar .dropdown-item.active {
    color: #000;
    background: #f1f1f1;
  }
  .navbar .dropdown-item:hover .theme-icon-holder,
  .navbar .dropdown-item:active .theme-icon-holder,
  .navbar .dropdown-item.active .theme-icon-holder {
    background: #969d10;
    color: #fff;
  }
  
  .navbar-toggler {
    position: relative;
  }
  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: 0;
  }
  .navbar-toggler span {
    display: block;
    background-color: #9a9a9a;
    height: 3px;
    width: 24px;
    margin-top: 5px;
    margin-bottom: 5px;
    transform: rotate(0deg);
    position: relative;
    left: 0;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    border-radius: 1px;
  }
  .navbar-toggler span:nth-child(1),
  .navbar-toggler span:nth-child(3) {
    transition: transform 0.35s ease-in-out;
  }
  .navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(135deg);
    -webkit-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
  }
  .navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
  }
  .navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-135deg);
    opacity: 0.9;
  }
  
  @media (min-width: 992px) {
    .menu-animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
  }
  @media (max-width: 575.98px) {
    .header .site-logo .logo-icon {
        max-width: 100px;
    }
    .navbar {
      text-align: center;
    }
  }
  @media (max-width: 967.98px) {
    .navbar .dropdown-menu:after,
    .navbar .dropdown-menu:before {
        display: none;
    }
    .navbar {
      text-align: center;
    }
  }
  

/* END HEADER */



/* SECTION HEADER */


.header-headline {
  background: url("../img/5.jpg") no-repeat top center;
  text-align: center;
  color:#fff;
  padding:180px 0 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}
.frontpage-headline-heading {
    padding:0;
    margin:0;
    font-size:5rem;
}
.frontpage-headline-desc {
    padding:0;
    margin:0;
    font-size:2rem;
}

.header-headline-inner {
  display: block;
  position: absolute;
}


/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 0.8s ease-in-out both;
  -moz-animation: scaleUpFrom 0.8s ease-in-out both;
  animation: scaleUpFrom 0.8s ease-in-out both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 0.3s ease-in-out both;
  -moz-animation: scaleUpTo 0.3s ease-in-out both;
  animation: scaleUpTo 0.3s ease-in-out both;
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    margin-top: 40px;
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    margin-top: 40px;
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    margin-top: 40px;
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    margin-top: 40px;
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    margin-top: 40px;
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    margin-top: 40px;
  }
}

/* ABOUT */

.about {
    font-size:1.5rem;
    font-weight: 100;
}
.about-img {
    text-align: center;
}

/* NETWORKING */

.social a {
  width: 50px;
  height: 50px;
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  padding-top: 10px;
  background: #70a102;
  color: #fff;
  border-radius: 50%;
}

.social a:hover {
  background: #638b08;
}

.list-inline-item {
  padding:0 4px 0 0 !important;
  margin:0 !important;
}

/* OUR GAMES */

.game-desc {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
}

.game-image {
  padding-bottom: 30px;
}

.presspack {
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  background: #f0efef;
  color: #669402;
}

.presspack a {
  color: #669402;
  transition: all 0.4s ease;
}

.presspack a:hover {
  color: #545454;
}

.btn-steam {
  background: #80b705;
  border: 3px solid #eee;
}

.btn-steam:hover {
  background: #669206;
  border-color: #669206;
}

/* IMAGE GALLERY */

.image-gallery .col-md-3 {
  padding: 0;
  margin: 0;
}

@media (max-width: 575.98px) {
  .trailer-box {
    margin-top: 40px;
  }
}
@media (max-width: 967.98px) {
  .trailer-box {
    margin-top: 40px;
  }
}

.album-container {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.album-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.album-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #418ece;
}

.album-container:hover .album-overlay {
  opacity: 0.6;
}

.album-icon {
  color: #fff;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* Contact */

.contact-box {
  border-radius: 10px;
  padding: 30px;
  background: #dee4d1;
}

/* Headings */

.row-heading-row {
  padding: 40px;
}

.heading-desc {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  color: #70a102;
}

.row-heading {
  font-size: 3rem;
  position: relative; 
  display: inline-block;
  margin-bottom: 30px;
  padding-top: 0;
}

.row-heading:after {
  position: absolute;
  content: '';
  height: 3px;
  bottom: -20px; 
  margin: 0 auto;
	left: 0;
  right: 0;
	width: 50%;
	background: #70a102;
}

/* FOOTER */

.footer-row {
  border-top: 1px solid #eee;
  padding: 30px 0;
}

.footer-row {
  color: #ccc;
}

.footer-row a {
  color: #ccc;
}

.footer-row a:hover {
  color: #545454;
}

.cprights {text-align: left;}
.designby {text-align: right;}

@media (max-width: 575.98px) {
  .cprights,
  .designby {text-align: center;}
}
@media (max-width: 967.98px) {
  .cprights,
  .designby {text-align: center;}
}

.my-gallery img:hover {
  opacity: 0.8;
}

/* PHOTOSWIPE GALLERy */

.my-gallery {
  width: 100%;
  float: left;
}
.my-gallery img {
  width: 100%;
  height: auto;
}
.my-gallery figure {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  width: 150px;
}
.my-gallery figcaption {
  display: none;
}