body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    padding: 0;
    color: #808080;
    background-color: #101010;
    height: 100%;
}

p, ul, ol, dl, table, fieldset, blockquote, pre, code {
}
/* headings
------------------------------------------------------*/
h1, h2, h3, h4, h5 {
    color: #FFFFFF;
    font: 60px 'Oswald', 'Arial-black',sans-serif;
    padding-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
}

h1, h2, h3 {
    line-height: 30px;
}

h4, h5, h6 {
    line-height: 30px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 35px;
    font-weight: 600;
}

h3 {
    font-size: 22px;
    font-weight: 400;
}

h4 {
    font-size: 18px;
    font-weight: 300;
}

h5 {
    font-size: 16px;
    font-weight: 300;
}

h6 {
    font-size: 11px;
    font-weight: 300;
}

hr {
    background: #2b2b2b;
    width: 100%;
    height: 1px;
    border: none;
}

p {
    color: #808080;
    padding-bottom: 10px;
    clear: both;
    font-size: 15px;
    line-height: 22px;
}

iframe {
    width: 100%;
    border: none;
}

.thumb_img {
    float: left;
    margin-right: 20px;
}

.description {
    display: table;
    overflow: hidden;
}
/* imgage alignment
----------------------------------------------------------------------------------------------------*/
.alignright {
    float: right;
    margin: 3px 0 0px 10px;
    width: auto;
}

.alignleft {
    float: left;
    margin: 0px 20px 0px 0px;
    width: auto;
}

.align {
    float: left;
    margin: 0 10px 0px 0;
    width: auto;
}

a img {
    border: none;
}

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

*|*:focus {
    outline: none;
}

a:link, a:visited, a:link {
    text-decoration: none;
    outline: none;
}

.clear {
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
    width: 100%;
    overflow: hidden;
}
/* bg overlay
----------------------------------------------------------------------------------------------------*/
.bg-overlay {
    position: fixed;
    background-image: url(../images/pattern.png);
    background-repeat: repeat;
    width: 100%;
    z-index: -1;
    height: 100%;
}
/* Header
----------------------------------------------------------------------------------------------------*/
.logo h1 {
    font-size: 100px;
    float: left;
    text-shadow: rgb(0, 0, 0) 2px 2px 4px;
}

.logo a {
    color: #fff;
}

.contact-no {
    float: right;
}

    .contact-no h3 {
        text-shadow: rgb(0, 0, 0) 2px 2px 4px;
        color: #fff;
        font-size: 2.5em;
    }

    .contact-no ul {
        float: right;
    }

    .contact-no li {
        display: inline-block;
        background: rgba(0,0,0,0.8);
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        border-radius: 100px;
    }

        .contact-no li a {
            color: #fff;
        }

        .contact-no li:hover {
            background: #f3bc27;
        }
/* Caption
----------------------------------------------------------------------------------------------------*/
.caption {
    margin-top: 50px;
}

    .caption h3 {
        font-size: 30px;
        line-height: 40px;
    }

    .caption h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .caption span {
        color: #f3bc27;
    }

    .caption p {
        font-size: 18px;
        color: #fff;
    }

.button a {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    padding: 10px 20px;
    margin-top: 27px;
    display: table;
}

    .button a:hover {
        color: #333;
        background-color: #fff;
    }
/* Content
----------------------------------------------------------------------------------------------------*/
.content {
    background: rgba(0,0,0,0.8);
    padding: 30px 30px;
    overflow: hidden;
    margin-bottom: 100px;
    margin-top: 90px;
    color: #bfbfbf;
}
/* Bg
----------------------------------------------------------------------------------------------------*/
#bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -1;
}

    #bg img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        min-width: 50%;
        min-height: 50%;
    }
/* Portfolio
----------------------------------------------------------------------------------------------------*/
figure {
    margin: 0;
    padding: 0;
    position: relative;
    display: table;
    cursor: pointer;
    overflow: hidden;
}

    figure:hover figcaption {
        -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        filter: alpha(opacity=100);
        opacity: 1;
        top: 0;
    }

figcaption {
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.5);
    color: #fff;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -o-transition: all .9s ease;
    -ms-transition: all .9s ease;
    transition: all .9s ease;
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -o-transition-delay: .5s;
    -ms-transition-delay: .5s;
    transition-delay: .5s;
    text-align: center;
}

    figcaption h3 {
        font-family: 'Open sans';
        font-weight: 400;
        color: #f3b204;
        padding: 10px 20px;
        margin-bottom: 0;
        position: relative;
        right: 100%;
        margin-top: 37px;
        font-size: 30px;
        -webkit-transition: all .9s ease;
        -moz-transition: all .9s ease;
        -o-transition: all .9s ease;
        -ms-transition: all .9s ease;
        transition: all .9s ease;
    }

    figcaption p {
        font-family: 'Open sans';
        padding: 0px;
        display: inline-block;
        margin-bottom: 0;
        margin-top: 20px;
        position: relative;
        left: 100%;
        font-size: 13px;
        -webkit-transition: all .9s ease;
        -moz-transition: all .9s ease;
        -o-transition: all .9s ease;
        -ms-transition: all .9s ease;
        transition: all .9s ease;
        top: 50%;
        margin-top: -50%;
    }

figure:hover h3, figure:hover p {
    left: 0;
}

figcaption a {
    color: #333 !important;
    background: #fff;
    text-decoration: none;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: block;
    line-height: 40px;
    position: relative;
    bottom: 50%;
}

    figcaption a:hover {
        color: #fff !important;
        background: #f3bc27;
    }
/* Price Table
----------------------------------------------------------------------------------------------------*/
table.price_table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.price_table td, .price_table th {
    border: 1px solid #1f1f1f;
    text-align: left;
    padding: 8px;
    background: #0e0e0e;
}

.price_table tr:nth-child(even) {
    background-color: #f2f2f2
}

.price_table th {
    padding-top: 11px;
    padding-bottom: 11px;
    background-color: #f3bc27;
    color: white;
}

.tabletest {
    margin-top: 20px;
    margin-bottom: 40px;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

    .tabletest,
    .tabletest th,
    .tabletest td {
        padding: 8px;
        text-align: left;
    }
/* Gallery
----------------------------------------------------------------------------------------------------*/
ul.gallery {
    width: 102%;
}

    ul.gallery li {
        display: inline-block;
        width: 22.90%;
        margin-right: 20px;
        margin-bottom: 20px;
    }
/* List
----------------------------------------------------------------------------------------------------*/
ul.list li {
    padding-bottom: 5px;
}

    ul.list li a {
        color: #808080 !important;
    }

        ul.list li a:hover {
            color: #f3bc27 !important;
        }

    ul.list li i {
        color: #6f6f6e !important;
        padding-right: 10px;
        font-size: 7px;
        position: relative;
        top: -3px;
    }
/* Shop
----------------------------------------------------------------------------------------------------*/
.shop h5 {
    color: #f3bc27 !important;
    font-weight: bold;
}
/* Blog
----------------------------------------------------------------------------------------------------*/
.meta_desc {
    background: rgba(0,0,0,0.8);
    display: table;
    margin-bottom: 15px;
    width: 100%;
}

span.meta_desc span {
    display: inline-block;
    padding: 10px 25px;
    border-right: 1px solid #131313;
}

span.meta_desc i {
    color: #f3bc27;
    padding-right: 10px;
}

span.meta_desc a {
    color: #808080;
}

    span.meta_desc a:hover {
        color: #f3bc27;
    }

article .button a {
    margin-top: 10px;
}

article {
    margin-bottom: 50px;
}

    article h3 a {
        color: #fff !important;
        margin-top: 30px;
        display: table;
    }

        article h3 a:hover {
            color: #f3bc27 !important;
        }

.pagination li {
    display: inline-block;
    margin-right: 6px;
}

    .pagination li:first-child a {
        border: 1px solid #f3bc27;
        background: #f3bc27;
        padding: 12px;
        color: #fff;
    }

    .pagination li a {
        border: 1px solid #2b2b2b;
        padding: 12px;
        color: #fff;
    }

        .pagination li a:hover {
            border: 1px solid #f3bc27;
            background: #f3bc27;
            color: #fff;
        }

.pagination {
    margin-top: 60px;
}

aside {
    border-left: 1px solid #2b2b2b;
    padding-left: 30px;
}

.widget {
    margin-bottom: 50px;
}

    .widget li {
        color: #c3c3c3;
        padding-bottom: 10px;
        margin-bottom: 10px;
        display: block;
        border-bottom: 1px solid #2b2b2b;
        background-image: url(../images/list_arrow.png);
        background-repeat: no-repeat;
        background-position: left top;
        padding-left: 23px;
    }

        .widget li a {
            color: #808080;
        }

            .widget li a:hover {
                color: #f3bc27;
            }

ul.tag_cloud li {
    display: inline-block;
    border-bottom: none;
    margin-bottom: 0;
    background-image: none;
    padding-left: 0;
}

    ul.tag_cloud li a {
        border: 1px solid #2b2b2b;
    }

    ul.tag_cloud li a {
        border: 1px solid #2b2b2b;
        padding: 10px 20px;
        display: block;
    }

        ul.tag_cloud li a:hover {
            border: 1px solid #f3bc27;
            background-color: #f3bc27;
            color: #fff;
        }

.author .description h4 {
    line-height: 20px;
    padding-bottom: 10px;
}
/* Contact Us
----------------------------------------------------------------------------------------------------*/
h3.title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

    h3.title:after {
        position: absolute;
        content: "";
        width: 10%;
        background: #fff;
        height: 3px;
        bottom: 0;
        margin: 0px auto;
        left: 0;
        right: 0;
    }

.icon_box {
    border-bottom: 1px solid #2b2b2b;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .icon_box i {
        float: left;
        margin: 0px 20px 0px 0px;
        background: #f3bc27;
        padding: 10px;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        color: #fff;
    }

    .icon_box .descripion {
        display: block;
        overflow: hidden;
    }

        .icon_box .descripion h5 {
            line-height: 15px;
        }

#contact-form input, #contact-form textarea {
    padding: 5px;
    font-family: Helvetica, sans-serif;
    margin: 10px 0px 10px 0px;
    border: 1px solid #2b2b2b;
    color: #666666;
    background: transparent;
}

#contact-form input {
    width: 95%;
}

#contact-form textarea {
    height: 88px;
    width: 95%
}

    #contact-form textarea:focus, #contact-form input:focus {
        border: 1px solid #E1E1E1;
    }

#contact-form p input#submit {
    box-shadow: none;
    border: none;
    float: left;
    background-color: #f3bc27;
    padding: 10px 15px 10px 15px;
    color: #fff;
    font-size: 13px;
    -moz-transition: all 0.2s ease 0s;
    width: 97%;
}

#contact-form p {
    padding-bottom: 0px !important;
}

    #contact-form p input#submit:hover {
        background-color: #ff5400 !important;
        -webkit-transition-property: background;
        -webkit-transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-out;
        -moz-transition-property: background;
        -moz-transition-duration: 0.5s;
        -moz-transition-timing-function: ease-out;
        -o-transition-property: background;
        -o-transition-duration: 0.5s;
        -o-transition-timing-function: ease-out;
        -ms-transition-property: background;
        -ms-transition-duration: 0.5s;
        -ms-transition-timing-function: ease-out;
        transition-property: background;
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
        color: #fff !important;
        cursor: pointer;
    }

#contact-form label {
    float: left;
    width: 70px;
    padding-top: 5px;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    color: #808080;
}

.vaidate_error {
    border: 1px solid #F96E5B !important;
}

#response {
    color: #006633;
}

ul.time-table {
    border: 1px solid #1b1b1b;
}

    ul.time-table li {
        background: #000;
        padding: 15px;
        overflow: hidden;
    }

        ul.time-table li:nth-child(even) {
            background: #191919;
        }

        ul.time-table li strong {
            float: left;
        }

        ul.time-table li span {
            float: right;
        }

/* Shop
----------------------------------------------------------------------------------------------------*/
.rating {
    margin-bottom: 10px;
}

ul.rating li {
    display: inline-block;
    color: #f3bc27;
}

    ul.rating li a {
        color: #808080;
        margin-left: 10px;
    }

        ul.rating li a:hover {
            color: #f3bc27;
        }

span.qt {
    float: left;
    background: #191919;
    padding: 11px 41px 11px;
    display: table;
    background-image: url(../images/qt.png);
    background-repeat: no-repeat;
    background-position: 70px 11px;
    font-size: 15px;
    border: 1px solid #2b2b2b;
}

.quantity .button {
    margin-left: 111px;
    display: block;
}

ul#tabs {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-bottom: -1px;
    background: none repeat scroll 0 0 rgba(127, 127, 127, 0.1);
    border: 1px solid rgba(127, 127, 127, 0.1);
    display: table;
    width: 99.8%;
}

    ul#tabs li {
        display: inline-block;
        padding: 10px 20px;
        color: #808080;
        cursor: pointer;
    }

        ul#tabs li:hover,
        ul#tabs li.active {
            color: #fff;
            background-color: #f3bc27;
            position: relative;
        }

ul#tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: none repeat scroll 0 0 rgba(127, 127, 127, 0.1);
    border: 1px solid rgba(127, 127, 127, 0.1);
    padding: 20px;
    clear: both;
    overflow: hidden;
}

ul#tabs li:hover:after,
ul#tabs li.active:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f3bc27;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0px auto;
}

ul#tab li {
    display: none;
}

    ul#tab li.active {
        display: block;
    }

.commentlist {
    margin-bottom: 30px;
}

    .commentlist .description {
        display: block;
        overflow: hidden;
        background: #1f1f1f;
        padding: 13px 27px 6px;
        border: 1px solid #292929;
    }

.commentlist-reply {
    margin-left: 50px;
}

.rating span {
    color: #f3bc27;
}

ul.shop_shortlist li {
    background-image: none;
    padding-left: 0px;
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.shop h3 a {
    color: #fff;
}

.shop_shortlist p {
    float: left;
}

.shop_shortlist h4 {
    padding-bottom: 10px;
}

.shop_shortlist .button {
    float: right;
}

    .shop_shortlist .button a {
        margin-top: 0px;
    }
/* Loader
------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* change if the mask should be a color other than white */
    z-index: 99; /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%; /* centers the loading animation horizontally on the screen */
    top: 50%; /* centers the loading animation vertically on the screen */
    background-image: url(../images/loader.gif); /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px; /* is width and height divided by two */
}

.photo-image {
    position: relative;
    height: 100%;
    width: 100%;
    /*background-size: 100% !important;*/
    background-position: top center !important;
    -webkit-animation: panning 50s infinite linear;
    animation: panning 50s infinite linear;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

html, body, form {
    height: 100%;
}

.ustmenu {
    position: absolute;
    z-index: 999;
    left: 0px;
    right: 4px;
    top: 0px;
}

.tabinator {
    text-align: center;
}

    .tabinator input {
        display: none;
    }

    .tabinator label {
        box-sizing: border-box;
        display: inline-block;
        padding: 10px 15px;
        color: #ccc;
        margin-bottom: 20px;
        margin-left: 5px;
    }

        .tabinator label:before {
            content: '';
            display: block;
            width: 100%;
            position: absolute;
            bottom: -11px;
            left: 0;
            z-index: 10;
        }

        .tabinator label:hover {
            color: #888;
            cursor: pointer;
        }

    .tabinator input:checked + label {
        position: relative;
        color: #000;
        background: #fff;
        border: 1px solid #bbb;
        border-bottom: 1px solid #fff;
        border-radius: 5px 5px 5px 5px;
    }

        .tabinator input:checked + label:after {
            display: block;
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            box-shadow: 0 0 15px #939393;
        }

#content1, #content2, #content3, #content4, #content5, #content6, #content7, #content8 {
    display: none;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8 {
    display: block;
}
