/* ----------------------------------
Ocean
Version: 1.2
Author: BootEx

-------------------------------------

Table of contents

  01. Main Styles
  02. Common Style
      -Preloader
      -Left Bar
  
  03. Intro 
  04. About 
  05. Service
  06. Resume
  07. Portfolio
  08. Review
  09. Blog
  10. Contact
  11. Footer
  12. Page
      -Blog Page
      -single Blog
  13. Responsive

*/


/* ===================================
  01. Main Styles
====================================== */

body,
html {
  height: 100%;
}

img {
  max-width: 100%;
}

[class*="-section"] {
  /*padding-left: 60px;*/
  overflow: hidden;
}


/* ===================================
  02. Common Styles
====================================== */

.section-title h2 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  position: relative;
  padding: 0 15px;
}

.section-title h2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  bottom: -5px;
  left: 0;
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 50px 50px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5f5f5;
  z-index: 1000;
}

.pre-container {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}


/* ===================================
  03. Intro Section
====================================== */
.intro-section {
  height: 100%;
  position: relative;
}

.intro-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../css/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

#video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.intro-bg:after,
#video-bg:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
}

#particles {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 6;
}

.intro-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: table;
}

.intro-inner .intro-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.intro-inner .intro-content .container {
  /*padding-left: 60px;*/
}

.intro-inner .intro-content h2 a
{
  color:#fff;
}

.intro-inner .intro-content h2 a:hover
{
  color:#e0fd16;
}

.intro-inner .intro-content h2 {
  color: #fff;
  font-size: 60px;
}

.intro-inner .intro-content h3 img {
    height: 13px;
    margin-top: -3px;
    border:0px;
}

.intro-inner .intro-content h3 {
  color: #f3f3f3;
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  margin-top: 20px;
}

.intro-inner .intro-content h3 a
{
  color:#fff;
}

.intro-inner .intro-content h3 a:hover
{
  color:#e0fd16;
}


.intro-inner .intro-content h3 > span{
  font-weight: 400;
  color:#fff;
}