/*===============================================================
 Project:   Massive - Multipurpose WordPress Theme
 Build:     Bootstrap 3 +
 Author:    ThemeBucket
 ================================================================*/
/*==================Table of Contents=============================

1. tb preloader
2. base
3. header
4. top mega menu
5. menu appear alt
6. floating menu
7. nav icon
8. nav link boxed
9. nav link border box
10. nav link border bottom
11. nav center align
12. nav bottom position
13. nav block left align
14. pre-defined >  margin top | margin bottom
15. body content
16. portfolio
17. portfolio with title
18. portfolio masonry
19. Isotope Filtering
20. portfolio details
21. portfolio nav
22. masonry grid
23. Flex Slider
24. slider revolution
25. maintenance
26. top bar
27. primary nav
28. countdown
29. bs slider
30. static banner
31. video banner
32. custom pagination
33. Product list
34. contact us
35. event page
36. magazine page
37. catering page
38. hotel page
39. app landing page
40. Slider Typist
41. Boxed View
42. scroll top
 ================================================================*/
#tb-preloader {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #fff;
}

.tb-preloader-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
}

.tb-preloader-wave:before,
.tb-preloader-wave:after {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    content: "";
    -webkit-animation: preloader-wave 1.6s linear infinite;
            animation: preloader-wave 1.6s linear infinite; 
    border-radius: 50%;
    background: #222;
}

.tb-preloader-wave:after {
    -webkit-animation-delay: -.8s; 
            animation-delay: -.8s;
}

@keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
                transform: scale(0, 0);
        opacity: .5;

        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);
        opacity: 0;

        filter: alpha(opacity=0);
    }
}

@-webkit-keyframes preloader-wave {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: .5;

        filter: alpha(opacity=50);
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;

        filter: alpha(opacity=0);
    }
}

html {
    overflow-x: hidden;
}

body {
    color: #323232;
    font: 400 15px/1.5 "Source Sans Pro", sans-serif;

    -webkit-font-smoothing: antialiased;
       -moz-font-smoothing: antialiased; 
    text-rendering: optimizeLegibility;
}

a:active,
a:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px 0; 
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    letter-spacing: 2px;
}

h5,
h6 {
    letter-spacing: 1px;
}

a {
    text-decoration: none !important;
}

a:hover,
a:focus {
    color: #323232;
}

a,
.btn {
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}

a img,
iframe {
    border: none !important;
}

p {
    margin: 0 0 30px;
    color: #7e7e7e; 
    line-height: 30px;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333;
    border: 1px solid #ededed;
    border-radius: 0; 
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

table th {
    text-align: left;
}

table > caption + thead > tr:first-child > td,
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > td,
table > thead:first-child > tr:first-child > th {
    border-top: 0;
}

table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

table th,
table td {
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid #ddd; 
    line-height: 1.42857143;
}

.body-content {
    position: relative;
    overflow: hidden; 
    width: 100%;
}

.page-content {
    display: inline-block;
    width: 100%; 
    padding: 100px 0;
}

.page-content-sm {
    display: inline-block;
    width: 100%; 
    padding: 50px 0;
}

.full-content {
    display: inline-block;
    width: 100%;
    padding: 0 0 !important;
}

.overlay-dark {
    display: inherit; 
    background: rgba(0, 0, 0, .5);
}

.overlay-light {
    display: inherit; 
    background: rgba(255, 255, 255, .5);
}

.breadcrumb li {
    text-transform: uppercase;
}

.breadcrumb li > a {
    color: #7e7e7e;
}

.breadcrumb li > a:hover {
    color: #222;
}

.breadcrumb > .active {
    color: #222;
}

.massive-list {
    padding-left: 15px;
}

.massive-list li {
    margin-bottom: 10px;
}

.video-fit {
    position: relative; 
    width: 100%;
    padding-top: 50%;
}

.audio-fit {
    position: relative; 
    width: 100%;
    padding-top: 20%;
}

.video-fit iframe,
.video-fit object,
.video-fit embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.audio-fit iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
}

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

.m-top-5 {
    margin-top: 5px;
}

.m-top-10 {
    margin-top: 10px;
}

.m-top-15 {
    margin-top: 15px;
}

.m-top-20 {
    margin-top: 20px;
}

.m-top-25 {
    margin-top: 25px;
}

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

.m-top-35 {
    margin-top: 35px;
}

.m-top-40 {
    margin-top: 40px;
}

.m-top-50 {
    margin-top: 50px;
}

.m-top-80 {
    margin-top: 80px;
}

.m-top-100 {
    margin-top: 100px;
}

.m-top-0,
.m-top-10,
.m-top-15,
.m-top-20,
.m-top-25,
.m-top-30,
.m-top-35,
.m-top-40,
.m-top-50,
.m-top-80,
.m-top-100,
.m-bot-0,
.m-bot-10,
.m-bot-15,
.m-bot-20,
.m-bot-25,
.m-bot-30,
.m-bot-35,
.m-bot-40,
.m-bot-50,
.m-bot-80,
.m-bot-100 {
    display: inline-block;
}

/*margin bottom*/
.m-bot-0 {
    margin-bottom: 0 !important;
}

.m-bot-10 {
    margin-bottom: 10px;
}

.m-bot-15 {
    margin-bottom: 15px;
}

.m-bot-20 {
    margin-bottom: 20px;
}

.m-bot-25 {
    margin-bottom: 25px;
}

.m-bot-30 {
    margin-bottom: 30px;
}

.m-bot-35 {
    margin-bottom: 35px;
}

.m-bot-40 {
    margin-bottom: 40px;
}

.m-bot-50 {
    margin-bottom: 50px;
}

.m-bot-80 {
    margin-bottom: 80px;
}

.m-bot-100 {
    margin-bottom: 100px;
}

.m-left-10 {
    margin-left: 20px;
}

/*padding top*/
.p-top-0 {
    padding-top: 0 !important;
}

.p-top-10 {
    padding-top: 10px;
}

.p-top-15 {
    padding-top: 15px;
}

.p-top-20 {
    padding-top: 20px;
}

.p-top-25 {
    padding-top: 25px;
}

.p-top-30 {
    padding-top: 30px;
}

.p-top-35 {
    padding-top: 35px;
}

.p-top-40 {
    padding-top: 40px;
}

.p-top-50 {
    padding-top: 50px;
}

.p-top-80 {
    padding-top: 80px;
}

.p-top-100 {
    padding-top: 100px;
}

.p-tb-10 {
    padding: 10px 0;
}

.p-tb-20 {
    padding: 20px 0;
}

.p-tb-30 {
    padding: 30px 0;
}

.p-tb-50 {
    padding: 50px 0;
}

.p-tb-100 {
    padding: 100px 0;
}

.p-tb-150 {
    padding: 150px 0;
}

.p-tb-200 {
    padding: 200px 0;
}

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

.p-bot-0 {
    padding-bottom: 0 !important;
}

.p-bot-100 {
    padding-bottom: 100px !important;
}

.inline-block {
    display: inline-block;
    width: 100%;
}

.theme-bg-space {
    padding: 10px 20px;
}

.bg-space-lg {
    padding: 40px;
}

.bg-space-m {
    padding: 20px 100px;
}

.height-160 {
    height: 160px !important;
}

.height-227 {
    height: 227px !important;
}

.height-300 {
    height: 300px !important;
}

.height-310 {
    height: 310px !important;
}

.height-361 {
    height: 361px !important;
}

.height-450 {
    height: 450px !important;
}

.height-525 {
    height: 525px !important;
}

.height-550 {
    height: 550px !important;
}

.height-600 {
    height: 600px !important;
}

.width-300 {
    width: 300px !important;
}

.zero-padding {
    padding-right: 0 !important; 
    padding-left: 0 !important;
}

.column-two {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}

.column-three {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
}

.column-four {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
}

.column-two,
.column-three,
.column-four {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}

.slide-top-adjust {
    position: relative; 
    top: -100px;
}

.sticky + .slide-top-adjust {
    top: -60px;
}

.m-r-0 {
    margin-right: 0;
}

.l-weight {
    font-weight: 100 !important;
}

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

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

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

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

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

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus,
.nav-tabs > li > a:hover {
    position: relative;
    z-index: 1;
}

.vc_row {
    margin-right: -30px !important; 
    margin-left: -30px !important;
}

.vc_column-inner {
    padding-right: 30px !important; 
    padding-left: 30px !important;
}

.btn-default {
    border-color: #e5e5e5;
}

.btn {
    margin-right: 0;
}

.btn + .btn {
    margin-left: 20px;
}

.row {
    margin-right: -30px;
    margin-left: -30px;
}

.container,
.container-fluid,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    padding-right: 30px;
    padding-left: 30px;
}

.massive-parallax-row {
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: auto !important;
}

@media only screen and (min-width: 769px) {
    .massive-parallax-row {
        background-size: cover !important;
    }
}

.wpb_row,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.wpb_button {
    margin-bottom: 0 !important;
}

@media (min-width: 769px) {
    .boxed .wrapper {
        position: relative;
        width: 1170px;
        margin: 0 auto !important;
    }
}

.intro-title h2 {
    font-size: 36px;
}

.intro-title p {
    letter-spacing: 2px; 
    color: #fff !important;
    font-size: 16px;
    font-weight: 300;
}

.intro-title p span {
    font-size: 26px;
}

.intro-title i {
    position: relative;
    top: 4px;
    right: 10px; 
    color: rgba(255, 255, 255, .5);
    font-size: 26px;
    line-height: 20px;
}

.intro-title .btn {
    line-height: 32px;
}

.intro-title a:hover i,
.intro-title a:focus i {
    color: #222;
}

.intro-portfolio img {
    margin-bottom: 30px;
}

.intro-portfolio .fit-img {
    margin-bottom: 20px;
}

.intro-portfolio a img,
.intro-portfolio a img:hover {
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}

.intro-portfolio a img:hover {
    opacity: .8;
}

.intro-portfolio a {
    text-transform: uppercase;
    color: #222;
}

.dark-bg-alt {
    background: #222;
}

.dark-bg-alt .intro-portfolio a {
    text-transform: uppercase;
    color: #fff;
}

.gray-bg-alt {
    background: #e8e8e8;
}

.top-bar {
    height: 40px;
    border-bottom: 1px solid #eee; 
    line-height: 40px;
}

.top-bar .gray-bg {
    background: #f5f5f5;
}

.top-social-link a {
    display: inline-block;
    margin-right: 10px; 
    color: #aaa;
}

.top-social-link a:hover,
.top-link li a:hover {
    color: #222;
}

.top-link {
    float: right; 
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-link li {
    display: inline-block;
    margin: 0 5px;
}

.top-link li i,
.top-link li a i {
    margin-right: 10px;
}

.top-link li,
.top-link li a {
    color: #aaa;
}

.top-link.text-uppercase {
    font-size: 12px;
}

.top-bar .col-lg-1,
.top-bar .col-lg-10,
.top-bar .col-lg-11,
.top-bar .col-lg-12,
.top-bar .col-lg-2,
.top-bar .col-lg-3,
.top-bar .col-lg-4,
.top-bar .col-lg-5,
.top-bar .col-lg-6,
.top-bar .col-lg-7,
.top-bar .col-lg-8,
.top-bar .col-lg-9,
.top-bar .col-md-1,
.top-bar .col-md-10,
.top-bar .col-md-11,
.top-bar .col-md-12,
.top-bar .col-md-2,
.top-bar .col-md-3,
.top-bar .col-md-4,
.top-bar .col-md-5,
.top-bar .col-md-6,
.top-bar .col-md-7,
.top-bar .col-md-8,
.top-bar .col-md-9,
.top-bar .col-sm-1,
.top-bar .col-sm-10,
.top-bar .col-sm-11,
.top-bar .col-sm-12,
.top-bar .col-sm-2,
.top-bar .col-sm-3,
.top-bar .col-sm-4,
.top-bar .col-sm-5,
.top-bar .col-sm-6,
.top-bar .col-sm-7,
.top-bar .col-sm-8,
.top-bar .col-sm-9,
.top-bar .col-xs-1,
.top-bar .col-xs-10,
.top-bar .col-xs-11,
.top-bar .col-xs-12,
.top-bar .col-xs-2,
.top-bar .col-xs-3,
.top-bar .col-xs-4,
.top-bar .col-xs-5,
.top-bar .col-xs-6,
.top-bar .col-xs-7,
.top-bar .col-xs-8,
.top-bar .col-xs-9 {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.top-link.divider li:after {
    display: inline-block; 
    padding-left: 13px;
    content: "/";
}

.top-link.divider li:last-child:after {
    display: inline-block; 
    content: "";
}

.megamenu-quarter-width .massive-minicart.cart_list {
    padding: 0;
    list-style: none;
}

.megamenu-quarter-width .massive-minicart.cart_list li.mini_cart_item img {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

.megamenu-quarter-width .massive-minicart.cart_list li.mini_cart_item a,
.megamenu-quarter-width .massive-minicart.cart_list li.mini_cart_item span {
    display: inline-block;
    width: auto !important;
}

.megamenu-quarter-width .massive-minicart.cart_list li.mini_cart_item a:first-child {
    float: right;
    margin-top: 18px;
}

.megamenu-quarter-width .massive-minicart.cart_list li.mini_cart_item:hover a {
    color: #333 !important; 
    background: none !important;
}

.megamenu-quarter-width .total,
.megamenu-quarter-width .buttons {
    text-align: right;
}

.megamenu-quarter-width .total {
    margin-top: 15px; 
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.megamenu-quarter-width .buttons {
    margin-bottom: 0;
}

.megamenu-quarter-width .buttons a.btn-small {
    color: #fff;
}

#massive-menu-alt .menuzord-menu > li > a,
#massive-menu-alt .menuzord-menu > li > a > i {
    color: #333;
}

.left-nav-fixed .menuzord-menu .nav-icon.cart-info {
    display: none;
}

.left-nav-fixed header .light-header .search-box input {
    border: 1px solid #ddd !important;
}

.left-nav-fixed #header {
    overflow-x: hidden;
    overflow-y: auto;
}

.menuzord {
    position: relative;
    float: left;
    width: 100%;
    padding: 0; 
    letter-spacing: .5px;
    text-transform: uppercase;
    background: none;
}

.logo-brand {
    float: left;
    height: 50px;
    margin-right: 30px;
    text-transform: initial; 
    color: #666;
    font-size: 20px;
    font-weight: 600;
    line-height: 50px;
}

.logo-brand img {
    position: relative;
    top: -2px;
    display: inline-block;
    max-height: 100%;
    padding: 2px 0;
}

.menuzord-menu {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menuzord-menu.menuzord-right {
    float: right;
}

.menuzord-menu ul.dropdown li a,
.menuzord-menu > li > .megamenu a,
.menuzord-menu > li > .megamenu h5,
.menuzord-menu ul.dropdown li a {
    color: #222;
}

.menuzord-menu > li > .megamenu h5 {
    margin-bottom: 20px;
    padding-left: 10px; 
    font-size: 14px;
    font-weight: 600;
}

.menuzord-menu > li > .megamenu .megamenu-row li a {
    display: inline-block;
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
}

.menuzord-menu a,
.menuzord-menu ul.dropdown li a {
    -webkit-transition: color .3s linear, background .3s linear;
            transition: color .3s linear, background .3s linear;
}

.menuzord-menu.scrollable > .scrollable-fix {
    display: none;
}

.menuzord-menu > li {
    display: inline-block;
    float: left;
    margin-left: 2px;
}

.menuzord-menu > li > a {
    display: inline-block;
    padding: 0 12px;
    text-decoration: none;
    color: #333; 
    outline: 0;
    font-size: 13px;
    font-weight: normal;

    -webkit-tap-highlight-color: transparent;
}

.menuzord-menu > li.active > a,
.menuzord-menu > li:hover > a {
    color: #333;
}

.menuzord-menu ul.dropdown,
.menuzord-menu ul.dropdown li ul.dropdown {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 190px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    background: #fff;
}

.menuzord-menu ul.dropdown li ul.dropdown {
    top: -1px; 
    left: 100%;
}

.menuzord-menu ul.dropdown li {
    position: relative; 
    clear: both;
    width: 100%;
    border: 0;
    font-size: 12px;
}

.menuzord-menu ul.dropdown li a {
    position: relative;
    display: inline-block;
    float: left;
    clear: both;
    width: 100%;
    padding: 10px 25px 10px 22px;
    text-decoration: none;
    color: #222;
    outline: 0; 
    background: 0 0;
}

.menuzord-menu ul.dropdown li:hover > a {
    padding-right: 19px;
    color: #333;
}

.menuzord-menu ul.dropdown.dropdown-left {
    left: auto;
}

.menuzord-menu ul.dropdown li ul.dropdown.dropdown-left {
    right: 100%; 
    left: auto;
}

.menuzord-menu li .indicator {
    margin-left: 3px;
}

.menuzord-menu li .indicator i {
    font-family: FontAwesome;
}

.menuzord-menu li .indicator i.fa-angle-down:before {
    content: "";
}

.menuzord-menu li ul.dropdown li .indicator {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 15px;
}

.menuzord-menu > li > .megamenu {
    position: absolute;
    z-index: 1000;
    left: 0;
    display: none;
    width: 100%;
    padding: 20px;
    border-top: solid 1px #f0f0f0;
    background: #fff;
}

.menuzord-menu > li > .megamenu.megamenu-half-width {
    left: auto; 
    width: 50%;
}

.menuzord-menu > li > .megamenu.megamenu-quarter-width {
    left: auto; 
    width: 25%;
}

.menuzord-menu > li > .megamenu .megamenu-row {
    width: 100%;
    margin-top: 15px;
}

.menuzord-menu > li > .megamenu .megamenu-row:first-child {
    margin-top: 0;
}

.menuzord-menu > li > .megamenu .megamenu-row:after,
.menuzord-menu > li > .megamenu .megamenu-row:before {
    display: table;
    content: "";
    line-height: 0;
}

.menuzord-menu > li > .megamenu .megamenu-row:after {
    clear: both;
}

.menuzord-menu > li > .megamenu .megamenu-row .col1,
.menuzord-menu > li > .megamenu .megamenu-row .col10,
.menuzord-menu > li > .megamenu .megamenu-row .col11,
.menuzord-menu > li > .megamenu .megamenu-row .col12,
.menuzord-menu > li > .megamenu .megamenu-row .col2,
.menuzord-menu > li > .megamenu .megamenu-row .col3,
.menuzord-menu > li > .megamenu .megamenu-row .col4,
.menuzord-menu > li > .megamenu .megamenu-row .col5,
.menuzord-menu > li > .megamenu .megamenu-row .col6,
.menuzord-menu > li > .megamenu .megamenu-row .col7,
.menuzord-menu > li > .megamenu .megamenu-row .col8,
.menuzord-menu > li > .megamenu .megamenu-row .col9 {
    display: block;
    float: left;
    min-height: 20px;
    margin-left: 3%;
}

.menuzord-menu > li > .megamenu .megamenu-row [class*=col]:first-child {
    margin-left: 0;
}

.menuzord-menu > li > .megamenu .megamenu-row .col1 {
    width: 5.583333333333%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col2 {
    width: 14.166666666666%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col3 {
    width: 22.75%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col4 {
    width: 31.333333333333%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col5 {
    width: 39.916666666667%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col6 {
    width: 48.5%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col7 {
    width: 57.083333333333%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col8 {
    width: 65.666666666667%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col9 {
    width: 74.25%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col10 {
    width: 82.833333333334%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col11 {
    width: 91.416666666667%;
}

.menuzord-menu > li > .megamenu .megamenu-row .col12 {
    width: 100%;
}

.menuzord .showhide {
    display: none;
    float: right;
    width: 30px;
    height: 46px;
    padding: 13px 0 0;
    text-decoration: none;
    outline: 0;

    -webkit-tap-highlight-color: transparent;
}

.menuzord .showhide em {
    float: right;
    width: 20px;
    height: 3px;
    margin: 3.5px 0 0;
    background: #777;
}

.menuzord-menu > li > a > .fa {
    float: left;
    margin: 0 5px 0 0;
    font-family: FontAwesome; 
    font-size: 14px;
    line-height: inherit;
}

.menuzord-menu > li.search form {
    float: left;
    padding: 22px 16px 17px;
}

.menuzord-menu > li.search form input[type=text] {
    width: 160px;
    padding: 5px 10px;
    -webkit-transition: width 1s ease-out;
            transition: width 1s ease-out; 
    border: none;
    border-radius: 2px;
    outline: 0;
    background: #f0f0f0;
}

.menuzord-menu > li.search form:hover input[type=text] {
    width: 160px;
}

.menuzord-tabs {
    float: left; 
    width: 100%;
}

.menuzord-tabs-nav {
    float: left;
    width: 20%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menuzord-tabs-nav > li > a {
    float: left;
    width: 100%;
    padding: 7px 16px;
    text-decoration: none;
    color: #666;
    border: 1px solid #f0f0f0;
    outline: 0; 
    font-size: 13px;
}

.menuzord-tabs-nav li.active a,
.menuzord-tabs-nav li:hover a {
    background: #f0f0f0;
}

.menuzord-tabs-content {
    display: none;
    float: right;
    width: 80%;
    min-height: 30px;
    padding: 20px;
    border: 1px solid #f0f0f0; 
    font-size: 13px;
}

.menuzord-tabs-content.active {
    display: block;
}

/* Dropdown */
.menuzord-menu ul.dropdown,
.menuzord-menu ul.dropdown li ul.dropdown {
    border: 1px solid #efefef; 
    /*background: #222;*/
    background: #fff;
}

/* Hover state (dropdown items) */
.menuzord-menu ul.dropdown li:hover > a {
    color: #fff;
}

/* Megamenu */
.menuzord-menu > li > .megamenu {
    border: 1px solid #efefef; 
    border-top: none;
    background: #fff;
}

/* tabs */
.menuzord-tabs-nav > li > a {
    color: #fff;
}

.menuzord-tabs-nav li.active a,
.menuzord-tabs-nav li:hover a {
    color: #666; 
    background: #f0f0f0;
}

/*----------------------------------
    nav icon
-----------------------------------*/
header li.nav-icon i {
    font-size: 12px; 
    line-height: 100px;
}

header.sticky li.nav-icon i {
    line-height: 60px;
}

header li.nav-icon .indicator {
    display: none;
}

header li.nav-icon input {
    border: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 11px;
}

.nav-border-bottom .menuzord .menuzord-menu > li.nav-divider.active > a,
.nav-border-bottom .menuzord .menuzord-menu > li.nav-divider:hover > a,
.nav-border-box .menuzord .menuzord-menu > li.nav-divider.active > a,
.nav-border-box .menuzord .menuzord-menu > li.nav-divider:hover > a {
    border-color: transparent;
}

/*----------------------------------
    nav link boxed
-----------------------------------*/
.nav-boxed-color .menuzord-menu > li > a {
    margin: 30px 0;
}

.nav-boxed-color .menuzord-menu > li > a,
header .nav-boxed-color li.nav-icon i {
    line-height: 40px;
}

header.sticky .nav-boxed-color li.nav-icon i {
    line-height: 60px;
}

.nav-boxed-color .menuzord-menu > li.nav-divider > a,
.nav-boxed-color .menuzord-menu > li.nav-divider:hover > a {
    background: none;
}

.nav-boxed-color .menuzord .menuzord-menu > li.active > a,
.nav-boxed-color .menuzord .menuzord-menu > li.active > a i,
.nav-boxed-color .menuzord .menuzord-menu > li:hover > a,
.nav-boxed-color .menuzord .menuzord-menu > li:hover > a > i {
    color: #fff;
}

header.sticky .nav-boxed-color .menuzord-menu > li > a {
    margin: 0;
}

/*----------------------------------
    nav link border box
-----------------------------------*/
.nav-border-box .menuzord-menu > li > a {
    margin: 30px 0;
}

.nav-border-box .menuzord-menu > li > a,
header .nav-border-box li.nav-icon i {
    line-height: 40px;
}

header.sticky .nav-border-box li.nav-icon i,
header.sticky .nav-border-box .menuzord-menu > li > a {
    line-height: 30px;
}

.nav-border-box .menuzord-menu > li > a {
    border: 1px solid transparent;
}

header.sticky .nav-border-box .menuzord-menu > li > a {
    margin: 15px 0;
}

/* ----------------------------------------------------------------
     nav link border bottom
-----------------------------------------------------------------*/
.nav-border-bottom .menuzord .menuzord-menu > li > a,
.nav-border-bottom .menuzord .menuzord-menu > li > a {
    border-bottom: 1px solid transparent;
}

/*search-box*/
.menuzord-menu > li.nav-icon {
    position: relative;
}

.search-box {
    width: 300px !important;
}

.search-box input {
    width: 100%; 
    border: 1px solid #ddd !important;
}

/*===========================================
 New Header & Navbar
 ============================================*/
.brand-logo-center-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .wrapper {
        margin-top: 50px;
    }
    .bucket-header {
        position: fixed;
        z-index: 10000;
        top: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    }
    .menuzord-responsive .menuzord-menu > li.nav-divider {
        display: none;
    }
}

@media (min-width: 769px) {
    .bucket-header-overflow {
        position: absolute;
        z-index: 1000; 
        top: 0;
        right: 0;
        left: 0;
    }
    .menuzord-menu > li > .megamenu,
    .menuzord-menu .dropdown {
        text-align: left;
        border: 0 !important;
    }
    .bucket-navbar,
    .bucket-navbar-sticky-mode .bucket-navbar-transparent,
    .menuzord-menu > li > .megamenu,
    .menuzord-menu .dropdown {
        box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    }
    .bucket-navbar-sticky-wrapper {
        height: 100px !important;
    }
    .logo-brand {
        height: 100px;
    }
    .logo-brand,
    .bucket-nav-standard > li > a {
        line-height: 100px;
    }
    .bucket-nav-background > li > a {
        line-height: 40px;
    }
    .bucket-nav-background > li.active > a,
    .bucket-nav-background > li:hover > a {
        color: #fff !important;
    }
    .bucket-nav-outline > li > a {
        border: 1px solid transparent;
        line-height: 38px;
    }
    .bucket-nav-underline > li > a {
        border-bottom: 1px solid transparent; 
        line-height: 99px;
    }
    .bucket-navbar-expand .bucket-nav-background > li > a,
    .bucket-navbar-expand .bucket-nav-outline > li > a {
        margin: 30px 0;
    }
    .bucket-navbar-compact .bucket-nav-background > li > a,
    .bucket-navbar-compact .bucket-nav-outline > li > a {
        margin: 10px 0;
    }
    .bucket-navbar-sticky-mode .bucket-nav-background > li > a,
    .bucket-navbar-sticky-mode .bucket-nav-outline > li > a {
        margin: 0;
    }
    .bucket-navbar-sticky-mode .bucket-nav-outline > li > a {
        line-height: 58px;
    }
    .menuzord-menu .dropdown > li > a,
    .menuzord-menu .megamenu-row li > a {
        line-height: 18px;
    }
    .bucket-navbar-sticky-wrapper,
    .logo-brand,
    .menuzord-menu > li > a,
    .menuzord-menu > li > a > .fa {
        -webkit-transition: height .2s, line-height .2s, margin .2s;
                transition: height .2s, line-height .2s, margin .2s;
    }
    .bucket-navbar-default {
        background: #fff;
    }
    .bucket-navbar-inverse {
        background: #0a0a0a;
    }
    .bucket-navbar-inverse .menuzord-menu > li > a,
    .bucket-navbar-inverse .menuzord-menu > li > a > .fa,
    .bucket-navbar-semi-transparent .menuzord-menu > li > a,
    .bucket-navbar-semi-transparent .menuzord-menu > li > a > .fa,
    .bucket-navbar-transparent-dark .menuzord-menu > li > a,
    .bucket-navbar-transparent-dark .menuzord-menu > li > a > .fa {
        color: #fff;
    }
    .bucket-navbar-semi-transparent {
        background: rgba(10, 10, 10, .5);
    }
    .bucket-navbar-transparent,
    .bucket-navbar-semi-transparent {
        -webkit-transition: background-color .2s;
                transition: background-color .2s;
        box-shadow: none;
    }
    .brand-logo-center-wrapper {
        display: block;
        text-align: center;
    }
    .brand-logo-center {
        display: inline-block;
        height: 150px;
        padding: 15px 0;
        font-size: 24px;
        font-weight: 600;
    }
    .brand-logo-center img {
        max-height: 100%;
    }
    .has-bucket-navbar-compact .bucket-navbar-sticky-wrapper {
        height: 60px !important;
    }
    .bucket-navbar-compact .logo-brand {
        height: 60px;
    }
    .bucket-navbar-compact .logo-brand,
    .bucket-navbar-compact .bucket-nav-standard > li > a {
        line-height: 60px;
    }
    .bucket-navbar-center {
        border-top: 1px solid;
    }
    .bucket-navbar-center.bucket-navbar-default {
        border-top-color: #ddd;
    }
    .bucket-navbar-center.bucket-navbar-semi-transparent,
    .bucket-navbar-center.bucket-navbar-transparent {
        border-top-color: rgba(10, 10, 10, .2);
    }
    .bucket-navbar-center.bucket-navbar-inverse {
        border-top-color: #222;
    }
    .bucket-navbar-center .logo-brand {
        display: none;
    }
    .bucket-navbar-center .menuzord-menu,
    .bucket-navbar-center .menuzord-menu > li {
        float: none;
        text-align: center;
    }
    .bucket-navbar-float {
        width: 1170px;
        margin: auto;
        margin-top: 50px;
    }
    .bucket-navbar-sticky-mode .bucket-navbar-center {
        border-top: 0;
    }
    .bucket-navbar-sticky-mode .bucket-navbar-float {
        margin-top: 0;
    }
    .bucket-navbar-sticky-mode .bucket-navbar-semi-transparent,
    .bucket-navbar-sticky-mode .bucket-navbar-transparent-dark {
        background: #0a0a0a;
    }
    .bucket-navbar-sticky-mode .bucket-navbar-transparent-light {
        background: #fff;
    }
    .bucket-navbar-sticky-mode .logo-brand,
    .bucket-navbar-sticky-mode .menuzord-menu > li > a {
        line-height: 60px;
    }
    .bucket-navbar-sticky-mode.bucket-navbar-sticky-wrapper,
    .bucket-navbar-sticky-mode .logo-brand {
        height: 60px !important;
    }
    .has-bucket-navbar-left .wrapper {
        margin-left: 260px;
    }
    .has-bucket-navbar-left .bucket-header {
        position: fixed;
        z-index: 10000;
        top: 0;
        bottom: 0;
        left: 0;
        width: 260px;
    }
    .has-bucket-navbar-left .bucket-navbar-left {
        height: 100%;
    }
    .bucket-navbar-left.bucket-navbar-inverse {
        background: #333;
    }
    .bucket-navbar-left .container {
        width: auto;
        padding: 0;
    }
    .bucket-navbar-left .logo-brand,
    .bucket-navbar-left .menuzord-menu,
    .bucket-navbar-left .menuzord-menu > li {
        float: none;
    }
    .bucket-navbar-left .logo-brand {
        display: block;
        margin: 40px 20px;
        text-align: center;
    }
    .bucket-navbar-left .menuzord-menu > li {
        display: block;
        margin: 0;
    }
    .bucket-navbar-left .menuzord-menu > li > a {
        display: block;
        padding: 0 20px;
    }
    .bucket-navbar-left .menuzord-menu > li > a {
        line-height: 40px;
    }
    .bucket-navbar-left .menuzord-menu .dropdown,
    .bucket-navbar-left .menuzord-menu > li > .megamenu {
        left: 260px;
        margin-top: -40px;
    }
    .bucket-navbar-left .menuzord-menu > li > .megamenu {
        width: 800px;
        padding: 20px;
    }
    .bucket-navbar-left .menuzord-menu > li.nav-divider {
        display: none;
    }
}

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

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

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

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    width: 100%; 
    text-align: center;
    vertical-align: top;
}

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

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

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

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

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

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

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

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

.gallery-caption {
    display: block;
}

.bs-hero.full-screen .carousel-inner .item img {
    width: 100%; 
    /*height: 100vh;*/
    height: auto;
}

.bs-hero.full-screen .carousel-inner .item .bs-info {
    position: absolute;
    top: 40%;
    left: 12%;
}

.bs-hero.full-screen .carousel-inner .item .bs-info-center {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 1000px;
    margin-left: -500px;
    text-align: center;
}

.bs-hero.full-screen .carousel-inner .item .bs-info-right {
    position: absolute;
    /*width: 1170px;*/
    top: 35%;
    right: 12%;
    text-align: right;
}

.bs-hero.full-screen .carousel-inner .item .bs-info h1 {
    text-transform: uppercase;
}

.bs-hero.full-screen .carousel-indicators {
    z-index: 1200;
}

.bs-hero.full-screen .carousel-inner .item .bs-info h1 span {
    font-size: 18px;
}

.bs-hero.full-screen .carousel.slide .carousel-control {
    width: 30%;
    margin-top: 180px;
    margin-bottom: 120px;
}

.bs-banner-content {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.bs-banner-table {
    display: table;
    width: 1170px;
    height: 100%;
    margin: auto; 
    padding: 0 30px;
}

.bs-banner-cell {
    display: table-cell;
    vertical-align: middle;
}

.slides {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
    border: none; 
    outline: none;
}

.flex-control-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
}

.flex-direction-nav {
    display: none;
}

.flexslider {
    position: relative;
    margin: 0;
    padding: 0;
}

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
            transition: all 1s ease;
}

.flex-control-nav {
    position: absolute;
    z-index: 10;
    right: 15px;
    bottom: 20px;
    margin: 0; 
    text-align: center;
}

.flex-control-nav li {
    display: block;
    float: left;
    width: 10px;
    height: 10px; 
    margin: 0 3px;
}

.flex-control-nav li a {
    display: block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out; 
            transition: all .3s ease-in-out;
    text-indent: -9999px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.flex-control-nav li:hover a,
.flex-control-nav li a.flex-active {
    background-color: #fff;
}

/*---*/
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-direction-nav {
    *height: 0;
}

.flex-direction-nav a {
    position: absolute;
    z-index: 200;
    top: 50%;
    display: block;
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin: -40px 0 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-decoration: none;
    color: rgba(0, 0, 0, .8);
    background-color: rgba(0, 0, 0, .5);
    line-height: 40px;
}

.flex-direction-nav a:hover {
    background-color: rgba(0, 0, 0, .7);
}

.flex-direction-nav a:before {
    display: block;
    width: 40px; 
    content: "\f104";
    text-align: center;
    color: #fff;
    font-family: "fontawesome";
    font-size: 16px;
}

.flex-direction-nav a.flex-next:before {
    content: "\f105";
}

.flex-direction-nav .flex-prev {
    left: 0;
}

.flex-direction-nav .flex-next {
    right: 0;
    text-align: right;
}

/*----*/
.post-slider-thumb .flex-control-thumbs {
    position: relative;
    z-index: 10;
    top: 10px;
    right: auto;
    left: auto; 
    margin: 0 auto;
    text-align: left;
}

.post-slider-thumb .flex-control-thumbs li {
    display: inline-block;
    float: none;
    width: 80px;
    height: auto;
    margin: 0 3px 0 0;
    cursor: pointer;
}

.post-slider .flex-direction-nav,
.post-slider-thumb .flex-direction-nav {
    display: block;
}

.post-slider .flex-direction-nav .flex-prev,
.post-slider .flex-direction-nav .flex-next,
.post-slider-thumb .flex-direction-nav .flex-prev,
.post-slider-thumb .flex-direction-nav .flex-next {
    opacity: 0;
}

.post-slider:hover .flex-direction-nav .flex-prev,
.post-slider:hover .flex-direction-nav .flex-next,
.post-slider-thumb:hover .flex-direction-nav .flex-prev,
.post-slider-thumb:hover .flex-direction-nav .flex-next {
    opacity: 1;
}

.post-list-aside .post-img img {
    border: 2px solid transparent;
}

.post-list-aside .post-img img.flex-active {
    border: 2px solid rgba(0, 0, 0, .8);
}

.post-slider .flex-control-thumbs {
    display: none;
}

/* ---------------
   RESPONSIVE
 * --------------*/
@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev,
    .post-slider .flex-direction-nav .flex-prev,
    .post-slider-thumb .flex-direction-nav .flex-prev {
        left: 0; 
        opacity: 1;
    }
    .flex-direction-nav .flex-next,
    .post-slider .flex-direction-nav .flex-next,
    .post-slider-thumb .flex-direction-nav .flex-next {
        right: 0; 
        opacity: 1;
    }
}

.vertical-align {
    position: relative;
}

.vertical-align .container-mid {
    position: absolute;
    z-index: 200; 
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.light-box,
.dark-box {
    padding: 50px;
}

.light-box {
    outline: 5px solid rgba(255, 255, 255, .5);
    outline-offset: 5px; 
    background: rgba(255, 255, 255, .5);
}

.dark-box {
    outline: 5px solid rgba(0, 0, 0, .5);
    outline-offset: 5px; 
    background: rgba(0, 0, 0, .5);
}

.banner-box {
    max-width: 650px;
    margin: 0 auto;
}

.banner-box h1,
.banner-box h2,
.banner-box h3,
.banner-title h1,
.banner-title h2,
.banner-title h3 {
    margin-bottom: 0;
}

.banner-box h1,
.banner-title h1 {
    letter-spacing: 5px;
    font-size: 60px;
    font-weight: 300;
}

.banner-box h3,
.banner-title h3 {
    letter-spacing: 6px;
    font-size: 20px;
}

.banner-title.light-txt h1,
.banner-title.light-txt h2,
.banner-title.light-txt h3 {
    color: #fff;
}

header.transparent-header + .vertical-align .banner-title,
header .semi-transparent + .vertical-align .banner-title {
    margin-top: 0;
}

header + .vertical-align .banner-title {
    margin-top: 100px;
}

/*spacing*/
.ls-20 {
    letter-spacing: 20px !important;
}

.ls-40 {
    letter-spacing: 40px !important;
}

.b-lg-txt {
    font-size: 100px !important;
    font-weight: 300;
}

.b-lg-lw {
    font-weight: 100;
}

/*----------------*/
.hero-text {
    position: relative;
    z-index: 6000;
}

.hero-text h1 {
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-text a {
    /*margin: 10px 5px;*/
}

.banner-scroll a {
    position: absolute;
    z-index: 10; 
    bottom: 20px;
    left: 50%;
    margin-left: -11px;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
}

.banner-scroll a:before {
    display: block;
    width: 25px;
    height: 35px;
    margin-bottom: 5px; 
    margin-left: 5px;
    content: "";
    border: 2px solid #fff;
    border-radius: 15px;
}

.banner-scroll .scroll-down {
    position: absolute;
    z-index: 2; 
    top: 8px;
    left: 50%;
    display: block;
    width: 2px;
    height: 8px;
    margin-left: -3px;
    -webkit-animation: 3s arrow infinite ease;
            animation: 3s arrow infinite ease;
    background: #fff;
}

.video-banner {
    position: relative;
    display: block;
    overflow: hidden; 
    width: 100%;
    height: 100vh;
}

.video-banner.overlay-background .container {
    position: absolute; 
    z-index: 300;
}

.overlay-background {
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 0;
    background-size: cover;
}

.overlay-background .container {
    position: relative; 
    z-index: 300;
}

.overlay-block {
    position: absolute;
    /*background-image: url("../img/stripe.png");*/
    z-index: 200; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
}

.overlay-block-light {
    position: absolute;
    /*background-image: url("../img/stripe.png");*/
    z-index: 200; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
}

.tp-banner-container {
    position: relative;
    width: 100%;
    padding: 0;
}

.tp-banner {
    position: relative; 
    width: 100%;
}

.tp-banner > ul {
    padding: 0;
    list-style: none;
}

.tp-banner-fullscreen-container {
    position: relative;
    width: 100%;
    padding: 0;
}

/* custom caption */
.rev-heading {
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #333;
    /*font: normal 60px/1.5 'Abel', sans-serif;*/
    font: normal 60px/1.5 "Source Sans Pro", sans-serif;
    font-weight: 300;
}

.rev-subheading {
    letter-spacing: 6px; 
    /*font-family: 'Abel', sans-serif;*/
    text-transform: uppercase;
    color: #555;
    font-size: 20px;
}

.rev-desc {
    color: #454545;
    font-size: 16px;
    line-height: 26px;
}

.rev-white {
    color: #fff;
}

.widget .widget-title {
    font-size: 14px;
    font-weight: 600;
}

.widget .heading-title-alt {
    margin-bottom: 20px;
}

.widget ul {
    padding: 0; 
    list-style: none;
}

.widget ul li {
    float: left;
    width: 100%; 
    margin-bottom: 20px;
}

.widget ul li a {
    color: #837f7e;
}

.widget ul li a:before {
    padding-right: 10px;
    content: "\f105";
    font-family: "FontAwesome";
}

.widget.widget_pages {
    list-style: none;
}

.widget.widget_pages ul ul,
.widget.widget_nav_menu ul ul {
    padding-left: 30px;
}

.widget.widget_recent_comments li a:before {
    padding-right: 0;
    content: " ";
    font-family: "FontAwesome";
}

.widget.widget_recent_comments li:before {
    padding-right: 10px;
    content: "\f0e6";
    color: #837f7e; 
    font-family: "FontAwesome";
}

.widget.widget_archive select,
.widget.widget_categories select,
.textwidget select {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 0;
    outline: none; 
    background: none;
}

.wp-calendar,
.calendar_wrap table {
    width: 100%;
}

.calendar_wrap a:hover {
    color: #fff;
}

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

.tagcloud a {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 3px 10px;
    color: #837f7e;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    font-size: 14px !important;
}

.tagcloud a:hover {
    color: #fff;
}

.widget_massive_gallery_uploader ul {
    margin: 0 -5px;
}

.widget_massive_gallery_uploader ul li {
    float: left;
    width: 33.3333%;
    margin: 0;
    padding: 5px;
}

.widget_massive_gallery_uploader img {
    display: block;
    max-width: 100%;
    max-height: auto;
    cursor: pointer;
}

.Site-footer--dark .footer-widget-title {
    color: #fff;
}

.Site-footer--dark .widget select,
.Site-footer--dark .textwidget select {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 0;
    outline: none; 
    background: #fff;
}

.widget.widget_massive_image_uploader {
    margin-bottom: 0;
}

#footer .widget:last-child {
    margin-bottom: 0;
}

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

.post-list-aside .post-desk a.author:after {
    display: none;
}

.post-list-aside .post-desk span.meta-date:before,
.post-list span.meta-date:before,
span.meta-date:before {
    padding-right: 5px; 
    padding-left: 5px;
    content: "|";
}

.post-single .post-cat li a:last-child:after {
    display: none;
}

.post-single .post-desk {
    height: auto;
}

ul.post-tags {
    padding: 0;
}

ul.post-tags li {
    list-style: none;
}

.comments-area .comment-notes {
    margin-bottom: 50px;
}

.comments-area .comment-reply-title {
    margin-bottom: 15px; 
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e2e2;
}

li.media {
    list-style: none;
}

.single-post .page-title .massive-breadcrumbs {
    position: static;
    margin-top: 20px;
}

.single-post .page-title h1,
.post-list .post-single .post-desk h4,
.single-post .page-title .massive-breadcrumbs,
.massive-post-content,
.comment-content,
.blog-post h4,
.post-desk,
.comments-title,
.pagination-txt {
    word-wrap: break-word;
}

.comments-title {
    line-height: 36px;
}

.sticky .post-desk h4 a,
.category-sticky .post-desk h4 a {
    position: relative;
}

.sticky .post-desk h4 a:before,
.category-sticky .post-desk h4 a:before {
    padding-right: 10px;
    content: "\f08d";
    font-family: "FontAwesome";
    font-size: 18px;
}

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

.blog-post table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

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

/* ----------------------------------------------------------------
    standard blog list
-----------------------------------------------------------------*/
.blog-classic {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #efefef;
}

.blog-classic .date {
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 40px; 
    padding-top: 15px;
    text-align: center;
    color: #fff;
    background: #222;
    font-size: 30px;
}

.blog-classic .date.right {
    float: right;
    margin-right: 0; 
    margin-left: 40px;
}

.blog-classic .date span {
    display: block; 
    font-size: 12px;
}

.blog-classic .blog-post {
    overflow: hidden;
}

.blog-classic .blog-post .full-width {
    margin-bottom: 50px;
}

.blog-post h4 a {
    color: #222;
}

.blog-post h4 {
    margin-bottom: 10px;
}

.post-meta {
    margin-bottom: 40px; 
    padding: 0;
    list-style: none;
}

.post-meta li {
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
    color: #a7a7a7;
    font-size: 12px;
}

.post-meta li a {
    margin-right: 5px;
    color: #a7a7a7;
}

.post-meta li i {
    padding-right: 10px;
}

.blog-post blockquote {
    margin: 0 0 20px;
    padding: 0;
    border-left: none;
    font-size: 17.5px;
    font-style: italic;
}

.quote-post p:before,
.blog-post blockquote p:before {
    padding-right: 10px;
    content: "\f10d";
    color: #837f7e; 
    font-family: "FontAwesome";
}

.quote-post p:after,
.blog-post blockquote p:after {
    padding-left: 10px;
    content: "\f10e";
    color: #837f7e; 
    font-family: "FontAwesome";
}

.portfolio-with-title.blog-m .portfolio-title h4 a {
    font-size: 16px;
}

.portfolio-with-title.blog-m .portfolio-title p {
    letter-spacing: normal;
}

/* video/audio post */
.video-fit {
    position: relative; 
    width: 100%;
    padding-top: 50%;
}

.audio-fit {
    position: relative; 
    width: 100%;
    padding-top: 20%;
}

.video-fit iframe,
.video-fit object,
.video-fit embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.audio-fit iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
}

/* custom pagination */
.custom-pagination > li:first-child > a,
.custom-pagination > li:first-child > span,
.custom-pagination > li:last-child > a,
.custom-pagination > li:last-child > span {
    -webkit-border-radius: 0; 
            border-radius: 0;
}

.custom-pagination > li > a {
    margin: 0 3px;
    color: #424242;
}

.custom-pagination > li > a:hover {
    color: #000;
}

.custom-pagination.pagination > .active > a,
.custom-pagination.pagination > .active > a:focus,
.custom-pagination.pagination > .active > a:hover,
.custom-pagination.pagination > .active > span,
.custom-pagination.pagination > .active > span:focus,
.custom-pagination.pagination > .active > span:hover {
    z-index: 2;
    cursor: default;
    color: #fff;
    border-color: #222; 
    background-color: #222;
}

/*search-row*/
.search-row {
    position: relative;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 1px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: #ccc;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px; 
    line-height: 36px;
}

.search-row input {
    width: 100% !important;
    height: 40px;
    border-radius: 0;
    box-shadow: none;
}

.search-row input:focus {
    border-color: #333;
    outline: 0;
    box-shadow: none;
}

/* ----------------------------------------------------------------
     blog side bar
-----------------------------------------------------------------*/
.widget {
    display: inline-block;
    width: 100%; 
    margin-bottom: 60px;
}

.widget h6 {
    font-size: 14px;
    font-weight: 600;
}

.widget .avatar {
    display: block; 
    margin-bottom: 30px;
}

.widget-latest-post,
.widget-category,
.widget-comments {
    padding: 0; 
    list-style: none;
}

.widget-latest-post li,
.widget-category li,
.widget-comments li {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.widget-category li,
.widget-comments li {
    margin-bottom: 20px;
}

.widget-category li a,
.widget-comments li a {
    color: #837f7e;
}

.widget-category li a:before {
    padding-right: 10px;
    content: "\f105";
    font-family: "FontAwesome";
}

.widget-comments li:before {
    padding-right: 10px;
    content: "\f0e6";
    color: #837f7e; 
    font-family: "FontAwesome";
}

.widget-latest-post li:last-child {
    margin-bottom: 0;
}

.widget-latest-post .thumb {
    float: left;
    width: 75px;
    height: auto; 
    margin-right: 20px;
}

.widget-latest-post .thumb img {
    width: 100%;
    height: 100%;
}

.widget-latest-post .w-desk {
    display: inherit; 
    overflow: hidden;
    color: #9b9a9a;
}

.widget-latest-post .w-desk a {
    display: block;
    text-transform: uppercase;
    color: #333;
    font-size: 13px;
}

.widget-social-link a {
    float: left;
}

.widget-social-link a {
    width: 35px;
    height: 35px;
    margin: 0 15px 15px 0; 
    text-align: center;
    color: #5a5a5a;
    border: 1px solid #5a5a5a;
    font-size: 16px;
    line-height: 35px;
}

.widget-social-link a:hover,
.widget-tags a:hover {
    color: #fff;
}

.circle a {
    border-radius: 50%;
}

.widget-tags a {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 3px 10px;
    color: #837f7e;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
}

/*------------------------------
blog-masonry
------------------------------*/
.portfolio-with-title.blog-m .portfolio-title p {
    margin: 5px 0 0 0;
    text-transform: none;
    color: #757575;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
}

.portfolio-with-title.blog-m .portfolio-title p {
    display: block; 
    margin-bottom: 20px;
}

.portfolio-with-title.blog-m .portfolio-title .date {
    display: block;
    margin: 5px 0 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase; 
    font-size: 12px;
}

.portfolio-with-title.blog-m .portfolio-title .date,
.portfolio-with-title.blog-m .portfolio-title .date a {
    color: #a8a8a8;
}

/*------------------------------
comments-list
------------------------------*/
.comments-list .comment-author a {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    font-size: 12px; 
    font-weight: bold;
}

.comments-list .media > .pull-left {
    padding-right: 20px;
}

.comments-list .comment-info,
.comments-list .comment-info a {
    color: #a7a7a7;
}

.comments-list .comment-info .comment-author a {
    color: #222;
}

.comments-list .comment-info i {
    padding: 0 10px;
}

.comments-list .comment-avatar {
    width: 50px;
    height: auto;
}

.comment-form .form-control {
    border-radius: 0;
    box-shadow: none;
}

.comment-form .form-control:focus {
    border-color: #222;
}

/*----*/
.pagination-row {
    overflow: hidden;
}

.pagination-row {
    margin-bottom: 60px; 
    padding: 30px 0;
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.pagination-post .prev-post {
    float: left;
    text-align: left;
}

.pagination-post .prev-post,
.pagination-post .next-post {
    width: 45%;
}

.pagination-post .post-list-link {
    float: left;
    width: 10%;
    margin-top: 5px; 
    text-align: center;
}

.pagination-post .next-post {
    float: right;
    text-align: right;
}

.pagination-post .prev-post .arrow {
    float: left;
    margin-right: 20px;
}

.pagination-post .arrow {
    color: #e5e5e5;
    font-size: 50px;
    line-height: 50px;
}

.pagination-post .next-post .arrow {
    float: right;
    margin-left: 20px;
}

.pagination-post .post-list-link a {
    color: #d2d2d2;
    outline: none; 
    font-size: 30px;
}

.pagination-post .pagination-txt {
    margin-top: 18px;
}

.pagination-post a {
    color: #d2d2d2;
}

.pagination-post a:hover,
.pagination-post a:hover .arrow {
    color: #222;
}

.pagination-post a,
.pagination-post a .arrow,
.pagination-post a:hover,
.pagination-post a:hover .arrow {
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}

.animated-img-box {
    position: relative;
    overflow: hidden;
}

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

.animated-img-content {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 30px;
    text-transform: uppercase; 
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.animated-img-table {
    display: table;
    width: 100%;
    height: 100%;
}

.animated-img-cell {
    display: table-cell;
}

.animated-img {
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}

[data-animation="zoomin"]:hover .animated-img,
[data-animation="zoomin"]:focus .animated-img {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
}

.wpcf7 .col-md-6,
.wpcf7 .col-md-12 {
    padding-right: 15px;
    padding-left: 15px;
}

.form-control {
    border: 1px solid #e5e5e5;
    border-radius: 3px; 
    box-shadow: none;
}

.form-control:focus {
    border-color: #222;
    box-shadow: none;
}

.wpcf7 .form-control {
    height: 40px; 
    border-radius: 0;
}

.wpcf7 .cmnt-text {
    height: 95px;
}

.wpcf7 label {
    text-transform: uppercase;
    color: #7e7e7e; 
    font-weight: normal;
}

.wpcf7 .fullwidth-button {
    width: 100%;
}

address p {
    margin-bottom: 0;
}

.count-down,
.count-down-alt {
    text-transform: uppercase;
    /*font-family: 'Abel', sans-serif;*/
}

.count-down .c-grid,
.count-down-alt .c-grid {
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: 0 20px; 
    padding-top: 42px;
    text-align: center;
}

.count-down.light-bg .c-grid,
.count-down-alt.light-bg .c-grid {
    background: #fff;
}

.count-down-alt .c-grid {
    border: 5px solid rgba(0, 0, 0, .2);
}

.count-down .c-grid {
    border: 1px solid #e0e0e0;
}

.count-down .c-grid,
.count-down.light .c-grid {
    border: 1px solid #fff;
}

.count-down.light .c-value,
.count-down.light .c-title,
.count-down-alt.light .c-value,
.count-down-alt.light .c-title {
    color: #fff;
}

.count-down .c-value,
.count-down .c-title,
.count-down-alt .c-value,
.count-down-alt .c-title {
    display: block;
}

.count-down .c-value,
.count-down-alt .c-value {
    font-size: 30px;
}

.count-down .c-title,
.count-down-alt .c-title {
    letter-spacing: 3px; 
    font-size: 14px;
}

.count-down.circle .c-grid,
.count-down-alt.circle .c-grid {
    border-radius: 50% !important;
}

.count-down.round .c-grid,
.count-down-alt.round .c-grid {
    border-radius: 5px !important;
}

.count-parallax {
    background-image: url("../img/parallax/5.jpg");
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
}

.relative {
    position: relative;
}

.count-icon {
    position: absolute;
    top: 50px; 
    right: 0;
}

.count-icon i {
    font-size: 40px;
}

#primary_nav_wrap ul {
    position: relative;
    z-index: 1200; 
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

#primary_nav_wrap ul a {
    display: block;
    padding: 0 15px; 
    text-decoration: none;
    color: #8b8b8b;
    font-size: 12px;
    line-height: 40px;
}

#primary_nav_wrap ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

#primary_nav_wrap ul li.current-menu-item {
    background: #ddd;
}

#primary_nav_wrap ul li:hover {
    background: rgba(255, 255, 255, .06);
}

#primary_nav_wrap ul ul {
    position: absolute;
    top: 100%;
    left: 15px;
    display: none;
    /*border: 1px solid #eee;*/
    padding: 0; 
    background: #222;
}

#primary_nav_wrap ul ul li {
    float: none;
    min-width: 150px;
}

#primary_nav_wrap ul ul a {
    padding: 10px 15px;
    color: #b0b0b0; 
    line-height: 120%;
}

#primary_nav_wrap ul ul ul {
    top: 0;
    left: 100%;
}

#primary_nav_wrap ul li:hover > ul {
    display: block;
}

.cart-info .megamenu-quarter-width {
    width: 450px !important;
}

.cart-table-list,
.cart-table-list i {
    color: #222;
    border: none;
}

header li.nav-icon .cart-table-list a {
    color: #222; 
    line-height: normal;
}

.total-cart {
    display: inline-block;
    float: right;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 20px;
    text-align: right; 
    color: #222;
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.total-cart ul {
    float: right;
    width: 100%; 
    padding: 0;
    list-style: none;
}

.total-cart ul li {
    display: block;
    overflow: hidden;
}

.total-cart ul li span {
    display: inline-block;
    width: 100px;
    text-align: right;
    white-space: nowrap;
}

.cart-table-list a.close img {
    width: 11px;
    height: 11px;
}

.cart-table-list td img {
    width: 50px;
    height: auto;
}

.s-cart-btn a {
    margin: 0 0 10px 10px;
    color: #fff !important;
}

.cart-table-list.table > tbody > tr > td {
    height: 20px;
    vertical-align: middle; 
    border: none;
    line-height: 20px;
}

.product-list {
    margin-bottom: 50px;
}

.product-list .product-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.product-img:hover > a.product-flip {
    z-index: 2; 
    opacity: 1;
}

.product-img > a.product-flip {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0; 
    opacity: 0;
}

.sale-label {
    position: absolute;
    z-index: 10; 
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
}

.product-img > a,
.product-img:hover > a {
    -webkit-transition: all .5s ease;
            transition: all .5s ease;
}

.product-list .product-img img,
.product-img img,
.product-img > a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-title h5 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.product-title h5 a {
    color: #222;
}

.product-price {
    margin-bottom: 5px; 
    font-size: 18px;
}

.product-price del {
    color: #837f7e;
    font-size: 14px;
}

.product-rating {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    color: #9b9a9a;
}

.product-cart {
    font-size: 12px;
}

.product-grid input {
    height: 40px; 
    border-radius: 0;
    box-shadow: none;
}

.product-grid input:focus,
.product-grid .form-control:focus,
.portfolio-meta .form-control:focus {
    border-color: #000; 
    box-shadow: none;
}

.product-grid button.btn,
.p-values,
.full-width button.btn {
    width: 100%;
}

.full-width .btn {
    width: 100%;
}

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

.product-grid .form-control,
.p-quantity .form-control,
.portfolio-meta .form-control {
    box-shadow: none;
}

.p-quantity {
    margin-bottom: 0; 
    /*padding: 0;*/
    list-style: none;
}

.p-values {
    display: inline-block;
}

.p-values ul {
    float: left;
}

.p-quantity li {
    float: left;
    width: 130px;
    margin: 15px 0;
    letter-spacing: 2px;
    text-transform: uppercase; 
    color: #000;
    font-size: 12px;
}

.p-quantity li label {
    padding-top: 7px;
    font-weight: normal;
}

.p-quantity .input-group-btn:first-child > .btn,
.p-quantity .input-group-btn:first-child > .btn-group {
    margin-right: -1px;
}

.p-quantity .btn.focus,
.p-quantity .btn:focus,
.p-quantity .btn:hover {
    color: #222 !important;
}

.txt-xl {
    font-size: 26px !important;
    font-weight: 300;
    line-height: 36px;
}

.txt-sm {
    font-size: 16px !important;
    font-weight: normal;
    line-height: 20px;
}

.product-grid .col-lg-1,
.product-grid .col-lg-10,
.product-grid .col-lg-11,
.product-grid .col-lg-12,
.product-grid .col-lg-2,
.product-grid .col-lg-3,
.product-grid .col-lg-4,
.product-grid .col-lg-5,
.product-grid .col-lg-6,
.product-grid .col-lg-7,
.product-grid .col-lg-8,
.product-grid .col-lg-9,
.product-grid .col-md-1,
.product-grid .col-md-10,
.product-grid .col-md-11,
.product-grid .col-md-12,
.product-grid .col-md-2,
.product-grid .col-md-3,
.product-grid .col-md-4,
.product-grid .col-md-5,
.product-grid .col-md-6,
.product-grid .col-md-7,
.product-grid .col-md-8,
.product-grid .col-md-9,
.product-grid .col-sm-1,
.product-grid .col-sm-10,
.product-grid .col-sm-11,
.product-grid .col-sm-12,
.product-grid .col-sm-2,
.product-grid .col-sm-3,
.product-grid .col-sm-4,
.product-grid .col-sm-5,
.product-grid .col-sm-6,
.product-grid .col-sm-7,
.product-grid .col-sm-8,
.product-grid .col-sm-9,
.product-grid .col-xs-1,
.product-grid .col-xs-10,
.product-grid .col-xs-11,
.product-grid .col-xs-12,
.product-grid .col-xs-2,
.product-grid .col-xs-3,
.product-grid .col-xs-4,
.product-grid .col-xs-5,
.product-grid .col-xs-6,
.product-grid .col-xs-7,
.product-grid .col-xs-8,
.product-grid .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.product-grid .row {
    margin-right: -15px;
    margin-left: -15px;
}

.stock .number-item {
    color: #757575; 
    font-size: 30px;
}

.stock .status {
    display: initial;
    padding: 5px 10px;
    letter-spacing: normal; 
    color: #fff;
    border-radius: 2px;
}

.review-avatar {
    width: 60px;
    height: auto; 
    margin-right: 10px;
}

.review-rating i {
    padding: 0 !important;
}

.review-rating {
    float: right;
}

.cart-table {
    border: 1px solid #ddd;
}

.cart-table td a {
    color: #222;
}

.cart-table td a:hover {
    color: #000;
}

.cart-table thead th {
    text-transform: uppercase;
}

.cart-table.table > tbody > tr > td,
.cart-table.table > tbody > tr > th,
.cart-table.table > tfoot > tr > td,
.cart-table.table > tfoot > tr > th,
.cart-table.table > thead > tr > td,
.cart-table.table > thead > tr > th {
    vertical-align: middle;
}

.cart-img img {
    width: 60px;
    height: auto;
}

.cart-action input {
    padding: 6px 3px 6px 6px;
}

.cart-action input,
.cart-action button {
    float: left;
    margin-right: 3px;
}

.cart-action button:hover i {
    color: #222;
}

.cart-quantity {
    width: 45px;
    border-radius: 0;
}

.coupon-form input {
    height: 40px;
    border-radius: 0;
}

.coupon-form label {
    text-transform: uppercase; 
    font-weight: normal;
}

.cart-total {
    font-size: 16px;
}

.cart-btn-row a {
    margin-right: 0;
    margin-left: 10px;
}

.coupon-form label {
    margin-right: 20px;
}

.coupon-form input {
    margin-right: 10px;
}

.pro-box .one-third,
.featured-box.pro-box .one-third:nth-child(2) {
    padding: 10px 5px;
}

.panel {
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    box-shadow: none;
}

.shop-view-mode {
    display: inline-block; 
    margin-top: 5px;
}

.shop-view-mode a {
    margin-left: 15px;
    color: #adadad;
}

.shop-view-mode a:hover {
    color: #222;
}

.portfolio {
    margin: 50px 0;
}

.portfolio .portfolio-item {
    float: left;
}

.portfolio .portfolio-item .thumb {
    position: relative;
}

.portfolio .portfolio-item .thumb img {
    display: block; 
    width: 100%;
    height: auto;
}

.portfolio-hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    -webkit-transition: all .3s;
            transition: all .3s; 
    opacity: 0;
    border: 20px solid rgba(0, 0, 0, .1);
    background-color: rgba(255, 255, 255, .9);
}

.portfolio-item:hover .portfolio-hover,
.portfolio-item:hover .portfolio-hover .portfolio-description,
.portfolio-item:hover .portfolio-hover .action-btn {
    opacity: 1;
}

.portfolio-item:hover .portfolio-hover .portfolio-description {
    bottom: 45%;
    margin-bottom: -90px;
}

.portfolio-item:hover .portfolio-hover .action-btn {
    top: 40%;
    margin-top: -55px;
}

.portfolio-hover .portfolio-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-transition: all .3s .2s;
            transition: all .3s .2s; 
    -webkit-transform: translateY(-55%);
        -ms-transform: translateY(-55%);
            transform: translateY(-55%);
    opacity: 0;
}

.portfolio-hover .action-btn {
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: all .3s .2s;
            transition: all .3s .2s;
    -webkit-transform: translateY(45%);
        -ms-transform: translateY(45%);
            transform: translateY(45%);
    text-align: center;
    opacity: 0;
    font-size: 35px;
}

.portfolio-description,
.portfolio-description h4 a,
.portfolio-hover .action-btn a {
    text-align: center;
    color: #222;
}

.portfolio-description h4 {
    margin-bottom: 5px;
    letter-spacing: 4px; 
    text-transform: uppercase;
    font-size: 14px;
}

.portfolio-description p {
    margin-bottom: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #757575; 
    font-size: 12px;
    /*font-family: 'Abel', sans-serif;*/
    font-weight: normal;
}

.portfolio-description a,
.portfolio-title a {
    color: #757575;
}

/*gutter*/
.portfolio.gutter .portfolio-item {
    padding: 10px;
}

/*portfolio 2 grid*/
.portfolio.col-2 .portfolio-item {
    width: 49.99%;
}

/*portfolio 3 grid*/
.portfolio.col-3 .portfolio-item {
    width: 33.3333333%;
}

/*portfolio 4 grid*/
.portfolio.col-4 .portfolio-item {
    width: 24.98%;
}

/*portfolio 5 grid*/
.portfolio.col-5 .portfolio-item {
    width: 19.99%;
}

/*portfolio 6 grid*/
.portfolio.col-6 .portfolio-item {
    width: 16.666666667%;
}

.portfolio-filter {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-filter li {
    display: inline-block;
}

.portfolio-filter li a {
    margin: 0 15px;
    /*font-family: 'Abel', sans-serif;*/
    letter-spacing: 3px; 
    text-transform: uppercase;
    color: #a9a8a8;
    font-size: 14px;
}

.portfolio-filter li a:hover,
.portfolio-filter li.active a {
    color: #222;
}

/* ----------------------------------------------------------------
    portfolio with title
-----------------------------------------------------------------*/
.portfolio-with-title .portfolio-item:hover .portfolio-hover .action-btn {
    top: 50%;
    margin-top: -45px;
}

.portfolio-with-title .portfolio-title {
    padding: 15px 0;
}

.portfolio-with-title .portfolio-title h4,
.portfolio-with-title .portfolio-title h4 a {
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222; 
    font-size: 14px;
}

.portfolio-with-title .portfolio-title h3,
.portfolio-with-title .portfolio-title h3 a {
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222; 
    font-size: 18px;
}

.portfolio-with-title .portfolio-title p {
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7e7e7e; 
    font-size: 12px;
    /*font-family: 'Abel', sans-serif;*/
    font-weight: normal;
}

.portfolio-with-title.portfolio-masonry .portfolio-title {
    padding: 15px;
}

.portfolio-with-title.portfolio-masonry.gutter .portfolio-title {
    padding: 15px 0;
}

/* ----------------------------------------------------------------
    portfolio masonry
-----------------------------------------------------------------*/
/* clear fix */
.portfolio-masonry:after {
    display: block;
    clear: both; 
    content: "";
}

/* ---- .grid-item ---- */
.portfolio-masonry .portfolio-item {
    float: left;
}

.portfolio-masonry .portfolio-item-width2 {
    width: 200px;
}

.portfolio-masonry .portfolio-item-height2 {
    height: 200px;
}

/* ----------------------------------------------------------------
    Isotope Filtering
-----------------------------------------------------------------*/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    z-index: 1; 
    pointer-events: none;
}

/*Isotope CSS3 transitions */
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: .8s;
            transition-duration: .8s;
}

.isotope {
    -webkit-transition-property: height, width;
            transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -webkit-transition-property: opacity, -webkit-transform;
            transition-property: opacity, -webkit-transform;
            transition-property:         transform, opacity;
            transition-property:         transform, opacity, -webkit-transform;
}

/*disabling Isotope CSS3 transitions */
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
}

/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
    -webkit-transition: none;
            transition: none;
}

.video-parallax {
    position: relative;
    overflow: hidden;
}

.video-parallax .container {
    position: absolute;
    z-index: 100;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: -80px; 
    color: #fff;
}

.video-parallax .container i {
    display: block; 
    margin-bottom: 30px;
    font-size: 50px;
}

.video-parallax .container + .video-wrap {
    z-index: 1;
}

.video-wrap {
    position: relative; 
    overflow: hidden;
    width: 100%;
}

.video-overlay,
.banner-overaly {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);

    -webkit-backface-visibility: hidden;
}

/*portfolio-meta*/
.portfolio-meta {
    padding: 0; 
    list-style: none;
}

.portfolio-meta li {
    margin: 15px 0;
    color: #666;
}

.portfolio-meta li span {
    display: inline-block;
    width: 130px;
    letter-spacing: 2px;
    text-transform: uppercase; 
    color: #000;
    font-size: 12px;
}

.portfolio-meta li a {
    margin-right: 10px;
    color: #cdcdcd;
}

.portfolio-meta li a:hover {
    color: #323232;
}

/* ----------------------------------------------------------------
    portfolio nav
-----------------------------------------------------------------*/
.portfolio-nav-row {
    position: relative;
    padding: 40px 0;
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    right: 10px;
    left: auto;
    max-width: 300px;
    margin-top: -12px;
}

.portfolio-nav.left {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    max-width: 300px;
    margin-top: -12px;
}

.portfolio-nav a {
    display: block;
    float: left;
    margin-left: 20px; 
    text-align: center;
    color: #aeaeae;
}

.portfolio-nav.left a {
    margin-right: 20px;
    margin-left: 0;
}

.portfolio-nav a:hover,
.portfolio-nav a:hover span {
    -webkit-transition: all .3s ease;
            transition: all .3s ease; 
    color: #323232;
}

.portfolio-nav a span,
.portfolio-nav a span i {
    display: inline-block;
    margin-top: 0;
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}

.portfolio-gap-less .portfolio {
    margin: 0;
}

/*-----------------------------------------------
    promo-box shortcode
-----------------------------------------------*/
.promo-box p {
    margin: 0 !important;
}

/*-----------------------------------------------
    mailchimp
-----------------------------------------------*/
.mailchimp label {
    font-weight: normal;
}

/*-----------------------------------------------
    testimonial-shortcode
-----------------------------------------------*/
.testimonials img {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

/*-----------------------------------------------
  featured-box Shortcode
-----------------------------------------------*/
.light-text .desc,
.light-text .icon,
.light-text .title h4 {
    color: #fff;
}

/*-----------------------------------------------
  carousel Shortcode
-----------------------------------------------*/
.light-txt .fun-info:before {
    background: rgba(255, 255, 255, .4) !important;
}

.content-position-above .heading-title-alt {
    margin-bottom: 50px;
}

/* ----------------------------------------------------------------
    portfolio shortcode
-----------------------------------------------------------------*/
.portfolio {
    margin: 0 !important;
}

.portfolio-filter {
    margin-bottom: 50px !important;
}

img.portfolio-single-image {
    max-width: 100%;
    height: auto;
}

/*-----------------------------------------------
  heading style shortcode
-----------------------------------------------*/
.heading-title-side-border h1 {
    padding: 6px 10px 0 0 !important;
}

.heading-title span,
.heading-title-alt span {
    display: block; 
    padding: 10px 0;
}

.border-short-bottom.text-left .heading-five:after {
    left: 0;
    margin-left: 0;
}

.border-short-bottom.text-right .heading-five:after {
    right: 0;
    left: inherit;
}

/*-----------------------------------------------
  carren shortcode - extended css
-----------------------------------------------*/
.career-details-info .c-list-row ul li {
    list-style: none;
}

.tb-grid {
    width: 100%;
    margin: auto;
}

.tb-grid .box {
    width: 33.3333%;
    padding-top: 33.3333%;
}

.tb-grid .box2 {
    width: 66.6666%; 
    padding-top: 33.3333%;
}

.tb-grid .box3 {
    width: 66.6666%; 
    padding-top: 66.6666%;
}

.tb-grid .box-nano {
    position: relative; 
    float: left;
    width: 50%;
    margin: 0;
    padding-top: 50%;
}

.tb-grid .box,
.tb-grid .box2,
.tb-grid .box3 {
    display: inline-block;
}

.tb-grid .item > .item-inner,
.tb-grid .box-nano > .item-inner {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    margin: 0;
    cursor: crosshair; 
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.tb-grid .items > .item-inner {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: .0;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: .0;
    }
    100% {
        opacity: 1.0;
    }
}

.typist-blink:after {
    position: relative;
    top: .35em;
    display: inline-block;
    height: 1.3em;
    margin-right: 7px;
    margin-left: 3px;
    content: " ";
    -webkit-animation: blink 1s step-start 0s infinite; 
            animation: blink 1s step-start 0s infinite;
    border-right: 2px solid;
}

.typist-blink > .selectedText {
    display: none;
}

.typist-mark > .selectedText {
    color: #fff;
    background-color: #222;
    font-style: normal;
}

.custom-pagination > li:first-child > a,
.custom-pagination > li:first-child > span,
.custom-pagination > li:last-child > a,
.custom-pagination > li:last-child > span {
    -webkit-border-radius: 0; 
            border-radius: 0;
}

.custom-pagination > li > a {
    margin: 0 3px;
    color: #424242;
}

.custom-pagination > li > a:hover {
    color: #000;
}

.custom-pagination.pagination > .active > a,
.custom-pagination.pagination > .active > a:focus,
.custom-pagination.pagination > .active > a:hover,
.custom-pagination.pagination > .active > span,
.custom-pagination.pagination > .active > span:focus,
.custom-pagination.pagination > .active > span:hover {
    z-index: 2;
    cursor: default;
    color: #fff;
    border-color: #222; 
    background-color: #222;
}

.app-device {
    /*position: relative;*/
}

.app-device img {
    position: absolute;
    right: 10%;
    bottom: 0;
}

.app-img-bottom {
    min-height: 600px;
}

.app-img-bottom img {
    position: absolute;
    bottom: 0; 
    left: 15%;
}

.app-icon i {
    margin-right: 15px;
    color: #dedede; 
    font-size: 30px;
}

.catering-form .form-control {
    height: 65px;
    border: none;
}

.catering-form input {
    width: 400px !important;
}

.catering-form select {
    width: 200px !important;
}

.app-down-row {
    position: relative;
    height: 510px;
}

.app-down-row .cater-avatar {
    position: absolute;
    top: -65px; 
    left: 0;
}

.app-btn a {
    margin-right: 10px;
}

.catering-list .post-single .post-desk {
    height: 180px; 
    padding: 30px 0;
}

.app-down-row .app-info {
    font-weight: 300;
}

.app-down-row .app-info span {
    font-weight: bold;
}

.float-left {
    float: left;
}

.txt-extra-xl {
    font-size: 70px;
}

.light-txt-trans {
    color: rgba(255, 255, 255, .5);
}

.f-menu-desk {
    margin-bottom: 15px; 
    color: #959595;
}

.ticket-register .form-control {
    height: 40px;
    color: #a7a7a7; 
    border-radius: 5px;
}

.ticket-register .form-group,
.register-member a {
    margin: 0 5px;
}

.register-member a {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.register-member a img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.fashion-title h1 {
    margin-bottom: 0; 
    letter-spacing: 5px;
    font-size: 100px;
    font-weight: 100;
}

.fashion-footer p {
    font-size: 13px; 
    line-height: 20px;
}

.fashion-footer .subscribe-form {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.fashion-footer .subscribe-form input {
    width: 65% !important;
    border-radius: 4px; 
    background: #f8f8f8;
}

.fashion-footer ul {
    padding: 0;
    list-style: none;
}

.fashion-footer ul li a {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #6f7273;
    font-size: 13px;
}

.fashion-footer ul li a:hover {
    color: #222;
}

.fashion-footer .social-link a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-top: 5px;
    margin-right: 10px;
    margin-bottom: 5px;
    text-align: center;
    color: #cdcdcd;
    border: 1px solid #cdcdcd;
    border-radius: 50%; 
    line-height: 35px;
}

.fashion-footer .social-link a:hover {
    color: #fff;
    border: 1px solid transparent; 
    background: #5a5a5a;
}

.amenities-list li:last-child {
    border-bottom: 1px solid #9e9e9e;
}

.amenities-list li {
    padding: 10px 0; 
    border-top: 1px solid #9e9e9e;
}

.hotel-intro-box-resize .post-single {
    width: 250px;
}

.magazine-slider {
    margin-top: 0;
}

.magazine-slider img {
    height: 424px;
}

.magazine-slider .container {
    width: auto;
}

.magazine-grid .row {
    margin-right: -10px;
    margin-left: -10px;
}

.magazine-grid .col-lg-1,
.magazine-grid .col-lg-10,
.magazine-grid .col-lg-11,
.magazine-grid .col-lg-12,
.magazine-grid .col-lg-2,
.magazine-grid .col-lg-3,
.magazine-grid .col-lg-4,
.magazine-grid .col-lg-5,
.magazine-grid .col-lg-6,
.magazine-grid .col-lg-7,
.magazine-grid .col-lg-8,
.magazine-grid .col-lg-9,
.magazine-grid .col-md-1,
.magazine-grid .col-md-10,
.magazine-grid .col-md-11,
.magazine-grid .col-md-12,
.magazine-grid .col-md-2,
.magazine-grid .col-md-3,
.magazine-grid .col-md-4,
.magazine-grid .col-md-5,
.magazine-grid .col-md-6,
.magazine-grid .col-md-7,
.magazine-grid .col-md-8,
.magazine-grid .col-md-9,
.magazine-grid .col-sm-1,
.magazine-grid .col-sm-10,
.magazine-grid .col-sm-11,
.magazine-grid .col-sm-12,
.magazine-grid .col-sm-2,
.magazine-grid .col-sm-3,
.magazine-grid .col-sm-4,
.magazine-grid .col-sm-5,
.magazine-grid .col-sm-6,
.magazine-grid .col-sm-7,
.magazine-grid .col-sm-8,
.magazine-grid .col-sm-9,
.magazine-grid .col-xs-1,
.magazine-grid .col-xs-10,
.magazine-grid .col-xs-11,
.magazine-grid .col-xs-12,
.magazine-grid .col-xs-2,
.magazine-grid .col-xs-3,
.magazine-grid .col-xs-4,
.magazine-grid .col-xs-5,
.magazine-grid .col-xs-6,
.magazine-grid .col-xs-7,
.magazine-grid .col-xs-8,
.magazine-grid .col-xs-9 {
    padding-right: 10px; 
    padding-left: 10px;
}

.aside-social {
    margin-bottom: 20px; 
    border: 1px solid #ddd;
    font-size: 0;
}

.aside-social li {
    width: 25%; 
    padding-top: 8px;
    -webkit-transition: background .3s ease 0s;
            transition: background .3s ease 0s;
    text-align: center;
    border-left: 1px solid #ddd;
}

.aside-social li:hover {
    -webkit-transition: background .3s ease 0s;
            transition: background .3s ease 0s;
    color: #fff; 
    border-left: 1px solid #333;
    background: #333;
}

.aside-social li:hover i,
.aside-social li:hover p {
    -webkit-transition: .3s ease 0s;
            transition: .3s ease 0s; 
    color: #fff;
}

.aside-social li:first-child {
    border-left: medium none;
}

.aside-social.list-inline > li {
    display: inline-block;
}

.aside-social.list-inline {
    margin-left: 0;
}

.aside-social li i {
    margin-top: 5px;
    -webkit-transition: .3s ease 0s;
            transition: .3s ease 0s; 
    color: #aaa;
    font-size: 16px;
}

.aside-social li p {
    margin-top: 5px;
    margin-bottom: 6px;
    -webkit-transition: .3s ease 0s;
            transition: .3s ease 0s; 
    font-size: 11px;
}

.newsletter {
    margin-bottom: 20px;
    padding: 20px; 
    color: #fff;
    background: url("../img/parallax/3.jpg") repeat 0 0/cover;
}

.newsletter h3 {
    margin-bottom: 10px;
}

.newsletter p {
    line-height: 20px;
}

.round-less {
    border-radius: 0;
}

.magazine-grid .post-single .post-desk {
    height: auto;
}

.magazine-latest-news {
    position: relative; 
    padding: 20px;
    background: #eee;
}

.breaking {
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    margin-right: 30px;
    padding: 20px;
    text-transform: uppercase; 
    color: #fff;
    background: #333;
}

.breaking:after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    margin-top: -10px; 
    content: " ";
    pointer-events: none;
    border: solid transparent;
    border-width: 10px;
    border-color: rgba(51, 51, 51, 0);
    border-left-color: #333;
}

.magazine-latest-news .news-slider {
    margin: 0  150px 0 130px;
}

.magazine-latest-news .flex-control-nav {
    bottom: 25px;
}

.magazine-latest-news a {
    color: #333;
}

.travel-form-bg {
    display: inline-block;
    width: 100%; 
    background: rgba(0, 0, 0, .7);
}

.travel-form-bg-light {
    padding: 30px 0; 
    background: rgba(0, 0, 0, .3);
}

.travel-form-bg ul {
    margin-bottom: 0;
    margin-left: 15px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .travel-form-bg ul {
        margin-bottom: -1px;
        margin-left: 15px;
    }
}

.travel-form {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.travel-form.icon-tabs li i {
    display: inline-block !important;
}

.travel-form.icon-tabs li i {
    position: relative;
    top: 7px;
    padding-right: 10px; 
    font-size: 35px;
}

.travel-form.icon-tabs .nav > li {
    margin-left: 0; 
    padding: 0;
}

.travel-form.icon-tabs .nav > li > a {
    padding: 30px 40px;
}

.travel-form.icon-tabs .nav > li > a:hover {
    /*background: #fff;*/
}

.travel-form.icon-tabs .nav-pills > li > a:hover,
.travel-form.icon-tabs .nav-pills > li.active:hover > a,
.travel-form.icon-tabs .nav-pills > li.active > a,
.travel-form.icon-tabs .nav-pills > li.active > a:focus {
    color: #fff; 
    border-bottom: none;
}

.travel-form .form-control,
.travel-form .btn {
    height: 50px;
    border-color: transparent;
    border-radius: 4px;
}

.travel-form .btn {
    margin-top: 35px;
}

.travel-form .form-group {
    float: left;
    width: 15%;
    margin-right: 10px;
}

.travel-form .form-group label {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: normal;
}

.travel-grid .col-md-6 {
    padding: 0;
}

.travel-grid .post-list-aside .post-img img {
    border: none;
}

.travel-grid .post-list-aside {
    float: left;
}

.travel-grid .post-desk {
    display: inline-block;
    height: auto; 
    padding: 50px 30px;
}

.featured-item.feature-outline.travel-feature {
    position: relative;
    padding: 0 0 0 130px;
}

.wedding-font {
    text-transform: none; 
    font-family: "Arizonia", cursive;
}

.bride-groom-txt {
    font-size: 100px !important;
    line-height: normal;
}

.wd-font-50 {
    font-size: 50px !important;
}

.wd-font-72 {
    font-size: 72px !important;
}

.wd-font-light {
    font-weight: 300 !important;
}

.bride-groom-row {
    padding: 0 50px;
}

.bride-groom-row .team-img {
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.bride-groom-row .team-img img {
    width: 100%;
    height: auto;
}

.wed-thumb,
.bride-groom-row .team-img.fnf-img {
    display: inline-block; 
    width: 160px;
    height: 160px;
}

.wed-thumb img,
.bride-groom-row .team-img.fnf-img img {
    width: 100%;
    height: auto;
    border: 10px solid #fff; 
    border-radius: 50%;
}

.m-top-negative {
    position: relative;
    top: -80px;
}

.pad-less {
    padding: 0;
}

.wedding-form .form-control {
    border-radius: 5px;
}

.wd-photo-border {
    border: 10px solid #f2f3f3 !important;
}

.heart-space {
    padding: 0 10px; 
    font-size: 30px;
}

.opacity-90 {
    opacity: .9;
}

.ls-3 {
    letter-spacing: 3px;
}

#bucket-lift-off {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    -webkit-transition: all .3s;
            transition: all .3s; 
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    line-height: 40px;
}

.bucket-lift-off-show {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); 
    opacity: 1;

    filter: alpha(opacity=100);
}

.bucket-lift-off-hide {
    -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
            transform: translateY(40px); 
    opacity: 0;

    filter: alpha(opacity=0);
}

.wpcf7 .form-group {
    line-height: 0;
}

.error-avatar img {
    max-width: 100%;
}

.error-txt {
    line-height: 33px;
}

.bg-img-left-align {
    background-repeat: no-repeat;
    background-position: left 100px !important;
}

.bg-img-right-align {
    background-repeat: no-repeat;
    background-position: right 100px !important;
}

.featured-container-center-align .container {
    width: 100% !important;
}

.featured-auto-height .featured-item {
    height: 300px;
}

.admin-bar header.sticky {
    margin-top: 32px;
}

@media only screen and (min-width: 769px) {
    .tb-parallax-banner {
        background-size: cover;
    }
}

.post-edit-link,
.vc_inline-link,
.return-to-shop .button {
    display: inline-block;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle; 
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.42857143;
}

.massive-main > .ab-item > img {
    position: relative !important;
    top: -1px;
    display: inline-block;
    margin-right: 5px !important;
}
/*R2L*/
.page-content-7117{padding-top:50px !important; padding-bottom:50px !important;}
.page-content-7117 .heading-title-alt h2{line-height:normal !important;}


/* Login design fixign */
.lagn-login-section{width:65%; float:left;}
.lagn-login-section h1{margin: 0;
    padding: 0;
    font-size: 20px;
    letter-spacing: 0px;}
.lagn-form-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}
.lagn-login-section input {
    padding: 3px 10px;
    width: 100%;
    height: auto;
    float: left;
    border: 1px solid #ccc;
    outline: none;
}

.lagn-submit-section input{width:auto;}
.lagn-login-section .lagn-input-section{width:100%; float:left; margin-bottom:17px;}
.lagn-login-section .lagn-input-section label{width:100%; float:left}
.lagn-login-section p.lagn-message {
    padding: 0;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
.lagn-login-section .lagn-remember{float:left}
.lagn-login-section .lagn-forgot{float:right}
.lagn-login-section .lagn-submit-section{width:100%; float:left}
.lagn-login-section .lagn-remember input{width:auto; margin-right:5px;}
.lagn-login-section .lagn-submit-section input {
    background: #dd2027;
    color: #fff;
    padding: 6px 21px;
    border: none;
    margin-top: 12px;
    margin-top: 18px;
    border-radius: 2px; font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
}
.lagn-login-section .lagn-remember-me label {
    font-weight: 400;
    font-size: 14px;
}
.lagn-login-section .lagn-forgot a {
    font-weight: 400;
    font-size: 14px;
}

.finger3_img {
    margin-top: 17px;
}
