/*****

Wezo - creative one page parallax

author : Dragon-themes
 
****/

/******

the content

1-load-wrapp
2-welcome-area
3-about-area
4-how-work
5-services
6-features
7-numbers
8-creative-area
9-team-area
10-missiom
11-projects
12-testimonials 
13-pricing-area 
14-video-area 
15-blog-area 
16-brands-area 
17-address-area 
18-contact-area 
19-map 
20-footer 
21-scroll-top 


******/


*{
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
           box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;

}

.fa {
  font-family: 'FontAwesome';
  font-style: normal;
}

a,
a:hover{
	text-decoration: none;
}

a:focus{
	outline: none;
	text-decoration: none;
	color: #fff
}


h1{font-size: 50px; line-height: 50px;}
h2{font-size: 40px; line-height: 45px;}
h3{font-size: 35px; line-height: 40px;}
h4{font-size: 28px; line-height: 33px;}
h5{font-size: 22px; line-height: 28px;}
h6{font-size: 17px; line-height: 22px;}

p{font-size: 15px; line-height: 24px; font-weight: 400; color: #666; font-family: 'Open sans', sans-serif;}

.sec-padding{padding: 80px 0;}

.up-title{
	font-size: 15px;
	font-weight: 400;
	color: #777;
	display: block;
	text-align: center;
}

.main-title{
	position: relative;
	font-size: 35px;
	font-weight: 600;
	color: #242424;
	text-align: center;
	margin: 0px 0 70px 0;
}

.main-title:after{
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	height: 1px;
	width: 70px;
	background-color: #e21d2c;
	transform: translateX(-50%);
}
 
.main-title:before{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	height: 1px;
	width: 40px;
	background-color: #e21d2c;
	transform: translateX(-50%);
} 

.span-title{
	font-size: 13px;
	font-weight: 600;
	color: #e21d2c;
	text-transform: uppercase;
}

.box-padding{
	padding: 80px 50px;
}

/*** buttons ***/
.btn-1{
	display: inline-block;
    text-decoration: none;
    padding: 10px 25px;
	background-color: #e21d2c;
	color: #fff;
	border: none;
    border-radius: 0px;
    position: relative;
    font-weight: 500;
    transform: perspective(1px)translateZ(0px);
    transition: all 0.2s ease 0s;
	overflow: hidden;
}

.btn-1:before{
    content: "";
    background: #fff;
	 position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.btn-1:hover:before{
    transform: scaleY(1)
}

.btn-1:hover{
	color: #333;
}

.btn-2{
	display: inline-block;
    text-decoration: none;
    padding: 8px 23px;
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
    border-radius: 0px;
    position: relative;
    font-weight: 500;
    transform: perspective(1px)translateZ(0px);
    transition: all 0.2s ease 0s;
	overflow: hidden;
}

.btn-2:before{
    content: "";
    background: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.btn-2:hover:before{
    transform: scaleY(1)
}

.btn-2:hover{
	color: #333;
}

.btn-3{
	display: inline-block;
    text-decoration: none;
    padding: 10px 25px;
	background-color: #e21d2c;
	color: #fff;
	border: none;
    border-radius: 0px;
    position: relative;
    font-weight: 500;
    transform: perspective(1px)translateZ(0px);
    transition: all 0.2s ease 0s;
}

.btn-3:before{
    content: "";
    background: #e3212f;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.how-work .single-box i.check-services{
    font-size: 18px !important;
    margin-right: 10px;
}

.btn-3:hover:before{
    transform: scaleY(1)
}

.btn-3:hover{
	color: #fff;
}

 
/*----------------------------------------------------
					load-wrapp
----------------------------------------------------*/
.load-wrapp {
    position: fixed;
    width: 100%;
    height: 100%;
    background:#222;
    color:#fff;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:99999;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.load-wrapp .letter-holder > div{
	display: inline-block;
}

.loader .letter {
    animation-name: loading;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-direction: linear;
}

.l-1 {animation-delay: .48s;}
.l-2 {animation-delay: .6s;}
.l-3 {animation-delay: .72s;}
.l-4 {animation-delay: .84s;}
.l-5 {animation-delay: .96s;}
.l-6 {animation-delay: 1.08s;}
.l-7 {animation-delay: 1.2s;}
.l-8 {animation-delay: 1.32s;}
.l-9 {animation-delay: 1.44s;}
.l-10 {animation-delay: 1.56s;}

@keyframes loading {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/*----------------------------------------------------
					End load-wrapp
----------------------------------------------------*/

/*----------------------------------------------------
					index page
----------------------------------------------------*/
.intro{
	padding: 150px 0;
}

.intro h5{
	color: #333;
	font-size: 18px;
}

.intro h3{
	margin-bottom: 30px;
	color: #000;
}

#demos{
	background-color: #121212;
}

#demos .single-demo{
	margin-bottom: 30px;
}

#demos .single-demo .image{
	padding: 5px;
	background-color: #fff;
	display: block;
	margin-bottom: 10px;
	transition: all 0.5s ease-in-out;
}

#demos .single-demo .image:hover{
	transform: translateY(-5px);
	box-shadow: 0 2px 35px -8px #000
}

#demos .single-demo a{
	color: #fff;
}
/*----------------------------------------------------
					End index page
----------------------------------------------------*/

/*----------------------------------------------------
					header
----------------------------------------------------*/
.header { 
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    border-radius: 0; 
    -webkit-transition: all 0.4s ease-in-out;
       -moz-transition: all 0.4s ease-in-out;
         -o-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
    background-color: transparent;
} 

.navbar-brand{
	color: #fff;
	font-size: 30px;
	font-weight: 700;
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; 
} 

.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.header .navbar-nav { 
    margin: 0;
    float: right;
} 

.header .navbar-nav li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 30px 15px;
}

.header .navbar-nav li a:hover,
.header .navbar-nav li a:focus{
    background: none;
} 

.header .navbar-toggle { 
    margin-top: 20px;
    padding: 10px;
}

.header .navbar-toggle .icon-bar {
    background: #fff;
    height: 3px; 
}
 
.header.header-colored {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 10px 25px -15px #999;
} 

.header.header-colored .navbar-brand {
    padding-top: 20px;
    padding-bottom: 15px;
    color: #333;
}

.header.header-colored .navbar-nav li a {
    padding-top: 23px;
    padding-bottom: 23px;
    color: #333;
}

.header.header-colored .navbar-nav li.active a{
	color: #e21d2c;
}

.header.header-colored .navbar-toggle { 
    margin-top: 10px;
    padding: 10px;
}

.header.header-colored .navbar-toggle .icon-bar {
    background: #555;
    height: 3px; 
}
/*----------------------------------------------------
					end header
----------------------------------------------------*/

/*----------------------------------------------------
					welcome-area
----------------------------------------------------*/
.welcome-area{
    height: 100vh;
    background-image: url('../images/k-s3-ae-00211_1-id-56156-jpeg.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    overflow: hidden;
	position: relative;
}

.welcome-area .overlay-bg{
	background-color: rgba(0,0,0,0.7);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.welcome-area .welcome-text h1{
	color: #fff;
	margin-bottom: 20px;
}

.welcome-area .welcome-text p{
	color: #ccc;
	margin: 0 15%;
	font-size: 15px;
	margin-bottom: 30px;
}

.welcome-area .welcome-text .btn-1,
.welcome-area .welcome-text .btn-2{
	margin: 0 5px;
	margin-bottom: 10px;
	z-index: 1;
}

.welcome-area .pattern{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background-image: url(../images/Pattern-1.png);
	background-size: contain;
	background-position: bottom;
	background-repeat: no-repeat
}

.welcome-area .fa-angle-down{
	position: absolute;
    bottom: 50px;
    left: 50%;
    font-size: 20px;
    color: #fff;
    transform: translateX(-50%);
	cursor: pointer;
	animation: run 2s 0s infinite ease-in-out;
	border: 2px solid #fff;
	border-radius: 50px;
	height: 40px;
    width: 25px;
    line-height: 40px;
}


@keyframes run {
    0% { bottom: 40px;}
    50% {bottom: 20px;}
    100% { bottom: 40px}
}
/*----------------------------------------------------
					End welcome-area
----------------------------------------------------*/

/*----------------------------------------------------
					swiper-container
----------------------------------------------------*/
.swiper-container .swiper-wrapper .swiper-slide{
	height: 100vh;
	background-size: cover;
}

.swiper-container .swiper-wrapper .swiper-slide .overlay-bg{
    background-color: rgba(0,0,0,0.75);
    height: 100vh;
    padding: 70px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.swiper-container .swiper-wrapper .left .overlay-bg{
	text-align: left
}

.swiper-container .swiper-wrapper .left .welcome-text{
	text-align: left;
	padding-left: 60px; 
}

.swiper-container .swiper-wrapper .swiper-slide.left .overlay-bg .welcome-text p{
	margin: 0 50% 30px 0;
}

.swiper-container .swiper-wrapper .swiper-slide .overlay-bg .welcome-text h1{
    color: #fff;
	margin-bottom: 20px;
	transform: translateY(60px);
	transition-delay: 0.6s;
	transition-duration: 1.5s;
	opacity: 0;
}

.swiper-container .swiper-wrapper .swiper-slide .overlay-bg .welcome-text p{
    color: #ccc;
	margin: 0 15%;
	margin-bottom: 30px;
	transform: translateY(60px);
	transition-delay: 1.2s;
	transition-duration: 1.5s;
	opacity: 0;
}

.swiper-container .swiper-wrapper .swiper-slide .overlay-bg .welcome-text .btn-1,
.swiper-container .swiper-wrapper .swiper-slide .overlay-bg .welcome-text .btn-2{
	margin: 0 5px;
	margin-bottom: 10px;
	transform: translateY(60px);
	transition-delay: 1.7s;
	transition-duration: 2s;
	opacity: 0;
	transition-property: transform, opacity;
}

.swiper-container .swiper-wrapper .swiper-slide-active .overlay-bg .welcome-text h1,
.swiper-container .swiper-wrapper .swiper-slide-active .overlay-bg .welcome-text p,
.swiper-container .swiper-wrapper .swiper-slide-active .overlay-bg .welcome-text .btn-1,
.swiper-container .swiper-wrapper .swiper-slide-active .overlay-bg .welcome-text .btn-2{
	opacity: 1;
	transform: translateY(0);
}

.swiper-pagination-white .swiper-pagination-bullet-active{
	background-color: #e21d2c;
}

.swiper-button-next,
.swiper-button-prev{
	background-color: rgba(0,0,0,0.8);
	width: 45px;
	height: 45px;
	background-size: 12px 50px;
	border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
	background-color: #e21d2c;
}
/*----------------------------------------------------
					End swiper-container
----------------------------------------------------*/

/*----------------------------------------------------
					welcome-video
----------------------------------------------------*/
.welcome-video{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
	background-image: none;
}

.welcome-video .overlay-bg{
  background-color: rgba(0,0,0,0.75);
    height: 100vh;
    padding: 70px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
 
.welcome-video .video-background{
    position: absolute;
   left: 0;
	top: 0;
	 width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    z-index: -100
}
/*----------------------------------------------------
					End welcome-video
----------------------------------------------------*/

/*----------------------------------------------------
  					welcome-particles
----------------------------------------------------*/
.welcome-particles{
	position: relative;
    height: 100vh;
    background-image: url('../images/luca-bravo-207676.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
	background-color: rgba(0,0,0,0.75);
	background-blend-mode: overlay;
    text-align: center;
    overflow: hidden;
	-webkit-clip-path: none;
    clip-path: none;
}

.welcome-particles  .welcome-text{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.welcome-particles .welcome-text h1{
	color: #fff;
	margin-bottom: 20px;
}

.welcome-particles .welcome-text p{
	color: #ccc;
	margin: 0 15%;
	font-size: 15px;
	margin-bottom: 30px;
}

.welcome-particles .welcome-text .btn-1,
.welcome-particles .welcome-text .btn-2{
	margin: 0 5px;
	margin-bottom: 10px;
}
/*----------------------------------------------------
  					End welcome-particles
----------------------------------------------------*/

/*----------------------------------------------------
					about-area
----------------------------------------------------*/
.about-area .about-image,
.about-area .about-text{
	margin-bottom: 30px;
}

.about-area .about-text h4{
	font-weight: 600;
	color: #242424;
}

.about-area .about-text p{
	margin-bottom: 10px;
}

.about-area .about-text p .fa{
	color: #e21d2c;
}

.about-area .about-text .btn-3{
	margin-top: 20px;
}
/*----------------------------------------------------
					End about-area
----------------------------------------------------*/


/*----------------------------------------------------
					How-work
----------------------------------------------------*/
.how-work{
	background-color: #f4f4f4;
	position: relative;
}

.how-work .image-back-50-left{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/work-7.jpg);
	background-size: cover;
	height: 100%
}

.how-work h4{
	margin-top: 10px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #242424;
}

.how-work p{
	margin-bottom: 60px;
}

.how-work .single-box{
	margin-bottom: 30px;
}

.how-work .single-box i{
	font-size: 30px;
}

.how-work .single-box h6{
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 5px;
}

.how-work .single-box p{
	margin-bottom: 10px;
}
/*----------------------------------------------------
					End how-work
----------------------------------------------------*/

/*----------------------------------------------------
					services
----------------------------------------------------*/
.services .single-service{
	margin-bottom: 30px;
}

.services .single-service i{
	font-size: 30px;
	display: inline-block;
	height: 80px;
	width: 80px;
	line-height: 80px;
	text-align: center;
	margin-bottom: 20px;
	background-color: #e21d2c;
	color: #fff;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.services .single-service:hover i{
	background-color: #333;
}

.services .single-service h5{
	margin-top: 0;
	margin-bottom: 7px;
	font-weight: 600;
	color: #242424;
}
/*----------------------------------------------------
					End services
----------------------------------------------------*/

/*----------------------------------------------------
					features
----------------------------------------------------*/
.features{
	position: relative;
	background-color: #222;
}

.features h4{
	margin-top: 10px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #fff;
}

.features p{
	margin-bottom: 25px;
	color: #aaa;
}

.features .image-back-50-right{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/k-74-jj-0013117-id-64064-jpeg.jpg);
	background-size: cover
}

.features .tabs{
	margin-bottom: 0;
}

.features .tabs li{
	background-color: #fff;
	color: #333;
	display: inline-block;
	padding: 7px 15px;
	margin-right: 10px;
	margin-left: 0;
	margin-bottom: 20px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	border-radius: 3px;
}

.features .tabs li.active{
	color: #fff;
	background-color: #e21d2c;
}

.features .tabs-content div:not(:first-of-type){
	display: none;
} 

.features .tabs-content div img{
	margin-bottom: 30px;
}

.features .tabs-content div p{
	font-size: 15px;
	line-height: 25px;
	margin-right: 20%;
	padding: 15px;
	background-color: #333333;
	border-radius: 3px;
}
/*----------------------------------------------------
					End features
----------------------------------------------------*/

/*----------------------------------------------------
					numbers
----------------------------------------------------*/
.numbers .single-number{
	margin-bottom: 30px;
}

.numbers .single-number i{
	font-size: 45px;
}

.numbers .single-number p{
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 35px;
	font-weight: 700;
	color: #333;
}

.numbers .single-number h5{
	font-weight: 400;
}

/*----------------------------------------------------
					End numbers
----------------------------------------------------*/

/*----------------------------------------------------
					creative-area
----------------------------------------------------*/
.creative-area{
	background-image: url(../images/f-back.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top;
}

.creative-area .overlay-bg{
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 30%, rgba(9, 9, 9, 0.4) 100%)
}

.creative-area h3{
	color: #fff;
	font-weight: 600;
}

.creative-area p{
	color: #ccc;
	margin-right: 40%;
	margin-bottom: 20px;
}

.creative-area  .btn-1{
	margin-top: 5px;
}
/*----------------------------------------------------
					End video-area
----------------------------------------------------*/

/*----------------------------------------------------
					team-area
----------------------------------------------------*/
.team-area .single-member .image{
	position: relative;
	overflow: hidden;
}

.team-area .single-member .image img{
	transition: all 0.7s ease-in-out;
}

.team-area .single-member .image:hover img{
	transform: scale(1.1);
}

.team-area .single-member .image .image-inner{
	position: absolute;
	top: 5%;
	left: 5%;
	height: 90%;
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease-in-out;
}

.team-area .single-member .image:hover .image-inner{
	opacity: 1;
	transform: translateY(0);
}

.team-area .single-member .image .image-inner a{
	display: inline-block;
	margin: 0 10px;
	color: #fff;
	height: 30px;
	width: 30px;
	line-height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.team-area .single-member .image:hover .image-inner a{
	transform: translateY(0);
}

.team-area .single-member .image .image-inner a:hover{
	background-color: #fff;
	color: #333;
}

.team-area .single-member h5{
	margin-top: 20px;
	margin-bottom: 0;
}

.team-area .single-member span{
	color: #888;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span{
	background-color: #e21d2c;
}
/*----------------------------------------------------
					End team-area
----------------------------------------------------*/

/*----------------------------------------------------
					skills-area
----------------------------------------------------*/
.skills-area{
	position: relative;
	background-color: #222
}

.skills-area .image-back-50-left{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/k-74-teddy-3129-id-64098-jpeg.jpg);
	background-size: cover;
	background-position: top left;
}

.skills-area h4{
	color: #fff;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 15px;
}

.skills-area p{
	color: #bbb;
	margin-bottom: 30px;
}

.skills-area .skills-content{
	margin-bottom: 30px;
}

.skills-area .skills-bar {
    margin-bottom: 20px;
}

.skills-area .skills-bar h6{
	color: #eee;
}

.skills-area .skills-bar .skills-progress {
  height: 7px;
  border-radius: 0px;
  width: 90%;
  background: #eee;
  position: relative;
}

.skills-area .skills-bar .skills-progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #e21d2c;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.skills-area .skills-bar .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  right: 5px;
  top: -26px;
  font-weight: 400;
  font-size: 15px;
  color: #eee;
}
/*----------------------------------------------------
					Eng skills-area
----------------------------------------------------*/

/*----------------------------------------------------
					projects
----------------------------------------------------*/
.projects{
    width: 100%;
    text-align: center;
}

.projects ul{
    list-style: none;
    margin-bottom: 30px;
}

.projects ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 5px 10px;
    cursor: pointer;
    color: #666;
    font-weight: 400;
	border-radius: 50px;
    border: 1px solid #ddd;
}

.projects .selected{
    background-color: #e21d2c;
    border: 1px solid #e21d2c;
	color: #fff;
}

.projects .single-project{
    position: relative;
     margin-bottom: 30px;
	z-index: 555
}

.projects .single-project .project-image{
    overflow: hidden;
}

.projects .single-project .project-image img{
    width: 100%;
    height: auto;
	transform: scale(1);
    -webkit-transition: all 0.7s ease-in-out;
       -moz-transition: all 0.7s ease-in-out;
         -o-transition: all 0.7s ease-in-out;
            transition: all 0.7s ease-in-out;
}

.projects .single-project:hover .project-image img{
    transform: scale(1.15);
}

.projects .single-project .overlay-bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.85);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
	overflow: hidden
}

.projects .single-project .overlay-bg:after{
	content: "";
	position: absolute;
	top: 5%;
	left: 5%;
	width: 90%;
	height: 90%;
	border: 1px solid #777;
	opacity: 0;
	transition: all 0.5s ease-in-out
}

.projects .single-project:hover .overlay-bg:after{
	border: 1px solid #777;
	opacity: 1;
	transform: scale(1)
}

.projects .single-project .overlay-bg .inner{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: auto;
}

.projects .single-project .overlay-bg .inner h2{
    transform: translateY(-20px);
	color: #fff;
    font-size: 20px;
    font-weight: 500;
	margin-bottom: 0px;
    transition: all 0.4s ease-in-out;
}

.projects .single-project .overlay-bg .inner p{
    transform: translateY(20px);
    color: #bbb;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
}

.projects .single-project:hover .overlay-bg .inner h2,
.projects .single-project:hover .overlay-bg .inner p{
    transform: translateY(0);
}


.projects .single-project:hover .overlay-bg{
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
} 
/*----------------------------------------------------
					End projects
----------------------------------------------------*/

/*----------------------------------------------------
					testimonials
----------------------------------------------------*/
.testimonials{
	background-image: url(../images/k-74-jj-0013117-id-64064-jpeg.jpg);
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
}

.testimonials .overlay-bg{
	background-color: rgba(0,0,0,0.85)
}

.testimonials .single-review img{
	height: 100px;
	width: 100px;
	margin: auto;
	margin-bottom: 20px;
}

.testimonials .single-review p{
	color: #ccc;
	margin: 0 20%;
}

.testimonials .single-review h6{
	margin-top: 20px;
	margin-bottom: 0;
	color: #fff;
}

.testimonials .single-review span{
	color: #888;
	font-weight: 500;
}
/*----------------------------------------------------
					testimonials
----------------------------------------------------*/

/*----------------------------------------------------
					pricing-area
----------------------------------------------------*/
.pricing-area .price-table{
	margin-bottom: 30px;
	padding: 40px 30px;
	box-shadow: 0 3px 30px -7px #888;
}

.pricing-area .price-table span{
	font-size: 13px;
	color: #aaa;
	font-weight: 500;
}

.pricing-area .price-table .price-value{
	margin: 20px 0;
	padding: 20px 0;
	background-color: #f2f2f2
}

.pricing-area .price-table h4{
	font-weight: 600;
}

.pricing-area .price-table h2{
	color: #333;
	margin-top: 0;
	margin-bottom: 0;
}

.pricing-area .price-table h2 .dolar{
	color: #333;
	font-size: 20px;
	display: inline-block;
	transform: translateY(-25px)translateX(5px)
}

.pricing-area .price-table h2 span{
	font-size: 13px;
	color: #aaa;
	font-weight: 400;
}

.pricing-area .price-table .btn-3{
	margin-top: 30px;
	margin-bottom: 20px;
}

.pricing-area .price-table p.active{
	text-decoration: line-through;
	color: #aaa
}
/*----------------------------------------------------
					End pricing-area
----------------------------------------------------*/

/*----------------------------------------------------
					video-area
----------------------------------------------------*/
.video-area{
	background-image: url(../images/luca-bravo-207676.jpg);
	background-size: cover;
	background-attachment: fixed;
}

.video-area .overlay-bg{
	background-color: rgba(0,0,0,0.85);
}
	
.video-area h3{
	color: #fff;
}

.video-area p{
	color: #ccc;
	margin: 0 20%;
	margin-bottom: 20px;
}

.video-area .fa{
	height: 70px;
	width: 70px;
	line-height: 70px;
	text-align: center;
	color: #fff;
	font-size: 25px;
	border: 1px solid #ccc;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.video-area .fa:hover{
	background-color: #fff;
	color: #333;
}
/*----------------------------------------------------
					End video-area
----------------------------------------------------*/

/*----------------------------------------------------
					blog-area
----------------------------------------------------*/
.blog-area{
	background-color: #f4f4f4
}

.blog-area .single-blog{
	background-color: #fff
}

.blog-area .single-blog .blog-image{
	overflow: hidden;
}

.blog-area .single-blog .blog-image img{
	transition: transform 0.5s ease-in-out;
}

.blog-area .single-blog:hover .blog-image img{
	transform: scale(1.08);
}

.blog-area .single-blog .blog-text{
	padding: 20px;
}

.blog-area .single-blog p:first-of-type{
	color: #888;
	font-size: 13px;
	margin-bottom: 0;
}

.blog-area .single-blog p i{
	color: #000;
}

.blog-area .single-blog p .icon-chat{
	margin-left: 10px;
}

.blog-area .single-blog h5 a{
	color: #242424;
	font-weight: 600;
}

.blog-area .single-blog h5 a:hover{
	color: #e21d2c;
}

.blog-area .single-blog p a{
	color: #555;
	font-weight: 700;
	margin-top: 10px;
	display: inline-block
}

.blog-area .single-blog p a:hover{
	color: #e21d2c;
}

.blog-area .single-blog p a .fa{
	margin-left: 2px;
	transition: margin-left 0.5s ease-in-out;
}

.blog-area .single-blog p a:hover .fa{
	margin-left: 10px;
	color: #e21d2c;
}
/*----------------------------------------------------
					End blog-area
----------------------------------------------------*/

/*----------------------------------------------------
					brands-area
----------------------------------------------------*/
.brands-area{
	background-color: #f4f4f4;
	padding: 10px 0;
}

.brands-area img{
	margin-bottom: 30px;
	padding: 30px;
}
/*----------------------------------------------------
					End brands-area
----------------------------------------------------*/

/*----------------------------------------------------
					address-area
----------------------------------------------------*/
.address-area{
	background-image: url(../images/outsmartlabs-digital-agency.png);
	background-size: cover;
	background-attachment: fixed;
	background-position: top;
	background-blend-mode: overlay;
	background-color: rgba(0,0,0,0.8)
}

.address-area .address i{
	font-size: 40px;
	margin-bottom: 20px;
	height: 80px;
	width: 80px;
	line-height: 80px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	color: #fff;
	background-color: #e21d2c;
}

.address-area .address {
   margin-bottom: 30px;
}

.address-area .address p{
	margin-bottom: 5px;
	color: #fff
}
/*----------------------------------------------------
					End address-area
----------------------------------------------------*/

/*----------------------------------------------------
					contact-area
----------------------------------------------------*/
.contact-area {
	background-color: #f4f4f4;
}

.contact-area .box{
	position: relative;
}

.contact-area .box .image-back-50-left{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background-image: url(../images/work-1.jpg);
	background-size: cover;
}

.contact-form {
    border-radius: 3px;
}

.form-group{
    margin-bottom: 0;
}

.form-control{
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 0px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #242424;
    text-indent: 20px;
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 30px;
    font-weight: 300;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.has-error .form-control,
.has-error .form-control:focus{
	box-shadow: none;
	outline: none;
}

.contact-form input[type='submit']:hover {
    background-color: #333;
    outline: 0;
    box-shadow: none;
}

/*----------------------------------------------------
					End contact-area
----------------------------------------------------*/

/*----------------------------------------------------
					map
----------------------------------------------------*/
#map{
	height: 500px;
	width: 100%;
}
/*----------------------------------------------------
					End map
----------------------------------------------------*/

/*----------------------------------------------------
					footer
----------------------------------------------------*/
 .footer{
    padding: 40px 0 20px 0;
	 background-color: #222;
}

.footer .copyright,
.footer .social-icons{
	margin-bottom: 20px;
}

.footer .copyright p{
	color: #ccc;
}

.footer .copyright p strong{
	color: #fff;
}
	
.footer .social-icons{
	text-align: right; 
}

.footer .social-icons a{
	display: inline-block;
	font-size: 18px;
	margin-left: 15px;
	margin-bottom: 10px;
	color: #fff;
	background-color: #333;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.footer .social-icons a:hover{
	background-color: #e21d2c;
	color: #fff;
}
/*----------------------------------------------------
					End footer
----------------------------------------------------*/

/*----------------------------------------------------
					scroll-top
----------------------------------------------------*/
#scroll-top {
    width:50px;
    height:50px;
    color:#fff;
    background-color:#444;
    text-align:center;
    position:fixed;
    border-radius: 50%;
    right:15px;
    bottom:10px;
    z-index:9999;
    display: none;
    cursor:pointer;
    padding: 10px;
}

#scroll-top:hover {
    background-color:#e21d2c;
}

#scroll-top .fa{
    line-height: 25px;
	 font-size: 30px;
}
/*----------------------------------------------------
					end scroll-top
----------------------------------------------------*/





/***** start single blog page *****/



/*----------------------------------------------------
					blog-intro
----------------------------------------------------*/
.blog-intro{
	background-image: url(../images/k-74-jj-0013117-id-64064-jpeg.jpg);
	background-attachment: fixed;
	background-size: cover;
}
	
.blog-intro .overlay-bg{
	background-color: rgba(0,0,0,0.7);
	padding: 150px 0;
}
	
.blog-intro .intro-text h2{
	color: #fff;
	margin-bottom: 20px;
}

.blog-intro .intro-text h5 a,
.blog-intro .intro-text h5{
	color: #ccc;
	font-weight: 400
}

.blog-intro .intro-text h5 a:hover{
	color: #e21d2c;
}
/*----------------------------------------------------
					end blog-intro
----------------------------------------------------*/

.blog-content .post-details{
	margin-bottom: 30px;
}

.blog-content .post-details h4{
	margin-top: 20px;
}

.blog-content .post-details blockquote{
	background-color: #eee;
	border-left-color: #333;
}

.blog-content .post-details ul li{
	line-height: 25px;
	font-size: 15px;
	font-family: 'open sans', sans-serif;
	font-weight: 600
}

.blog-content .post-details h5.tags{
	margin-top: 20px;
	margin-bottom: 10px;
}

.blog-content .post-details h5.share{
	margin-top: 10px;
	margin-bottom: 10px;
}

.blog-content .post-details h5 a{
	background-color: #e8e8e8;
	color: #333;
	font-size: 15px;
	padding: 5px 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	display: inline-block;
}

.blog-content .post-details h5 a:hover{
	background-color: #333;
	color: #fff;
	border-color: #333;
}

.blog-content .post-details .share .fa-share{
	font-size: 20px;
	margin-right: 5px;
}

.blog-content .post-details .share a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	padding: 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #888;
	border-radius: 50%;
}


.blog-content .post-details .first-comment,
.blog-content .post-details .second-comment{
	position: relative;
	margin-bottom: 30px;
	background-color: #f5f5f5;
	padding: 20px;
}

.blog-content .post-details .second-comment{
	margin-left: 100px;
}

.blog-content .post-details .first-comment img,
.blog-content .post-details .second-comment img{
	position: absolute;
	left: 10px;
	width: 100px;
}

.blog-content .post-details .first-comment .the-comment,
.blog-content .post-details .second-comment .the-comment{
	padding-left: 110px;
}

.blog-content .post-details .first-comment .the-comment h5{
	margin-bottom: 0
}

.blog-content .post-details .first-comment .the-comment h5 span,
.blog-content .post-details .second-comment .the-comment h5 span{
	color: #aaa;
	font-weight: 400;
	font-size: 14px;
	display: block;
	margin-bottom: 0;
	margin-top: 0;
}