/*
    +++++Table of content+++++

    01: General styling;
    02: Loader;
    03: Buttons;
    04: Forms;
    05: Header;
    06: Vertical header;
    07: Vertical filters (Right side);
    08: Social icons;
    09: Homepage projects;
    10: Homepage with two columns;
    11: Homepage masonry projects;
    12: Contact page css;
    13: Footer;
    14: Animation;
    15: Content area;
    16: Seperator;
    17: Headings;
    18: Team Page;
    19: Section Title;
    20: Sub Menu Styles;
    21: Load more button;
    22: Slider;
    23: Likes;
    24: Project type full;
    25: Project Page Case Study;
    26: Blog;
    27: Blog post;
    28: Blog isotope;
    29: Description Box;
    30: SVG Map;
    31: Boostrap overwrites;
    32: Shortcodes;
    33: Clients;
    34: Services;
    35: Full screen header;
    36: Video;
    37: Homepage projects full;
    38: Horizontal Projects;
    39: Horizontal Slider;
    40: Post Comments;
    41: Project Full Slider;

    */

    /* 01: General styling */

    * {
        box-sizing: border-box;
        font-weight: 400;
    }

    body, * {
       font-family: 'Rubik', sans-serif;
       color: #000;
   }

   body {
    background: url(../images/bg.jpg) repeat;
}

a, a:focus {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:active {
    color: #000;
    text-decoration: none;
}

a:visited {
    color: #000;
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

.mb-30 {
    margin-bottom: 30px;
}

.margin-vertical-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

p {
 font-size: 14px;
 z-index: 999;
 line-height: 26px;
 font-weight: 400;
 color: #454545;
}

.no-margin-bottom {
    margin-bottom: 0px !important;
}

.no-margin-top {
    margin-top: 0px !important;
}

.no-padding {
    padding: 0px !important;
}

.padding-right-5 {
    padding-right: 5px;
}

.subheading {
    font-size: 18px;
    padding-bottom: 10px;
    line-height: 30px;
    font-family: 'Playfair Display', serif;
}

.page-name {
    position: absolute;
    left: 15px;
    top: 0;
}

.u_heading {
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #c3c3c3;
    display: inline-block;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
}

/* 02: Loader */

.loader, .ajax-loader {
   background: #fff;
   width: 100%;
   height: 100%;
   position: fixed;
   z-index: 99999999999;
   display: block;
   text-align: center;
}

.spinner {
  width: 30px;
  height: 30px;

  position: relative;
  margin: auto;
}

.spinner-holder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    text-align: center;
}

.home-grid-container {
    position: relative;
}

.home-grid-container.loading {
    height: 100vh;
}

.ajax-loader {
   position: absolute;
   z-index: 100000;
   top: 0px;
   left: 0px;
   display: none;
   height: 100vh;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* Buttons */

.buttons {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #fff;
    padding: 13px 45px;
    display: inline-block;
    transition: all .25s ease-in-out;
    overflow: hidden;
}

.buttons:focus {
    outline: none;
}

.button-1 {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

.button-1:hover {
    color: #000;
    background: transparent;
}

.button-1:visited {
    color: #fff;
}

.button-1:visited:hover {
    color: #000;
}

.button-2 {
    text-transform: uppercase;
    color: #000;
    border: 1px solid #000;
    background: transparent;
}

.button-2:hover {
    background: #000;
    color: #fff;
}

.button-3 {
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(8, 171, 127, 0.9);
    background: rgba(8, 171, 127, 0.9);
}

.button-3:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.button-4 {
    text-transform: uppercase;
    color: #000;
    border: 1px solid #e3e3e3;
    background: #e3e3e3;
}

.button-4:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.buttons.full {
    width: 100%;
}

.button-5 {
    text-transform: uppercase;
    color: #000;
    border: 1px solid #fff;
    background: transparent;
}

.button-5:hover {
    background: #fff;
    color: #000;
}

.button-6 {
    border:1px solid #c3c3c3;
}

.button-6:hover {
    border:1px solid #000;
}

.buttons.small {
    padding: 8px 28px;
}

/* 04: Forms */
form input,  textarea {
   width: 100%;
   display: block;
   color: #7d7d7d;
   padding: 15px;
   outline: none;
   font-size: 13px;
   border: none;
   background: #f8f8f8;
   resize: none;
   margin-bottom: 12px;
}

form input:focus,  textarea:focus {
    background: #ededed;
}

form input:focus,  textarea:focus {
    border-color: #bbb;
}

::-webkit-input-placeholder {
 color: #7d7d7d;
}

:-moz-placeholder { /* Firefox 18- */
   color: #7d7d7d;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #7d7d7d;
}

:-ms-input-placeholder {
   color: #7d7d7d;
}

/* 05: Header */

.mobile-menu {
    display: none;
    z-index: 10;
}

/* 06: Vertical header */

.vertical-header {
    position: fixed;
    width: 20%;
    padding: 50px;
    height: 100%;
    z-index: 9999999;
}

.vertical-header .logo {
    margin-bottom: 30px;
}

.vertical-header .logo img {
    max-width: 100%;
    height: 84px;
    width: auto;
}

.vertical-header .header-tagline p {
    line-height: 23px;
    font-size: 13px;
}

.vertical-header .main-nav {
    position: absolute;
    bottom: 50px;
    display: block;
}

.vertical-header .main-nav ul {
    list-style: none;
    padding-left: 0;
}

.vertical-header .main-nav ul span {
    display: block;
    font-size: 13px;
    color: #bbb;
}

.vertical-header .main-nav ul a {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
}

.vertical-header .main-nav > ul > li {
    margin-top: 25px;
    position: relative;
}

.main-nav-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 07: Vertical filters (Right side) */

.vertical-filters {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 15%;
    height: 100%;
    overflow: hidden;
}

.vertical-filters .col-filter {
    margin-left: 40px;
}

.vertical-filters .col-filter li a img {
    height: 20px;
    width: auto;
    margin-bottom: 15px;
}

.vertical-filters .col-filter li.active {
    opacity: 1;
}

.vertical-filters .col-filter li {
    opacity: 0.2;
    transition: opacity .25s ease-in-out;
}

.vertical-filters .col-filter li:hover {
    opacity: 0.3;
}

.vertical-filters .col-filter li.active:hover {
    opacity: 1;
}

.vertical-filters .col-filter {
    margin-top: 50px;
    margin-left: 50px;
}


.vertical-filters .category-filters ul {
    margin-top: 50px;
    margin-left: 50px;
}

.vertical-filters .category-filters ul li {
    color: #a2a2a2;
    border-left: 1px solid #d4d4d4;
    padding-bottom: 50px;
    padding-left: 20px;
    width: 130px;
}

.vertical-filters .category-filters ul .active a .small-circle {
    color: #000;
    border-color: #000;
}

.vertical-filters .category-filters ul .active a .cat-title {
    color: #000;
}

.vertical-filters .category-filters ul li:last-child {
    padding-bottom: 0;
    border-left: none;
}

.vertical-filters .category-filters ul li:last-child span.small-circle {
    left: -26px;
}

.vertical-filters .category-filters ul li a {
    position: relative;
}

.vertical-filters .category-filters ul li a span.small-circle {
    width: 13px;
    height: 13px;
    border: 1px solid #a2a2a2;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: -27px;
    top: -1px;
    transition: border .20s ease-in-out;
}

.vertical-filters .category-filters ul li a span.cat-title {
    position: absolute;
    width: 100px;
    white-space: nowrap;
    top: -4px !important;
    color: #a2a2a2;
    font-size: 13px;
    transition: color .20s ease-in-out;
}

.vertical-filters .category-filters ul li.active , .vertical-filters .category-filters ul li:hover {
    color: #000;
    border-color:#d4d4d4;
}

.vertical-filters .category-filters ul li:hover .small-circle {
    border-color: #000;
}

.vertical-filters .category-filters ul li:hover span.cat-title {
    color: #000;
}

/* 08: Social icons */

.social-icons {
    position: absolute;
    top: 70px;
    right: 60px;
    z-index: 13;
}

.social-icons ul li {
    float: left;
    display: block;
    margin-left: 3px;
}

.social-icons ul li a {
    height: 37px;
    width: 37px;
    background: #000;
    display: block;
    text-align: center;
    line-height: 37px;
    border-radius: 2px;
}

.social-icons ul li a i {
    color: #fff;
    font-size: 14px;
}

/* 09: Homepage projects */

.single-project, .single-project-3 {
    height: auto;
    margin-bottom: 30px;
}

.invisible {
    opacity:0;
    transform:  scaleX(1.50) scaleY(1.50) ;
}

.single-project .project-thumb, .single-project-3 .project-thumb {
    height: 200px;
    margin-bottom: 20px;
    position: relative;
}

.project-thumb .thumb-background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    height: 100%;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.project-thumb .thumb-hover {
    transition: opacity 0.3s ease;
    background: rgba(8, 171, 127, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.project-thumb .thumb-hover img {
    width: 25px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-thumb:hover .thumb-hover {
    opacity: 0.9;
}

.project-thumb:hover .thumb-background {
   -ms-transform: scale(1.25, 1.25); /* IE 9 */
   -webkit-transform: scale(1.25, 1.25); /* Safari */
   transform: scale(1.25, 1.25);
}

.thumb-bgc {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-name {
    padding-right: 45px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 2px;
}

.single-project .project-info .project-name a, .single-project-3 .project-info .project-name a {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    transition: opacity .25s ease-in-out;
}

.single-project .project-info .project-name a:hover,
.single-project-3 .project-info .project-name a:hover {
    opacity: 0.7;
}

.categories li {
    float: left;
    padding-right: 4px;
    color: #7d7d7d;
}

.categories li:first-child {
    padding-left: 0px;
}

.categories li a {
    font-size: 12px;
    color: #7d7d7d;
    font-weight: 400;
    transition: opacity .25s ease-in-out;
}

.categories li a:hover {
    opacity: 0.7;
}

.likes {
    position: absolute;
    right: 0;
    top: 0;
}

.likes {
    cursor: pointer;
}

.likes-counter {
    color: #7d7d7d;
    font-weight: 400;
    font-size: 11px;
    display: inline-block;
    min-width: 7px;
}

.likes  i, .likes a i{
    color: #cccccc;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color .20s ease-in-out;
    top: 1px;
}

.likes.liked  i,
.likes.liked > a > i {
   color: #f95271;
}

.project-info {
    position: relative;
    overflow: hidden;
}

.likes  i:hover,
.likes > a > i:hover {
    color: #f95271;
}

/*10: Homepage with two columns*/
.two-columns .project-thumb, .two-columns .project-thumb .thumb-bgc {
    height: 350px;
}

.two-columns {
    height: auto;
}

/* 11: Homepage masonry projects */

.grid {
    overflow: hidden;
}

.masonry-projects .single-project,
.masonry-projects .single-project-3 {
    height: auto;
}

.masonry-projects .ms-image {
    overflow: hidden;
}

.masonry-projects .ms-image img {
    width: 100%;
    height: auto;
    transition: .2s all;
}

.masonry-projects .project-thumb:hover .ms-image img {
   -ms-transform: scale(1.25, 1.25); /* IE 9 */
   -webkit-transform: scale(1.25, 1.25); /* Safari */
   transform: scale(1.25, 1.25);
}

.masonry-projects .project-thumb {
    height: auto !important;
}

/*12: Contact page css*/

#contactMap {
    background-color: #ebebeb;
    height: 375px;
    margin-bottom: 20px;
}

.details-info li {
    margin-bottom: 12px;
    position: relative;
}

.details-info li span {
    font-size: 20px;
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    background: #f7f7f7;
    position: absolute;
    left: 0;
    top: 0;
}

.details-info li p {
    display: inline-block;
    margin-left: 65px;
    margin-top: 13px;
}

/* 13: Footer */

.footer {
    margin-top: 20px;
    overflow: hidden;
}

.footer .container {
    margin-top: 80px;
}

.c_widget {
    margin-bottom: 40px;
}

.c_widget_title  {
    padding-bottom: 20px;
}

.c_widget_title h5 {
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #c3c3c3;
    display: inline-block;
    padding-bottom: 6px;
    letter-spacing: 2px;
    font-weight: 400;
}

.textwidget * {
    max-width: 100%;
}

.c_widget .recentcomments span.comment-author-link {
    font-weight: 500;
}

.c_widget .post-date {
    color: #999;
    font-size: 13px;
}

.c_widget .rsswidget {
    font-weight: 500;
}

.c_widget .mini_cart_item .variation {
    border-left: 0;
    float: left;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.c_widget .mini_cart_item .variation dd.variation-color {
    position: relative;
    top: -2px;
    margin: 0;
    padding: 0;
}

.c_widget .mini_cart_item .variation + .quantity {
    float: left;
    position: relative;
    top: 2px;
}

.instagram-feed {
    padding: 10px;
    padding-top:0;
}

.insta-post-single {
    display: inline-block;
    float: left;
    width: 28%;
    padding: 5px;
}

.insta-post-single a:hover {
    opacity: 0.7;
}

.insta-post-single a {
    transition: opacity .25s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
}

.insta-post-single a  img {
    width: 100%;
    height: auto;
}

.footer .blog-feed .blogArticle {
    height: auto;
    min-height: 70px;
    margin-bottom: 10px;
}

.footer .blog-feed .blogPic {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background: #e2e2e2 url(../images/avatar.png) no-repeat center center;
    background-size: cover;
}

.footer .blog-feed .blogTitle {
    padding-left: 85px;
    display: inline-block;
    margin-left: 15px;
}

.footer .blog-feed .blogTitle a:hover h5 {
    opacity: 0.7;
}

.footer .blog-feed .blogTitle h5 {
    width: 100%;
    float: left;
    font-size: 14px;
    border-top: 15px;
    font-weight: 400;
    border-bottom: 15px;
    transition: opacity .25s ease-in-out;
    line-height: 20px;
}

.blogTitle h6 {
    float: left;
    color: #7d7d7d;
    margin-top: 0;
    font-weight: 400;
}

.blogTitle h6 span {
    border-bottom: 1px dotted #7b7b7a;
    color: #7d7d7d;
}

.contactForm textarea {
    height: 91px;
}

.footer-bottom {
    margin-top: 10px;
    margin-bottom: 50px;
}

.footer-bottom .seperator {
    margin-bottom: 40px;
}

.footer-bottom .copyright h6 {
    color: #7d7d7d;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
}

.footer-bottom .social-links ul li {
    float: left;
    margin-left: 25px;
}

.footer-bottom .social-links ul {
    margin-bottom: 0;
}

.footer-bottom .social-links ul li a {
    color: #5e5e5e;
    margin-top: 11px;
}

.sliding-u-l-r {
    display: inline-block;
}

.sliding-u-l-r:after {
    content: '';
    display: block;
    height: 1px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.sliding-u-l-r:hover:after {
    width: 100%;
    background: #5e5e5e;
}

/*14: Animation*/

.sp-animation {
  animation: animationFrames ease-in-out .4s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames ease-in-out .4s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames ease-in-out .4s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames ease-in-out .4s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames ease-in-out .4s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
  0% {
    opacity:0;
    transform:  scaleX(1.20) scaleY(1.20) ;
}

100% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
}
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    -moz-transform:  scaleX(1.20) scaleY(1.20) ;
}

100% {
    opacity:1;
    -moz-transform:  scaleX(1.00) scaleY(1.00) ;
}
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    -webkit-transform:  scaleX(1.20) scaleY(1.20) ;
}

100% {
    opacity:1;
    -webkit-transform:  scaleX(1.00) scaleY(1.00) ;
}
}

@-o-keyframes animationFrames {
  0% {
    opacity:0;
    -o-transform:  scaleX(1.20) scaleY(1.20) ;
}

100% {
    opacity:1;
    -o-transform:  scaleX(1.00) scaleY(1.00) ;
}
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    -ms-transform:  scaleX(1.20) scaleY(1.20) ;
}

100% {
    opacity:1;
    -ms-transform:  scaleX(1.00) scaleY(1.00) ;
}
}

.sub-menu.shown-menu .shown-menu-item {
    opacity: 1;
}

.sub-menu li {
    opacity: 0;
    transition: 1s all;
}

/* 15: Content area */

.single-product .content-area {
    margin-top: 0;
}

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

.content-area p {
    font-size: 14px;
    line-height: 26px;
}

.content-area h1, .content-area h2, .content-area h3, .content-area h4, .content-area h5, .content-area h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

.content-area h1 {
    line-height: 50px;
}

.content-area h2 {
    line-height: 40px;
}

.content-area h3 {
    line-height: 34px;
}

.content-area h4 {
    line-height: 30px;
}

.content-area h5 {
    line-height: 25px;
}

.content-area h6 {
    line-height: 20px;
}

.content-area span, .content-area em { font-weight: inherit; color: inherit; }
.content-area strong { color: inherit; }

.content-area .section-top {
    margin-top: 50px;
    margin-bottom: 30px;
}

.dropcap {
    text-transform: uppercase;
    float: left;
    font-size: 40px;
    padding: 10px 15px 10px 0px;
    color: #000;
    font-family: "Playfair Display", serif;
    font-style: italic;
}

blockquote, blockquote p {
    border-left: none;
    font-size: 22px !important;
    padding: 20px 100px 20px 100px;
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #000;
    font-style: italic;
    line-height: 34px !important;
}

blockquote cite {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
}

blockquote p {
    padding: 0px !important;
}

.custom-ol, .content-area ol, .comment ol {
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    padding-left: 15px;
}

.custom-ul, .content-area ul, .comment ul {
    font-size: 14px;
    font-weight: 300;
    list-style: none;
    line-height: 25px;
    list-style-type: circle;
    padding-left: 15px;
}

.page404 .button-2 {
    margin-top: 20px;
}

.content-area table, .comment table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb
}

.content-area table thead, .comment table thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

.content-area table td:first-child,
.comment table  th:first-child {
    border-left-width: 0;
}

.content-area table th,
.content-area table td,
.comment table th,
.comment table td {
    border-left: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
    border-width: 0 0 1px 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: .5em 1em;
}

/* 16: Seperator */

.seperator {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    position: relative;
}

/* 17: Headings */

h1, h2,
.comment h1,
.comment h2,
.comment h3,
.comment h4,
.comment h5,
.comment h6 {
    font-weight: 300;
    margin: 0;
}

/*Sections*/

.section-top {
    width: 100%;
    height: 1px;
    background-color: #c3c3c3;
    position: relative;
    margin-bottom: 50px;
}

.section-top.divider2 {
    background-color: transparent;
    border-top: 2px dotted #c3c3c3;
}

.section-top.divider3 {
    background-color: transparent;
    background: url(../images/stripped.png) repeat-x;
    height: 6px;
}

.section-top.divider3 .section-title {
    top: -21px;
}

.section-top.no-icon .section-title h2 {
    margin-left: 0;
}

.section-title {
    background: #fff;
    position: absolute;
    top: -25px;
}

.page-top {
    text-align: center;
    position: relative;
}

.page-top h1 {
    line-height: 48px;
    text-transform: uppercase;
    padding-top: 45px;
    font-size: 30px;
    padding-bottom: 5px;
}

.page-top .page-description {
    margin-bottom: 0;
    font-size: 14px;
    margin: auto;
    min-height: 22px;
}

.page-top .page-description p {
    margin-bottom: 5px;
}

.page-top h5 {

    font-size: 16px;
    font-style: italic;
}

.c_section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-hidden {
    opacity: 0;
}

.section-visible {
    opacity: 1;
}

/*18: Team Page*/

.single-team {
    margin-bottom: 30px;
    position: relative;
}

.single-team .img-staff {
    height: 350px !important;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.img-hover-holder {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-hover {
    background: rgba(8, 171, 127, 0.9);
    width: 100%;
    height: 100%;
}

.single-team:hover .img-hover-holder {
    opacity: 1;
}

.img-hover {
    position: relative;
}

.img-hover .info-hover {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
    margin-right: -50%;
}

.img-hover .social-icons {
    position: absolute;
    top: auto;
    bottom: 40px;
    left: 40px;
    margin: 0;
    right: auto;
    width: auto;
}

.img-hover .social-icons li {
    float: none;
    display: inline-block;
    margin-left: 0px;
}

.img-hover .social-icons ul {
    margin: auto;
}

.single-team .img-hover h2, .single-team .img-hover h3 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.single-team .img-hover h3 {
    font-size: 12px;
}

.single-team .img-hover h2 {
    margin-bottom: 10px;
}

.single-team .img-hover h3 {
    margin-top: 0;
}

.single-team .social-icons li a {
    border: 1px solid rgba(255,255,255, 0.3);
    background: transparent;
}

.single-team .social-icons li a:hover {
    background: rgba(255,255,255, 0.1);
}

/* 19: Section Title */

.section-title .c_icon {
    background: #f7f7f7;
    height: 52px;
    width: 52px;
    float: left;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
}

.section-title .c_icon span {
    font-size: 22px;
    width: auto;
    color: #000;
    line-height: 48px;
    margin-left: 2px;
}

.section-title h2 {
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    margin: 5px 10px;
    margin-left: 0;
    line-height: 40px;
}

/* 20: Sub Menu Styles */

.vertical-header .sub-menu  {
    padding-top: 10px;
    display: none;
}

.vertical-header .sub-menu li {
    padding-bottom: 10px;
}

.vertical-header .sub-menu li a {
    letter-spacing: 0 !important;
    color: #565656;
}

/* 21: Load more button*/

.load-more {
    text-align: center;
}

/* 22: Slider */

.no-top {
    padding-top: 0 !important;
}

.slider-full {
    width: 80%;
    margin-left: 20%;
    margin-bottom: 40px;
}

.slider-bg {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100vh !important;
    width: 100%;
}

.slider {
    cursor: url('../images/cursor-drag.cur'), auto;
}

.slider-left {
    cursor: url('../images/cursor-left.cur'), auto;
}

.slider-right {
    cursor: url('../images/cursor-right.cur')  , auto;
}

.slider .sliderImage {
    width: 100%;
    height: auto;
}

.slider-image-wrapper {
    position: relative;
}

.slider .owl-pagination {
    display: none;
}

.slider .owl-buttons div {
    background: transparent !important;
}

.owl-buttons {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
}

.owl-prev {
    float: left;
}

.owl-next {
    float: right;
}

.owl-theme .owl-controls .owl-buttons div {
    border-radius: 0 !important;
    background: transparent;
    width: 40px;
    height: 40px;
    background-color: #000 !important;
}

.owl-theme .owl-controls .owl-buttons div i {
    color: #fff;
    font-size: 18px;
    line-height: 33px;
}

/* 23: Likes */

.likes-inside {
    right: 0px;
    top: 35px;
}

.likes-inside a i {
    font-size: 27px;
    margin-right: 5px;
}

.likes-inside a .likes-counter {
    position: relative;
    bottom: 5px;
}

.project-changer {
    margin-top: 0px;
    margin-bottom: 80px;
}

.single-post-project-changer {
    margin-top: 80px;
}

.project-changer a {
    font-size: 13px;
    text-transform: uppercase;
    transition: opacity .25s ease-in-out;
}

.project-changer a:hover {
    opacity: 0.6;
}

.pc-projects {
    text-align: center;
}

.pc-projects img {
    width: 22px;
    height: auto;
}

.project-changer .prev-slide:before,
.project-changer-link-pages a:first-child:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    content: "\f053";
    margin-right: 7px;
    color: #cccccc;
}

.project-changer .next-slide:after,
.project-changer-link-pages a:nth-child(2):after {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    content: "\f054";
    margin-left: 7px;
    color: #cccccc;
}

.project-changer-link-pages a:nth-child(2) {
    float: right;
}

.pcs2 .pri-list {
    margin-top: 40px;
}

.pcs2 {
    margin-top: 0px;
    padding-right: 40px;
}

.pcs3 {
    margin-top: 0 !important;
}

/* 24: Project type full */

.pr-type-full .container {
    padding-top: 0;
}

.sliderContainer {
    position: relative;
}

.pr-type-full .slider-full {
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
}

.slider-fixed {
    position: fixed;
}

.slider-fixed img {
    position: relative;
}

.close-pr a  {
    background: #000;
    height: 100%;
    width: 60px;
    float: right;
    margin-right: 15px;
    text-align: center;
}

.pr-type-full p {
    font-size: 14px;
}

.c2 {
    position: relative;
    padding-left: 50px;
}

.small-title {
    text-transform: uppercase;
    font-size: 13px;
    color: #9e9e9e;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    margin-top: 10px !important;
}

.large-title {
    text-transform: uppercase;
    font-weight: 200;
    word-wrap: break-word;
}

.pri-title {
    padding-bottom: 40px;
}

.pri-container {
    position: relative;
    background-color: #fff;
}

.pri-details {
    padding-bottom: 60px;
    position: relative;
    margin-top: 60px;
}

.pri-list li {
    margin-bottom: 10px;
    overflow: hidden;
}

.pri-list li h3 {
    margin-top: 0;
}

.pri-description p {
    margin-bottom: 25px;
}

.pr-case-study {
    margin-top: 0;
}

.pr-case-study .likes {
    padding-right: 15px;
}

.pr-case-study .likes a {
    float: right;
}

.pri-description.content-area {
    margin: 0;
}

/* 25: Project Page Case Study */

.pri-images {
    margin-top: 50px;
}

.pri-images img {
    width: 100%;
    height: auto;
}

.pri-images iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -6px;
    border: none;
}

.pri-images span {
    background: #000;
    font-size: 14px;
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
}

.pri-images li {
    margin-bottom: 30px;
}

/* 26: Blog */

.bp-posts {
    margin-top: 60px;
}

.bp-posts .blogPic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: inline-block;
    background: #e2e2e2 url(../images/avatar.png) no-repeat center center;
    background-size: cover;
    float: left;
    position: relative;
}

.bp-posts .blogPic:before {
    content: '';
    display: block;
    transition: opacity 0.3s ease;
    background: rgba(8, 171, 127, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0;
}

.bp-posts .blogPic:hover:before {
    opacity: 0.9;
}

.bp-posts .blogPic img {
    transition: opacity 0.3s ease;
    width: 30px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.bp-posts .blogPic:hover img {
    opacity: 1;
}

.bp-posts .blogTitle {
    overflow: hidden;
    margin-left: 240px;
    padding-top: 15px;
}

.bp-posts .blogTitle > p {
    height: 50px;
    overflow: hidden;
}

.bp-posts .blogTitle a h5 {
    font-size: 22px;
    font-size: 19px;
    font-weight: 300;
    line-height: 26px;
    margin-top: 5px;
    line-height: 24px;
    transition: opacity .25s ease-in-out;
}

.sticky-wrapper .blogTitle a h5:after,
.blogTitle.sticky a h5:after {
    content: 'sticky';
    margin-left: 15px;
    font-size: 11px;
    text-transform: uppercase;
    background: #e3e3e3;
    padding: 5px;
}

.bp-posts .blogTitle a:hover h5 {
    opacity: 0.7;
}

.bp-posts .blogArticle {
    margin-bottom: 60px;
    height: auto;
    position: relative;
}

.bp-posts .blogArticle:last-child {
    margin-bottom: 20px;
}

.bp-posts .blogTitle h6 {
    float: none;
}

.bp-details > ul {
    display: block;
    overflow: hidden;
    margin-bottom: 0;
}

.bp-details > ul > li {
    float: left;
    padding-right: 20px;
}

.bp-details ul li p {
    float: left;
    font-size: 12px;
    color: #7d7d7d;
}

.i-post-title .bp-details {
    padding-top: 20px;
}

.bp-details ul li span {
    font-size: 15px;
    float: left;
    padding-right: 10px;
    padding-top: 3px;
    color: #000;
}

.bp-details ul li .categories {
    float: left;
    margin-top: 2px;
}

.tags ul li a {
    padding: 8px 10px 8px 10px;
    border: 1px solid #c3c3c3;
    font-size: 12px;
    transition: border .25s ease-in-out;
    display: block;
}

.tags ul li a:hover {
    border: 1px solid #676767;

}

.tags ul li {
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 4px;
}

/* 27: Blog post */

.blog-post-page .content-area {
    margin-top: 20px;
}

.i-details {
    position: relative;
}

.i-details .likes {
    position: static;
    margin-bottom: 30px;
    margin-top: 10px;
}

.i-details .categories li {
    margin-bottom: 5px;
}

.i-details .categories li a {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
}

.i-details .pri-list li h3, .pri-body .pri-list li h3 {
    font-size: 20px;
}

.i-details .pri-list > li {
    display: block;
    clear: both;
}

.i-details .bp-details {
    padding-top: 30px;
}

.i-post-photo img {
    width: 100%;
    height: auto;
}

.i-post-photo {
    margin-bottom: 50px;
}

.single-post .content-area div > p a {
    border-bottom: 1px solid #000;
}

.single-post .project-changer a {
    border: none;
}

.single-post .project-changer.project-changer-link-pages a:first-child {
    float: left;
}

.single-post .content-area iframe,
.single-post .content-area iframe embed {
    width: 100%;
}

.mejs-container * {
    color: #fff;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
    background: #000 !important;
}

.wp-caption-text {
    padding: 10px;
}

.single-post .content-area,
.single-portfolio .content-area,
.page .content-area {
    width: 100%;
}

.single-post .content-area img,
.single-portfolio .content-area img,
.page .content-area img {
    max-width: 100%;
    height: auto;
}

.i-post-title {
    margin-bottom: 0px;
    position: relative;
}

.i-post-title .likes-inside {
    top: 0;
}

.i-post-title .large-title {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 50px;
}

/* 28: Blog isotope */

.bpm-image img {
    width: 100%;
    height: auto;
}

.bpm-hover {
    position: absolute;
    top: 0;
}

.bp-masonry .blogTitle h5 {
    font-size: 22px;
    font-size: 19px;
    font-weight: 300;
    line-height: 24px;
    margin-top: 5px;
    line-height: 30px;
    transition: opacity .25s ease-in-out;
}

.bp-masonry .blogTitle a:hover h5 {
    opacity: 0.7;
}

.bp-masonry {
    margin-top: 70px;
}

.bp-masonry .blogArticle {
    margin-bottom: 45px;
}

.bp-masonry .project-thumb {
    margin-bottom: 20px;
    position: relative;
}

.bp-masonry .bpm-hover img {
    width: 30px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.bp-masonry .bpm-hover {
    transition: opacity 0.3s ease;
    background: rgba(8, 171, 127, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.bp-masonry .bpm-hover:hover {
    opacity: 0.9;
}

/* 29: Description Box */

.dot_info {
    position: absolute;
    z-index: 50;
    left: 39%;
    top: 29%;
}

.dot_info a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.dot_info a:hover {
    opacity: 1;
}

.dot_info a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 10px;
    float: left;
    text-align: center;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
}

.dot_info_box {
    position: absolute;
    left: 70px;
    top: 50%;
    width: 270px;
    max-height: 164px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    padding: 15px;
    overflow-y: auto;
    transition: all 1s ease;
    cursor: default !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.toggle-animation {
    transition: all .6s ease;
    left: 50px;
    opacity: 0.8;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    visibility: visible;
}

.dot_info_box .scroll p {
    line-height: 22px;
    font-size: 13px;
    color: #8b8b8b;
}

/* 30: SVG Map */

@keyframes animated-mark {
    0% {
        border: solid 1px #000;
        opacity: 0;
    }
    100% {
        border: solid 5px #000;
        opacity: 0.3;
    }
}

.svg-map {
    width: 100%;
    text-align: center;
    position: relative;
}

.svg-map img {
    width: 100%;
    height: auto;
}

.svg_marker {
    position: absolute;
    left: 27.515152%;
    top: 32.537960954447%;
    margin-top: -20px;
    margin-left: -20px;
}

.svg_marker p.animated-mark {
    border: 1px solid #fff;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    float: left;
    background: none;
    -webkit-animation-name: animated-mark;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-direction: alternate;
    -webkit-animation-duration: 0.7s;
    height: 29px;
    width: 29px;
    margin-bottom: 0;
}

.svg_marker .map_location {
    margin-left: 45px;
    margin-top: 2px;
    margin-bottom: 0;
}

/* 31: Boostrap overwrites */

ul.nav-tabs.nav:before {
    position: absolute;
    content: " ";
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-bottom: 1px solid #c3c3c3;
}

ul.nav-tabs {
    padding: 0;
    position: relative;
    border-bottom: 0;
}

ul.nav-tabs li {
    border-radius: 0;
    padding: 0;
    border: none;
    margin: 0;
}

ul.nav-tabs li.active:after,
ul.nav-tabs li:after,
ul.nav-tabs li.active:before,
ul.nav-tabs li:before {
    border-radius: 0;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-width: 0;
    box-shadow: none;
}

ul.nav-tabs li a,
ul.nav-tabs li.active a {
    font-weight: 400;
    color: #555;
    padding: 15px 26px;
}

ul.nav-tabs > li {
    z-index: 1;
    border-bottom: 1px solid #c3c3c3;
}

ul.nav-tabs > li:after {
    content: "";
    width: 3px;
    position: absolute;
    right: -3px;
    height: 100%;
    top: 0;
    background: #fff;
}

ul.nav-tabs > li.active {
    border-bottom: 1px solid #000 !important;
}

ul.nav-tabs > li a {
    border: none !important;
    background: #fff;
    margin-right: 0;
    border-radius: 0;
}

ul.nav-tabs > li a:hover,
ul.nav-tabs > li.active a:hover {
    background: #f9f9f9 !important;
}

ul.nav-tabs > li.active a {
    background: #f9f9f9 !important;
}

/* 32: Shortcodes */

.tab-content {
    padding-top: 15px;
}

h4.panel-title {
    margin-top: 0;
    margin-bottom: 0;
}

h4.panel-title a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 400;
}

.panel-heading {
    border-radius: 0;
    padding: 0;
}

.panel-body {
    padding: 15px;
    font-size: 13px;
    font-weight: 300;
}

.accordions .panel {
    border-radius: 0;
    margin-bottom: -15px;
}

.panel-default {
    border: 1px solid #c3c3c3;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #ffffff;
}

/* 33: Clients */

.logo_holder {
    background: #FFFFFF;
    text-align: center;
    border: 1px solid #e7e7e7;
    margin-bottom: 30px;
    height: 200px;
    transition: border .2s ease-in-out;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    -moz-transition: border .2s ease-in-out;
    -ms-transition: border .2s ease-in-out;
}

.logo_holder:hover {
    border: 1px solid #c3c3c3;
}

.logo_holder .helper_full {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.logo_holder img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: opacity .2s ease-in-out;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
}

.logo_holder img:hover {
    opacity: 1;
}

/* 34: Services */

.service_row i {
    font-size: 50px;
    padding-bottom: 20px;
    padding-top: 30px;
}

.service_row h4 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
}

.service_row img {
    width: 100%;
    height: auto;
}

/* 35: Full screen header */

.pr-type-full .vertical-header {
    width: 300px;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    visibility: hidden;
}

.project-full-details, .mini-menu {
    float: left;
}

.project-full-details .pri-title .large-title {
    padding-right: 72px;
}

.project-full-details .likes.likes-inside {
    top: 0px;
}

.project-full-details .pri-list {
    margin-bottom: 0;
    overflow: hidden;
}

.project-full-details {
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    height: 100vh;
}

.mini-menu {
    background: #fff;
    width: 50px;
    height: 100vh;
}

.mini-menu a {
    display: block;
    height: 100%;
    width: 100%;
}

.phantom {
    width: 300px;
    background: #fff;
    float: left;
    height: 100vh;
}

.pf-holder {
    position: fixed;
    width: 1000px;
    background: #fff;
    z-index: 10;
    -webkit-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
    transition:         all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
    left: 0;
    top: 0;
}

.project-full-details {
    background: #fff;
    width: 650px;
    position: relative;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    padding: 50px 30px 50px 30px;
}

.project-full-details .pri-list li {
    display: inline-block;
    margin-right: 60px;
    float: left;
}

.project-full-details .pri-list > li:last-child {
    margin-right: 0;
}

.project-full-details  .pri-list li h3 {
    margin-top: 0;
    font-size: 20px;
}

.pri-details .pri-list {
    overflow-y: hidden;
}

.project-full-details  .pri-list .categories, .pri-details .pri-list .categories {
    position: relative;
    top: -3px;
}

.project-full-details  .pri-list .categories li, .pri-details .pri-list .categories li {
    margin-right: 5px;
    margin-bottom: 0;
    padding-left: 0;
}

.project-full-details  .pri-list .categories li a, .pri-details .pri-list .categories li a {
    font-size: 20px;
    font-weight: 200;
    color: #000;
    text-transform: uppercase;
}

.project-full-details .pri-title {
    padding-bottom: 20px;
}

.project-full-details .content-area {
    margin: 0;
}

.project-full-details .project-changer {
    margin-top: 40px;
}

.pf-holder.pf-closed {
    left: -950px;
    z-index: 9999999;
}

.opacity1{
    opacity: 1 !important;
}

.opacity0 {
    opacity: 0 !important;
}

.hm-menu {
    height: 40px;
    width: 40px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hm-menu span {
    height: 2px;
    width: 30px;
    background: #000;
    display: block;
    margin-bottom: 10px;
    margin-left: 10px;
    transition: all .6s ease;
}

.pf-opened .hm-menu span:nth-child(1) {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.pf-opened .hm-menu span:nth-child(2) {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 36: Video */

.videoPlayer {
    position: relative;
}

.videoPlayer .play-pause {
    display: none;
    position: absolute;
    color: #fff;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.videoPlayer .play-pause i {
    color: #fff;
    font-size: 50px;
}

.upload-video .video {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.youtube-video-mobile {
    display: none;
    height: 600px;
    border: none;
}

.youtube-video-mobile iframe {
    width: auto;
    height: 600px;
}

/* 37: Homepage projects full */

.c3 {
    width: 80%;
    margin-left: 20%;
}

.hp-full .single-project {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.hp-full .thumb-background {
    transition: all .20s ease-in-out;
    position: relative;
    top: 0;
}

.hp-full .single-project:hover .thumb-background {
    transform: none !important;
    top: -100%;
    position: relative;
}

.hp-full .single-project {
    background: #191919;
    margin-bottom: 0;
}

.hp-full .single-project a {
    display: block;
}

.hp-full .project-thumb {
    margin-bottom: 0;
}

.hp-full .project-info {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    transition: opacity .35s ease;
}

.hp-full .project-info > a{
    display: block;
    height: 100%;
    color: #fff;
    padding: 20px;
}

.hp-full .project-info p {
    color: #fff;
    opacity: 0.6;
    font-size: 13px;
    line-height: 19px;
}

.hp-full .project-name {
    height: auto;
}

.hp-full .single-project:hover .project-info {
    opacity: 1;
}

.hp-full .single-project .project-thumb, .hp-full .single-project .project-thumb .thumb-bgc {
    height: 250px;
}

.space-top {
    margin-top: 30px;
}

.hp-full .likes {
    left: 20px;
    bottom: 20px;
    right: auto;
    top: auto;
}

/* 38: Horizontal Projects */

.horizontal-projects {
    height: 100vh;
    overflow: hidden;
}

.horizontal-projects .horizontal-single-project {
    height: 100vh;
    width: 381px;
    background: url(../images/sample-pic.jpg) no-repeat;
    background-size: cover;
    position: relative;
}

.horizontal-projects .horizontal-single-project .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0, 0.6);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
}

.horizontal-projects .horizontal-single-project .overlay:hover {
    opacity: 0;
}

.horizontal-projects .horizontal-single-project .overlay h3 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-weight: 300;
    font-style: italic;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

/* 39: Horizontal Slider */

.horizontal-projects-slider .owl-item {
    overflow: hidden;
    background-color: #000;
}

.horizontal-projects-slider .owl-item:hover .item {
    opacity: 1;
}

.horizontal-projects-slider .item {
    height: 100vh;
    opacity: 0.4;
    transition: opacity .3s ease-in-out;
    position: relative;
}

.horizontal-projects-slider .item img {
    display: none;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.horizontal-projects-slider .hps-title  {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    padding: 25px;
    transform: translateY(-50%);
    width: 100%;
}

.horizontal-projects-slider .hps-title p {
    color: #fff;
}

.likes-hps {
    position: static;
}

.likes-hps i {
    color: #fff;
}

.hps-title h3 {
    font-weight: 400;
    margin-top: 10px;
    font-family: 'playfair display';
    font-size: 28px;
    font-style: italic;
    text-align: center;
}

.horizontal-projects-slider .owl-item {
    transition: .3s all ease-in-out;
}

.comma {
    padding-left: 0px !important;
    padding-right: 5px;
}

/* 40: Post Comments */

.comment-respond {
    padding-bottom: 40px;
    overflow: hidden;
}

h3#reply-title {
    margin-top: 0;
}

.post-comments .user-avatar {
    border-radius: 50%;
    float: left;
    overflow: hidden;
}

.post-comments .user-avatar img {
    width: 52px;
    height: 52px;
}

.post-comments .user-comment-data {
    margin-left: 60px;
}

.post-comments .comment-meta-data {
    margin-left: 60px;
    font-size: 12px;
}

.post-comments .comment-meta-data p {
    font-size: 12px;
}

.post-comments .comment-description {
    margin-top: 30px;
}

.first-level-comment > li {
    margin-bottom: 30px;
}

.second-level-comment {
    margin-top: 50px;
    margin-left: 50px;
}

.second-level-comment .comment{
    list-style-type: none;
}

.second-level-comment li {
    margin-bottom: 30px;
}

.user-comment-data .fn {
    font-style: initial;
}

.says {
    opacity: 0.7;
}

a.back-to-top {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background: transparent url("../images/svg/go-up.svg") no-repeat center;
    padding: 30px;
    border: none !important;
    -webkit-transition: 0.2s all;
    -ms-transition: 0.2s all;
    transition: 0.2s all;
}

a.back-to-top.bt-visible {
    opacity: 0.5;
    visibility: visible;
}

a.back-to-top:hover {
    opacity: 1 !important;
    background: transparent url("../images/svg/go-up.svg") no-repeat center;
}

.post-no-img .blogTitle {
    margin-left: 0px;
}

#sbi_images {
    padding-left: 0px !important;
    padding-top: 0px !important;
}

form input, textarea {
    transition: all .25s ease-in-out;
}

.page-template-team .c_section {
    margin-bottom: 0;
}

.i-post-photo-vertical {
    text-align: center;
}

.i-post-photo-vertical img {
    width: auto;
    max-width: 100%;
}

.site-title a {
    font-weight: 300;
}





/* Project Full Slider */

.project-full-slider-wrapper {
    padding: 0;
    height: 100vh;
}

.logged-in .project-full-slider-wrapper {
    height: calc(100vh - 32px);
}


/*.project-full-slider { height: 100%; }*/
/*#project-full-slider { height: 100%; }*/

.project-full-slider .owl-controls .owl-pagination {
    display: none;
}

.project-full-slider .owl-item {
    width: 100%;
    height: 100vh;
}

.logged-in .project-full-slider .owl-item {
    height: calc(100vh - 32px);
}

.project-full-slider div.pr-item {
    position: absolute;
    top: 0px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.project-full-slider .owl-carousel .pr-item-content {
    width: 70%;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.project-full-slider .owl-carousel .pr-item-content * {
    font-weight: 300;
    color: inherit;
}

.project-full-slider .owl-carousel .pr-item-content .buttons.button-1 { color: #fff; }
.project-full-slider .owl-carousel .pr-item-content .buttons.button-1:hover { color: #000; }
.project-full-slider .owl-carousel .pr-item-content .buttons.button-2:hover { color: #fff; }

.project-full-slider .owl-carousel .pr-item-content h1,
.project-full-slider .owl-carousel .pr-item-content h2,
.project-full-slider .owl-carousel .pr-item-content h3,
.project-full-slider .owl-carousel .pr-item-content h4,
.project-full-slider .owl-carousel .pr-item-content h5,
.project-full-slider .owl-carousel .pr-item-content h6
{
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 15px;
    position: relative;
}

.project-full-slider .owl-carousel .pr-item-content h1 { font-size: 60px; line-height: 62px; }
.project-full-slider .owl-carousel .pr-item-content h2 { font-size: 45px; line-height: 48px; }
.project-full-slider .owl-carousel .pr-item-content h3 { font-size: 40px; line-height: 43px; }
.project-full-slider .owl-carousel .pr-item-content h4 { font-size: 35px; line-height: 38px; }
.project-full-slider .owl-carousel .pr-item-content h5 { font-size: 30px; line-height: 33px; }
.project-full-slider .owl-carousel .pr-item-content h6 { font-size: 26px; line-height: 29px; }

.videoPlayer .ytplayer-mute {
    position: absolute;
    z-index: 30;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-shadow: 0px 0px 1px #000;
    padding: 15px;
    top: 0px;
    right: 0px;
    opacity: .2;
    transition: .25s all;
}

.videoPlayer .ytplayer-mute:hover {
    opacity: .7;
}

.videoPlayer .ytplayer-mute i {
    color: #fff;
    font-size: 22px;
    width: 22px;
}

.page-top.portfolio-page-top {
    margin-bottom: 60px;
}