/* -----------------------------------
   1. Globally Applied Styles
   2. Header + Mobile Menu
   3. Home Sections
   4. Blog + Blog Single
   5. Services
   6. Portfolio + Portfolio Single
   7. Clients
   8. Team
   9. Testimonials
   10. Contact
   11. Footer
   12. 404 Error Page
   13. Responsivity Media Queries
   ----------------------------------- */

/* --------------------------
   1. Globally Applied Styles
    -------------------------- */


img {
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    height: auto;
    margin-top: 50px;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
a {
    font-family: 'Open Sans', sans-serif;
}

.display-none {
    display: none !important;
}

.hidden {
    display: none !important;
}

.white-header-without-img {
    font-size: 25px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}

.white-header-without-img:hover {
    color: #fff;
    text-decoration: none;
}

.white-header .social-icons a {
    color: #fff;
}

.header-without-img {
    text-decoration: none;
    font-size: 25px;
    letter-spacing: 1px;
}

.header-without-img:hover {
    text-decoration: none;
    color: inherit;
}

.no-featured-image {
    opacity: 1 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.no-featured-image p {
    padding-top: 15px;
    color: #fff;
}

.portfolio .works .masonry-photos .no-featured-image {
    height: 250px !important;
}

.portfolio .works .work-image .no-featured-image .overlay-inner h4,
.portfolio .works .work-image .no-featured-image .overlay-inner hr,
.portfolio .works .work-image .no-featured-image .overlay-inner span,
.blog-wrapper .blog .blog-content .no-featured-image .overlay-inner a h4,
.blog-wrapper .blog .blog-content .no-featured-image .overlay-inner .category,
.blog-wrapper .blog .blog-content .no-featured-image .date {
    -webkit-transform: translateY(0) !important;
    */
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

.comments-list {
    list-style: none;
}

.hidden-portfolio {
    display: none !important;
}

.comment-line {
    padding: 0 !important;
}

/* =WordPress Core
-------------------------------------------------------------- */
.sticky {} .sticky:before {
    width: 10px;
    content: "";
    height: 17px;
    position: absolute;
    right: 20px;
    top: 0;
    background: url(../images/sticky.png);
    z-index: 99;
}

.alignnone {
    margin: 5px 20px 20px 0;
    height: auto;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.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. */
}

.bypostauthor {
    background-color: #f3f1f1;
}

.gallery-caption {
    padding: 10px;
    color: #666;
    font-size: 13px;
}

/*=========SITE-LOADER=========*/
.site-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99999999999999;
}

.spinner {
    width: 70px;
    height: 70px;
    background-color: #30B9C1;
    position: absolute;
    top: 50%;
    margin-top: -35px;
    left: 50%;
    margin-left: -35px;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg)
    }

}

@keyframes rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }

}

/*=========SITE-LOADER=========*/
.mtn body {
    margin-top: 0
}

.title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 30px;
    color: #6E6D6D;
    letter-spacing: 5px;
    font-family: 'Raleway', sans-serif;
    margin-left: -15px;
    padding-top: 40px;
}

.title span {
    color: #30B9C1;
    float: right;
    font-size: 45px;
}

.under-title {
    padding: 0;
    margin-left: -15px;
}

.under-title span {
    margin-top: 15px;
    color: #868484;
    line-height: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 30px;
}

.button {
    display: block;
    text-align: center;
    margin-top: 80px;
}

.button a {
    background-color: rgba(51, 51, 51, 0.5);
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    padding: 12px 24px;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
}

.button a i {
    margin-left: 5px;
    font-size: 14px;
}

.button a:hover {
    background-color: rgba(51, 51, 51, 0.8);
}

.header,
.header .logo,
.header .nav-bar .menu-bar,
.header .nav-bar .menu,
.header .nav-bar .menu li ul,
.header .nav-bar .menu li a,
.header .nav-bar .menu-bar .line,
.header .nav-bar .menu-bar .line:before,
.header .nav-bar .menu-bar .line:after,
.portfolio .works .work-image .overlay-work,
.portfolio ul li a,
.portfolio-single .single-content .left-part .post-info i,
.portfolio-single .single-content .left-part .post-info span,
.portfolio-single .icon-th > i,
.work-image .overlay .overlay-inner h4,
.work-image .overlay .overlay-inner span,
.work-image .overlay .overlay-inner hr,
.work-image .overlay,
.slider-controls #next,
.slider-controls #prev,
.testimonials .testimonials-content .testimonial-excerpt,
.testimonials .testimonials-content .testimonial-thumbnail,
.contact .content .widget .widget-content input,
.contact .content .widget .widget-content textarea,
.mobile-menu ul:first-of-type li a,
.testimonials .testimonials-content .testimonial-excerpt,
.team .team-content .description .team-s-icons li a,
.clients .clients-wrapper .client,
.button a,
.social-icons ul li a,
.mobile-menu-open .mobile-menu-trigger span:before,
.mobile-menu-open .mobile-menu-trigger span:after,
.mobile-menu-open .mobile-menu-trigger span,
.blog-wrapper .blog .blog-content .overlay,
.blog-wrapper .blog .blog-content .overlay .overlay-inner a h4,
.blog-wrapper .blog .blog-content .overlay .overlay-inner .category,
.blog-wrapper .blog .blog-content .overlay .date,
.blog-single .blog-single-content .comments .comment-form input,
.blog-single .blog-single-content .comments .comment-form textarea,
.blog-single .blog-single-content .comments .comment-form .submit,
.error-404 .erorr-button a {
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

.cf:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both
}

.cf {
    *zoom: 1
}

.bx-wrapper .bx-viewport {
    left: 0 !important;
    overflow: visible !important;
}

.slider-controls #next,
.slider-controls #prev {
    background-color: rgba(244, 114, 145, 0.77)
}

.slider-controls #next:hover,
.slider-controls #prev:hover {
    background-color: #30B9C1
}

.slider-controls #next i,
.slider-controls #prev i {
    color: #fff;
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    text-align: center;
}

/* ------------------------
    2. Header + Mobile Menu
    ------------------------ */
.main-photo {
    position: relative;
    width: 100%;
    height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: 90px;
    background-color: #fff;
    border-bottom: 1px solid #FAF5F5;
}

.contact-header {
    border-bottom: 0;
    background: transparent;
}

.header .logo a {
    text-decoration: none;
}

.header .logo a h3 {
    color: #30B9C1;
    line-height: 90px;
    letter-spacing: 2px;
}

.mobile-logo .logo a {
    text-decoration: none;
}

.mobile-logo .logo a h3 {
    color: #30B9C1;
    letter-spacing: 2px;
}

.header.onscroll {
    height: 65px;
}

.white-header {
    background-color: transparent;
    border: none;
}

.white-header ul li ul li a {
    color: #fff !important;
}

.white-header .nav-bar .menu-bar .line,
.white-header .nav-bar .menu-bar .line:after,
.white-header .nav-bar .menu-bar .line:before {
    background-color: #fff !important;
}

.header .logo {
    position: absolute;
    left: 60px;
    line-height: 90px;
    z-index: 1;
    width: 120px;
}

.header.onscroll .logo {
    line-height: 65px;
    width: 95px;
}

.header .logo img {
    width: 100%
}

.header.white-header .logo .second-img {
    display: none
}

.header .nav-bar {
    float: right;
    position: relative;
    margin-right: 60px;
    width: 100%;
}

.header.onscroll .nav-bar .menu-bar {
    top: 8px;
}

.header .nav-bar .menu-bar {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 21px;
    padding: 15px;
    cursor: pointer;
}

.header .nav-bar .menu-bar.open .line {
    background-color: transparent !important;
}

.header .nav-bar .menu-bar.open .line:before {
    -webkit-transform: translateY(6px) rotateZ(-45deg);
    -moz-transform: translateY(6px) rotateZ(-45deg);
    -ms-transform: translateY(6px) rotateZ(-45deg);
    -o-transform: translateY(6px) rotateZ(-45deg);
    transform: translateY(6px) rotateZ(-45deg);
}

.header .nav-bar .menu-bar.open .line:after {
    -webkit-transform: translateY(-6px) rotateZ(45deg);
    -moz-transform: translateY(-6px) rotateZ(45deg);
    -ms-transform: translateY(-6px) rotateZ(45deg);
    -o-transform: translateY(-6px) rotateZ(45deg);
    transform: translateY(-6px) rotateZ(45deg);
}

.header .nav-bar .menu-bar .line {
    width: 20px;
    height: 2px;
    background-color: #686868;
    position: relative;
    top: -4px;
    display: inline-block;
}

.header .nav-bar .menu-bar .line:before,
.header .nav-bar .menu-bar .line:after {
    content: "";
    position: absolute;
    top: -6px;
    width: 20px;
    height: 2px;
    background-color: #686868;
}

.header .nav-bar .menu-bar .line:after {
    top: 6px;
}

.header .nav-bar .menu {
    float: right;
    margin-right: 50px;
    position: relative;
    line-height: 90px;
}

.header .nav-bar .menu li {
    display: inline-block;
    margin-left: 20px;
    padding-bottom: 37px;
}

.header.onscroll .nav-bar .menu {
    line-height: 65px;
}

.header.onscroll .nav-bar .menu li {
    padding-bottom: 25px;
}

.header.onscroll .nav-bar .menu li li {
    padding-bottom: 0;
}

.header .nav-bar .menu li:first-child {
    margin-left: 0;
}

.header .nav-bar .menu li:last-child a {
    border-right: none;
}

.header .nav-bar .menu li a {
    color: #686868;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    display: block;
    text-decoration: none;
    line-height: 1;
    padding-right: 20px;
    border-right: 1px solid #30B9C1;
}

.header .nav-bar .menu li a:hover {
    color: #30B9C1;
    text-decoration: none;
}

.white-header .nav-bar .menu li a {
    color: #fff
}

.header .nav-bar .menu li ul {
    position: absolute;
    background-color: rgba(51, 51, 51, 0.9);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    top: 100%;
    padding: 15px 20px;
}

.header .nav-bar .menu li:hover ul {
    visibility: visible;
    opacity: 1;
}

.header .nav-bar .menu li ul li {
    display: block;
    float: none;
    line-height: 25px;
    width: 165px;
    margin: 0;
    border-right: none;
    padding-top: 0;
    padding-bottom: 0;
}

.header .nav-bar .menu li ul li:last-child {
    border-bottom: none;
}

.header .nav-bar .menu li ul li a {
    color: #ffffff;
    font-size: 13px;
    line-height: 36px;
    text-transform: capitalize;
    padding: 2px 0;
    border-right: none;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .nav-bar .menu li ul li a:hover {
    color: #30B9C1
}

.header .nav-bar .menu li ul li a:after {
    content: "";
    display: none;
}

.header .nav-bar .menu li ul li:last-child a {
    border-bottom: none;
}

.header.onscroll .social-icons {
    line-height: 65px;
}

.social-icons {
    position: absolute;
    right: 70px;
    line-height: 90px;
    display: none;
    float: right;
}

.social-icons ul {
    padding: 0 !important;
    margin-right: 0 !important;
    float: none !important;
}

.social-icons ul li {
    border: none !important;
    display: inline-block;
    margin-left: 20px;
}

.social-icons ul li a {
    border-bottom: 1px solid;
    margin-left: 20px;
    font-size: 16px;
    text-align: center;
    color: #30B9C1;
    opacity: .8;
}

.social-icons ul li a:first-child {
    margin-left: 0;
}

.social-icons ul li a:hover {
    opacity: 1;
}

/* Responsive menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 9999999;
    border-width: 0px;
    border-style: solid;
    border-color: #fff;
    background-color: rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
    transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
}

.mobile-menu.mobile-menu-open {
    height: 100%;
    border-width: 0px 0px 50px 150px;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: border-width 0.3s, background-color 0.3s;
    transition: border-width 0.3s, background-color 0.3s;
}

.mobile-overlay {
    position: absolute;
    width: 100%;
}

.mobile-menu-open .mobile-overlay {
    height: 100%
}

.mobile-menu-trigger {
    position: fixed;
    top: 7px;
    left: 20px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 48px;
    cursor: pointer;
}

.mobile-menu #mobile-menu2 {
    display: none;
}

.mobile-menu-open #mobile-menu2 {
    display: block;
}

.mobile-menu-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 8%;
    background-color: #686868;
    font-size: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.mobile-menu-trigger span:before,
.mobile-menu-trigger span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #686868;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.mobile-menu-open .mobile-menu-trigger span:before,
.mobile-menu-open .mobile-menu-trigger span:after,
.mobile-menu-open .mobile-menu-trigger span {
    background: #A3A3A3;
}

.mobile-menu-trigger span:before {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
}

.mobile-menu-trigger span:after {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
}

.mobile-menu-open .mobile-menu-trigger span:before {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
}

.mobile-menu-open .mobile-menu-trigger span:after {
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
}

.mobile-menu ul {
    position: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu ul:first-of-type {
    top: 65px;
    left: 0;
    height: 100%;
}

.mobile-menu ul:nth-of-type(2) {
    right: 5px;
    bottom: 0;
}

.mobile-menu ul li,
.mobile-menu ul li a {
    display: block
}

.mobile-menu ul:nth-of-type(2) li {
    float: left
}

.mobile-menu ul li {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
    transition: transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
}

.mobile-menu.mobile-menu-open ul:first-of-type li,
.mobile-menu.mobile-menu-open ul:nth-of-type(2) li {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s 0.1s;
    transition: transform 0.3s, opacity 0.3s;
}

/* First menu */
.mobile-menu ul:first-of-type li {
    width: 150px;
    padding-top: 1px;
    padding-bottom: 1px;
    border-top: 1px solid #F1F1F1;
    -webkit-transform: translate3d(-100%, 50%, 0);
    transform: translate3d(-100%, 50%, 0);
}

.mobile-menu.mobile-menu-open ul:first-of-type li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Second menu */
.mobile-menu .mobile-logo {
    position: relative;
    width: 100%;
    top: 12px;
}

.mobile-menu .mobile-logo .logo {
    float: right;
    margin-right: 20px;
}

.mobile-menu .mobile-logo .logo img {
    width: 100px
}

.mobile-menu ul:nth-of-type(2) li {
    width: 40px;
    height: 50px;
    line-height: 50px;
    -webkit-transform: scale();
    transform: scale();
}

.mobile-menu.mobile-menu-open ul:nth-of-type(2) li:first-child {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.mobile-menu.mobile-menu-open ul:nth-of-type(2) li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.mobile-menu.mobile-menu-open ul:nth-of-type(2) li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.mobile-menu.mobile-menu-open ul:nth-of-type(2) li:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.mobile-menu.mobile-menu-open ul:nth-of-type(2) li {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.mobile-menu ul li a {
    display: block;
    outline: none;
    text-decoration: none;
}

.mobile-menu ul:first-of-type li a {
    padding: 0 8px;
    color: #686868;
    letter-spacing: 1px;
    font-size: 11px;
    font-family: 'Raleway', sans-serif;
}

.mobile-menu ul:nth-of-type(2) li a {
    text-align: center;
    color: #a3a3a3;
    font-size: 18px;
}

.mobile-menu ul:nth-of-type(2) li a:hover {
    color: #30B9C1
}

.mobile-menu ul li a:before {
    color: #fff;
    font-size: 24px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.mobile-menu ul:first-of-type li a:hover,
.mobile-menu ul:first-of-type li a:focus,
.mobile-menu ul li a:hover:before,
.mobile-menu ul li a:focus:before {
    color: #30B9C1
}

/* -----------------
    3. Home Sections
    ----------------- */
.home-slider {
    width: 100%;
    height: 100vh;
    position: relative;
}

.home-slider .bx-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

.home-slider .bx-viewport {
    left: 0 !important;
    height: 100% !important;
}

.home-slider ul {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.home-slider ul .slide {
    height: 100vh;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    visibility: visible;
}

.home-slider ul .slide .slide-content {
    position: absolute;
    top: 0;
    width: 100%;
    margin: auto;
    text-align: center;
    top: 50%;
    margin-top: -60px;
}

.home-slider ul .slide .slide-content h1 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 12px;
    font-size: 43px;
}

.home-slider ul .slide .slide-content .line {
    width: 50px;
    background-color: #fff;
    height: 3px;
    margin: auto;
    margin-top: 20px;
}

.home-slider ul .slide .slide-content span {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    color: #fff;
    font-size: 26px;
    display: block;
    margin-top: 20px;
}

.home-slider ul .slide .slide-overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.home-slider .slider-controls {
    z-index: 999
}

.slider-controls #next,
.slider-controls #prev {
    background-color: rgba(0, 0, 0, 0.35)
}

.slider-controls #prev {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 6px;
    z-index: 99;
    border-radius: 3px;
}

.home-slider .slider-controls #prev i {
    color: #fff;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    text-align: center;
}

.slider-controls #next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 6px;
    z-index: 99;
    border-radius: 3px;
}

.home-slider .slider-controls #next i {
    color: #fff;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    text-align: center;
}

/* ----------------------
    4. Blog + Blog Single
    ---------------------- */
.blog-wrapper {
    padding: 70px 0 90px 0
}

.blog-wrapper .blog {
    margin-top: 30px
}

.blog-wrapper .blog > .row {
    margin-right: 0;
    margin-left: 0;
}

.blog-wrapper .blog .blog-content {
    padding-right: 0;
    padding-left: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 350px !important;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}

.blog-wrapper .blog .blog-content .overlay {
    background-color: #30B9C1;
    left: 3%;
    right: 3%;
    bottom: 4%;
    top: 4%;
    width: auto;
    height: auto;
    position: absolute;
    opacity: 0;
}

.blog-wrapper .blog .blog-content:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.blog-wrapper .blog .blog-content:hover .overlay .overlay-inner a h4,
.blog-wrapper .blog .blog-content:hover .overlay .date,
.blog-wrapper .blog .blog-content:hover .overlay .overlay-inner .category {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.blog-wrapper .blog .blog-content .overlay .overlay-inner {
    position: absolute;
    top: 50px;
    width: 80%;
    left: 50%;
    margin-left: -227.5px;
}

.blog-wrapper .blog .blog-content .overlay .overlay-inner a {
    text-decoration: none;
    color: inherit;
}

.blog-wrapper .blog .blog-content .overlay .overlay-inner a h4 {
    font-size: 28px;
    color: #fff;
    letter-spacing: 2px;
    text-align: left;
    text-transform: capitalize;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}

.blog-wrapper .blog .blog-content .overlay .overlay-inner .category {
    color: #fff;
    font-size: 15px;
    text-align: left;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-family: "Crete Round";
    font-style: italic;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
}

.blog-wrapper .blog .blog-content .overlay .overlay-inner .category i {
    font-size: 15px;
    margin-right: 7px;
}

.blog-wrapper .blog .blog-content .overlay .date {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: 20px;
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
}

/*
    Blog Single
*/
.blog-single {
    padding-bottom: 50px
}

.blog-single .blog-single-headphoto {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

.blog-single .blog-single-headphoto .overlay {
    width: 100%;
    height: 100%;
    background-color: #30B9C0;
    position: absolute;
    opacity: .2;
    top: 0;
    left: 0;
}

.blog-single .blog-single-headphoto .overlay-higher-opacity {
    opacity: 0.7;
}

.blog-single .blog-single-headphoto .underline {
    display: block;
    text-align: center;
    color: #fff;
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 50%;
    margin-top: -34.5px;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.blog-single .blog-single-headphoto .underline:after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    margin: auto;
    border-bottom: 2px solid;
    border-color: inherit;
    margin-top: 30px;
}

.blog-single .blog-single-headphoto .blog-info {
    position: absolute;
    bottom: 35%;
    width: 100%;
    z-index: 2;
    display: block;
    text-align: center;
}

.blog-single .blog-single-headphoto .blog-info span {
    color: #fff;
    margin-left: 40px;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
}

.blog-single .blog-single-headphoto .blog-info span a {
    text-decoration: none;
    color: inherit;
}

.blog-single .blog-single-headphoto .blog-info span:first-child {
    margin-left: 0
}

.blog-single .blog-single-headphoto .blog-info span i {
    margin-right: 7px
}

.blog-single .blog-single-content {
    padding: 60px 0
}

.blog-single .blog-single-content iframe {
    width: 100%;
}

.blog-single .blog-single-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #717171;
}

.blog-single .blog-single-content .paragraph-title {
    margin-top: 30px
}

.blog-single .blog-single-content .paragraph-title h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #717171;
}

.blog-single .blog-single-content .paragraph-title p {
    margin-top: 15px
}

.blog-single .blog-single-content p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: .02em;
    font-size: 13px;
    line-height: 26px;
    margin-top: 30px;
    color: #686868;
}

.blog-single .blog-single-content blockquote {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    letter-spacing: .02em;
    font-size: 17px;
    font-style: italic;
    line-height: 24px;
    margin-top: 30px;
    border-left: 5px solid #30B9C1;
    color: #686868;
}

.blog-single .blog-single-content blockquote cite {
    color: #666;
    font-weight: bold;
}

.blog-single .blog-single-content blockquote cite a {
    color: inherit;
    text-decoration: none;
}

.blog-single .blog-single-content blockquote p {
    margin: 0;
    color: #686868;
}

.blog-single .blog-single-content .tags {
    margin-top: 40px
}

.blog-single .blog-single-content .tags span {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #30B9C1;
    letter-spacing: 1px;
}

.blog-single .blog-single-content .tags span i {
    margin-right: 5px
}

.blog-single .blog-single-content .tags ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.blog-single .blog-single-content .tags ul a {
    display: inline-block;
    color: #686868;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    margin-left: 5px;
    text-decoration: none;
}

.blog-single .blog-single-content .comments {
    margin-top: 80px
}

.blog-single .blog-single-content .comments h4 {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 15px;
    color: #4A4A4A;
    margin-top: 30px;
}

.blog-single .blog-single-content .comments .comment {
    padding: 50px 0 30px 80px
}

.blog-single .blog-single-content .comments .comment .user-img {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
}

.blog-single .blog-single-content .comments .comment .user-img img {
    border-radius: 50%;
    width: 100%;
}

.blog-single .blog-single-content .comments .comment .user-name {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.blog-single .blog-single-content .comments .comment .comment-date {
    margin-top: 0;
    color: #30B9C1;
}

.blog-single .blog-single-content .comments .comment .comment-text {
    margin-top: 10px
}

.blog-single .blog-single-content .comments .comment a {
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 15px;
    color: #686868;
    display: block;
}

.blog-single .blog-single-content .comments .comment a::before {
    font-family: "FontAwesome";
    content: "\f075";
    padding-right: 5px;
    color: #999;
}

.blog-single .blog-single-content .comments .comment-form {
    margin-top: 60px
}

.blog-single .blog-single-content .comments .comment-form h4 {
    margin-bottom: 20px
}

.blog-single .blog-single-content .comments .comment-form input,
.blog-single .blog-single-content .comments .comment-form textarea {
    border: 1px solid transparent;
    padding: 10px 25px;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 20px;
    outline: none;
    font-size: 13px;
    color: #000;
    height: 50px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.blog-single .blog-single-content .comments .comment-form textarea {
    height: 160px;
    resize: none;
}

.blog-single .blog-single-content .comments .comment-form input:focus,
.blog-single .blog-single-content .comments .comment-form textarea:focus {
    border: 1px solid #30B9C1
}

.blog-single .blog-single-content .comments .comment-form .submit {
    background-color: #30B9C1;
    border: none !important;
    color: #fff;
    font-size: 14px;
    opacity: .8;
}

.blog-single .blog-single-content .comments .comment-form .submit:hover {
    opacity: 1
}

.blog-single .blog-single-content .logged-in-as a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

/* ------------
    5. Services
    ------------ */
.services {
    padding: 70px 0 80px 0;
}

.services .button {
    margin-top: 50px;
}

.services .services-content {
    margin-top: 30px;
}

.services .services-content .service-con {
    margin-bottom: 30px;
}

.services .services-content .service-con .service-img {
    position: relative;
}

.services .services-content .service-con .service-img img {
    width: 100%;
}

.services .services-content .service-con .services-inner-content {
    background-color: rgba(51, 51, 51, 0.9);
    padding: 55px 40px;
    position: relative;
}

.services .services-content .service-con .services-inner-content:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color: transparent transparent rgba(51, 51, 51, 0.88) transparent;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -15px;
    z-index: 999;
}

.services .services-content .service-con .services-inner-content .title-icon {
    position: relative;
}

.services .services-content .service-con .services-inner-content .title-icon span {
    position: absolute;
    right: 10px;
    font-size: 48px;
    color: #30B9C1;
    top: -25px;
}

.services .services-content .service-con .services-inner-content .title-icon .service-title {
    color: #fff;
    font-family: "Crete Round";
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
    font-style: italic;
    left: 0;
    top: 0;
}

.services .services-content .service-con .services-inner-content p {
    line-height: 21px;
    font-size: 13px;
    color: #fff;
    display: block;
    margin-top: 50px;
}

/* --------------------------------
    6. Portfolio + Portfolio Single
    -------------------------------- */
.portfolio {
    padding: 80px 0 110px 0
}

.portfolio .works {
    margin-top: 40px
}

.portfolio .works {
    margin-top: 60px
}

.portfolio .works .work-image {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.portfolio .works .work-image img {
    width: 100%
}

.portfolio .works .work-image a:hover {
    text-decoration: none
}

.portfolio .works .four-columns img {
    width: 100%;
    height: 215px;
    min-height: 215px;
}

.portfolio .works .three-columns img {
    width: 100%;
    height: 280px;
    min-height: 280px;
}

.portfolio .works .two-columns img {
    width: 100%;
    height: 425px;
    min-height: 425px;
}

.portfolio .works .masonry-photos {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
}

.portfolio .works .masonry-photos img {
    height: auto;
    min-height: 0;
}

.portfolio .works .four-columns .overlay {
    left: 7% !important;
    right: 7% !important;
}

.portfolio .works .overlay .overlay-inner a {
    color: inherit;
    text-decoration: none;
}

.portfolio .works .work-image .overlay:hover {
    opacity: 1
}

.portfolio .works .work-image .overlay {
    left: 5%;
    right: 5%;
    bottom: 4%;
    top: 4%;
    width: auto;
    height: auto;
    position: absolute;
    background-color: #30B9C1;
    opacity: 0;
}

.portfolio .works .work-image .overlay .overlay-inner {
    position: absolute;
    top: 50%;
    width: 100%;
    margin: auto;
    margin-top: -35px;
    text-align: center;
}

.portfolio .works .work-image .overlay .overlay-inner h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
}

.portfolio .works .work-image:hover .overlay .overlay-inner h4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.portfolio .works .work-image:hover .overlay .overlay-inner span {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.portfolio .works .work-image:hover .overlay .overlay-inner hr {
    width: 30px;
}

.portfolio .works .work-image .overlay .overlay-inner hr {
    width: 0;
    border: 1px solid #fff;
    margin-top: 13px;
    margin-bottom: 13px;
}

.portfolio .works .work-image .overlay .overlay-inner span {
    font-family: "Crete Round";
    font-style: italic;
    letter-spacing: 1px;
    line-height: 13px;
    font-size: 16px;
    color: #fff;
    display: block;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}

.portfolio .works .home-photography {
    position: relative;
    float: left;
    padding: 0;
    margin: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.portfolio .works .home-photography img {
    width: auto;
    height: 330px;
}

.portfolio .works .home-photography .overlay {
    bottom: 5% !important;
    top: 5% !important;
}

/*
    Portfolio Single
*/
.portfolio-single {
    position: relative
}

.portfolio-slider {
    position: relative
}

.portfolio-slider ul {
    margin: 0;
    padding: 0;
}

.portfolio-single .intro-bg {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
}

.portfolio-single .portfolio-slider .overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.portfolio-single .intro-bg img {
    width: 100%
}

.portfolio-single .slider-controls #next {
    position: absolute;
    z-index: 99;
    top: auto;
    bottom: 80px;
    right: 50px;
}

.portfolio-single .slider-controls #prev {
    position: absolute;
    z-index: 99;
    right: 0;
    left: auto;
    margin-right: 104px;
    top: auto;
    bottom: 80px;
}

.portfolio-single .single-content {
    width: 100%;
    padding: 20px 0 40px 0;
}

.portfolio-single .single-content {
    padding: 55px 0
}

.portfolio-single .portfolio-content h4 {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #30B9C1;
}

.portfolio-single .portfolio-content p {
    margin-top: 15px;
    color: #686868;
    line-height: 25px;
    font-size: 13px;
}

.portfolio-single .portfolio-content hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

.portfolio-single .portfolio-content .portfolio-services {
    margin-top: 40px
}

.portfolio-single .portfolio-content .portfolio-services h5 {
    letter-spacing: 2px;
    margin: 20px 0 7px 0;
    color: #30B9C1;
    font-size: 14px;
    font-family: "Crete Round";
    font-style: italic;
}

.portfolio-single .portfolio-content .portfolio-services span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #686868;
}

.portfolio-single .portfolio-content .portfolio-services span a {
    color: inherit;
    text-decoration: none;
}

.portfolio-single .portfolio-img img {
    margin-top: 30px;
    width: 100%;
}

.portfolio-single .portfolio-img img:first-child {
    margin-top: 0
}

/* -----------
    7. Clients 
    ----------- */
.clients {
    padding: 80px 0 110px 0;
}

.clients .clients-wrapper {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

.clients .clients-wrapper.row {
    margin: 0;
    margin-top: 30px;
}

.clients .clients-wrapper .col-md-3 {
    padding: 0;
}

.clients .clients-wrapper .client {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    text-align: center;
}

.clients .clients-wrapper .client:hover {
    background-color: #F0F0F0;
}

.clients .clients-wrapper .client img {
    height: 140px;
    width: auto;
    margin: 50px auto;
    max-width: 80%;
}

/* --------
    8. Team
    -------- */
.team .team-content {
    position: absolute;
    top: 50vh;
    margin-top: -171.5px;
}

.team .team-content .team-photo {
    height: 370px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.team .team-content .description {
    padding: 40px 0
}

.team .team-content .description .team-name {
    font-family: 'Raleway', sans-serif;
    color: #686868;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
}

.team .team-content .description .team-category {
    display: block;
    font-family: "Crete Round";
    font-style: italic;
    padding: 5px 0 15px 0;
    color: #30B9C1;
}

.team .team-content .description .desc {
    font-size: 13px;
    line-height: 22px;
    color: #666666;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.team .team-content .description .team-s-icons {
    margin-top: 20px;
    padding: 0;
}

.team .team-content .description .team-s-icons li {
    display: inline-block;
    margin-left: 5px;
}

.team .team-content .description .team-s-icons li:first-child {
    margin-left: 0
}

.team .team-content .description .team-s-icons li a {
    font-size: 15px;
    background-color: #fff;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    color: #30B9C1;
}

.team .team-content .description .team-s-icons li:hover a {
    background-color: #30B9C1;
    color: #fff;
}

.team .team-progress-bar {
    padding: 60px 0
}

.team .team-progress-bar .progress-name {
    font-size: 13px;
    display: block;
    padding-bottom: 5px;
    font-family: "Crete Round";
    font-weight: normal;
    font-style: italic;
    letter-spacing: 1px;
    color: #686868;
}

.team .team-progress-bar .progress {
    background-color: #d6d6d6;
    box-shadow: none;
    border-radius: 0;
    height: 10px;
}

.team .team-progress-bar .progress .progress-bar {
    background-color: #30B9C1
}

.team .slider-controls #next {
    position: absolute;
    top: 50%;
    right: 7px;
    margin-top: -25px;
    z-index: 9999;
    background-color: #30B9C1;
}

.team .slider-controls #prev {
    position: absolute;
    top: 50%;
    left: 7px;
    margin-top: -25px;
    z-index: 9999;
    background-color: #30B9C1;
}

.team .slider-controls #prev:hover,
.team .slider-controls #next:hover {
    opacity: 1
}

/* ----------------
    9. Testimonials 
    ---------------- */
.testimonials-wrapper {
    margin-top: 110px
}

.testimonials {
    padding: 30px 0 80px 0
}

.testimonials .testimonials-content .testimonial-grid {
    margin-bottom: 60px
}

.testimonials .testimonials-content .testimonial-excerpt {
    border: 2px solid #ededed;
    padding: 30px 30px 45px 30px;
    position: relative;
}

.testimonials .testimonials-content .testimonial-excerpt p {
    letter-spacing: 0.3px;
    color: #7E7E7E;
    line-height: 25px;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
}

.testimonials .testimonials-content .testimonial-excerpt .author-name {
    color: #30B9C1;
    font-size: 17px;
    float: right;
    text-decoration: none;
    padding-top: 10px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

.testimonials .testimonials-content .testimonial-thumbnail {
    width: 70px;
    display: block;
    margin: auto;
    margin-top: 40px;
}

.testimonials .testimonials-content .testimonial-thumbnail img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #30B9C1;
}

/* ------------
    10. Contact
    ------------ */
.contact .map {
    height: 100vh;
}

.contact .map #map-canvas {
    width: 100%;
    height: 100%;
}

.contact .content {
    padding: 40px 0 90px 0
}

.contact .content .main-contact {
    margin: auto;
    float: none;
}

.contact .content .widget .widget-title {
    display: block;
    text-align: center;
    margin: 50px 0 60px 0;
}

.contact .content .widget .widget-title h2 {
    font-size: 25px;
    font-weight: 600;
    color: #626262;
    letter-spacing: 4px;
}

.contact .content .widget .widget-title span {
    margin-top: 15px;
    font-size: 13px;
    display: block;
    color: #999999;
}

.contact .content .widget .widget-title hr {
    width: 70px;
    display: block;
    margin: auto;
    margin-top: 15px;
    border: 1px solid #ddd;
}

.contact .content .widget .widget-content .get-in-touch li {
    list-style: none;
    position: relative;
    padding-bottom: 30px;
}

.contact .content .widget .widget-content .get-in-touch li i {
    color: #30B9C1;
    font-size: 18px;
    position: absolute;
    margin-top: 1px;
}

.contact .content .widget .widget-content .get-in-touch li p {
    margin-left: 30px
}

.contact .content .widget .widget-content input,
.contact .content .widget .widget-content textarea {
    border: 1px solid transparent;
    padding: 10px 25px;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 20px;
    outline: none;
    font-size: 13px;
    color: #000;
    height: 50px;
}

.contact .content .widget .widget-content textarea {
    height: 200px;
    resize: none;
}

.contact .content .widget .widget-content input:focus,
.contact .content .widget .widget-content textarea:focus {
    border: 1px solid #30B9C1
}

.contact .content .widget .widget-content textarea {
    width: 100%
}

.contact .content .widget .widget-content ul {
    list-style: none
}

.contact .content .widget .widget-content li {
    margin-bottom: 5px;
    font-size: 13px;
}

.contact .content .widget .widget-content input[type="submit"] {
    background-color: #30B9C1;
    border: none;
    border-radius: 0 !important;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    width: 180px;
    display: block;
    margin: auto;
    opacity: .8;
    font-size: 13px;
}

.contact .content .widget .widget-content input[type="submit"]:hover {
    opacity: 1
}

/* -----------
    12. Footer
    ----------- */
footer {
    height: 80px;
    border-top: 1px solid #EFEAEA;
    background-color: #fff;
}

footer span {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 80px;
    color: #686868;
    display: block;
    text-align: center;
    font-family: "Crete Round";
}

footer span i {
    color: #30B9C1;
    font: normal normal normal 18px/1 FontAwesome !important;
}

/* -----------
    12. 404
    ----------- */
.error-404 {
    padding-top: 60px;
}

.error-404 img {
    width: 100%;
}

.error-404 h1 {
    font-size: 150px;
    font-weight: 700;
    color: #222a4b;
    text-align: center;
}

.error-404 h3 {
    margin-top: 50px;
    font-size: 17px;
    letter-spacing: 1px;
    color: #919191;
    text-align: center;
}

.error-404 .erorr-button {
    width: 135px;
    margin: auto;
    margin-top: 100px;
}

.error-404 .erorr-button a {
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    border: 2px solid #bbb;
    color: #919191;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.error-404 .erorr-button a:hover {
    border-color: #30B9C1;
    color: #30B9C1;
}

/* -------------------------------
    13. Responsivity Media Queries
    ------------------------------- */
@media screen and (max-width:480px) {
    .home-salvattore[data-columns]::before {
        content: '1 .col-md-12'
    }

}

@media screen and (max-width:580px) {
    .portfolio .works .home-photography {
        width: 100% !important;
    }

    .portfolio .works .home-photography img {
        height: auto !important;
    }

}

@media screen and (min-width:481px) and (max-width:768px) {
    .home-salvattore[data-columns]::before {
        content: '2 col-md-6'
    }

}

@media screen and (min-width:769px) {
    .home-salvattore[data-columns]::before {
        content: '3 .col-md-4'
    }

}

@media screen and (max-width:1200px) {
    .blog-wrapper .blog .blog-content .overlay .overlay-inner {
        left: 60%;
    }

}

@media screen and (max-width:992px) {
    .title {
        margin-left: 15px
    }

    .header .social-icons {
        display: none
    }

    .home-slider .bx-wrapper {
        margin: 0
    }

    .home-video .mejs-container.mejs-video video {
        width: auto !important;
        height: auto !important;
    }

    .home-video .volume-buttons {
        bottom: 48px;
        right: 25px;
    }

    .home-masonry {
        margin-top: 80px;
        margin-bottom: 70px;
    }

    .home-masonry .title {
        margin-left: 15px
    }

    .under-title {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-photography {
        margin-top: 80px
    }

    .home-photography .title {
        margin-left: 15px
    }

    .home-slider ul .slide .slide-content h1 {
        font-size: 38px
    }

    .services {
        padding: 10px 0
    }

    .portfolio {
        overflow: hidden;
        padding: 20px 0 70px 0;
    }

    .blog-wrapper {
        padding: 0px 0 90px 0
    }

    .clients {
        padding: 75px 0 50px 0
    }

    .clients-wrapper {
        margin-top: 40px
    }

    .testimonials {
        padding: 30px 0
    }

    .testimonials-wrapper {
        margin-top: 50px
    }

    .team .aboutme {
        padding-top: 50px;
        width: 85%;
        padding-bottom: 20px;
    }

    .contact .content {
        padding: 50px 0
    }

    .blog-wrapper .blog .blog-content .overlay .overlay-inner {
        left: 75%;
    }

    .portfolio .works .two-columns img {
        min-height: 0;
        height: 345px;
    }

    .portfolio .works .four-columns img {
        min-height: 0;
        height: 275px;
    }

    .portfolio-img {
        margin-top: 15px;
    }

    .portfolio .works .home-photography {
        width: 50%;
    }

    .portfolio .works .home-photography img {
        width: 100%;
        height: 290px;
    }

}

@media screen and (max-width:768px) {
    body {
        margin-top: 0
    }

    .button {
        margin-top: 70px;
    }

    .title {
        font-size: 22px;
        letter-spacing: 4px;
        padding: 50px 20px 0 25px;
        margin-left: 5px !important;
    }

    .title span {
        font-size: 30px;
    }

    .under-title span {
        margin-top: 20px;
        margin-bottom: 0;
        font-size: 12px;
        margin-left: 5px;
    }

    .home-masonry .title,
    .home-masonry .under-title {
        margin-left: 0;
    }

    .home-slider ul .slide .slide-content {
        margin-top: -75px
    }

    .home-photography .title span {
        font-size: 36px
    }

    .home-slider ul .slide .slide-content h1 {
        letter-spacing: 2px;
        font-size: 25px;
    }

    .home-slider ul .slide .slide-content span {
        font-size: 18px
    }

    .team .team-content .team-photo {
        margin-bottom: 15px
    }

    .team .team-content .team-photo .overlay {
        border-radius: 0
    }

    .blog-wrapper img {
        margin-top: 10px
    }

    .blog-wrapper .blog .blog-content .overlay .overlay-inner {
        left: 20px;
        margin-left: 0;
    }

    .blog-single .blog-single-headphoto .underline {
        font-size: 20px;
        letter-spacing: 3px;
        margin-top: -30px;
    }

    .team .aboutme {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .blog-single .blog-single-headphoto .blog-info {
        bottom: 30%
    }

    .portfolio {
        overflow: hidden;
        padding: 80px 0 70px 0 !important;
    }

    .portfolio .works {
        margin-top: 30px
    }

    .portfolio .works .two-columns img,
    .portfolio .works .three-columns img,
    .portfolio .works .four-columns img {
        height: auto;
    }

    .portfolio-single .portfolio-img {
        margin-top: 30px
    }

    .portfolio .works .masonry-photos .no-featured-image {
        height: 100% !important;
    }

    .work-image .overlay .overlay-inner {
        margin-top: -26.5px
    }

    .work-image .overlay .overlay-inner h4 {
        font-size: 15px
    }

    .work-image .overlay .overlay-inner span {
        font-size: 16px;
        margin-top: 5px;
    }

    .slider-controls #next i,
    .slider-controls #prev i {
        display: none
    }

    .blog-wrapper {
        padding: 80px 0 90px 0 !important
    }

    .blog-wrapper > .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-wrapper .blog .blog-content .overlay .overlay-inner {
        left: 15% !important;
    }

    .blog-wrapper .blog .blog-content .overlay .overlay-inner a h4 {
        font-size: 18px
    }

    .blog-wrapper .blog .blog-content .overlay .overlay-inner .category {
        font-size: 14px
    }

    .blog-wrapper .blog .blog-content .overlay .date {
        font-size: 10px;
        letter-spacing: 2;
    }

    .services {
        padding: 60px 0 40px 0 !important
    }

    .services .services-content .service-con .services-inner-content .title-icon span {
        font-size: 35px;
        top: -15px;
    }

    .clients-wrapper {
        margin-top: 30px !important
    }

    .team .team-content {
        padding: 10px 0;
        overflow: hidden;
    }

    .team .team-content .description {
        padding: 0
    }

    .team .team-content .team-photo img {
        border-radius: 0
    }

    .testimonials-wrapper {
        margin-top: 90px !important
    }

    .contact .container {
        padding-right: 25px;
        padding-left: 25px;
    }

    .contact .content .widget .widget-title {
        margin-left: 0
    }

    footer {
        height: 80px
    }

    footer span {
        font-size: 13px;
        line-height: 80px;
    }

    .error-404 h1 {
        font-size: 100px;
    }

    .error-404 .erorr-button {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .blog-single .blog-single-content .comments .comment-form h4 {
        padding-left: 10px;
    }

}

@media screen and (max-width:1050px) {
    .header {
        display: none
    }

    .mobile-menu {
        display: block
    }

    #mobile-menu ul li ul {
        position: static;
    }

    #mobile-menu ul li ul li {
        padding-left: 20px;
    }

}

@media screen and (max-width:1257px) {
    .header {
        height: auto
    }

    .header .logo {
        float: none;
        line-height: 90px;
        margin: auto;
    }

    .header-right {
        float: none;
        width: 81%;
        margin: auto;
    }

}