/* Table of content  
---------------------------------------------------
01. Body
02. Typogaphy
03. Header
04. Hero
05. Main
06. Footer
07. Utilities
08. Responsive
--------------------------------------------------- */
/* 01. Body 
--------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  background: #1a1a1a;
  color: #8c8c8c;
  margin: 0;
  padding: 0; }

a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  a:hover {
    color: #fe004a;
    text-decoration: none; }

/* 02. Typography 
--------------------------------------------------- */
body {
  font: 400 18px "Trade Gothic", "Roboto", sans-serif;
  line-height: 1.815;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1,
h2,
h3,
h4,
h5,
h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6 {
  font-family: "Trade Gothic", "Roboto", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: .1px;
  text-transform: uppercase;
  font-style: normal; }

/* 03. Header
--------------------------------------------------- */
.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: block;
  z-index: 99; }
  .site-header .header-inner {
    height: 80px; }
    .site-header .header-inner .site-logo {
      font-size: 16pt;
      font-weight: 700;
      margin: 0; }
      .site-header .header-inner .site-logo a {
        color: #fff; }
    .site-header .header-inner .primary-menu {
      font-size: 15px;
      font-weight: 400;
      text-transform: capitalize;
      letter-spacing: .02rem; }
      .site-header .header-inner .primary-menu > .menu {
        list-style: none;
        padding: 0;
        margin: 0; }
        .site-header .header-inner .primary-menu > .menu > li {
          display: inline-block;
          margin-left: 2rem; }
          .site-header .header-inner .primary-menu > .menu > li a {
            color: #fff; }
          .site-header .header-inner .primary-menu > .menu > li:first-child {
            margin-left: 0; }
          .site-header .header-inner .primary-menu > .menu > li:last-child {
            display: none; }
    .site-header .header-inner .mobile-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative; }
      .site-header .header-inner .mobile-menu .trigger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 30px;
        margin-left: 2rem;
        cursor: pointer; }
        .site-header .header-inner .mobile-menu .trigger div {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column; }
          .site-header .header-inner .mobile-menu .trigger div span {
            width: 26px;
            display: block;
            height: 1px;
            background-color: #fff;
            margin: 3px 0;
            -webkit-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out; }
  .site-header.uk-active {
    background: #1a1a1a; }
    .site-header.uk-active .header-inner .primary-menu > .menu > li:last-child {
      display: inline-block; }

/* 04. Hero
--------------------------------------------------- */
.site-hero {
  display: block;
  padding-bottom: 0; }
  .site-hero .title {
    color: #fff; }
  .site-hero p {
    margin: 0; }
  .site-hero .buttons {
    margin-top: 40px; }
    .site-hero .buttons .preview {
      color: #fff; }
    .site-hero .buttons span {
      margin: 0 1rem; }
  .site-hero:before {
    content: "";
    background-image: url(assets/images/hero.jpg);
    background-size: 640px;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 10%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    z-index: 0;
    display: block;
    opacity: .3; }
  .site-hero .site-hero .section-inner {
    position: relative;
    z-index: 2; }

/* 05. Main
--------------------------------------------------- */
.site-primary {
  position: relative;
  z-index: 1; }

.demo-item {
  position: relative; }
  .demo-item .item-outer {
    position: relative; }
    .demo-item .item-outer .item-thumb {
      position: relative;
      padding: 0;
      background-color: #222;
      -webkit-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .demo-item .item-outer .item-thumb .link-overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.9);
        cursor: pointer;
        opacity: 0;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
        .demo-item .item-outer .item-thumb .link-overlay span {
          height: 48px;
          line-height: 48px;
          padding: 0 48px;
          -webkit-transform: translateY(10px);
          -ms-transform: translateY(10px);
          transform: translateY(10px);
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
    .demo-item .item-outer .item-inner {
      margin-top: 40px;
      text-align: center; }
      .demo-item .item-outer .item-inner .item-title {
        font-size: 15pt;
        color: #fff; }
    .demo-item .item-outer:before {
      content: "";
      display: block;
      width: 100%;
      height: 15px;
      background-color: #ccc;
      border-radius: 5px 5px 0 0; }
    .demo-item .item-outer:after {
      content: "\2022 \2022 \2022";
      font-size: 16px;
      display: inline-block;
      position: absolute;
      top: 0px;
      left: 5px;
      line-height: 1; }
    .demo-item .item-outer:hover .item-thumb {
      -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }
      .demo-item .item-outer:hover .item-thumb .link-overlay {
        opacity: 1; }
        .demo-item .item-outer:hover .item-thumb .link-overlay span {
          -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
          transform: translateY(0); }

.feature-item .icon {
  font-size: 24pt;
  color: #fe004a;
  width: 100px;
  height: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.feature-item p {
  font-size: 14px;
  color: #ccc; }

.feature-item:hover .icon {
  background-color: #fff; }

/* 06. Footer
--------------------------------------------------- */
.site-footer {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .site-footer a {
    color: #fff; }

/* 07. Utilities
--------------------------------------------------- */
.uk-button {
  font-weight: 700; }

.uk-button-medium {
  height: 50px;
  line-height: 50px; }

.uk-button-primary {
  background-color: #fe004a;
  border-color: #fe004a;
  color: #fff; }
  .uk-button-primary:hover {
    background-color: #ff1e5f;
    border-color: #ff1e5f;
    color: #fff; }
  .uk-button-primary:focus {
    background-color: #f40047;
    border-color: #f40047;
    color: #fff; }

.uk-button-success {
  background-color: #32d296;
  border-color: #32d296;
  color: #fff; }
  .uk-button-success:hover {
    background-color: #4bd8a3;
    border-color: #4bd8a3;
    color: #fff; }
  .uk-button-success:focus {
    background-color: #2dcd91;
    border-color: #2dcd91;
    color: #fff; }

.uk-section-primary,
.uk-background-primary {
  background: #fe004a; }

.uk-section-secondary,
.uk-background-secondary {
  background: #010101; }

.uk-section-muted {
  background: #f4f8f8; }

.uk-section-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.cover-image {
  background-color: rgba(255, 255, 255, 0.01);
  display: block;
  padding-top: 66.6666667%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top; }
  .cover-image.ratio-square {
    padding-top: 100%; }
  .cover-image.ratio-portrait {
    padding-top: 130%; }

#loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  z-index: 999999; }
  #loader .loading,
  #loader .loading > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  #loader .loading {
    display: block;
    font-size: 0;
    color: #fe004a;
    width: 40px;
    height: 40px; }
    #loader .loading > div {
      display: inline-block;
      float: none;
      border: 3px solid;
      width: 40px;
      height: 40px;
      background: transparent;
      border-bottom-color: transparent;
      border-radius: 100%;
      -webkit-animation: loading .75s linear infinite;
      -moz-animation: loading .75s linear infinite;
      -o-animation: loading .75s linear infinite;
      animation: loading .75s linear infinite; }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* 08. Responsive
--------------------------------------------------- */
@media (max-width: 460px) {
  .site-hero .section-inner h2 {
    font-size: 1.4rem; }
  .site-hero .section-inner .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%; }
    .site-hero .section-inner .buttons a {
      width: 100%; }
    .site-hero .section-inner .buttons span {
      margin: 1rem 0; } }

@media (max-width: 640px) {
  .uk-section-xlarge {
    padding-top: 80px;
    padding-bottom: 80px; }
  #mobile-menu .inner {
    background-color: #010101;
    padding: 0; }
    #mobile-menu .inner .header {
      padding: 1.5rem 1rem 1.3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      #mobile-menu .inner .header .site-logo {
        font-size: 16pt;
        font-weight: 700; }
      #mobile-menu .inner .header .uk-offcanvas-close {
        position: relative;
        top: auto;
        right: auto;
        padding: 0; }
    #mobile-menu .inner .content {
      padding: 2rem 0; }
      #mobile-menu .inner .content .mobile-nav {
        padding: 0;
        margin: 0; }
        #mobile-menu .inner .content .mobile-nav li {
          padding: 0 1rem; }
          #mobile-menu .inner .content .mobile-nav li a {
            font-weight: 400;
            text-transform: capitalize;
            letter-spacing: .02rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between; }
          #mobile-menu .inner .content .mobile-nav li.uk-parent > a::after {
            content: "\ea71";
            font-family: "Floicons";
            font-size: 10px;
            font-weight: 400;
            position: relative;
            background: none !important;
            width: auto;
            height: auto;
            float: none; }
          #mobile-menu .inner .content .mobile-nav li.uk-parent.uk-open > a::after {
            content: "\ea77"; }
        #mobile-menu .inner .content .mobile-nav > li > a {
          font-size: 15px; }
        #mobile-menu .inner .content .mobile-nav > li ul {
          padding: 0;
          margin: 0; }
          #mobile-menu .inner .content .mobile-nav > li ul > li > a {
            padding: 5px 0;
            font-size: 11px; }
  .site-hero {
    padding-bottom: 0;
    font-size: 15px; }
    .site-hero .section-inner {
      padding: 0 20px; }
      .site-hero .section-inner h2 {
        font-size: 1.4rem; } }
