@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url("http://fonts.googleapis.com/css?family=Josefin+Sans:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic");
@import url("vendor.css");
@charset "UTF-8";
/*=================================================

/*==================================================
 * helper class
==================================================*/
/* text align */
.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.tc {
  text-align: center;
}
/* float */
.fn {
  float: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* table */
.tb {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}
/* middle table cell */
.tb-cell {
  display: table-cell;
  vertical-align: middle;
}

/*==================================================
common
==================================================*/
::-moz-selection {
  background-color: #010101;
  color: #f5f5f5;
}
::selection {
  background-color: #1a1a1a;
  color: #f5f5f5;
}
.velocity-animating {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
/*==================================================
typography
==================================================*/
body {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.75;
}
h1{
  font-family: "Open Sans", Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 10px;
}
h1 {
  font-size: 90px;
}
h2 {
  font-size: 35px;
  font-weight:bold;

}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
}
p {
  margin-top: 20px;
  font-size: 22px;
  /*font-weight:bold;*/
}
p:last-child {
  margin-bottom: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
i {
  display: inline-block;
}
.light-text h1,
.light-text h2,
.light-text h3,
.light-text h4,
.light-text h5,
.light-text h6 {
  color: #ffffff;
}
.light-text p {
  color: #ffffff;
}
/*==================================================
preloader
==================================================*/
/* preloader background */
#loader {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
/* preloader element */
#loader-ele {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transform: translate(-50%, -50%) !important;
  -moz-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  -o-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  position: absolute;
  left: 50%;
  top: 50%;
}
/* preloader animation */
.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #ffffff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/*==================================================
header
==================================================*/
#site-header {
  position: absolute;
  left: 0;
  top: 15px;
  right: 0;
  min-height: 50px;
  z-index: 1000;
}
.navbar-logo {
  float: left;
  display: block;
}
.navbar-logo img {
  height: 95px;
}
/*==================================================
layout
==================================================*/
html,
body {
  height: 100%;
  background-color: transparent;
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
}
#site-wrap {
  position: relative;
  height: 100%;
  border-style: solid;
  overflow: hidden;
}
#site-main {
  position: relative;
  height: 100%;
}
#background {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  height: 100%!important;
}
.img-bg #img {
  display: block;
}
#overlay {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
}
section.active {
  opacity: 1;
  z-index: 0;
}
.top-bg section {
  background-position: 50% 0;
}
.center-bg section {
  background-position: 50% 50%;
}
section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.section-wrap {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 120px;
}
.is-mobile .section-wrap {
  top: 100px;
  bottom: 100px;
  bottom: 0;
}
.is-mobile .intro-in .section-wrap {
  bottom: 100px;
}
.scroll-block {
  position: relative;
  height: 100%;
}
.is-mobile .scroll-block {
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 120px;
}
.animation {
  opacity: 0;
}
.section-title {
  position: relative;
}
.section-title:after {
  display: block;
  content: "";
  width: 80px;
  height: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.section-body {
  margin-bottom: 50px;
}

/*==================================================
footer
==================================================*/
#site-footer {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 15px;
  right: 0;
  min-height: 50px;
  z-index: 900;
}
.is-mobile #site-footer {
  display: none;
}
.is-mobile .intro-in #site-footer {
  display: block;
}

/*==================================================
plugin
==================================================*/
/* slick */
.slick-loading .slick-list {
  background: #ffffff url('../img/vendor/slick/ajax-loader.gif') center center no-repeat;
}

/* flexslider */
.flexslider {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/*==================================================
responsive
==================================================*/
/* fix ie10 viewport bug */
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
@media (max-width: 991px) {
  #site-wrap {
    border-width: 10px!important;
  }
  .navbar-logo img {
    height: 65px;
    margin: 5px 0;
  }
  h1{
    font-size: 35px;
  }
  .section-title:after {
    height: 15px;
  }
  .skill-bar {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 25px;
  }
  p {
  margin-top: 2px;
  font-size: 15px;
  /*font-weight:bold;*/
}
p:last-child {
  margin-bottom: 0;
}

  .section-title:after {
  display: block;
  content: "";
  /*width: 80px;*/
  height: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
}