﻿/*

	Author       : themesvila.
	Template Name: Logic - Material Design Agency Template
	Version      : 1.0

*/
/*=============================================================
    CSS INDEX
    =============================
    01. Typography
    02. Preloader
    03. Section Title
    04. Menu
    05. Slider
    06. About
    07. Services
    08. Work
    09. Team
    10. Skill
    11. Video
    12. Pricing
    13. Testmonial
    14. Counter
    15. Blog
    16. Client
    17. Contact
    18. Footer

  =============================================================*/


/* Typography */

body {
	font-family: 'lato', sans-serif;
	font-weight: 400;
	color: #666;
	font-size: 15px;
	line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
	color:#222;
	margin-top: 0px;
	margin-bottom:20px;
	font-weight: 600;
	letter-spacing:1px;
	line-height: normal;
}
p {
	margin-bottom: 10px;
}

img {
    max-width: 100%;
    height: auto
}
a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

a{
	color:#16A2E8;
    transition: .5s;
}
a:hover,
a:active {
	color:#888;
	outline: 0 none;
	text-decoration: none;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}



/* Preloader*/

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    z-index: 10000;
}


.loader{
    width: 50px;
    height: 50px;
    -webkit-animation: loading-1 2s infinite ease-in-out;
    animation: loading-1 2s infinite ease-in-out;
}
.loader .loader-inner{
    width: 50px;
    height: 50px;
    border: 4px solid #000;
    position: absolute;
    top: 0;
    left: 0;
}
.loader .loader-inner:nth-child(1){
    -webkit-animation: loading-2 2s ease-in-out infinite;
    animation: loading-2 2s ease-in-out infinite;
}
.loader .loader-inner:nth-child(2){
    -webkit-animation: loading-3 2s ease-in-out infinite;
    animation: loading-3 2s ease-in-out infinite;
}
.loader .loader-inner:nth-child(3){
    -webkit-animation: loading-4 2s ease-in-out infinite;
    animation: loading-4 2s ease-in-out infinite;
}
.loader .loader-inner:nth-child(4){
    -webkit-animation: loading-5 2s ease-in-out infinite;
    animation: loading-5 2s ease-in-out infinite;
}
@-webkit-keyframes loading-1{
    0%{
        transform:rotate(-45deg);
    }
    50%{
        transform:rotate(-135deg);
    }
    100%{
        transform:rotate(-225deg);
    }
}
@keyframes loading-1{
    0%{
        transform:rotate(-45deg);
    }
    50%{
        transform:rotate(-135deg);
    }
    100%{
        transform:rotate(-225deg);
    }
}
@-webkit-keyframes loading-2{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(-50px, 0);
        border-color:#ff005b;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-2{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(-50px, 0);
        border-color:#ff005b;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-3{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(50px, 0);
        border-color:#97d700;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-3{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(50px, 0);
        border-color:#97d700;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-4{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(0, -50px);
        border-color: #fa7921;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-4{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(0, -50px);
        border-color: #fa7921;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-5{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(0, 50px);
        border-color:#00bfea;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-5{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(0, 50px);
        border-color:#00bfea;
    }
    100%{
        transform:translate(0);
    }
}


/*----- Section Title -----*/

.section_title{
	margin-bottom: 50px;
}
.section_title h1 {
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 25px;
	margin-top: 20px;
	margin-bottom: 15px;
	font-family: 'Raleway', sans-serif;
}
.white_title,
.white_title h1{
	color: #fff;
}
.title_border{
	border: 1px solid #16A2E8;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	margin:  auto;
	position: relative;
	margin-top: 25px;
}
.title_border:before{
	position: absolute;
	content: '';
	height: 20px;
	width: 1px;
	background: #16A2E8;
	bottom: 12px;
	left: 3px
}
.section_title p {

	margin-top: 18px;
}
.section_padding{
	padding:80px 0;
}


/*----- Menu -----*/

#header {
	top: 0;
	width: 100%;
	position: fixed;
	z-index: 999;
	background: transparent;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;	
	padding: 12px 0;
}
.logo_area {
	float: left;
}
.logo_area img{
	margin-left: 0;
}
#header.menu-shrink {
    background-color: #fff;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    padding: 3px 0;
    width: 100%;
}
#main_menu{
	margin-top: 17px;
}

.nav > li{
	padding: 7px 12px;
}
.nav > li > a {
	transition: .5s;
	color: #fff;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	transition: .5s;
}
#header.menu-shrink .nav > li > a{
	color: #333;
}
.nav > li > a:hover {
	background: transparent;
	color: #16A2E8;
}
#header .nav > li.current > a,
#header.menu-shrink .nav > li.current a,
#header.menu-shrink .nav > li > a:hover{

	color: #16A2E8;
}
.nav > li > a:hover, 
.nav > li > a:focus {
	text-decoration: none;
	background-color: transparent;
}
.navbar-toggle {
	position: relative;
	float: right;
	margin-right: 15px;
	padding: 9px 10px;
	margin-top: 19px;
	margin-bottom: 0;
}
.navbar-toggle .icon-bar{
	background-color: #16A2E8;
}


/*----- Slider -----*/
#slider_area,
.single_slide,
.single-slide-item-table{
	height: 700px;
}
.single_slide{
	width: 100%;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center top !important;
	position: relative;
	z-index: 1;
}
.slider_item1 {
	background: url(img/slider/Slide_welcome.png);
}

.slider_item2 {
    background: url(img/slider/Slide_2.png);
}

.slider_item3 {
    background: url(img/slider/Slide_3.png);
}
.slider_item1:after,
.slider_item2:after,
.slider_item3:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #333;
    opacity: 0.65;
    z-index: -1;
}

.slider_active .owl-nav .owl-next,
.slider_active .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	opacity: 1;
	font-size: 20px;
	transition: all 0.4s ease-in-out;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	
}


.slider_active .owl-nav .owl-prev {
	left: 28px;
}
.slider_active .owl-nav .owl-next{
	right: 28px;	
}

.slider_active .owl-nav .owl-next:hover,
.slider_active .owl-nav .owl-prev:hover {
    border-color: #16A2E8;
    background: #16A2E8;
    color: #fff;
}
.single-slide-item-table {
    display: table;
    text-align: center;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;

}
.slider_content{
	padding-top: 5%;
}
.slider_content h2 {
	color: #16A2E8;
	font-size: 13px;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 4px ;
	font-weight: 700;
	margin-bottom: 40px;
	background: #fff;
	padding: 12px 30px;
}
.slider_content h1 {
	color: #16A2E8;
	display: block;
	font-size: 60px;
	font-weight: 800;
	margin: 0;
	letter-spacing: 8px;
	line-height: normal;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
}
.slider_content h1 span {
	color: #fff;
}

.slider_content p {
	color: #fff;
	margin-bottom: 35px;
	padding: 10px 0;
	font-weight: 300;
	font-size: 16px;
}


/*----- About  -----*/

#about_area {
	position: relative;
	overflow: hidden;
}
.about_text h2 {
	font-weight: 600;
	font-size: 27px;
	line-height: 33px;
}
.about_text p {
	margin-bottom: 15px
}
.about_img{
	display: inline-block;
}
#about_area .owl-prev{
	left: 20px;
}
#about_area .owl-next{
	right: 20px;
}
#about_area .owl-prev,
#about_area .owl-next{
	position: absolute;
	top: 45%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	color: #16A2E8;
	border-radius: 50%;
	transition: 0.5s;
}
#about_area .owl-prev:hover,
#about_area .owl-next:hover{
	background: #16A2E8;
	color: #fff;
}
#about_area .main_bg_btn{
	margin-top: 25px;
}
.main_bg_btn {
	background-image: linear-gradient(to right, #16A2E8 0%, #12D8FA 51%, #16A2E8 100%);
	border-radius: 30px;
	background-size: 200% auto;
	border-style: none;
	color: #fff;
	font-weight: 700;
	padding: 14px 37px;
	transition: 0.5s;
	text-transform: capitalize;
	z-index: 1;
	overflow: hidden;
	display: inline-block;
	font-family: 'Lato', sans-serif;
	letter-spacing: 1px;
	box-shadow: 0 0 10px rgba(4, 155, 230, .7);
}
.main_bg_btn:hover,
.main_bg_btn:focus{
	color: #fff;
	background-position: right center;
	
}


/*----- Services  -----*/

.gray_section{
	background: #f8f8f8;
}

#service_area {
	
}

.serviceBox{
    text-align: center;
    padding: 30px;
    overflow: hidden;
    position: relative;
	background: #fff;
	margin-bottom: 30px;
}
.serviceBox .service-content{
    position: relative;
    transition: all 0.3s ease-in-out 0s;
	z-index: 1;
}

.serviceBox .service-content i{
    font-size: 22px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	background: #16A2E8;
	color: #fff;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .service-content i{
    transform: rotate(360deg);
}
.serviceBox .title{
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}
.serviceBox .description{
    font-size: 14px;
    line-height: 25px;
}
.serviceBox .icon-bg{
    font-size: 250px;
    color: rgba(22, 162, 232, 0.03);
    line-height: 120px;
    position: absolute;
    bottom: 0;
    right: -30px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .icon-bg{
    transform: rotate(360deg);
}


/*----- Work css -----*/

#work_area{
	position:relative;
}
.mix{
	display: none;
}
.portfolio_item .mix{
	display: none;
}

.portfolio_filter ul {
	margin: 0px 0 40px;
	padding: 0;
	list-style: none;
}
.portfolio_filter ul li{
	font-weight: 600;
	text-transform: capitalize;
	display:inline-block;
	cursor: pointer;
	padding: 0 10px;
	font-size: 13px;
	transition: .5s;
	letter-spacing: 1px;
}
.portfolio_filter .filter.active {
	color: #16A2E8;
}


.single_portfolio{
    text-align: center;
    overflow: hidden;
    position: relative;
	margin-bottom: 30px;
}
.portfolio_item .col-md-4{
	
}
.single_portfolio:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(4, 155, 230, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.single_portfolio:hover:after{
    opacity: 1;
}
.single_portfolio img{
    width: 100%;
    height: auto;
    transition: all 1.5s ease 0s;
}
.single_portfolio:hover img{
    transform: scale(1.2);
}
.single_portfolio .icon{
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.single_portfolio .icon li{
    display: inline-block;
}
.single_portfolio .icon li a{
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.6s ease 0s;
}
.single_portfolio:hover .icon li a{
    top: 30%;
    opacity: 1;
}
.single_portfolio .icon li a:hover{
    background: #fff;
    color: #02a2dd;
}
.single_portfolio .icon li:first-child a{
    left: -90%;
    right: 0;
}
.single_portfolio:hover .icon li:first-child a{
    left: -55px;
}
.single_portfolio .icon li:last-child a{
    right: -90%;
    left: 0;
}
.single_portfolio:hover .icon li:last-child a{
    right: -55px;
}
.single_portfolio .box-content{
    width: 100%;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 1;
    transition: all 0.6s ease 0s;
}
.single_portfolio:hover .box-content{
    bottom: 0;
}
.single_portfolio .title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-top: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.single_portfolio .post{
    display: block;
    font-size: 14px;
    color: #fff;
}


/*----- Team -----*/

#team_area {
    background: #fff;
	overflow: hidden;
}


.single_team{
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}
.single_team img{
    width: 100%;
    height: auto;
}
.single_team .box-content{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
}
.single_team:hover .box-content{
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}
.single_team .team_content{
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: all 900ms ease 0s;	
	color: #fff;
	width: 100%;
	background: #16A2E8;
	border-radius: 2px;
	padding: 5px 9px;
}
.single_team .title{
    display: inline-block;   
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;

}
.single_team:hover .team_content{ bottom: -100px; }
.single_team .icon{
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
}
.single_team .icon li{ display: inline-block; }
.single_team .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #16A2E8;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-right: 7px;
    transition: all 0.35s ease 0s;
}
.single_team .icon li a:hover{
    background: #fff;
    color: #000;
}



/*----- Skill  -----*/

#skill_area{
	overflow: hidden;
	padding-top: 60px;
}
#skill_area .section_title{
	margin-bottom: 30px;
}
#skill_area .section_title h1{
	position: relative;
	padding-bottom: 20px;
	margin-top: 0;
	margin-bottom: 0;
}
#skill_area .section_title h1:after{
	content: '';
	width: 40px;
	height: 4px;
	background: #16A2E8;
	left: 0;
	bottom: 0;
	position: absolute;
}
.skill_content {
	margin-top: 0px;
}

.skill_content .section_divider{
	float: left;
}
.skill_content p {
	margin-bottom:30px;
}

.progress_area{
    float:left;
    width:100%;
    margin:0 0 -50px;
}
.skillbar{
    margin:0 0 20px;
    float:left;
    width:100%;
}
.skillbar > span{
    font-size:15px;
    line-height:1;
    display:table;
    margin:0 0 10px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
}
.skillbar > .progress{
    border-radius:0;
    height:5px;
    background:#ebebeb;
    overflow:visible;
}
.skillbar > .progress .progress-bar {
	height: 100%;
	position: relative;
	background: #16A2E8;
}
.skillbar > .progress .progress-bar span {
	position: absolute;
	right: -8px;
	bottom: 100%;
	background: #16A2E8;
	padding: 2px 9px;
	font-size: 12px;
	margin-bottom: -14px;
	border-radius: 2px;
}
.progress {
	box-shadow: none;
}
.progress-bar {
	box-shadow: none;
}


/*----- Video -----*/

#video_area {
    background: url(img/bg-video.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

#video_area:after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: -1;
}

#video_area:before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: url(img/pattarn.png);
    background-repeat: repeat;
}
#video {
  position: relative;
  background: #000;
  width: 640px;
  margin: 0px auto;
}

#video img,
#video iframe { display: block; }

#play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url('img/play-button.png') no-repeat 50% 50%;
  background-size: auto, cover;
  z-index: 9999;
}

#play:hover { background-color: rgba(0,0,0,0.2) !important; }

.center-block{
	float: inherit;
}

/*----- Pricing -----*/

.pricingtable{
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 50px 0 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
	background: #fff;
}
.pricingtable .pricing-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    position: absolute;
    top: -40px;
    left: 50%;
    padding: 5px;
    transform: translateX(-50%);
    transition: all 0.5s ease 0s;
}
.pricingtable:hover .pricing-icon{
    border: 1px solid #16A2E8;
    background: #16A2E8;
}
.pricingtable .pricing-icon i{
    width: 100%;
    height: 100%;
    line-height: 62px;
    border-radius: 50%;
    background: #16A2E8;
    font-size: 25px;
    color: #fff;
    transition: all 0.5s ease 0s;
	 display: block;
}
.pricingtable:hover .pricing-icon i{
    color: #fff;
    background: #16A2E8;
	
}
.pricingtable .price-value{
    display: inline-block;
    font-size: 35px;
    color: #494949;
    position: relative;
	margin-top: 30px;
	font-weight: 700;
}
.pricingtable .currency{
    font-size: 25px;
    position: absolute;
    top: 18px;
    left: -18px;
}
.pricingtable .month{
    display: block;
    text-transform: capitalize;
}
.pricingtable .pricingheader{
    position: relative;
    z-index: 1;
	margin-top: 20px;
}
.pricingtable .pricingheader:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.pricingtable .title {
	width: 45%;
	background: #16A2E8;
	margin: 10px auto;
	padding: 8px 0;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.pricingtable .pricing-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}
.pricingtable .pricing-content ul li{
	line-height: 35px;
}



/*----- Testmonial  -----*/


.testimonial {
	background: #fff;
	padding: 20px 40px 20px 40px;
	margin: 10px 10px 40px;
	position: relative;
	box-shadow: 0 0 8px rgba(221,221,221,0.3);
	display: block;
	border: 1px solid #fafafa;
}
.testimonial .testimonial-title{
    font-size: 16px;
    font-weight: 700;
    color: #16A2E8;
    margin-bottom: 15px;
}
.testimonial .description{
    font-style: italic;
    color: #0b132b;
}
.testimonial .test_website{
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}
.testimonial .pic{
    width: 70px;
    height: 70px; 
    position: absolute;
    bottom: -35px;
    right: 23px;

}
.testimonial .pic img{
    width: 100%;
    height: auto;
	box-shadow: 0 0 30px rgba(4, 155, 230, 0.2);
	border-radius: 50%;

}



/*----- Counter  -----*/

#counter_area{
	padding: 80px 0 50px;
	position: relative;
	color: #fff;
}
#counter_area:before{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	top: 0;
	position: absolute;
}
.counter-items{
	margin-bottom: 30px;
	border-right: 1px solid #fff;
}

.counter-items .number-number{
	color: #fff;

}
.no_border{
	border: none;
}
.counter_icon {	
	margin-bottom: 30px;
	display: inline-block
}

.counter_icon img{
	width: 40px;
	transition: .5s;
}
.counter-items:hover img{
	transform: scale(1.1);
}
.number-number {
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 4px;

}
.counter {
  text-align: center;
}
.number-desc {
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
}

/*----- Blog -----*/

#blog_area{
	padding-bottom: 20px;
}
.single_post{
	margin-bottom: 30px;
}
.single_post .post-img{
    position: relative;
	overflow: hidden;
	text-align: center;
}
.single_post .post-img > a{
    display:inline-block;
}
.single_post .post-img img{
    width: 100%;
    height:auto;
	transition: .5s;
	
	
}
.single_post .post-img:before{
	transition: .5s;
	background-color: rgba(4, 155, 230, 0.5);
	opacity: 0;
	width: 100%;
	height:100%;
    content: "";
    position: absolute;	
	z-index: 1;
	
}
.single_post:hover .post-img:before{
	opacity: 1;

	
}
.single_post:hover  .post-img img{
	transform: scale(1.2);
}

.single_post .post-title{
    margin-top: 20px;
    margin-bottom: 14px;
}
.single_post .post-title > a{
    display: block;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
}
.single_post .post-title > a:hover,
.single_post .post-title > a:focus{
    text-decoration: none;
    color:#16A2E8;
}
.single_post .post-bar{
    padding: 0;
    list-style: none;
}
.single_post .post-bar > li{
    display: inline-block;
}
.single_post .post-date,
.single_post .author,
.single_post .author > a{
    color:#8f8f8f;
    font-size: 12px;
    margin-right: 16px;
    text-transform: uppercase;
	font-weight: 800;
}
.single_post .post-date > i,
.single_post .author > i{
    margin-right: 5px;
}
.single_post .author > a:hover{
    color:#16A2E8;
}
.single_post .post-description{
    padding-top: 5px;
}

.post_btn_area{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: auto;	
	right: auto;	
	opacity: 0;
	transition: all 0.3s ease 0s;
	z-index: 100;	
}

.post_btn{
	padding: 0;
	margin: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	right: 10px;	
	bottom: 10px;	
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	z-index: 100;	
	transition: .5s;
}
.single_post:hover .post_btn_area{
	opacity: 1;
}
.post_btn:hover,
.post_btn:focus{
	color: #16A2E8;
	background: #fff;
}

/*----- Client css -----*/

.client_area{
	padding: 60px 0;
}
.single_client {
	
}
.single_client a{

	display: block;
	transition: .5s;
}



/*----- Contact  -----*/

#contact_area {
    position: relative;
    z-index: 1;
}

.contact_form {
	padding: 50px ;
}
.contact_form .form-control {
	display: block;
	width: 100%;
	height: 55px;
	line-height: 55px;
	padding: 6px 15px;
	border:none;
	border: 1px solid #e5e5e5;	
	margin-bottom: 15px;
	border-radius:2px;
	background:#fff;
	position:relative;
	box-shadow: inherit;
}
.contact_form textarea.form-control{
	height: 120px;
	line-height: 35px;
}
.form-control:focus{
    border-color: #16A2E8;
	box-shadow:none;
}

.no_padding {
	padding: 0px;
}
#map{
	height: 470px;
}


/*----- Footer -----*/

#footer_area{
	background:#16A2E8;
	padding:30px 0;
	color: #fff;
}
#footer_area a:hover{
	color: #16A2E8;
}
.footer_social_icons{
	float: right;
}
.footer_social_icons a {
	color: #fff;
	transition:.6s;
	font-size:16px;
}
.footer_social_icons a:hover {
	color: #fff!important;
}
.footer_social_icons ul li {
	display: inline-block;
	font-size: 20px;
	padding: 0 10px;
	margin-bottom: 0px;
	transition:.6s;
}
.footer_social_icons ul li:hover {
	transform: rotate(360deg);
}


/*----- End Style  -----*/
