@charset "UTF-8";


/*==================================================
import css
==================================================*/
@import url("http://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic");
@import url("http://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800");
@import url("http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700");

/*==================================================
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;
}
/*==================================================
reset
==================================================*/
a:active,
a:focus,
a:hover,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
.form-control:focus,
.form-control.focus {
  outline: 0;
}
a:focus,
a:hover {
  text-decoration: none;
}
.btn.active,
.btn:active,
.form-control,
.form-control:focus {
  -webkit-box-shadow: none;
  -mox-box-shadow: none;
  box-shadow: none;
}
.btn,
.form-control {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-left-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-clip: padding-box;
}
.btn-group-vertical .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
}
.btn-group-vertical .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
}
.dropdown-menu {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-left-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-clip: padding-box;
  -webkit-box-shadow: none;
  -mox-box-shadow: none;
  box-shadow: none;
}
button:focus {
  outline: 0;
}
html,
body {
  height: 100%;
  background-color: transparent;
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
}
.icons {
  display: inline-block;
}
::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}
.dark ::-moz-selection {
  background-color: #ffffff;
  color: #000000;
}
::selection {
  background-color: #333333;
  color: #ffffff;
}
.dark ::selection {
  background-color: #ffffff;
  color: #000000;
}

/*==================================================
preloader
==================================================*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#preloader-ele {
  /* backface hidden */
  -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%;
}

/*==================================================
typography
==================================================*/
body {
  font-family: "Dosis", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans Condensed", Georgia, "Times New Roman", Times, serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 50px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
a {
  -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
p {
  margin-bottom: 0;
  line-height: 1.5;
}



/*==================================================
section common
==================================================*/
body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#bg,
#video,
#overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


section {
  /* backface hidden */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  left: 0;
  top: 0px;
  bottom: 80px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
}
section.active {
  display: block;
}
.section-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.section-wrap.scroll-wrap {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.inner {
  /* section inner padding */
  padding: 80px 0;
}
.inner > .container {
  /* max width */
  max-width: 860px!important;
}
.section-title {
  position: relative;
}
.letter {
  /* backface hidden */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 100px;
  line-height: 100px;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", Times, serif;
  font-size: 100px;
  color: #c7c8c9;
  z-index: -1;
  opacity: .2;
}


.section-content {
  margin-top: 50px;
}
.section-footer {
  margin-top: 50px;
}
.section-footer .btn {
  margin-bottom: 5px;
}
/*==================================================
intro section
==================================================*/
#intro {
  text-align: center;
}

.unit {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 35px;
}

/*==================================================
footer
==================================================*/
#site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1000;
}
.copyright {
  display: inline-block;
  height: 50px;
  line-height: 50px;
}
.
/*==================================================
plugin
==================================================*/
/* owl carousel */
.grabbing {
  /* mouse grab icon */
  cursor: url(../img/vendor/owl-carousel/grabbing.png) 8 8, move;
}
.owl-item.loading {
  /* preloading images */
  background: url(../img/vendor/owl-carousel/AjaxLoader.gif) no-repeat center center;
}
.owl-theme .owl-controls .owl-page span {
  /* backface hidden */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-left-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-clip: padding-box;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.owl-theme .owl-controls {
  margin-top: 60px;
}


/*==================================================
responsive
==================================================*/
@media (max-width: 991px) {
  #site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .showcase {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  section {
    bottom: 0;
  }
  h1,
  h2 {
    font-size: 38px;
  }
  .letter {
    height: 80px;
    line-height: 80px;
    font-size: 80px;
  }
  #intro .section-content {
    margin-top: 40px;
  }


  #site-footer {
    display: none;
  }
  #menu-wrap .social-list {
    display: block;
    float: none;
  }
  #menu a {
    font-size: 20px;
    padding: 2.5px 10px;
  }
}
