@import 'https://fonts.googleapis.com/css?family=Lato:300,400,700,900&subset=latin-ext';
body {
  background: #161616;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
  position: relative;
}
a,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
input,
select,
textarea,
blockquote {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none ;
  border: none;
  outline: 0;
}
.img-responsive {
  width: 100%;
  height: auto;
}
/* Typography */
/* Fonts */
h1 {
  font-size: 43px;
  line-height: 43px;
}
h2 {
  font-size: 24px;
  line-height: 24px;
}
h3 {
  font-size: 21px;
  line-height: 21px;
}
h4 {
  font-size: 18px;
  line-height: 18px;
}
h5 {
  font-size: 16px;
  line-height: 16px;
}
h6 {
  font-size: 14px;
  line-height: 14px;
}
p {
  font-size: 16px;
  line-height: 22px;
}
/* Preloader */
#preloader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: hidden;
  background: #161616;
}
#preloader .preloader-inside {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  width: 50px;
  height: 50px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#preloader .preloader-inside:after {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-top-color: #ff3c00;
  border-bottom-color: #ff3c00;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  content: '';
  animation: spinny 1s linear infinite;
}
/* Btn */
.btn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  background: #ff3c00;
  height: 38px;
  line-height: 38px;
  padding: 0 30px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.btn img {
  margin-right: 5px;
  margin-top: -3px;
}
.btn span,
.btn img {
  position: relative;
  z-index: 10;
}
.btn.dark {
  background: #212121;
  text-transform: uppercase;
}
.btn.dark::before {
  background: #1a1a1a;
}
.btn.first {
  margin-right: 15px;
}
.btn::before {
  overflow: hidden;
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #cc3000;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  -ms-transition: width 0.35s ease;
  -o-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
}
.btn:hover::before,
.btn:focus::before,
.btn:active::before {
  width: 100%;
}
.btns {
  text-align: center;
}
@keyframes spinny {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(45deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
/*========================================================================
x.x - Header
========================================================================*/
header {
  text-align: center;
  padding: 40px 0 50px;
  background: #0f0f0f;
}
header img {
  display: inline-block;
}
/*========================================================================
x.x - Text Area
========================================================================*/
.main-text {
  padding-top: 80px;
  padding-bottom: 60px;
  text-align: center;
  background: #161616;
}
.main-text h1 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 55px;
  line-height: 55px;
  padding-bottom: 18px;
}
.main-text h5 {
  text-transform: uppercase;
  font-weight: 800;
  padding-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .main-text h1 {
    font-size: 38px;
    line-height: 38px;
  }
  .main-text h5 {
    line-height: 24px;
  }
}
/*========================================================================
x.x - Demos
========================================================================*/
.demos-wrapper {
  padding-bottom: 30px;
}
.demos-wrapper .demo-wrapper {
  padding-bottom: 30px;
}
.demos-wrapper .demo-content {
  height: 530px;
  overflow: hidden;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.demos-wrapper .demo-content .demo-image {
  width: 100%;
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -ms-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
}
/*========================================================================
x.x - Less
========================================================================*/
