/* BASE: Mixins, Variables, Mixins */
/* Colors */
/* Fonts  */
* {
  padding: 0;
  margin: 0; }

body, html {
  height: 100%;
  padding: 0;
  margin: 0; }

body {
  background-color: #FFF;
  font-family: "Open Sans", sans-serif;
  line-height: 31px;
  font-size: 19px;
  color: #000;
  border-left: 15px solid #FFF;
  border-right: 15px solid #FFF; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  margin: 29px 20px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-weight: bold;
  font-family: "Oswald", Helvetica, Arial, sans-serif; }

p {
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.5px; }

.lead {
  font-size: 1.0em;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-weight: 300;
  line-height: 1.5; }

.blue {
  color: #337ab7; }

/* MAIN BORDERS */
.border-top {
  top: 0;
  left: 0;
  height: 10px;
  width: 100%; }

.border-left {
  top: 0;
  left: 0;
  width: 10px;
  height: 100%; }

.border-right {
  top: 0;
  right: 0;
  width: 10px;
  height: 100%; }

.border-bottom {
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%; }

.border-top, .border-bottom, .border-left, .border-right {
  position: fixed;
  background-color: #FFF;
  z-index: 99998; }

.text-white {
  color: #FFF !important; }

.text-red {
  color: #F20000 !important; }

.bg-dark {
  background-color: #337ab7;
  padding: 5px; }

@-webkit-keyframes mymove {
  /* Chrome, Safari, Opera */
  0% {
    top: 0;
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    top: 7px;
    opacity: 0; } }

@keyframes mymove {
  /* Standard */
  0% {
    top: 0;
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    top: 7px;
    opacity: 0; } }

.preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  overflow: hidden; }

/* LAYOUTS: Header, Navigation; Footer */
#copyrights {
  background: #000;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  text-align: center; }
  #copyrights a {
    line-height: 1.3;
    font-size: 30px;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 300ms ease-in-out; }
    #copyrights a:hover {
      color: #fff; }
  @media only screen and (max-width: 768px) {
    #copyrights a {
      font-size: 25px; } }
  #copyrights h4 {
    color: #fff;
    padding: 5px 10px;
    margin: 5px 10px;
    font-weight: 300;
    text-transform: none;
    font-size: 24px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-family: "Open Sans", sans-serif; }
  @media only screen and (max-width: 768px) {
    #copyrights h4 {
      font-size: 20px; } }
  #copyrights .social-icons {
    padding: 15px; }
    #copyrights .social-icons i {
      margin-right: 10px;
      font-size: 30px;
      transition: color 300ms ease-in-out;
      margin-bottom: 15px; }
      #copyrights .social-icons i:hover {
        color: #fff; }
  @media only screen and (max-width: 768px) {
    #copyrights .social-icons {
      text-align: center; } }

.closed {
  opacity: 0;
  z-index: -1; }

header.is-fixed {
  position: fixed; }

.work .cover {
  background-color: rgba(0, 0, 0, 0.89); }

.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.12);
  z-index: 2; }

/*---------------------------------------------------------------------------------

Navigation menu stylesheet

Name:			Expandable Navigation (off canvas menu)
Autor:			Claudia Romano
More info:		http://codyhouse.co/gem/secondary-expandable-navigation

Note: IE9 doesn't support transitions and animations

---------------------------------------------------------------------------------*/
/* ------------------------------------ *
 *  Header
/* ------------------------------------ */
header {
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  z-index: 9999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s; }

header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(-275px);
  -moz-transform: translateX(-275px);
  -ms-transform: translateX(-275px);
  -o-transform: translateX(-275px);
  transform: translateX(-275px); }

header.is-fixed {
  position: fixed; }

@media only screen and (max-width: 768px) {
  header {
    height: 75px; } }

/* ------------------------------------ *
 *  Header logo
/* ------------------------------------ */
#cd-logo {
  position: absolute;
  margin-left: 20px;
  padding: 20px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

#cd-logo img {
  width: 180px;
  max-width: 200px;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

/* ------------------------------------ *
 *  Header links
/* ------------------------------------ */
#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none; }

#cd-top-nav ul {
  height: 100%;
  margin: 0;
  padding-top: 24px; }

#cd-top-nav li {
  display: inline-block;
  margin-right: 1em; }

#cd-top-nav a {
  display: inline-block;
  padding: 8px;
  color: #000;
  font-weight: bold; }

#cd-top-nav a.current {
  background-color: #337ab7; }

#cd-top-nav a:hover {
  color: #337ab7; }

@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block; } }

/* ------------------------------------ *
 *  Menu trigger
/* ------------------------------------ */
#menu-trigger {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 50px;
  width: 50px;
  background-color: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 8; }

#menu-trigger .menu-icon {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  margin-top: -1.5px;
  margin-left: -10px;
  width: 20px;
  height: 3px;
  background-color: #000; }

#menu-trigger .menu-icon::before, #menu-trigger .menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0; }

#menu-trigger .menu-icon::before {
  bottom: 7px; }

#menu-trigger .menu-icon::after {
  top: 7px; }

#menu-trigger.is-clicked {
  right: 0; }

#menu-trigger.is-clicked .menu-icon {
  background-color: rgba(255, 255, 255, 0); }

#menu-trigger.is-clicked .menu-icon::before, #menu-trigger.is-clicked .menu-icon::after {
  background-color: #000; }

#menu-trigger.is-clicked .menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

#menu-trigger.is-clicked .menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* ------------------------------------ *
 *  Navigation menu
/* ------------------------------------ */
#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 15px;
  top: 15px;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 8;
  width: 260px;
  background-color: #000;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px); }

@media only screen and (max-width: 768px) {
  #cd-lateral-nav {
    top: 15px; } }

#cd-lateral-nav .nav-inner {
  margin-bottom: 60px; }

#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px; }

#cd-lateral-nav .menu-header {
  background-color: #000;
  margin-bottom: 22px;
  padding: 17px 15px 15px 32px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  color: #909090;
  border-bottom: 1px dotted #333; }

#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none; }

#cd-lateral-nav a {
  display: block;
  line-height: 31px;
  padding: 0 16px 0 32px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 300;
  color: #fff; }

#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF; }

#cd-lateral-nav a:hover {
  background-color: #337ab7;
  color: #FFF;
  text-decoration: line-through; }

@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0; } }

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch; }

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative; }

/* this is the right arrow to show that the item has a submenu  */
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/menu/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s; }

#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg); }

#cd-lateral-nav .sub-menu > li > a {
  font-size: 16px; }

#cd-lateral-nav .menu-separator {
  margin: 0 32px;
  border-bottom: 1px solid #333; }

#cd-lateral-nav .cd-single-item-wrapper .menu-separator {
  margin: 20px 32px; }

/* ------------------------------------ *
 *  social icons
/* ------------------------------------ */
#cd-lateral-nav .social-icons {
  display: inline-block;
  margin-top: 20px;
  padding: 0 32px; }

#cd-lateral-nav .social-icons a {
  float: left;
  padding: 0;
  margin-right: 8px;
  font-size: 32px;
  color: #FFF; }

#cd-lateral-nav .social-icons a:hover {
  background-color: transparent;
  color: #F20000; }

/* ------------------------------------ *
 *  Body content
/* ------------------------------------ */
#body-content {
  position: relative;
  background-color: #f5f4e9;
  z-index: 999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s; }

#body-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the #body-content to translate*/
  cursor: e-resize;
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px); }

/* === MODAL STYLES === */
.modal-dialog {
  color: #fff; }

.modal-content {
  position: relative;
  background-color: #000;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.modal-body {
  position: relative;
  padding: 0; }
  .modal-body img {
    width: 100%; }

.close {
  position: absolute;
  font-size: 40px;
  right: 15px;
  top: 5px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 1px 0 #000;
  filter: alpha(opacity=70);
  opacity: .7; }

.info {
  padding-right: 30px;
  padding-bottom: 20px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility; }

.modal h2 {
  margin-top: 20px; }

.tab-pane h2, .modal h2 {
  text-align: center;
  font-weight: 500;
  margin: 10px auto 15px 0; }

a.btn.link {
  padding: 0;
  margin-top: 25px; }

a.btn.link span {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background: #fff;
  color: #242330;
  font-size: 22px;
  padding: 11px 12px;
  margin-top: 25px;
  margin-right: 10px;
  transition: all .3s; }

/* === MODAL === */
.modal {
  top: 30px;
  left: 30px;
  bottom: 30px;
  right: 30px; }

.portfolio-modal .modal-dialog {
  margin: 0;
  height: 100%;
  width: 100%;
  z-index: 9; }

.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center; }

.portfolio-modal .modal-content h2 {
  margin-bottom: 15px;
  font-size: 3em; }

.portfolio-modal .modal-content p {
  margin-bottom: 30px; }

.portfolio-modal .modal-content p.item-intro {
  margin: 20px 0 30px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 16px; }

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0; }

.portfolio-modal .modal-content img {
  margin-bottom: 30px; }

.portfolio-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer; }

.portfolio-modal .close-modal:hover {
  opacity: .3; }

.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #222;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1051; }

.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #222;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  z-index: 1052; }

.portfolio-modal .modal-backdrop {
  opacity: 0;
  display: none; }

/* MODULES: Sections, Buttons, Tyoi */
.hero-button {
  background: transparent;
  padding: 12px 20px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-weight: bold;
  border: 2px solid rgba(0, 0, 0, 0.3);
  width: 250px;
  font-size: 0.9em;
  margin: 5px auto; }
  .hero-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #000; }

.full-height {
  min-height: 100vh; }

section {
  position: relative;
  padding: 50px 0 50px;
  overflow: hidden;
  z-index: 1; }

.section-title {
  font-size: 3.0em;
  text-align: center;
  margin-bottom: 80px; }

.section-head {
  margin-top: 50px; }
  .section-head .lead {
    margin-bottom: 20px;
    padding: 20px 0px 35px; }

/* === HERO SECTION === */
#section-intro {
  position: relative;
  overflow: hidden; }

.nail {
  position: absolute;
  left: 240px;
  top: -29px; }

.intro-caption {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-weight: bold;
  text-align: center; }
  .intro-caption .btn-para, .intro-captionp {
    text-align: center; }

.btn-para {
  padding: 20px 30px;
  text-align: center; }
  .btn-para .social-icons a {
    padding: 0 5px; }
    .btn-para .social-icons a i:hover {
      color: #000;
      transition: color 300ms ease-in-out; }

.intro-caption h1 {
  font-size: 80px;
  font-weight: bold; }

.intro-caption h1 span {
  display: inline-block;
  padding: 0px 12px;
  margin-right: 3px; }

.intro-caption .divider {
  margin: 30px 0 30px 0; }

.hero-span {
  font-size: 25px; }

.bg-image {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 1; }

.full-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ------------------------------------ *
 *  Intro parallax
/* ------------------------------------ */
/* Intro parallax cover */
.intro-parallax .cover {
  background-color: rgba(0, 0, 0, 0.3); }

/* ABOUT ME SECTION */
#about {
  position: relative;
  background: url("img/footer-pozadina.jpg") 95% 85%;
  background-color: #05080b;
  background-repeat: no-repeat;
  padding: 30px 0px 80px;
  overflow: hidden; }
  #about img {
    position: relative;
    z-index: -1;
    top: 0;
    left: 50%;
    margin-left: -199px;
    top: -65px; }
  #about:after {
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    -webkit-transform: skewY(-2deg);
    transform: skewY(-2deg);
    height: 135px;
    width: 100%;
    content: "";
    bottom: -80px;
    left: 0;
    background: #fff;
    position: absolute; }

.first {
  padding: 10px 0 61px;
  text-align: center; }
  .first::after {
    display: block;
    content: "";
    height: 1px;
    width: 80px;
    background: #2098d1;
    margin: 15px auto 20px;
    text-align: center; }

/* SKILLS SECTION */
#skills {
  background: #fff; }

.skill-col {
  text-align: center;
  margin-bottom: 50px; }
  .skill-col .lead {
    font-size: 1em;
    padding: 20px 0px; }

.media-heading {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-size: 2rem; }

.divider {
  width: 100%;
  height: 2px;
  background-color: #337ab7;
  margin: 10px 0 0px 0; }

.hover-wrapper {
  display: inline-block;
  position: relative; }

.profile-img {
  max-width: 150px;
  border: 7px solid transparent;
  box-shadow: 6px 3px 0 white; }

.img-circle {
  border-radius: 50%; }

.hover-wrapper .hover-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 62px;
  left: 6px;
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  /* display: table-cell; */
  padding: 0px 8px 0px;
  vertical-align: middle; }

.hover-wrapper:hover .hover-text {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1; }

.hover-wrapper:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  /*border: 3px solid #fff;*/
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out; }

.hover-wrapper:hover:after {
  opacity: .5; }

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* === TOOLS SECTION ===*/
#tools {
  background: #fff; }

.tools-icons {
  text-align: center; }
  .tools-icons ul {
    margin: 0px;
    padding: 0px; }
  .tools-icons li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
    opacity: 0.55;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0 20px; }
    .tools-icons li:hover {
      opacity: 1; }

/* === PORTFOLIO SECTION ===*/
#portfolio {
  background: #000;
  padding: 80px 0; }
  #portfolio:before {
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    -webkit-transform: skewY(-2deg);
    transform: skewY(-2deg);
    height: 135px;
    width: 100%;
    content: "";
    top: -80px;
    left: 0;
    background: #fff;
    position: absolute; }

.portfolio-container {
  padding: 0; }

.item {
  position: relative;
  width: 33.333%;
  float: left;
  padding: 5px;
  margin: 0 auto;
  text-align: left; }

.item figure {
  position: relative;
  float: left;
  overflow: hidden;
  /* margin: 10px 1%; */
  width: 100%;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer; }

.item figure img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0.8; }

.item figure figcaption {
  padding: 1em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.item figure figcaption::before,
.item figure figcaption::after {
  pointer-events: none; }

.item figure figcaption,
.item figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.item figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0; }

.item figure h1 {
  /* word-spacing: -0.15em; */
  font-weight: 300;
  opacity: 0;
  transition: all .3s; }

.item figure h1 span {
  font-weight: 500; }

.item figure h1,
.item figure p {
  margin: 0; }

.item figure p {
  /* letter-spacing: 1px; */
  font-size: 68.5%; }

/* Individual effects */
figure.hover-effect {
  background: #2f3238;
  padding: 0; }

figure.hover-effect img {
  max-width: none;
  height: auto;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

figure.hover-effect figcaption {
  text-align: left; }

figure.hover-effect h1 {
  text-align: right;
  position: relative;
  padding: 0.5em 0;
  font-size: 24px; }

figure.hover-effect p {
  display: inline-block;
  margin: 0 0 0.25em;
  padding: 0.4em 1em;
  background: rgba(51, 122, 183, 0.7);
  color: #fff;
  text-transform: none;
  font-weight: 500;
  font-size: 75%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-480px, 0, 0);
  transform: translate3d(-480px, 0, 0); }

figure.hover-effect p:first-child {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s; }

figure.hover-effect p:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s; }

figure.hover-effect p:nth-of-type(3) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s; }

figure.hover-effect :hover p:first-child {
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

figure.hover-effect :hover p:nth-of-type(2) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s; }

figure.hover-effect :hover p:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s; }

figure.hover-effect:hover img {
  opacity: 0.4;
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1); }

figure.hover-effect :hover h1 {
  opacity: 1; }

figure.hover-effect :hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@media screen and (max-width: 768px) {
  .item {
    width: 50%; } }

@media screen and (max-width: 425px) {
  .item {
    width: 100%; } }

/* Begin "Oswald" font fix */
@font-face {
  font-family: 'Oswald';
  font-weight: 300;
  src: local("?"), url(http://themes.googleusercontent.com/static/fonts/oswald/v7/HqHm7BVC_nzzTui2lzQTDT8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }

@font-face {
  font-family: 'Oswald';
  font-weight: 400;
  src: local("?"), url(http://themes.googleusercontent.com/static/fonts/oswald/v7/-g5pDUSRgvxvOl5u-a_WHw.woff) format("woff"); }

@font-face {
  font-family: 'Oswald';
  font-weight: 700;
  src: local("?"), url(http://themes.googleusercontent.com/static/fonts/oswald/v7/bH7276GfdCjMjApa_dkG6T8E0i7KZn-EPnyo3HZu7kw.woff) format("woff"); }

/* End "Oswald" font fix */
.fa {
  text-align: center;
  color: #337ab7; }

/* ------------------------------------ *
 *  Scroll down arrow
/* ------------------------------------ */
.scroll-down-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  z-index: 3; }
  .scroll-down-arrow .fa {
    color: #fff; }

.scroll-down-arrow span {
  position: relative;
  font-size: 24px;
  -webkit-animation: mymove 1.4s infinite ease;
  animation: mymove 1.4s infinite ease; }

/* === SCROLL ANIMATIONS === */
.scrollimation.fade-in {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out; }

.scrollimation.fade-in.in {
  opacity: 1; }

.scrollimation.scale-in {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.17, 0.89, 0.67, 1.57), opacity 0.6s ease-out;
  transition: transform 0.6s cubic-bezier(0.17, 0.89, 0.67, 1.57), opacity 0.6s ease-out; }

.scrollimation.scale-in.in {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.scrollimation.fade-right {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: -webkit-transform .6s ease-out,opacity .6s ease-out;
  transition: transform .6s ease-out,opacity .6s ease-out; }

.scrollimation.fade-right.in {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px); }

.scrollimation.fade-left {
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: -webkit-transform .7s ease-out,opacity .7s ease-out;
  transition: transform .7s ease-out,opacity .7s ease-out; }

.scrollimation.fade-left.in {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px); }

.scrollimation.fade-up {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: -webkit-transform .7s ease-out,opacity .7s ease-in;
  transition: transform .7s ease-out,opacity .7s ease-in-out; }

.scrollimation.fade-up.in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

.scrollimation.d1 {
  transition-delay: .2s; }

.scrollimation.d2 {
  transition-delay: .7s; }

.scrollimation.d3 {
  transition-delay: .6s; }

.scrollimation.d4 {
  transition-delay: .8s; }

.touch .scrollimation.fade-in {
  opacity: 1; }

.touch .scrollimation.scale-in {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.touch .scrollimation.fade-right {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px); }

.touch .scrollimation.fade-left {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px); }

.touch .scrollimation.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

@media (min-width: 992px) {
  .modal-lg {
    width: 768px; } }

/* === LOGO === */
@media only screen and (max-width: 768px) {
  #cd-logo {
    margin-left: 0px; }
  #cd-logo img {
    max-height: 60px;
    width: 100px; }
  figure.hover-effect h1 {
    font-size: 16px; } }

/* === HERO SECTION === */
@media only screen and (max-width: 1280px) {
  .bg-image {
    background-position: 30%; }
  .intro-caption {
    bottom: 80px;
    left: 10px; }
  figure.hover-effect h1 {
    font-size: 20px; }
  figure.hover-effect p {
    font-size: 55%; } }

@media only screen and (max-width: 992px) {
  .intro-caption {
    bottom: 80px;
    left: 10px; }
  .hero-span {
    font-size: 20px; }
  .bg-image {
    background-position: 40%; }
  .intro-caption h1 {
    font-size: 68px;
    text-align: left; }
  figure.hover-effect h1 {
    font-size: 18px; }
  figure.hover-effect p {
    font-size: 45%; }
  .item figure figcaption {
    padding: 1em; } }

@media only screen and (max-width: 768px) {
  .intro-caption {
    bottom: 80px;
    left: 5px; }
  .intro-caption h1 {
    font-size: 2.5em; }
  .intro-caption p {
    font-size: 20px; }
  .social-icons {
    padding: 15px;
    text-align: left; }
    .social-icons i {
      font-size: 25px; }
  .section-title {
    font-size: 2.5em; } }

/* ------------------------------------------------------------- *
 *  Page preloader (display loading animation while page loads)
/* ------------------------------------------------------------- */
#preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 99999; }

#preloader .pulse {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  border-radius: 40px;
  background-color: #000000;
  -webkit-animation: scaleout 1.0s infinite ease;
  animation: scaleout 1.0s infinite ease; }

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0; } }

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: local("Oswald Light"), local("Oswald-Light"), url(http://fonts.gstatic.com/s/oswald/v13/l1cOQ90roY9yC7voEhngDBJtnKITppOI_IvcXXDNrsc.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local("Open Sans Light"), local("OpenSans-Light"), url(http://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTT0LW-43aMEzIO6XUTLjad8.woff2) format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF; }
