/*---------------------------------------------------------------

  Project Name: Aisle - Responsive Onepage HTML Template
  File Name: style.css
  Author: Vivek Singh Bisht
  Author URI: http://themesity.com
  Version: 1.0.0

------------------------------------------------------------------*/
/*----------------------------------------------------------------

// Table of contents //

  - Body
  - Typography
  - Buttons
  - General
  - Preloader
  - Navigation section
  - Hero section
  - About section
  - Service section
  - Project section
  - Counter section
  - Team section
  - Expertise section
  - Testimonial section
  - Price section
  - Blog section
  - Contact section
  - Footer section
  - Mobile Responsive styles

------------------------------------------------------------------*/

@import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700');


body {
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    overflow-x: hidden;
}

/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/
h1,h2,h3,h4,h5,h6 {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -1px;
}

h1,h2,h4 {
  font-weight: bold;
}

h1 {
  font-size: 65px;
  letter-spacing: -1px;
}

h2 {
  color: #272727;
  font-size: 32px;
  line-height: 52px;
  text-transform: uppercase;
  margin: 0px;
}

h3 {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

h4 {
  color: #454545;
  font-size: 18px;
  line-height: 26px;
}

h5 {
  letter-spacing: 0.5px;
}

p {
    color: #777;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.2px;
}
i{
    color: #029aa2;
}
ul, li{
    list-style: none;
}
/*---------------------------------------
   Buttons               
-----------------------------------------*/

.btn-success:focus {
  background-color: #000;
  color: #ffffff;
}
.aisle-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #029aa2;
    border-radius: 0px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.6px;
    padding: 16px 28px;
    margin-top: 22px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    text-transform: uppercase;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border: 0px;
}
.aisle-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.aisle-btn:hover, .aisle-btn:focus, .aisle-btn:active {
  color: #029aa2;
  border:1px solid #029aa2;
  padding: 15px 27px;
}
.aisle-btn:hover:before, .aisle-btn:focus:before, .aisle-btn:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/*---------------------------------------
   General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #029aa2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #f06966;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.white{
    color: #fff !important;
}
.bg-gray {
    background-color: #f8f8f8;
}
.bg-dark{
    background-color: #222328;
}
.section-title h2 {
    font-size: 40px;
    letter-spacing: 5px;
    color: #333;
}
.section-title p {
    margin-bottom: 10px;
    margin-top: 15px;
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
}
.section-title hr {
    width: 70px;
    height: 1px;
    border: 0;
    background-color: #029aa2;
    margin: 10px 0;
    position: relative;
    display: inline-block;
}
.section-title hr::after {
    position: absolute;
    top: -1px;
    left: 20px;
    content: "";
    width: 30px;
    height: 4px;
    background-color: #029aa2;
}
.mb25{
    margin-bottom: 25px;
}
.pb80{
    padding-bottom: 80px
}
.pt80{
    padding-top: 80px
}
/*---------------------------------------
    Preloader section              
-----------------------------------------*/
.page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    background-color: #fff;
}
.loader {
    height: 14px;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    width: 80px;
}
.dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 100%!important;
    background: #1B1D1F;
    position: absolute;
}
.dot_1 {
    animation: animateDot1 1.5s linear infinite;
    left: 16px;
    background: #ff072a;
}
.dot_2 {
    animation: animateDot2 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 28px;
}
.dot_3 {
    animation: animateDot3 1.5s linear infinite;
    left: 16px;
}
.dot_4 {
    animation: animateDot4 1.5s linear infinite;
    animation-delay: 0.5s;
    left: 28px;
}
@keyframes animateDot1 {
0% {
transform: rotate(0deg) translateX(-12px);
}
25% {
transform: rotate(180deg) translateX(-12px);
}
75% {
transform: rotate(180deg) translateX(-12px);
}
100% {
transform: rotate(360deg) translateX(-12px);
}
}
@keyframes animateDot2 {
0% {
transform: rotate(0deg) translateX(-12px);
}
25% {
transform: rotate(-180deg) translateX(-12px);
}
75% {
transform: rotate(-180deg) translateX(-12px);
}
100% {
transform: rotate(-360deg) translateX(-12px);
}
}
@keyframes animateDot3 {
0% {
transform: rotate(0deg) translateX(12px);
}
25% {
transform: rotate(180deg) translateX(12px);
}
75% {
transform: rotate(180deg) translateX(12px);
}
100% {
transform: rotate(360deg) translateX(12px);
}
}
@keyframes animateDot4 {
0% {
transform: rotate(0deg) translateX(12px);
}
25% {
transform: rotate(-180deg) translateX(12px);
}
75% {
transform: rotate(-180deg) translateX(12px);
}
100% {
transform: rotate(-360deg) translateX(12px);
}
}

/*---------------------------------------
    Navigation section           
-----------------------------------------*/
nav.navbar.bootsnav.no-background.white ul.nav > li > a {
    color: #ddd;
}
nav.navbar ul.nav li.scroll.active > a{
    color: #029aa2;
}
/*---------------------------------------
    Hero section          
-----------------------------------------*/
.hero_full_screen {
    height: 100vh;
    min-height: 500px;
}
.hero_parallax {
    position: relative;
    display: table;
    width: 100%;
}
.bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: #000;
}
.opacity-6 {
    opacity: 0.6 !important;
}
.hero_parallax_inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}
.hero h1 {
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: 400;
}
.parallax-window{
    background: url('../img/background/bg1.jpg') no-repeat fixed;
    background-size: cover;
}
/*---------------------------------------
    About section         
-----------------------------------------*/
.icon-box {
    text-align: center;
    padding-top: 50px
}
.icon-box.icon-box-default .icon {
    font-size: 35px;
    background-color: #029aa2;
    border-radius: 100px;
    color: #fff;
    width: 60px;
    height: 60px;
    padding-top: 13px;
    text-align: center;
    padding-right: 1px;
}
.icon-box .icon, .icon-box p {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon-box.icon-box-default h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 20px;
    line-height: 1;
}
.icon-box .icon, .icon-box p {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.icon-box.icon-box-default:hover .icon {
    webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: #fff;
    color: #029aa2;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
/*---------------------------------------
   Service               
-----------------------------------------*/
.canvas-box span {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px;
}
.color-style2 {
    color: #029aa2;
}
h4.color-style2 {
    color: #029aa2;
}
h4.color-style1 {
    color: #a4a4a4;
}
.canvas-box {
    cursor: pointer;
}
.canvas-box span i {
    display: inline-block;
    font-size: 35px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.canvas-box:hover span i{
    -moz-transform:scale(1.3);
    -ms-transform:scale(1.3);
    -o-transform:scale(1.3);
    -webkit-transform:scale(1.3);
    transform:scale(1.3);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.canvas-box i.color-style1{
    color: #a4a4a4;
}
/*---------------------------------------
   Project               
-----------------------------------------*/

.filter
{
    color: #fff;
    padding: 15px 30px;
    border-right: 1px solid #fff;
    display: inline-block;
    position: relative;
}
.fil-btn .active
{
    background-color: #e43c5c;
}
#grid .mix{
    display: none;
}
.aisle-work ul {
    list-style: outside none none;
    margin-bottom: 40px;
    text-align: center;
}
.aisle-work ul li {
    color: #999;
    margin: 5px;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 20px;
    display: inline-block;
    border: 2px solid #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.36s;
            transition: all 0.36s;
}
.aisle-work ul li.active,
.aisle-work ul li:hover { color:#000; }
.grid .mix {
    display: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.image-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper img {
    height: auto;
    width: 100% !important;
}
.image-overlay {
    background: rgba(36, 195, 248, 0.6) none repeat scroll 0 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    text-align: center;
    position: absolute;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.36s ease-out 0s;
            transition: all 0.36s ease-out 0s;
}
.image-wrapper:hover .image-overlay {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.image-overlay i {
    background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
    height: 50px;
    width: 50px;
    color: #fff;
    font-size: 20px;
    margin-top: 60px;
    line-height: 50px;
    text-align: center;
    border-radius: 30px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.36s ease-out 0s;
            transition: all 0.36s ease-out 0s;
}
.image-overlay i:hover {
    background: #fff none repeat scroll 0 0;
    color: #3ac4fa;
}
.image-wrapper:hover i {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
}
.image-overlay h5 {
    color: #fff;
    margin: 15px 0 5px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper:hover .image-overlay h5 {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
}
.image-overlay p {
    color: #fff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
            transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}
.image-wrapper:hover .image-overlay p {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
}
.aisle-work > div{
    padding: 1px;
}
/*---------------------------------------
   Counter               
-----------------------------------------*/
#counting{
    background: url('../img/background/hero.jpg') no-repeat;
    background: cover;
}
.counter_section {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    display: table;
    vertical-align: middle;
}
.counter_section_inner {
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.85);
}
.counter_box {
    color: #ffffff;
    margin: 25px auto 15px;
}
.counter_box i {
    font-size: 48px;
    color: #029aa2;
}
.counter_number {
    color: #ccc;
    font-size: 38px;
    margin: 20px 0;
    font-weight: 400;
    font-family: 'Varela Round', Helvetica, Arial, sans-serif;
}
.counter_name {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
/*---------------------------------------
   Team               
-----------------------------------------*/
.team-list {
    position: relative;
    margin: 0 auto;
    padding: 1em 0 4em;
    max-width: 1000px;
    list-style: none;
    text-align: center;
}
.team-list figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 280px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}

.team-list figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.team-list figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-list figure figcaption::before,
.team-list figure figcaption::after {
    pointer-events: none;
}

.team-list figure figcaption,
.team-list figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-list figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.team-list figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
    font-size: 24px;
}

.team-list figure h2 span {
    font-weight: 800;
}

.team-list figure h2,
.team-list figure p {
    margin: 0;
    color: #fff;
}

.team-list figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}
figure.aisle-effect img {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    opacity: 0.7;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-40px,0, 0);
    transform: translate3d(-40px,0,0);
}

figure.aisle-effect figcaption {
    text-align: left;
}

figure.aisle-effect figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 50%;
}

figure.aisle-effect h2,
figure.effect-lily p {
    -webkit-transform: translate3d(0,40px,0);
    transform: translate3d(0,40px,0);
}

figure.aisle-effect h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.aisle-effect p {
    color: rgba(255,255,255,0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}
figure.aisle-effect .social-link{
    color: rgba(255,255,255,0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
    padding: 0px;
    margin-left: -10px;
    margin-top: 7px;
}
.social-link li {
    display: inline-block;
    margin: 0px 10px;
}
.social-link li a i{
    color: #fff;
}
figure.aisle-effect:hover img,
figure.aisle-effect:hover p {
    opacity: 1;
}
figure.aisle-effect:hover .social-link{
    opacity: 1;
}
figure.aisle-effect:hover img,
figure.aisle-effect:hover h2,
figure.aisle-effect:hover p,
figure.aisle-effect:hover .social-link {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

figure.aisle-effect:hover p {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}
/*---------------------------------------
   Expertise               
-----------------------------------------*/
.progress {
    height: 5px;
    margin-bottom: 25px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.progress-bar {
    height: 100%;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    text-align: center;
    background-color: #029aa2;
}
/*---------------------------------------
   Testimonial               
-----------------------------------------*/
#clients {
    text-align: center;
}
#clients .item{
    display: block;
    width: 100%;
    height: auto;
}
.clients-content p {
    max-width: 600px;
    color: #777;
    padding: 0 15px;
    margin: auto;
}
.clients-content h5 {
    margin: 10px 10px 20px;
}
.clients-content h5 span {
    color: #777;
}
.client-photo{
    margin: 10px 0px 30px;
}
.client-photo img {
    margin: 25px auto 0;
    border-radius: 5px;
    display: inline-block;
}
.owl-controls .owl-buttons{
    display: none;
}
/*---------------------------------------
   Price               
-----------------------------------------*/
.pricing .pricing-item.featured-first {
    margin-right: -15px;
    margin-top: 15px;
}
.pricing .pricing-item {
    margin-bottom: 0;
}
.pricing .pricing-item {
    text-align: center;
    background: white;
    color: #222222;
    padding: 30px;
    box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0 0 38px 0 rgba(0, 0, 0, 0.08);
    z-index: 1;
    margin-bottom: 30px;
}
.pricing .pricing-item.featured {
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 45px 30px;
}
.pricing .pricing-item.featured-last {
    margin-left: -15px;
    margin-top: 15px;
}
.plan-name {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 13px;
    color: #000;
    -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;
}
.pricing .pricing-item .price {
    margin: 30px 0px 20px;
}
.pricing .pricing-item .price .number {
    font-weight: 900;
    font-size: 50px;
}
.pricing .pricing-item .price .number sup {
    font-size: 30px;
}
.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}
.list-group li {
    padding: 7px 15px;
    list-style: none;
    font-size: 13px;
    color: #999;
    text-transform: capitalize;
}
/*---------------------------------------
   Blog               
-----------------------------------------*/
div.blog .blog-content {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-content .blog-post {
    background-color: #fff;
    margin: 25px 15px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px #ddd;
}
.blog-content .blog-post-img {
    position: relative;
    overflow: hidden;
}
.blog-content .blog-post-img img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.blog-content .blog-post-img img {
    display: block;
    width: 100%;
}
.blog-content .blog-post-text {
    position: relative;
    padding: 15px;
}
.blog-content .blog-post-img a, .blog-content .blog-post-img img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.blog-content .blog-post-img a {
    position: absolute;
    top: -320px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(46,52,63,.75);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-content .blog-post-img a i {
    color: #fff;
    font-size: 40px;
    text-shadow: 0 0 5px #111;
}
.blog-content .blog-post-text i.fa-plus {
    position: absolute;
    top: -15px;
    right: 20px;
    height: 30px;
    width: 30px;
    background-color: #029aa2;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-content .blog-post-text h4 {
    display: inline-block;
    text-transform: capitalize;
    margin: 0;
}
.blog-post-text .post-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.post-footer .social-media-statistics {
    float: right;
}
.post-footer .social-media-statistics div {
    display: inline-block;
    color: #777;
    font-size: 14px;
    margin-left: 10px;
}
.post-footer .social-media-statistics div {
    display: inline-block;
    color: #777;
    font-size: 14px;
    margin-left: 10px;
}
.blog-content .blog-post-img img {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-content .blog-post-img:hover img
{
    -webkit-transform:scale(1.15,1.15) rotate(-5deg);
    -ms-transform:scale(1.15,1.15) rotate(-5deg);
    transform:scale(1.15,1.15) rotate(-5deg)
}
.blog-content .blog-post-img:hover a{
    top:0
}
/*---------------------------------------
   Contact               
-----------------------------------------*/
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.contact-info li {
    padding-bottom: 20px;
}
.contact-info h2, .contact-info p {
    padding-left: 0px;
}
.contact-info p {
    font-size: 12px;
}
.contact-info h2 {
    font-size: 16px !important;
    letter-spacing: 0.2em;
}
.contact-form .alert, .contact-form label {
    display: none;
}
input {
    width: 100%;
    border: none;
    padding: 10px 15px;
    margin: 0;
    -webkit-transition: all 0.5s ease-in-out 0.1s;
    -moz-transition: all 0.5s ease-in-out 0.1s;
    -o-transition: all 0.5s ease-in-out 0.1s;
    -ms-transition: all 0.5s ease-in-out 0.1s;
    transition: all 0.5s ease-in-out 0.1s;
}
textarea {
    width: 100%;
    border: none;
    padding: 15px;
    min-height: 150px;
    margin: 50px 0 20px 0;
    -webkit-transition: all 0.5s ease-in-out 0.1s;
    -moz-transition: all 0.5s ease-in-out 0.1s;
    -o-transition: all 0.5s ease-in-out 0.1s;
    -ms-transition: all 0.5s ease-in-out 0.1s;
    transition: all 0.5s ease-in-out 0.1s;
}

/*---------------------------------------
   Footer               
-----------------------------------------*/
.footer-area {
    padding: 150px 0px;
}
.footer-social-link {
    margin-bottom: 10px;
}
.footer-social-link ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-social-link ul li, .footer-menu ul li {
    display: inline-block;
    margin: 0px 10px;
}
.footer-social-link ul li a {
    display: block;
    color: #ccc;
}
.footer-menu {
    margin-bottom: 15px;
}
.footer-menu ul li a {
    text-transform: uppercase;
    font-size: 12px;
    color: #bfa7a7;
}
.footer-text h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}
.footer-text h6::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 30px;
    height: 2px;
    width: 100px;
    background: #029aa2;
    margin-left: -50px;
}
.footer-text h6::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 40px;
    height: 2px;
    width: 50px;
    background: #029aa2 ;
    margin-left: -25px;
}
/*---------------------------------------
   General               
-----------------------------------------*/
@media all and (max-width:767px){
    h1 {font-size: 29px}

  h2 {
    font-size: 24px;
    line-height: 42px;
  }

  h3 {
    font-size: 12px;
    letter-spacing: 2px;
  }
  nav.navbar.bootsnav.navbar-fixed .logo-scrolled {
    margin-top: -13px;
}
.pricing .pricing-item.featured {
    position: static;
}
.pricing .pricing-item.featured-last {
    margin-left: 0px;
}
.pricing .pricing-item.featured-first{
    margin-right: 0px;
}
nav.navbar.bootsnav.no-background.white ul.nav > li > a {
    color: #2a2424;
}
.list-unstyled {
    text-align: center;
}
}