/*
Based on http://www.templatemo.com/tm-516-known
*/

/* montserrat-800 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
       url('../fonts/montserrat-v14-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/montserrat-v14-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'),
       url('../fonts/lato-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/lato-v16-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

  body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    padding-top: 70px;
    background-color:white;
  }

  /*---------------------------------------
     TYPOGRAPHY
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    line-height: inherit;
    color: #6CAF12;
    text-transform: uppercase;
  }

  h1 {
    color: #252525;
    font-size: 3em;
    line-height: normal;
  }

  h2 {
    font-size: 2em;
    padding: 5px 0 20px 0;
  }

  h3 {
    font-size: 1.5em;
    margin-bottom: 0;
  }

  h3,
  h3 a {
    color: #6CAF12;
  }

  p {
    color: #757575;
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
  }

  li {
    color: #757575;
    font-weight: normal;
    font-size: 16px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #6CAF12;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    margin: 0;
  }

  .section-title small {
    display: block;
  }

  .overlay {
    background: rgba(20,20,20,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  section {
    position: relative;
    padding: 100px 0;
  }


  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: transparent;
    border-radius: 50px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
   }

  .section-btn:hover {
    background: #ffffff;
    border-color: transparent;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    background: #ffffff;
    border-bottom: 0;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    margin-bottom: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
  }

  .custom-navbar .navbar-brand {
    color: #454545;
    font-size: 24px;
    line-height: 40px;
  }

  .custom-navbar .navbar-nav.navbar-nav-first {
    margin-left: 4em;
  }

  .custom-navbar .navbar-nav.navbar-right li {
    padding-top: 15px;
  }

  .custom-navbar .navbar-nav.navbar-right li a {
    padding-right: 12px;
    padding-left: 12px;
  }

  .custom-navbar .navbar-nav.navbar-right li a .fa {
    background: #29ca8e;
    border-radius: 100%;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
  }

  .custom-navbar .nav li a {
    line-height: 40px;
    color: #575757;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li a:hover {
    background-color: #6CAF12;
    color: #ffffff;
  }

  .custom-navbar .nav li.active > a {
    background-color: #6CAF12;
    color: #ffffff;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #252525;
    border-color: transparent;
  }

  /* .navbar-patreon {
    display:inline-block;
    position:relative;
    backface-visibility: hidden;
    margin-left: 10px;
  } */

  /* .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  } */

  .custom-navbar .navbar-nav.navbar-right li .navbar-patreon a:hover
  .custom-navbar .navbar-nav.navbar-right li .navbar-patreon a:focus {
    background-color: #ff0000;
  }


  /*---------------------------------------
      HOME  & SLIDER            
  -----------------------------------------*/

  .btn {
    /* box-shadow: var(--base-shadow); */
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: none;
  }
  a.btn {
    font-size: 18px;
    padding: 16px 32px 16px 32px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
  }
  
  a.btn.flat {
    background: none;
    box-shadow: none;
    padding: 0px;
    margin: 16px 32px 16px 32px;
  }
  
  a.btn.download {
    padding: 0px;
    margin-top: 30px;
    margin-left: 48px;
  }
  a.btn.download > .main {
    background-color: #99d534;
    color: #444E36;
    display: inline-block;
    padding: 16px 32px 16px 32px;
  }
  a.btn.download > .opt {
    background-color: #444E36;
    color: #99d534;
    display: inline-block;
    padding: 16px 16px 16px 16px;
    box-shadow: none;
    text-decoration: none;
    margin-left: -5px;
  }
  
  a.btn.download:hover > .main {
    background-color: #444E36;
    color: white;
  }

  a.btn.download:hover > .opt {
    background-color: #99d534;
    color: white;
  }

  a.btn.beta {
    margin-left: 32px;
    margin-top: 12px;
    padding: 0px;
    font-size: 15px;
    padding: 12px 40px 12px 40px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #444E36;
  }

  a.btn.beta > .logo {
    display: inline-block;
  }

  a.btn.beta > .text {
    display: inline-block;
    padding: 4px 12px 4px 12px;
    margin-left: 5px;
    background-color: #88C5CC;
    color: #444E36;
  }

  a.btn.beta:hover > .text {
    background-color: #444E36;
    color: white;
  }
  
  #slideshow {
    margin: 0;
    float:left;
    width:550px;
    position:relative;
  }
  
  #slideshow ol, #slideshow ul {
    list-style: none outside none;
    vertical-align: baseline;
    margin: 5px auto 0;
  }

  .caption h3 a { color: #FFF; }
  .caption h3 a:hover { color: #FF3; }

  /*---------------------------------------
      Sections on the home page and other pages.
  -----------------------------------------*/
  
  #intro {
    padding: 5em 1em 7em 1em;
    background:url("/images/bg/cubes.png");
  }

  #pitches {
    padding: 3em 3em 1em 3em;
  }

  #pitches .row {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  #pitches h4 {
    padding-top:10px;
  }

  #support {
    padding: 3em 3em 5em 3em;
    background:url("/images/bg/cubes.png");
  }

  .support-patreon {
    width: 500px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  #sponsors {
    padding: 1em 3em 15em 3em;
  }

  #download {
    padding: 1em 3em 1em 3em;
  }

  #download h4 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: normal;
    padding-top:24px;
    text-transform: none;
  }

  #features {
    padding: 1em 3em 1em 3em;
  }

  #features h4 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: normal;
    padding-top:60px;
    text-transform: none;
  }

  #community {
    padding: 1em 3em 1em 3em;
  }

  #community h4 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: normal;
    padding-top:20px;
    text-transform: none;
  }

  #help {
    padding: 1em 3em 1em 3em;
  }

  #help h4 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: normal;
    padding-top:20px;
    text-transform: none;
  }

  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background:url("/images/irongrip.png");
    padding: 60px 0;
    font-size: 14px;
  }

  footer .section-title {
    padding-bottom: 10px;
  }

  footer h2 {
    font-size: 20px;
  }

  footer a,
  footer p {
    color: #909090;
  }

  footer strong {
    color: #d9d9d9;
  }

  footer address p {
    margin-bottom: 0;
  }

  footer .social-icon {
    margin-top: 25px;
  }

  .footer-info {
    margin-right: 2em;
  }

  .footer-info h2 {
    color: #ffffff;
    padding: 0;
  }

  .footer_menu h2 {
    margin-top: 2em;
  }

  .footer_menu ul {
    margin: 0;
    padding: 0;
  }

  .footer_menu li {
    display: inline-block;
    list-style: none;
    margin: 5px 10px 5px 0;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 1170px) {
    .custom-navbar .navbar-nav.navbar-nav-first {
      margin-left: inherit;
    }
  }

  @media only screen and (max-width: 992px) {
    section,
    footer {
      padding: 60px 0;
    }

    .home-slider .item {
      background-position: center center;
    }

    .feature-thumb,
    .about-info,
    .team-thumb,
    .footer-info {
      margin-bottom: 50px;
    }

    .contact-image {
      margin-top: 50px;
    }
  }


  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .custom-navbar .nav li a {
      padding-right: 10px;
      padding-left: 10px;
    }
  }

  @media only screen and (max-width: 767px) {
    h1 {
      font-size: 2.5em;
    }

    h1,h2,h3 {
      line-height: normal;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .navbar-brand,
    .custom-navbar .nav li a {
      line-height: normal;
    }

    .custom-navbar .nav li a {
      padding: 10px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #252525;
      font-weight: 600;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .custom-navbar .navbar-nav.navbar-right li {
      display: inline-block;
    }

    .footer-info {
      margin-right: 0;
    }

    .footer-info.newsletter-form {
      margin-bottom: 0;
    }

    .entry-form {
      display: block;
      margin: 0 auto;
    }
  }


  @media only screen and (max-width: 580px) {
    h2 {
      font-size: 1.8em;
    }

    #testimonial .item {
      padding: 2em;
    }

    .contact-image {
      margin-top: 0;
    }
  }

  @media only screen and (max-width: 480px) {
    h1 {
      font-size: 2em;
    }

    #home h3 {
      font-size: 14px;
    }

    .entry-form {
      border-radius: 0;
      padding: 2em;
      max-width: 100%;
      max-height: 100%;
      width: inherit;
      height: inherit;
    }
  }
  