/*
Theme Name: Smartly Own
Theme URI: http://smartlythemes.com/demos/smartly-own/
Author: SmartlyThemes
Author URI: https://themeforest.net/user/smartlythemes
Description: WordPress Theme For Busy Web Developers, Web Designers and Freelancers
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartly-own
Tags: two-columns, right-sidebar, custom-header, custom-menu, featured-images, flexible-header, post-formats, sticky-post, threaded-comments, translation-ready, theme-options
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General
# Tables
# Address Tag
# Definition lists
# Scroll To Top
# Pages
  ## 404 page
# Input
# Button
   ## Button Default
# Logo
# Navbar
# Intro
# Animation
# Portfolio
   ## Single Portfolio
   ## All Items -- Portfolio
# Breadcrumbs
# Owl Carouse
   ## Clearfix
   ## Display none until init
   ## Mouse grab icon
   ## Fix
# Image Mask
   ##Caption Style
# Skills
# Services
# Parallax
# Newsletter
# Contact
# Blog
  ## Blog Typography
  ## Blog Post Gallery
  ## Social Share
# Priceing Tables
# Footer
  ## Footer Bottom

# WORDPRESS CLASSES
# ADMIN BAR
# MEDIA QUERIES

--------------------------------------------------------------*/

/* GENERAL
   ================================================== */
body {
    padding-top: 0;
    font-family: 'Montserrat', sans-serif;
}

.green {
    color:#1BBC9B;
}

a {
    color: #757c81;
}

a:hover,
a:focus {
    color:#1BBC9B;
    text-decoration:none;
}

a:focus {
    outline: none; 
}

a:active,a:focus {
    text-decoration:none;
}

hr {
    width: 50px;
    border: solid 2px #e7e7e7;
    padding: 0;
    margin-top: 0;
    margin-bottom: 97.5px;
}

.title {
    margin-top: 130px;
    color: #777;
    margin-bottom: 15px;
    text-align: center;
}

.margin-bottom {
    margin-bottom: 65px;
}

.so-archive-margin-top {
    margin-top: 35px;
}

/* TABLES
   ================================================== */

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 9px;
    text-align: left;
}

/* ADDRESS TAG
   ================================================== */
address{
    font-style: italic;
}


/* DEFINITION LISTS
   ================================================== */

dl{
    margin: 1em 0;
}

dt {
    color: #333;
    font-weight: bold;
}

dd {
    margin: 0 0 0 40px;
    margin-bottom: 10px;
}

/* SCROLL TO TOP
   ================================================== */
.so-scroll-up-btn {
    opacity: 0.6;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    background: #000;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    padding: 5px 14px 5px 14px;
    border-radius: 3px;
}

 .so-scroll-up-btn:hover, .so-scroll-up-btn:focus {
     outline: none;
     text-decoration: none;
     color: #fff;
     opacity: 1;
 }

/* SEARCH
   ================================================== */
.site-search-icon {
    font-size: 14px;
    color: #55595f;
    position: absolute;
    right: 15px;
    top: 17px;
}

.fa-search {
    position: absolute;
    top: 0px;
    line-height: 0px;
    top: 50%;
    right: 30px;
    text-align: center;
}


/* PAGES
   ================================================== */
.bg-intro-page h1 {
    color: #ffffff;
    margin-top: 212px;
    padding-bottom: 30px;
    letter-spacing: 7px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.intro-page-header{
    margin: 40px 0 20px;
}

.bg-intro-page {
    min-height:367px;
    background-image: url('images/page-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover;
    -ms-word-wrap: break-word;
     word-wrap: break-word;
}

.layer-intro-page {
    min-height:367px;
    /* IE 8 OPACITY */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
   background-color: rgba(34, 49, 63, 0.82);
}

.entry-content.so-page-area {
    margin: 0 0;
}

/*404 page*/
.so-404-page-error-code {
    margin-top: 200px;
    margin-bottom: 50px;
    text-align: center;
}

.so-404-page-error-code h1 {
    font-size: 200px !important;
}

/* INPUT
   ================================================== */
.form-control {
    border: #ddd 2px solid;
    box-shadow: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

input[type="submit"] {
    color: #FFF;
    background-color: #1BBC9B;
    border-color: #1BBC9B;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 26px;
    font-size: 17px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
     user-select: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background-color: #1dcba7;
    border-color: #1dcba7;
}

.form-control:focus {
    border: 2px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/* BUTTON
   ================================================== */
.btn {
    border: solid #DDDDDD 1px ;
    border-radius: 0px;
    margin:0;
    margin-bottom:20px;
    margin-top:10px;
    text-transform:uppercase;
    border-radius: 4px;
    -webkit-transition: background-color .22s ease-out;
    -moz-transition: background-color .22s ease-out;
    -o-transition: background-color .22s ease-out;
    transition: background-color .22s ease-out;
}

.btn:hover,
.btn:focus,
.btn:active,
.open .dropdown-toggle.btn {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline:0px !important;
}

/* BUTTON DEFAULT */
.btn-default {
    color: #FFF;
    background-color: #1BBC9B;
    border-color: #1BBC9B;
}

.btn-default:hover {
    color: #FFF;
    background-color: #1dcba7;
    border-color: #1dcba7;
}

.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #FFF;
    background-color:#1BBC9B;
    border-color: #1BBC9B;
}

.btn-default:active:focus {
    color: #FFF;
    background-color: #1dcba7;
    border-color: #1dcba7;
}

/* PAGINATION-PAGER
   ================================================== */
.col-pagination {
    margin-top:40px;
}

.pagination .active span{
    background-color:#1BBC9B;
    border-color:#EEEEEE;
}

.pagination .active span:hover {
    background-color:#1BBC9B;
    border-color:#EEEEEE;
}
.pagination li a, .pager li a {
    -webkit-transition: background-color .22s ease-out;
    -moz-transition: background-color .22s ease-out;
    -o-transition: background-color .22s ease-out;
    transition: background-color .22s ease-out;
}
.pagination li a {
    color:#1BBC9B;
    border-color:#EEEEEE;
}

.pagination li a:hover {
    color:#FFF;
    background-color:#1BBC9B;
    border-color:#EEEEEE;
}


/* LOGO
   ================================================== */

.navbar-brand.navbar-text-logo{
    font-family: 'Playball', cursive;
    font-size: 28px;
    padding-top: 36px;
    padding-bottom: 36px;
    -webkit-transition: all .22s ease-out;
    -moz-transition: all .22s ease-out;
    -o-transition: all .22s ease-out;
    transition: all .22s ease-out;
}

.tiny-navbar-text-logo {
    margin-top: -18px !important;
}

/* NAVBAR
   ================================================== */
.caret {
    margin-bottom: 3px;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
}

.navbar-default {
    background-color: rgba(255,255,255,.96);
    border: 0;
    /*box-shadow*/
    -webkit-box-shadow: 0 4px 0 0 rgba(0,0,0,0.08);
    -moz-box-shadow: 0 4px 0 0 rgba(0,0,0,0.08);
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.08);
    min-height: 92px;
    /*transition*/
    -webkit-transition: height .22s ease-out;
    -moz-transition: height .22s ease-out;
    -o-transition: height .22s ease-out;
    transition: height .22s ease-out;
}

.navbar-default.tiny {
    min-height: 56px;
}

.navbar-brand {
    margin-top: 0;
    padding-top: 0;
}

.navbar-brand img {
    /*transition*/
    -webkit-transition: all .22s ease-out;
    -moz-transition: all .22s ease-out;
    -o-transition: all .22s ease-out;
    transition: all .22s ease-out;
    margin-top: 13px;
    margin-bottom: 13px;
    max-height: 75px;
}

.navbar.tiny .navbar-brand img {
    max-height: 50px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.navbar.navbar-default .navbar-nav>li>a {
    padding-top: 36px;
    padding-bottom: 36px;
    font-size: 15px;
    text-transform: uppercase;
    color: #22313F;
    /*transition*/
    -webkit-transition: padding .22s ease-out;
    -moz-transition: padding .22s ease-out;
    -o-transition: padding .22s ease-out;
    transition: padding .22s ease-out;
}

.navbar.tiny .navbar-nav>li>a {
    padding-top: 18px !important;
    padding-bottom: 18px;
}

.navbar.navbar-default .navbar-nav>li>a:hover {
    color: #1BBC9B;
    /*transition*/
    -webkit-transition: color .13s ease-out;
    -moz-transition: color .13s ease-out;
    -o-transition: color .13s ease-out;
    transition: color .13s ease-out;
}

.navbar.navbar-default .navbar-nav>li.active > a{
    color: #afaaaa;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    background-color: transparent;
}

.navbar-nav li a .highlighted {
    padding: 7px 10px;
    background-color: #1BBC9B;
    color: #FFF;
    border-radius: 4px;
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: none;
}

/* INTRO
   ================================================== */
.bg-intro {
    color: #FFF;
    background-image: url('images/page-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    /*background-size*/
    -moz-background-size: cover;
    background-size: cover;
}

.bg-intro .row {
    padding-top: 242px;
    padding-bottom: 150px;
}

.layer-intro {
    background-color:rgb(34,49,63);
    /* IE 8 OPACITY */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    background-color: rgba(34,49,63,.9);
}

.bg-intro h1 {
    position:relative;
    top:0px;
    font-size: 46px;
    max-width: 700px;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 66px;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}

/* ANIMATION
   ================================================== */
@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        top:1000px;
    }

    60% {
        opacity: 1;
        top:-30px;
    }

    80% {
        top:10px;
    }

    100% {
        top:0px;
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        top:1000px;
    }

    60% {
        opacity: 1;
        top:-30px;
    }

    80% {
        top:10px;
    }

    100% {
        top:0px;
    }
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #35404C;
    margin: 0 auto;
}


/* PORTFOLIO
   ================================================== */
.conditional-show-hide-items {
    margin-top: 8px !important;
}

.widget.widget-top-margin-so {
    margin-top: 33px;
}

.so-portfolio-widget {
    margin-bottom: 2px !important;
    margin-right: 2px !important;
    display: inline-block;
}

.image-portfolio-widget {
    float: left;
}

.portfolio-page-custom {
    margin-bottom: 45px !important;
}

.row-portfolio {
    margin-bottom: 138px;
}

.wrapper-portfolio {
    border-radius:10px;
    margin: 0 auto;
    position: relative;
    display: block;
    background-color: #34495E;
    max-width: 320px;
    /*box-shadow*/
    -webkit-box-shadow: 0px 6px 0 0 rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 6px 0 0 rgba(0,0,0,0.08);
    box-shadow: 0px 6px 0 0 rgba(0,0,0,0.08);
}

.wrapper-portfolio .img-responsive {
    border-radius:10px;
    /*transition*/
    -webkit-transition: opacity .1s linear;
    -moz-transition: opacity .1s linear;
    -o-transition: opacity .1s linear;
    transition: opacity .1s linear;
}

.wrapper-portfolio:hover .img-responsive {
    /* IE 8 OPACITY*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.06;
}

.wrapper-portfolio:hover .latest-work-portfolio {
    visibility: visible;
    top: 50%;
}

.so-content-portfolio-margin {
    margin-bottom: 30px
}

.latest-work-portfolio {
    visibility: hidden;
    position: absolute;
    top: 140%;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: 0 auto;
    color: #FFF;
    line-height: 0;
    font-size: 20px;
    /*transition*/
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

/* Single Portfolio
   ================================================== */
.pg-portfolio-wrapper {
    margin-top: 17px;
}

.single-portfolio-the-title-h2 {
    margin-top: -5px;
    margin-bottom: 30px;
}

.single-portfolio-project-description-h2 {
    margin-bottom: 18px;
}

.portfolio-img-main {
    margin-top: 23px;
}

/* All Items -- Portfolio
   ================================================== */
.listing-port-detials{
    margin-top: -16px;
}

.listin-port-title {
    text-transform: uppercase;
    color: #666;
}

.listing-port-detials p {
    color: #A9A9A9;
    font-family: 'Titillium Web', sans-serif;
}

.port-pg-wrapper{
    padding-bottom: 45px;
}

button#load-more-portfolios.btn{
    color: #FFF;
    background-color: #1BBC9B;
    border-color: #1BBC9B;
    font-size: 12px;
    padding: 10px 50px 10px 50px;
    border-radius: 0;
}

button#load-more-portfolios.btn:hover,
button#load-more-portfolios.btn:active,
button#load-more-portfolios.btn:focus {
    background-color: #38e2c0;
    border-color: #38e2c0;
}

@media (max-width: 768px) {
    button#load-more-portfolios.btn{
        width: 100%;
    }
}

button.btn.portfolio-sorter:hover,
button.btn.portfolio-sorter:active,
button.btn.portfolio-sorter:focus {
    background-color:  #1dcba7;
    border-color:  #1dcba7;
    color: #FFF;
}

button.btn.portfolio-sorter {
    background-color: #FFFFFF;
    border: 2px solid #ECECEC;
    border-radius: 2px;
    color: #888888;
    cursor: pointer;
    font: 400 12px/29px "Open Sans",sans-serif;
    margin: 10px 10px 0 0;
    overflow: visible;
    padding: 0 17px;
    position: relative;
    display: inline-block;
    -webkit-transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
    transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
}

.sorter-container {
    margin-top: -8px;
}

.all-items-portfolio {
    margin-top: 80px;
}

/* BREADCRUMBS
   ================================================== */
.portfolio-single-breadcrumb {
    margin-top: 225px; 
    font-size: 12px; 
    letter-spacing: 4px;
    text-transform: lowercase;
    color: #fff;
}

.breadcrumbs-portfolio a {
    color: #fff;
}

.breadcrumbs-portfolio a:hover,
.breadcrumbs-portfolio a:active,
.breadcrumbs-portfolio a:focus {
    color: #c7c2c2;
}

/*  OWL CAROUSEL
   ================================================== */
.feature-before-owl {
    margin-top: 46px;
    margin-bottom: 24px;
}

#owl-main-section .owl-single-item p {
    margin-top: 27px; 
    font-size: 16px;
}

#owl-main-section .owl-single-item {
  margin-right: 18px;
}
#owl-main-section .owl-single-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

 .owl-nav-buttons-single {
    color: #777;
    cursor: pointer;
    font-size: 18px;
    padding: 2px 14px;
    text-align: center;
    background: #f5f5f5;
    border: 0;
    border-radius: 2px;
 }

.owl-nav-buttons-single:hover {
    background-color: #1BBC9B;
    color: #fff;
}


/* display none until init */
.owl-carousel{
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
    
.owl-carousel .owl-item{
    float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
    cursor: pointer;
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-custom-navigation {
    margin-right: 18px;
}

.owl-custom-navigation:hover{

}


/* IMAGE MASK
   ========================================================================== */
.grid {
    padding-bottom: 30px;
}

.grid figure {
    margin: 0;
    position: relative;
}

.grid figure img {
    width: 100%;
    display: block;
    position: relative;
}

.grid img.wp-post-image {
    margin-bottom: 0;
}

.grid figcaption {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    color: #fff;
    background: #22313f;
}

.grid figcaption h5 {
    margin-top: -9px;
    padding-top: 0px;
    padding-bottom: 5px;
    color: #fff;
    /*font-weight: 700;*/
    text-align: left;
   /* letter-spacing: 2px;*/
    font: 400 13px/30px "Open Sans",sans-serif;
    text-transform: none;
    
}

.grid figcaption a {
    text-align: left;
    padding: 0 10px;
    margin-left: 20px;
    display: inline-block;
    background: #405a74;
    color: #fff;
    font: 400 13px/30px "Open Sans",sans-serif;
    border-radius: 0;
    border: 0;
    text-transform: none;
}

@media (max-width: 450px) {
  .grid figcaption a {
    display: none;
  }
}

.grid figcaption a:hover,
.grid figcaption a:focus,
.grid figcaption a:active {
    color: #ffffff;
    background: #547ca5;
}

/* Caption Style */
.mask figure {
    overflow: hidden;
}

.mask figure img {
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}

.mask.portfolio figure:hover img {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}

.mask.portfolio figcaption {
    height: 50px;
    width: 100%;
    top: auto;
    bottom: 0;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
}

.no-touch .mask figure:hover figcaption,
.mask figure.cs-hover figcaption {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s;
}

.mask figcaption a {
    position: absolute;
    top:1px;
    right: 11px;
}


/* SKILLS
   ================================================== */
.bg-skills {
    background-color: #F2F2F2;
    padding-top: 130px;
    padding-bottom: 100px;
    margin-top: 130px;
}

.bg-skills h2 {
    margin-top: 0;
    color: #777;
}

.bg-skills p {
    padding-right: 40px;
    color: #777;
    font-size: 18px;
    line-height: 32px;
    margin-top: 14px;
}

.bg-skills h4 {
    color: #777;
}

.progress {
    background-color: #e7e7e7;
    border-radius: 4px;
}

.progress-bar {
    background-color: #34495E;
}


/* SERVICES
   ================================================== */
.service-page-custom {
    margin-bottom: 45px !important;
}

.bg-services {
    padding-top: 0;
    padding-bottom: 40px;
}

.bg-services h3 {
    margin-top: 0;
}

.bg-services .row .fa {
    width: 40px;
    text-align: center;
    padding-top: 10px;
    color: #1BBC9B;
    font-size: 4em;
}

.bg-services .row .fa-mobile {
    font-size: 80px;
    padding-top: 0;
}

.steps-describ p, .steps-describ ul, .steps-describ ol{
    font-size: 16px;
    color: #757c81;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.service-content-space h4 {
    margin-top: 28px;
}

.service-content-space {
    margin-bottom: 15px;
}

.steps-intro {
    margin-top: 35px;
    margin-bottom: 51px;
}

.steps-describ {
    margin-bottom: 55px;
}

.steps-space-top {
    margin-bottom: 51px;
}

.single-servicetitle {
    margin-top: -5px;
    margin-bottom: 27px;
}

.single-service-desc hr {
    width: 50px !important;
    border: solid 2px #e7e7e7 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 33.5px !important;
}

/* PARALLAX
   ================================================== */
.section-bg-parallax {
    margin-bottom: 6px;
    background-position: 50% 50%;
    background-image: url('images/parallax-image.jpg');
    min-height: 320px;
    /*background-size*/
    -moz-background-size: cover;
    background-size: cover;
}

.layer-parallax {
    margin-bottom: 6px;
    min-height: 320px;
     /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.6);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

.items-for-count{
    color: #ffffff;
    font-size: 60px;
}


.count-description{
    font-size: 32px;
    color: #ffffff;
}

.count-main-text{
   padding-top: 76px;
   padding-bottom: 78px;
}

.count-description > span{
    color: #1BBC9B;
}

.count-description > label {
    margin-bottom: 0;
    font-weight: normal;
    color: #1BBC9B;
}

.items-for-count > span{
    color: #1BBC9B;
}


/* NEWSLETTER
   ================================================== */
.bg-contact .yo-newsletter{
    margin-top: 10px;
    border: #fff 2px solid;
    background-color: #1BBC9B;
    color: #ffffff !important;
    height: 40px;
}

.yo-newsletter::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #ffffff;
}
.yo-newsletter:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #ffffff;
   opacity:  1;
}
.yo-newsletter::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #ffffff;
   opacity:  1;
}

.yo-newsletter:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #ffffff;
}

.bg-contact .newsletter-btn {
    height: 40px;
    background-color: transparent;
    border: solid #ffffff 2px;
}

.newsletter-btn:hover {
    color: #1BBC9B;
    background-color: #ffffff;
}

.newsletter-btn:focus {
    color: #1BBC9B;
    background-color: #ffffff;
}

.subscribe-form-info p {
    margin-left: 15px;
}


/* CONTACT
   ================================================== */
.wpcf7-validation-errors, 
.wpcf7-mail-sent-ok {
    margin-top: -20px;
    margin-bottom: 42px;
    margin-left: -1px;
}

.wrapper-blog.so-contacts-page {
    margin-bottom: -20px;
}

.wrapper-blog.so-contacts-page h3 {
    text-transform: none;
}

.so-contacts-page .bg-contact {
    padding-bottom: 10px;
}

.so-contacts-page .btn-default {
    display: inline-block;
    padding: 10px 41px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    background-color: #1BBC9B;
    border-color: transparent;
    margin-bottom: 40px;
}

.so-contacts-page .btn-default:hover,
.so-contacts-page .btn-default:focus
{
    color: #fff;
    background-color: #13D2AB;
    border-color: transparent;
}

.archive-bg-contact {
    margin-top: 46px;
}

.bg-contact {
    background-color: #1BBC9B;
    color: #FFF;
    padding-top: 32px;
    padding-bottom: 32px;
}

.bg-contact .glyphicon-envelope {
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.bg-contact .mail {
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 30px;
    border: solid 2px #FFF;
    border-radius: 4px;
    margin: 0;
    display: inline-block;
}

.bg-contact h3 {
    margin-top: 16px;
    display: inline-block;
    margin-right: 50px;
}

.bg-contact .mail:hover {
    background-color: #FFF;
    color: #1BBC9B;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
}

/* BLOG
   ================================================== */
.grid.mask.related-posts-suggest img {
    margin-bottom: 30px;
}

.related-posts-title {
    margin: 66px 0px -5px 0px !important;
}

.so-related-articles-wrapper {
    margin-top: 41px;
}

.grid.mask.related-posts-suggest p:hover {
    color:#1BBC9B;
}

.title-blog {
    margin-top:30px;
    /*transition*/
    -webkit-transition: all .22s ease-out;
    -moz-transition: all .22s ease-out;
    -o-transition: all .22s ease-out;
    transition: all .22s ease-out;
}

.navbar.tiny .title-blog {
    margin-top:12px;
    margin-bottom:0px;
}

.bg-intro-blog {
    min-height:590px;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    /*background-size*/
    -moz-background-size: cover;
    background-size: cover;
}

.layer-intro-blog {
    min-height:590px;
    background-color:rgb(34,49,63);
    /* IE 8 OPACITY */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    background-color: rgba(34,49,63,.9);
}

.wrapper-blog{
     margin-bottom: 80px;
     -ms-word-wrap: break-word;
      word-wrap: break-word;
}

.wrapper-disqus{
    margin-top:80px;
}

.wrapper-blog hr {
    width:100%;
    border:0px;
    border-bottom:solid 1px #EEEEEE;
    margin-top:40px;
    margin-bottom:60px;
}

.wrapper-blog .row {
    margin-bottom:20px;
}

.wrapper-blog .img-featured {
    border-radius:2px;
}

.wrapper-blog .img-featured {
    margin-bottom:20px;
}

.wrapper-blog a .img-featured {
    /*transition*/
    -webkit-transition: opacity .22s ease-out;
    -moz-transition: opactiy .22s ease-out;
    -o-transition: opacity .22s ease-out;
    transition: opacity .22s ease-out;
}

.wrapper-blog a .img-featured:hover {
    opacity:0.9;
}

/*Blog Typography*/
.wrapper-blog h1{
    font-size: 30px;
}
.wrapper-blog h2{
    font-size: 26px;
}
.wrapper-blog h3{
    font-size: 22px;
}
.wrapper-blog h4{
    font-size: 18px;
}
.wrapper-blog h5{
    font-size: 14px;
}

.wrapper-blog h6 {
    font-size: 10px;
}

.wrapper-blog p, .wrapper-blog ul, .wrapper-blog ol {
    font-size: 16px;
    color: #757c81;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.wrapper-blog p {
    margin-top:0px;
}

.wrapper-blog .author {
    margin-bottom:20px;
}

.wrapper-blog ul, .wrapper-blog ol {
    margin-top:20px;
    margin-bottom:10px;
}

.wrapper-blog .title-post {
    margin-top:0px;
    margin-bottom:20px;
    text-transform: uppercase;
    color:#444;
    -webkit-transition: color .22s ease-out;
    -moz-transition: color .22s ease-out;
    -o-transition: color .22s ease-out;
    transition: color .22s ease-out;
}

.wrapper-blog a .title-post:hover {
    color:#1BBC9B;
}

/*Blog post gallery */
.wrapper-thumbnail {
    border-radius:4px;
    position: relative;
    display: block;
    background-color: #34495E;
    margin-bottom:20px;
    max-width:350px;
}

.wrapper-thumbnail img {
    border-radius:4px;
    /*transition*/
    -webkit-transition: opacity .22s ease-out;
    -moz-transition: opacity .22s ease-out;
    -o-transition: opacity .22s ease-out;
    transition: opacity .22s ease-out;
}

.wrapper-thumbnail:hover img {
    /* IE 8 OPACITY*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.4;
}

.wrapper-thumbnail:hover .fa-search{
    visibility:visible;
}

/*Socila share*/
.social-icons {
   margin-bottom: 8px
}
.social-icons > li {
  padding: 0 2px 5px 2px;
}
.social-icons > li > a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  color: #FFF;
  margin-bottom: 5px;
}
.social-icons > li > a i {
  font-size: 13px;
}

.socialstuff-inline {
    display: inline;
}

.inline-share-post{
    margin-right: 30px;
    font-size: 19px;
}

.share-post-area{
    margin-top: 65px;
}

.facebook-color{
    background-color: #3b5998;
}

.twitter-color{
    background-color: #55acee;
}

.linkedin-color{
    background-color: #007bb5;
}

.google-plus-color{
    background-color: #dd4b39;
}

.social-icons > li > a:hover, .social-icons > li > a:focus {
  background-color: #788084;
}


/* PRICING TABLES
   ================================================== */
.so-pricing-table-title {
    color: #777;
    text-align: center;
}

.so-pricing-title-container{
    margin-bottom: 45px;
}

.bg-so-pricing-table {
    background-color: #F2F2F2;
    padding-top: 100px; 
}

.row-plan-so {
    margin-bottom: 100px
}

.plan-wrapper-so {
    text-align: center;
    background-color: #FFF;
    width: 100%;
    margin: 0 auto;
    height: auto;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 5px;
    margin-top: 0;
}

.plan-wrapper-so:hover {
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.3);
    box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}

.featured-plan-so {
    margin-top: -30px
}

.plan-wrapper-so hr {
    padding: 0;
    margin: 8px auto;
    width: 60%;
    border: solid 1px #EDF0F2;
}

.plan-price-so {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 36px;
    background-color: #777;
    color: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto;
    padding-top: 58px;
    height: 155px;
    width: 155px;
    margin-bottom: 20px;
}

.plan-header-so {
    border-radius: 5px 5px 0 0;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 19px;
    color: #FFF;
    margin: 0;
    background-color: #777;
    padding: 20px 0;
    margin-bottom: 20px;
}

.plan-features-so {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 0;
}

.plan-sign-so {
    display: block;
    margin: 20px auto 0;
    font-weight: 600;
    width: 70%;
    font-size: 20px;
    padding: 15px 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/* FOOTER
   ================================================== */
.bg-footer {
    background-color: #22313F;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 20px solid #405a74;
}

.bg-footer .fa {
    color: #405A74;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    border: solid 4px #405A74;
    font-size: 50px;
    text-align: center;
    padding-top: 12px;
    margin-right: 20px;
    text-decoration: none;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
}

.bg-footer .fa:hover {
    background-color: #405A74;
    color: #22313F;
}

/*Footer bottom*/
.bg-footer-bottom {
    background-color: #162029;
    padding-top: 32px;
    padding-bottom: 32px;
}

.bg-footer-bottom p {
    margin: 0;
    padding: 0;
    color: #4f708e;
    font-size: 15px;
}

.bg-footer-bottom ul {
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.bg-footer-bottom ul li a {
    color: #4f708e;
}

.bg-footer-bottom ul li a:hover {
    color:#1BBC9B;
    text-decoration: none;
    
}

ul#bg-footer-menu-id li {
    border-right: 1px solid #3a536b;
    padding-right: 12px;
}

ul#bg-footer-menu-id li:last-child {
    border-right: none;
}


/*--------------------------------------------------------------
>>> WORDPRESS CLASSES
----------------------------------------------------------------

# Accessibility
# Alignments
# Tags
# Widgets
# Author Meta
# Posts and pages
# Sticky Post
# Asides
# Comments
# Infinite scroll
# Media
# Captions
# Galleries

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Tags
--------------------------------------------------------------*/
.tagcloud {
    margin-top: 35px;
}

.tagcloud a {
    background: #f2f2f2;
    padding: 8px 15px 7px;
    margin-bottom: 5px;
    margin-right: 5px;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 12px !important;
    color: #646467;
}

.tagcloud a:hover, .tagcloud a:focus {
  background-color: #1BBC9B;;
  color: #fff;
}

.cuspost-tags a{
   background: #f2f2f2;
   padding: 8px 15px 7px;
   margin-bottom: 5px;
   margin-right: 5px;
   letter-spacing: 1px;
   font-size: 13px;
   display: inline-block;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget_calendar tbody a {
    color: #1BBC9B;
    display: block;
}

.widget_calendar tbody a:hover {
    color: #666;
}

.textwidget p, .textwidget ul, .textwidget ol, .textwidget, .calendar_wrap {
    font-size: 16px;
    color: #757c81;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.widget-area{
    margin: 40px 0 20px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.widget-area ul{
    list-style: none;
    padding-left: 3px;
}

.widget-area ul li {
    margin-bottom: 10px;
}

.widget {
    margin: 0 0 4.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

.so-category-count{
    float: right;
    font-size: 13px;
}

.widget_categories li {
    border-bottom: rgba(0,0,0,0.05) 1px solid;
    padding: 6px
}

.widget_categories .children li {
    border-bottom: none;
}

/* AUTHOR META
   ================================================== */
.author-meta {
    margin-top: 40px;
    background: #f2f2f2;
    overflow: hidden;
    padding: 20px;
}

.author-meta .avatar {
    border-radius: 50%;
}

.author-meta .fa{
    font-size: 15px;
}

.authorbox {
    padding-left: 30px;
}

.well-lg {
    border-radius: 0px;
}

.authorbox{
    padding-left: 30px;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.page-numbers {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 2px 0 0;
    border: 1px solid #eee;
    line-height: 1;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    -webkit-transition: background-color .22s ease-out;
    -moz-transition: background-color .22s ease-out;
    -o-transition: background-color .22s ease-out;
    transition: background-color .22s ease-out;
}
.page-numbers.current,
a.page-numbers:hover {
    background: #7d7d7d;
    color: #ffffff;
    border-radius: 3px;
}


.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.nav-links{
    margin-top: 20px;
}

.entry-meta{
    margin-bottom: 8px;
    line-height: 24px;
}

.entry-meta span {
    margin-right: 20px;
    color: #949494;
    font-size: 16px;
}

.entry-title {
    margin-bottom: 17px;
}

.entry-content img {
    margin-bottom: 40px;
}

.entry-meta span:last-child {
    margin-right: 0;
}

.entry-meta span .fa{
    color: #bcbcbc;
}

.entry-meta span a {
    color: #949494;
    text-decoration: none;
}

.entry-meta span a:hover {
    text-decoration: underline;
}

.sticky {
	background: #f2f2f2;
    padding: 0px 30px 10px 30px;
    border-bottom: 0!important;
}

.sticky h2 {
    padding-top: 35px;
}

.sticky img {
    padding-top: 33px;
} 

.category-unpublished {
    display: none;
}

.hentry {
	margin: 0 0 1.5em;
    border-bottom: 1px solid #ddd;
}

.hentry:last-of-type {
    border-bottom:none;
    margin-bottom:0;
}

.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 3.2em 0 2em;
}

.so-pg-links {
    margin-top: 80px;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

cite.fn{
    font-style: normal;
    font-size: 19px;
}

.comment-content a {
    word-wrap: break-word;
}
.bypostauthor {
}

.comment-reply-title {
    padding-bottom: 9px;
    margin: 40px 0 20px 0;
}

.comments-title{ 
    color: #504E4E;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    padding-top: 35px;
}

ol.comment-list {
    list-style:none;
    padding-left: 0;
}

ol.children{
    list-style: none !important;
}

.comment-author .avatar {
    margin-right: 25px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.comment-meta {
    margin-top: 5px;
    margin-bottom: 20px;
}

.comment-details {
    overflow: hidden;
    zoom: 1;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.comment-details .reply {
    margin-top: 10px;
}

.color-icon{
    color: #f06060;
}

.color-icon:hover{
    color: #666;
}

a.comment-reply-link{
    color: #109CFF;
}

a.comment-reply-link:hover{
    color: #73BBEF;
}

.style-time {
    text-transform: uppercase;
}

#commentform #comment {
    width: 100% !important;
    font-size: inherit;
}

#commentform #submit {
    display: inline-block;
    padding: 10px 41px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;

    color: #ffffff;
    background-color: #1BBC9B;
    border-color: transparent;
    margin-bottom: 30px;
}

#commentform #submit:hover,
#commentform #submit:focus
{
    color: #ffffff;
    background-color: #13D2AB;
    border-color: transparent;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
object{
    width: 100%;
} 

iframe {
    width: 100% !important;
}

img {
    height: auto;
    max-width: 100%;
} 

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
figure.gallery-item img{
    height: auto;
}

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    padding: 1.1%;
    vertical-align: top;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*-------------------------------------------------------------
#ADMIN BAR
--------------------------------------------------------------*/
.so-admin-bar-showing {
    min-height: 32px;
}


/*-------------------------------------------------------------
# MEDIA QUERIES
--------------------------------------------------------------*/

/* GENERAL
   ================================================== */
@media (max-width:767px) {

    body {
        padding-top: 0px;
    }

    .margin-bottom-xs {
        margin-bottom: 65px;
    }

    hr {
        margin-bottom: 65px;
    }

    .title {
        margin-top: 65px;
    }

    h2.single-portfolio-the-title-h2 { 
        margin-top: -8px !important;
        margin-bottom: 26px !important;
    }

    .owl-custom-navigation {
        margin-right: 18px;
        float: left !important;
        margin-top: -36px;
    }
}

@media (min-width: 767px) {
    .navbar-nav li a .highlighted:hover {
        -webkit-transition: background-color .13s ease-out;
        -moz-transition: background-color .13s ease-out;
        -o-transition: background-color .13s ease-out;
        transition: background-color .13s ease-out;
        background-color:#1dcba7;
    }

    .navbar-nav>li>.dropdown-menu {
        border-top: 2px solid #1bbc9b;
        padding: 10px 0;
        text-transform: uppercase;
    }

    .dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
        color: #22313F;
        background-color: transparent;
    }

    .navbar-nav>li>.dropdown-menu {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
   }

   .dropdown-menu>li>a {
        padding: 9px 20px;
    }

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
     color: #1bbc9b;
     background-color: transparent;
}

.dropdown-menu>.active>a:hover, 
.dropdown-menu>.active>a:focus {
        color: #1dcba7;
}

.dropdown-menu {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f9f9f9;
}

.so-level-3-menu {
    position: relative;
}

.so-level-3-menu:hover>.dropdown-menu {
    display: block;
}

.so-level-3-menu .dropdown-menu {
    left: 100%;
    border-radius: 0;
    margin-top: -50px;
    margin-left: -1px;
    border-top: 2px solid #1bbc9b;
    min-width: 200px;
    padding-top: 9px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.so-level-3-menu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #333;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    }
}

@media (max-width: 767px) { 
    .so-level-3-menu .dropdown-menu {
        display: block;
        margin-left: 20px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .nav>li {
        border-bottom: 1px solid #e6e8e8;
    }

    .nav>li:last-child {
        border-bottom: none;
    }

    .navbar-nav li a .highlighted {
        padding: 0;
        background-color: transparent;
        color: #93a1a7;
        border-radius: 0;
    }

    .navbar-nav li a .highlighted {
        background-color: transparent !important;
    }

}

/* NAVBAR
   ================================================== */
@media (max-width:767px) {

    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #93a1a7;
        text-transform: uppercase;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #1BBC9B;
    }

    .navbar-default {
        background-color: #fafafa;
    }

    .navbar.navbar-default .navbar-nav>li>a {
        color: #93a1a7;
    }

    .navbar-default {
        background-color: #f8f8f8;
    }

    .caret {
        float: right;
        margin-top: 6px;
    }

    .navbar-nav {
        padding-left: 12px;
        padding-right: 12px;
    }

    .navbar-brand.navbar-text-logo{
        padding-top: 14px;
        padding-bottom: 36px;
    }

    .tiny-navbar-text-logo {
       margin-top: 0px !important;
     }
 
    .navbar-default {
        min-height: 50px;
    }

    .navbar-default.tiny {
        min-height: 50px;
    }

    .navbar.navbar-default .navbar-nav>li>a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar.tiny .navbar-nav>li>a {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-nav li a .contact {
        padding: 3px 10px;
    }

    .so-small-screen-centered-logo  {
        text-align: center;
    }

   .so-small-screen-centered-logo .navbar-brand {
        position: absolute;
        left: 50%;
        margin-left: -50px;
        display: block;
    }

    .navbar-header .so-small-screen-centered-logo .navbar-text-logo{
        margin-left: -80px;
    }

    .so-float-left-toggle-btn .navbar-toggle {
        float: left;
    }

    .navbar-brand img {
        max-height: 43px;
        margin-top: 3px;
        margin-bottom: 3px;
    }

    .navbar.tiny .navbar-brand img {
        max-height: 43px;
        margin-top: 3px;
        margin-bottom: 3px;
    }

    .navbar-default .navbar-toggle {
        background-color: transparent;
        border-color: transparent;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:active,
    .navbar-default .navbar-toggle:focus {
        background-color: transparent;
        border-color: transparent;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #000
    }
}

/* NAVBAR
   ================================================== */
 @media (max-width:991px) and (min-width:768px) {
    .navbar.navbar-default .navbar-nav>li>a {
        font-size: 13px;
        padding-top: 39px;
    }
}


/* INTRO
   ================================================== */
@media (max-width:767px) { 

    .bg-intro h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .bg-intro .row {
        padding-top: 105px;
        padding-bottom: 65px;
    }
}

/* INTRO PAGE
   ================================================== */
@media (max-width: 768px) {
    .bg-intro-page {
        min-height: 276px;
    }

    .layer-intro-page {
        min-height: 276px;
    }

}

/* SKILLS
   ================================================== */
@media (max-width:767px) {
    .bg-skills p {
        padding-right: 0px;
    }
}

/* SERVICES
   ================================================== */
   @media (max-width:767px) {

    .bg-services h3, .bg-services p {
        padding-left: 12px;
    }

    .bg-services .row .fa {
        width: 40px;
        text-align: center;
        padding-top: 0px;
        font-size: 44px;
    }

    .bg-services .row .fa-mobile {
        font-size: 80px;
        padding-top: 0px;
    }

    .wrapper-blog.service-page-custom h4 {
        margin-top: 24px;
        margin-bottom: 9px;
    }

    .steps-intro {
        margin-top: -34px;
        margin-bottom: 22px;
    }
}

/* PARALLAX
   ================================================== */
@media (max-width: 768px) {
  .section-bg-parallax {
    /*background-size*/
    -moz-background-size: 1349px  !important;
    -ms-background-size: 1349px  !important;
    -webkit-background-size: 1349px  !important;
    background-size: 1349px !important;
  }
}

@media (max-width: 340px) {
    .count-main-text {
        padding-left: 15px;
        padding-right: 14px;
        }
    }


/* NEWSLETTER
   ================================================== */
@media (max-width: 768px) {
    .newsletter-btn{
        width: 100%;
    }
}


/* CTA
   ================================================== */
@media (max-width: 768px) {
    .so-cta-btn{
        width: 100%;
    }
}


/* BREADCRUMBS
   ================================================== */
@media (max-width: 768px) {
    .portfolio-single-breadcrumb {
        margin-top: 148px;
    }
}

/* PAGES
   ================================================== */
@media (max-width: 768px) {
 .bg-intro-page h1 {
    color: #ffffff;
    margin-top: 153px;
    padding-bottom: 96px;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
  }
}

/* CONTACT
   ================================================== */
@media (max-width:767px) {
 
    .bg-contact h3 {
        display: block;
        margin: 0;
        margin-bottom: 32px;
    }

    .bg-contact .mail {
        margin: 0;
    }
}

/* BLOG 
   ================================================== */
@media (max-width:767px) {
.title-blog {
    margin-top:12px;
    /*transition*/
    -webkit-transition: all .22s ease-out;
    -moz-transition: all .22s ease-out;
    -o-transition: all .22s ease-out;
    transition: all .22s ease-out;
    font-size:24px;
}

.navbar.tiny .title-blog {
    margin-top:12px;
    margin-bottom:0px;
}

.row-blog {
    padding:10px;
}

.wrapper-blog .row {
    margin-bottom:0px;
}

.navbar-brand-blog {
    margin-left:-15px;
}

.wrapper-blog h1, .wrapper-blog h2, .wrapper-blog h3, .wrapper-blog h4, .wrapper-blog h5, .wrapper-blog h6 {
    margin-top: 40px;
    margin-bottom: 22px;
}

.bg-intro-blog, .layer-intro-blog {
    min-height:160px;
}

.wrapper-blog .title-post {
    font-size:22px;
}

.wrapper-blog .author {
    font-size:15px;
}

}

@media (max-width: 450px) {
  .small-screen-meta {
    display: block !important;
  }

.entry-meta span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
    .media-body-so {
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .authorbox {
        padding-left: 0px;
    }

    .author-sm-screen{
        padding-right: 30px !important;
    }

    .media-body.authorbox.media-body-so h5 {
        margin-top: 1px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
.socialstuff-inline {
    display: block;
    text-align: left;
  }

.top-share-this {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
    #commentform #submit {
        width: 100%;
    }
}

@media (min-width: 768px) {
   .so-comm-date{
     float: right; 
  }
}

.comment-date a {
    color: #777;
}

@media (max-width: 458px) {
   .comment-date a{
     font-size: 11px;
  }

  ol.children {
    margin-left: -41px;
  }

  .comment-content {
    margin-top: -17px;
  }

  .comment-details { 
    overflow: visible;
  }

  .comment-details:last-of-type { 
    padding-bottom: 43px;
  }
}

/* PORTFOLIO/SKILL
   ================================================== */
@media (max-width:767px) {
    .all-items-portfolio {
        margin-top: 44px;
    }
}

@media (max-width: 300px) {
    .latest-work-portfolio {
        font-size: 11px;
    }
}

@media (max-width:767px) {
    .bg-skills {
        margin-top: 2px;
    }
}

@media (max-width:767px) {
    .so-back-to-top-mobile {
        display: none;
    }
}

@media (max-width:767px) {
    .plan-wrapper-so {
        margin-bottom: 80px !important;
    }

    .row-plan-so {
        margin-bottom: 5px !important;
    }

    .bg-so-pricing-table {
        padding-top: 52px !important;
    }
}

/* FOOTER
   ================================================== */
@media (max-width:767px) {

    .bg-footer {
        border-width: 6px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .bg-footer .fa {
        width: 50px;
        height: 50px;
        border: solid 2px #3a536b;
        font-size: 30px;
        padding-top: 8px;
        margin-right: 4px;
    }
}

/*Footer bottom*/
@media (max-width:767px) {

    .bg-footer-bottom .copyright {
        text-align: center;
        margin-bottom: 16px;
    }

    .bg-footer-bottom ul {
        text-align: center;
        float: none !important;
    }
}

/* 404 page
   ================================================== */
@media (max-width:767px) {
    .so-404-page-error-code {
        margin-top: 110px;
        margin-bottom: 5px;
        text-align: center;
    }

    .so-404-page-error-code h1 {
        font-size: 80px !important;
    }
}