/* ======= Header style ======= */
.header {
    min-height: 100vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}
.header .caption h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    letter-spacing: 15px;
    align-items: center;
    display: inline-flex;
}
.header .caption h1 {
    position: relative;
    font-size: 90px;
    font-weight: 500;
    line-height: 1.25em;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    color: #fff;
    margin-bottom: 10px;
}

.header .caption h1 span {
    position: relative;
    margin-bottom: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 90px;
    text-transform: uppercase;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    font-weight: 500;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 1px #ccc;
    opacity: .8;
}

.header .caption p {
    font-size: 18px;
    color: #fff;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}
.header .caption p span {
    letter-spacing: 5px;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1e1e1e;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}
.header .caption .butn-dark {
    margin-top: 15px;
    margin-bottom: 15px;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    color: #fff;
}
.header .social a {
    color: #eee;
    font-size: 20px;
    margin: 10px 15px;
}


/* ======= Slider style ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 6vh;
     width: 100%; 
}
/* social icon */
.slider-fade .social-icon,
.slider .social-icon {
  position: absolute;
  left: 12%;
  bottom: 40px;
  z-index: 8;
}
.slider-fade .social-icon a,
.slider .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
    background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
    margin: 5px 1px;
}
.slider-fade .social-icon a:hover,
.slider .social-icon a:hover {
     transform: scale(0.9);
    background: #fff;
    border: 1px solid #fff;
    color: #252525;
    
}
@media screen and (max-width: 767px) {
    .slider-fade .social-icon,
    .slider .social-icon {
    display: none;
    }
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 40px;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}

.project-page .owl-theme .owl-nav [class*=owl-],
.slider-fade .owl-theme .owl-nav [class*=owl-] {
    width: 40px;
    height: 40px;
    line-height: 34px;
    background: transparent;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    margin-right: 2px;
    cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}

.project-page .owl-theme .owl-nav [class*=owl-]:hover,
.slider-fade .owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: #fff;
    border: 1px solid #fff;
    color: #252525;
}
@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}