﻿
html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    color: #666666;
    width: 100%;
}

@media (min-width: 992px) {
    body {

        line-height: 1.4;
    }
}

@media (min-width: 2000px) {
    body {
background-color: transparent;
        font-size: 16px;
        
    }
}

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

b,
strong,
label,
.label {
    font-weight: 500;
}

@media print {
    .container {
        width: 100% !important;
    }
}

/*  
    ----------------------------------
    2. Page loader
    ----------------------------------
*/
.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 999999;
    background-color: white;
}

.page-loader:before {
    font-family: 'LinearIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e810";
    position: fixed;
    font-size: 40px;
    left: 50%;
    top: 50%;
    z-index: 999999;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    color: #ffbb00;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.page-loader.loaded {
    width: 0;
    left: 0;
    -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded:before {
    opacity: 0;
}

/*  
    ----------------------------------
    3. Headings
    ----------------------------------
*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0;
}

h1, .h1 {
    font-size: 23px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 34px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

h2, .h2 {
    font-size: 21px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h2, .h2 {
        font-size: 30px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

h3, .h3 {
    font-size: 19px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h3, .h3 {
        font-size: 26px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

h4, .h4 {
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h4, .h4 {
        font-size: 22px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

h5, .h5 {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h5, .h5 {
        font-size: 18px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

h6, .h6 {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    h6, .h6 {
        font-size: 14px;
        margin-top: 26.66667px;
        margin-bottom: 26.66667px;
    }
}

/*  
    ----------------------------------
    4. Anchors
    ----------------------------------
*/
a {
    color: #3a3d45;
}
.products a{
    color: white;
}

a:focus, a:active, a:hover {
    color: #666666;
    text-decoration: none;
}

a, .btn {
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media print {
    a[href]:after,
    abbr[title]:after,
    a[href^="#"]:after {
        content: none !important;
    }
}

/* iPad fix */
input, textarea, select {
    -webkit-appearance: none;
    /*disable shaddow nav ipad*/
    -moz-appearance: none;
    /*disable shaddow nav ipad*/
    border-radius: 0;
    /*disable border-radius ipad*/
}

/*  
    ----------------------------------
    5. Button styles
    ----------------------------------
*/
.btn {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.btn.btn-main {
    background-color: #2196f3;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.btn.btn-main:hover {
    background-color: #3a3d45;
}

.btn.btn-main, .btn.btn-main:hover, .btn.btn-main:focus, .btn.btn-main:active {
    color: #fff;
}

.btn.btn-clean {
    background-color: transparent;
    border-color: white;
    color: white !important;
}

.btn.btn-clean:hover {
    background-color: white;
    border-color: white;
    color: black !important;
}

.btn.btn-clean-dark {
    background-color: transparent;
    border-color: rgba(58, 61, 69, 0.5);
    color: #3a3d45 !important;
}

.btn.btn-clean-dark:hover {
    background-color: #3a3d45;
    border-color: #3a3d45;
    color: white !important;
}

.btn.btn-add {
    background: transparent;
    position: absolute;
    overflow: hidden;
    color: white;
    bottom: 0;
    right: 0;
    border: 0;
    width: 100px;
    height: 100px;
    font-size: 19px;
    cursor: pointer;
    z-index: 9;
}

.btn.btn-add:hover {
    color: white;
}

.btn.btn-add:hover:before {
    background-color: #000000;
}

.btn.btn-add .icon {
    position: absolute;
    bottom: 17px;
    right: 17px;
}

.btn.btn-add:before {
    background-color: #ffbb00;
    position: absolute;
    content: "";
    width: 200%;
    height: 200%;
    top: 0%;
    left: 50%;
    z-index: 0;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn.btn-buy {
    background-color: #ffbb00;
    color: white;
    position: absolute;
    padding: 0;
    right: 10px;
    top: 0;
    width: 80px;
    height: 80px;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 20;
}

.btn.btn-buy:after, .btn.btn-buy:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 80px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn.btn-buy:before {
    font-family: 'LinearIcons';
    content: "\e82e";
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.btn.btn-buy:after {
    font-family: "Montserrat",sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    content: attr(data-text);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn.btn-buy:hover:before {
    font-family: 'LinearIcons';
    content: "\e82e";
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.btn.btn-buy:hover:after {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*  
    ----------------------------------
    6. Breadcrumbs
    ----------------------------------
*/
.breadcrumb {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.breadcrumb.breadcrumb-inverted {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb.breadcrumb-inverted > li {
    color: white;
}

.breadcrumb.breadcrumb-inverted > li > a {
    color: white;
}

.breadcrumb > li.active,
.breadcrumb > li.active a {
    color: #ffbb00;
}

.breadcrumb > li a.active {
    color: #ffbb00;
}

@media (max-width: 767px) {
    .breadcrumb {
        overflow: auto;
    }
}



/*  
    ----------------------------------
    8. Sections
    ----------------------------------
*/
section {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1200px) {
    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/*  
    ----------------------------------
    9. Header
    ----------------------------------
*/
header {
    display: block;
    margin-bottom: 40px;
}

header .title {
    margin-top: 0;
    margin-bottom: 5px;
    color: #0750ca;
    z-index: 1;
    position: relative;
}

header .title:last-child {
    margin-bottom: 0;
}

header .subtitle {
    text-transform: none;
}

header .text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    header {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    header {

        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    header {
        margin-bottom: 40px;
    }
}

/*  
    ----------------------------------
    10. Main Header
    ----------------------------------
*/
.main-header {
    padding-top: 128px;
    padding-bottom: 20px;
    background-color: #3a3d45;
    background-size: cover;
    background-position: center;
}

.main-header header, .main-header .title {
    color: white;
}

.main-header header {
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .main-header {
        padding-top: 200px;
    }
    .main-header.main-header-blog {
        padding-bottom: 100px;
    }
}

@media print {
    .main-header {
        padding: 40px 0 !important;
    }
}

/*  
    ----------------------------------
    11. Main navigation
    ----------------------------------
*/

nav {
    position: absolute;
    background-color: black;
    z-index: 9999;
    width: 100%;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media print {
    nav {
        display: none !important;
    }
}

nav.navbar-fixed {
    position: fixed;
    background-color:  whitesmoke;
}

nav.navbar-default {
    position: relative;
    background-color: black;
}

nav.navbar-sticked {
    background-color: #ffbb00;
}

nav.navbar-sticked .navigation-top > ul {
    height: 0;
    border-color: transparent;
}

nav .container,
nav .navigation {
    position: relative;
}

nav .navigation ul,
nav .navigation ul li {
    margin: 0;
    padding: 0;
}

nav .navigation ul li {
    list-style-type: none;
}

nav .navigation > ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav .navigation > ul > li,
nav .navigation > ul > li > a {
    display: inline-block;
}

nav .navigation > ul > li > a {
    padding: 14px 20px;
}

nav .navigation > ul > li.active a, nav .navigation > ul > li.active a:hover {
    color: #7b7b7b;
}

nav .navigation .logo {
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
}

nav .navigation .logo img {
    max-width: 150px;
}

nav .navigation .nav-settings ul li {
    cursor: pointer;
    padding: 5px 0;
}

nav .navigation .nav-settings ul li:hover {
    color: black;
}

nav .navigation .nav-settings:hover .nav-settings-list {
    visibility: visible;
    opacity: 1;
}

nav .navigation .nav-settings .nav-settings-list {
    border-bottom: 5px solid black;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #ffbb00;
    color: white;
    top: 100%;
    z-index: 999;
    padding: 10px;
    text-align: left;
    min-width: 80px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

nav .navigation-top {
    position: relative;
    z-index: 99999;
}

nav .navigation-top > ul {
   /* text-align: right;*/
    height: 28px;
    overflow: hidden;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


nav .navigation-top > ul > li > a {
    color: #e91e63;
    padding: 5px 13px;
    
}

nav .navigation-top > ul > li > a:hover {
    color: #ffc933;
}

@media (min-width: 990px) {
    nav .navigation-top > ul {
        height: 35px;
    }
    nav .navigation-top > ul > li > a {
        padding: 5px 15px;
    }
}
 @media screen and (max-width: 990px) {
    nav .navigation-top > ul > li > a {
        padding: 4px ;
        margin: 2px;
    }
    nav .navigation-top .indiaphone {
     padding-right: 3px;
    }
 } 
 @media screen and (max-width: 370px) {


        nav .navigation-top li{
    font-size: 11px;
    }
    nav .navigation-top > ul {
        height: 23px;
    }

 } 


nav .navigation-main .open-cart,
nav .navigation-main .open-login,
nav .navigation-main .open-search,
nav .navigation-main .open-settings,
nav .navigation-main .open-menu,
nav .navigation-main .close-menu-wrapper {
    display: none;
}

nav .navigation-main .open-dropdown {
    margin-left: 5px;
}

nav .navigation-main .floating-menu > ul > li > a {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

nav .navigation-main .navbar-dropdown .navbar-box .row > div {
    margin-bottom: 15px;
    margin-bottom: 0;
}

nav .navigation-main .navbar-dropdown .navbar-box ul {
    margin-bottom: 20px;
}

nav .navigation-main .navbar-dropdown .navbar-box ul > li {
    padding: 0;
    list-style-type: none;
    margin-bottom: 5px;
}

nav .navigation-main .navbar-dropdown .navbar-box ul > li.label {
    padding: 5px 0;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 6px;
    font-weight: normal;
    color: #ffbb00;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

@media (min-width: 992px) {
    nav .navigation-main .navbar-dropdown .navbar-box ul > li.label {
        font-size: 18px;
        color: white;
        margin-bottom: 12px;
    }
}

nav .navigation-main .navbar-dropdown .navbar-box ul > li > a {
    color: white;
    display: block;
    padding-bottom: 5px;
    border-bottom: 1px solid #ffc933;
}

nav .navigation-main .navbar-dropdown .navbar-box ul > li > a span.label {
    padding: 2px 4px;
    vertical-align: super;
    font-size: 55%;
    display: inline-block;
}

@media (min-width: 992px) {
    nav .navigation-main .navbar-dropdown .navbar-box ul > li > a:hover {
        color: black;
    }
}

nav .navigation-main .navbar-dropdown .navbar-box ul > li:last-child > a {
    border-bottom: 0;
}








/* Default styles */

/* Styles for screens smaller than 768px (typical tablet size) */
@media (max-width: 9px) {
    .navigation {
        width: 100%;
        padding: 0;
        position: static;
        background-color: #fff; /* Adjust background color as needed */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
    }

    .navigation-top {
        display: none; /* Hide top navigation on smaller screens */
    }

    .navigation-main {
        padding: 10px; /* Add some padding for better spacing */
    }

    .floating-menu {
        display: block;
    }

    .open-menu {
        display: inline-block; /* Show the menu button */
    }

    .close-menu-wrapper {
        display: none; /* Hide close menu button */
    }

    .floating-menu ul {
        display: none; /* Hide the menu items by default */
        background-color: #fff; /* Adjust background color as needed */
        padding: 10px;
        margin: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
    }

    .floating-menu ul li {
        display: block;
        margin-bottom: 10px; /* Add some space between menu items */
    }

    .floating-menu ul li a {
        display: block;
        color: #000; /* Adjust text color as needed */
        text-decoration: none;
    }
}








@media (min-width: 992px) {
    nav .navigation .floating-menu > ul > li,
    nav .navigation .floating-menu > ul > li > a {
        display: inline-block;
    }
    nav .navigation .logo {
        position: absolute;
        z-index: 1;
        top: 5px;
        left: 0;
    }
    nav .navigation-top {
        display: block;
    }
    nav .navigation-main .floating-menu > ul {
        position: relative;
        text-align: right;
        border-bottom: 0px solid #CCC;
    }
    nav .navigation-main .floating-menu > ul > li > a {
        color: #034a8d;
        padding: 20px 20px;
    }
    nav .navigation-main .floating-menu > ul > li > a.current:after, nav .navigation-main .floating-menu > ul > li > a:after {
        position: absolute;
        background-color: #ffbb00;
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        height: 5px;
        width: 100%;
        display: block;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -moz-transform: rotateY(-90deg);
        -ms-transform: rotateY(-90deg);
        -o-transform: rotateY(-90deg);
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown {
        position: absolute;
        overflow: hidden;
        color: white;
        width: 100%;
        left: 0;
        right: 0;
        top: 99%;
        text-align: left;
        z-index: 9999;
        -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -moz-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box {
        display: table;
        width: 100%;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box .image img {
        width: 100%;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box > div {
        display: table-cell;
        vertical-align: top;
        width: 50%;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box .box-1 {
        background-color: rgba(0, 0, 0, 0.9);
        width: 40%;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box .box-2 {
        width: 60%;
        background-color: #ffbb00;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box .box {
        padding: 40px 50px;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box ul {
        width: 100%;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .navbar-box ul:last-child {
        margin-bottom: 0;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown.navbar-dropdown-single {
        width: auto;
        right: auto;
        left: auto;
        max-width: 250px;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown.navbar-dropdown-single .navbar-box {
        min-height: inherit;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown.navbar-dropdown-single .navbar-box .box {
        padding: 20px;
    }
    nav .navigation-main .floating-menu > ul > li .navbar-dropdown .btn {
        margin-top: 20px;
    }
    nav .navigation-main .floating-menu > ul > li.active a:hover {
        color: #ffbb00;
    }
    nav .navigation-main .floating-menu > ul > li a.current:after,
    nav .navigation-main .floating-menu > ul > li:hover a:after {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    nav .navigation-main .floating-menu > ul > li:last-child > a {
        padding-right: 0;
    }
    nav .navigation-main .floating-menu > ul > li:last-child .navbar-dropdown.navbar-dropdown-single {
        right: 0;
    }
    nav .navigation-main .floating-menu > ul > li:hover .navbar-dropdown {
        -moz-transition: all 0.6s cubic-bezier(0, 0.95, 0.8, 0.99);
        -o-transition: all 0.6s cubic-bezier(0, 0.95, 0.8, 0.99);
        -webkit-transition: all 0.6s cubic-bezier(0, 0.95, 0.8, 0.99);
        transition: all 0.6s cubic-bezier(0, 0.95, 0.8, 0.99);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
}

@media (max-width: 991px) {
    nav.navbar-fixed {
       
        background-color: #ffbb00;
    }
    nav.navbar-single-page {
        position: fixed !important;
    }
    nav .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    nav .navigation.navigation-top {
        background-color: white;
    }
    nav .navigation .logo {
        width: 165px;
        overflow: hidden;
        padding-left: 14px;
    }
    nav .navigation-main .open-menu,
    nav .navigation-main .close-menu-wrapper {
        display: block;
    }
    nav .navigation-main .open-menu {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 50px;
        height: 100%;
        color: #fff;
        text-align: center;
        border: 1px solid #333;

    }
    nav .navigation-main .open-menu .icon {
        font-size: 35px;
        line-height: 60px;
        
    }
    nav .navigation-main .floating-menu {
        position: absolute;
        padding: 0 10px;
        z-index: 9999;
        width: 100%;
        top: 0;
        right: 0;
        left: auto;
        background-color: #000000;
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    nav .navigation-main .floating-menu.expanded, nav .navigation-main .floating-menu.expanded .close-menu {
        display: block;
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    nav .navigation-main .floating-menu.expanded > ul > li {
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }
    nav .navigation-main .floating-menu .navbar-dropdown {
        display: none;
        background-color: #1a1a1a;
        padding: 0 10px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-bottom: 10px;
    }
    nav .navigation-main .floating-menu > ul {
        overflow: hidden;
    }
    nav .navigation-main .floating-menu > ul > li {
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(1) {
        -moz-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(2) {
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(3) {
        -moz-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(4) {
        -moz-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
        -webkit-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(5) {
        -moz-transition-delay: 0.5s;
        -o-transition-delay: 0.5s;
        -webkit-transition-delay: 0.5s;
        transition-delay: 0.5s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(6) {
        -moz-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(7) {
        -moz-transition-delay: 0.7s;
        -o-transition-delay: 0.7s;
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(8) {
        -moz-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        -webkit-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(9) {
        -moz-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
        -webkit-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(10) {
        -moz-transition-delay: 1s;
        -o-transition-delay: 1s;
        -webkit-transition-delay: 1s;
        transition-delay: 1s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(11) {
        -moz-transition-delay: 1.1s;
        -o-transition-delay: 1.1s;
        -webkit-transition-delay: 1.1s;
        transition-delay: 1.1s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(12) {
        -moz-transition-delay: 1.2s;
        -o-transition-delay: 1.2s;
        -webkit-transition-delay: 1.2s;
        transition-delay: 1.2s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(13) {
        -moz-transition-delay: 1.3s;
        -o-transition-delay: 1.3s;
        -webkit-transition-delay: 1.3s;
        transition-delay: 1.3s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(14) {
        -moz-transition-delay: 1.4s;
        -o-transition-delay: 1.4s;
        -webkit-transition-delay: 1.4s;
        transition-delay: 1.4s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(15) {
        -moz-transition-delay: 1.5s;
        -o-transition-delay: 1.5s;
        -webkit-transition-delay: 1.5s;
        transition-delay: 1.5s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(16) {
        -moz-transition-delay: 1.6s;
        -o-transition-delay: 1.6s;
        -webkit-transition-delay: 1.6s;
        transition-delay: 1.6s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(17) {
        -moz-transition-delay: 1.7s;
        -o-transition-delay: 1.7s;
        -webkit-transition-delay: 1.7s;
        transition-delay: 1.7s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(18) {
        -moz-transition-delay: 1.8s;
        -o-transition-delay: 1.8s;
        -webkit-transition-delay: 1.8s;
        transition-delay: 1.8s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(19) {
        -moz-transition-delay: 1.9s;
        -o-transition-delay: 1.9s;
        -webkit-transition-delay: 1.9s;
        transition-delay: 1.9s;
    }
    nav .navigation-main .floating-menu > ul > li:nth-child(20) {
        -moz-transition-delay: 2s;
        -o-transition-delay: 2s;
        -webkit-transition-delay: 2s;
        transition-delay: 2s;
    }
    nav .navigation-main .floating-menu > ul > li > a {
        color: white;
        display: block;
        border-bottom: 1px solid #252525;
        padding: 15px 0;
        position: relative;
     
    }
    nav .navigation-main .floating-menu > ul > li > a .open-dropdown{
        padding-right: 10px;
     
    }
    nav .navigation-main .floating-menu .close-menu{
        padding-right: 10px;
     
    }
    nav .navigation-main .floating-menu > ul > li .open-dropdown {
        position: absolute;
        display: block;
        width: 40px;
        height: 100%;
        right: 0;
        top: 0;
        font-size: 22px;
        line-height: 50px;
        text-align: center;
    }
    nav .navigation-main .floating-menu > ul > li .open-dropdown .fa:before {
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        display: inline-block;
    }
    nav .navigation-main .floating-menu > ul > li.expanded .open-dropdown .fa:before {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    nav .navigation-main .close-menu-wrapper {
        height: 50px;
        border-bottom: 1px solid #252525;
    }
    nav .navigation-main .close-menu {
        cursor: pointer;
        display: block;
        height: 50px;
        width: 50px;
        float: right;
        background-size: auto 50px;
        background-position: 100% center;
        background-repeat: no-repeat;
        color: white;
        text-align: right;
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        -o-transform: translate3d(0, -100%, 0);
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    nav .navigation-main .close-menu .icon {
        font-size: 26px;
        line-height: 50px;
        padding-right: 8px;
    }
    nav .navigation-main .navbar-dropdown .box-1 {
        display: none;
    }
    nav .navigation-main .navbar-dropdown ul {
        margin: 20px 0;
        padding: 0;
    }
    nav .navigation-main .navbar-dropdown .navbar-box ul > li > a {
        border-color: #252525;
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    nav .navigation-main .navbar-dropdown .navbar-box ul > li > a.label {
        text-transform: uppercase;
        margin-bottom: 10px;
        display: inline-block;
    }
}

nav .open-login,
nav .open-cart,
nav .open-settings,
nav .open-search {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

nav .open-login.open .icon:before,
nav .open-cart.open .icon:before,
nav .open-settings.open .icon:before,
nav .open-search.open .icon:before {
    content: "\e870";
}

nav .open-cart {
    position: relative;
}

nav .open-cart span {
    background-color: #cc0000;
    color: white;
    position: absolute;
    width: 15px;
    height: 15px;
    line-height: 15px;
    right: 4px;
    top: 5%;
    text-align: center;
    font-size: 10px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

nav .categories {
    background-color: transparent;
    padding: 20px;
}

nav .categories a {
    display: block;
    color: white;
}

nav .categories figure .f-icon {
    font-size: 76px;
    line-height: 45px;
}

nav .categories figure figcaption {
    white-space: nowrap;
}

@media (min-width: 992px) {
    nav .categories {
        padding: 40px;
    }
    nav .categories a {
        color: #795548;
    }
    nav .categories figure {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    nav .categories {
        padding: 0;
    }
    nav .categories .row > div {
        padding: 1px;
    }
    nav .categories figure {
        background-color: #111;
        padding: 40px 5px;
    }
}

nav .search-wrapper {
    position: absolute;
    background: white;
    top: 100%;
    right: 15px;
    left: 15px;
    z-index: 9999;
    padding: 0;
}

nav .search-wrapper .form-control {
    padding-top: 20px;
    padding-bottom: 20px;
    height: inherit;
}

nav .search-wrapper .btn-search {
    position: absolute;
    right: 10px;
    top: 8px;
}

nav .search-wrapper .search-results {
    padding: 15px;
    border: 1px solid #dddddd;
}

nav .search-wrapper .search-results .search-result-items {
    margin-bottom: 20px;
}

nav .search-wrapper .search-results .search-result-items:last-child {
    margin-bottom: 0;
}

nav .search-wrapper .search-results .search-result-items ul {
    margin: 0;
    padding: 0;
}

nav .search-wrapper .search-results .search-result-items ul li {
    list-style-type: none;
    border-bottom: 1px solid #dddddd;
}

nav .search-wrapper .search-results .search-result-items ul li:last-child {
    border-bottom: 0;
}

nav .search-wrapper .search-results .search-result-items ul li a {
    display: block;
    padding: 7.5px 0;
}

nav .search-wrapper .search-results .search-result-items ul li a span {
    display: inline-block;
}

nav .search-wrapper .search-results .search-result-items ul li a .id {
    color: #ffbb00;
    padding-right: 7.5px;
}

nav .search-wrapper .search-results .search-result-items ul li a .name {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

nav .search-wrapper .search-results .search-result-items ul li a .category {
    color: #b9bcc5;
    font-size: 85%;
}

@media (max-width: 767px) {
    nav .search-wrapper .search-results .search-result-items ul li a .category {
        display: block;
    }
}

nav .search-wrapper .search-results .search-result-items .title {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    nav .search-wrapper {
        left: 0;
        right: 0;
    }
    nav .search-wrapper .btn {
        top: 7px;
        right: 10px;
    }
}

nav .login-wrapper {
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    display: inline-block;
    text-align: left;
    padding: 20px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 999;
}

nav .login-wrapper .btn {
    margin-top: 20px;
}

nav .login-wrapper a {
    display: block;
    font-size: 12px;
    padding: 5px 0;
}

@media (min-width: 768px) {
    nav .login-wrapper {
        max-width: 300px;
    }
}

nav .cart-wrapper {
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    padding: 7.5px;
    max-width: 500px;
    background: #eeeeee;
    border: 1px solid #ffbb00;
    overflow: hidden;
}

nav .cart-wrapper .checkout {
    padding: 0 15px;
    opacity: 0;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

nav .cart-wrapper .checkout hr {
    margin-top: 5px;
    margin-bottom: 5px;
}

nav .cart-wrapper .checkout .cart-block {
    padding: 10px;
    margin-bottom: 10px;
    width: 48%;
    float: left;
    margin: 1%;
    display: block;
}

nav .cart-wrapper .checkout .cart-block > div {
    display: block;
}

nav .cart-wrapper .checkout .cart-block > div.image {
    width: initial;
    float: left;
}

nav .cart-wrapper .checkout .cart-block > div.title {
    padding-left: 0;
    width: 100%;
}

nav .cart-wrapper .checkout .cart-block > div.quantity, nav .cart-wrapper .checkout .cart-block > div.price {
    width: 50%;
    float: left;
}

nav .cart-wrapper .checkout .cart-block > div.quantity {
    padding: 5px 0;
    text-align: left;
}

nav .cart-wrapper .checkout .cart-block > div.quantity .form-control {
    width: 60px;
    height: inherit;
}

nav .cart-wrapper .checkout .cart-block > div.price {
    padding-right: 10px;
}

nav .cart-wrapper .checkout .cart-block.cart-block-footer {
    padding: 5px 0;
    margin: 0;
    margin-bottom: 3px;
    width: 100%;
    background-color: transparent;
}

nav .cart-wrapper .checkout .cart-block.cart-block-footer > div {
    float: left;
    padding: 0;
}

nav .cart-wrapper .checkout .cart-block .icon-delete {
    padding: 2px;
}

nav .cart-wrapper .checkout .cart-block-buttons {
    margin: 20px 0;
}

nav .cart-wrapper.open .checkout {
    opacity: 1;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

nav .search-wrapper,
nav .login-wrapper,
nav .cart-wrapper {
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

nav .search-wrapper.open,
nav .login-wrapper.open,
nav .cart-wrapper.open {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*  
    ----------------------------------
    12. Categories
    ----------------------------------
*/
.categories {
    background: #f8f8f8;
}

.categories .test {
    color: white;
}

.categories figure {
    text-align: center;
}

.categories figure figcaption {
    font-size: 14px;
    text-transform: uppercase;
}

.categories figure .f-icon {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 100px;
}

.categories figure:hover .f-icon {
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/*  
    ----------------------------------
    13. Header content
    ----------------------------------
*/
.header-content {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.header-content .item {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.header-content .item .box {
    position: absolute;
    width: 100%;
    color: #fff;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
}

.header-content .item .box .row .snip1566 {
margin: 500px;
}






.header-content .item .title {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: none;
}

.header-content .item .btn {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .header-content .item {
        height: 100vh;
    }
    .header-content .item .title {
        font-size: 300%;
    }
}

@media (min-width: 1200px) {
    .header-content .item {
        height: 700px;
    }
    .header-content .item .title {
        font-size: 300%;
    }
}

.header-content .owl-theme .owl-controls .owl-pagination {
    text-align: end;
    padding-right: 20px;
}

.header-content .owl-theme .owl-controls .owl-buttons div span {
    color: white;
}

.header-content .owl-theme .owl-controls .owl-page span {
    background: white;
}

/*  
    ----------------------------------
    14. Blocks
    ----------------------------------
*/
.blocks {
    padding: 400px 0;
    position: relative;
}

.blocks .image {
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
}

.blocks .item {
    width: 50%;
}

.blocks.rtl .item {
    padding-right: 50px;
}

.blocks.ltr .item {
    margin-left: 50%;
    padding-left: 50px;
}

.blocks.ltr .image {
    right: 50%;
}

.blocks.blocks-fluid {
    background-color: #e8e8e8;
    position: relative;
}

.blocks.blocks-boxed {
    padding: 0;
}

.blocks.blocks-boxed .container {
    position: relative;
}

.blocks.blocks-boxed .text {
    padding: 45px 0;
}

@media (max-width: 768px) {
    .blocks > div {
        display: flex;
        flex-flow: column;
    }
    .blocks .item {
        order: 2;
        width: 100%;
    }
    .blocks .image {
        width: 100%;
        order: 1;
        position: relative;
        min-height: 300px;
        left: 0;
        right: 0;
    }
    .blocks.ltr .item,
    .blocks.rtl .item {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .blocks .text,
    .blocks.blocks-boxed .text {
        padding: 20px 0 0 0;
    }
}

/*  
    ----------------------------------
    15. Sort bar
    ----------------------------------
*/
.sort-bar {
    margin-bottom: 15px;
    font-size: 14px;
}

.sort-bar select {
    background-color: white;
    padding: 5px;
    border: 1px solid #dddddd;
    outline: none;
}

.sort-bar .grid-list {
    padding-right: 0 !important;
}

.sort-bar .grid-list a {
    background: white;
    color: #666666;
    padding: 5px 8px;
    display: inline-block;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sort-bar .grid-list a:hover {
    background-color: #ffbb00;
    color: white;
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.sort-bar strong {
    font-weight: 600;
    color: #616161;
}

.sort-bar a.toggle-filters-mobile {
    display: inline-block;
}

.sort-bar .sort-results > span {
    display: none;
    padding: 0 10px;
}

@media (min-width: 992px) {
    .sort-bar {
        padding: 0;
        margin-top: -45px;
        opacity: 0.2;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }
    .sort-bar:hover {
        opacity: 1;
    }
    .sort-bar .sort-results > span {
        display: inline-block;
    }
    .sort-bar a.toggle-filters-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .sort-bar {
        background-color: white;
        margin-top: -30px;
        margin-bottom: 1px;
        padding: 7.5px;
    }
}



/*  
    ----------------------------------
    19. Products category
    ----------------------------------
*/
.products {
    background-color: #eeeeee;
}

.products .box-filters {
    text-align: center;
    padding: 40px 0 0;
}

.products .box-filters figure {
    width: 70px;
    height: 70px;
    display: inline-block;
    padding: 10px;
    background-color: white;
    color: #666666;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    margin: 0 5px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.products .box-filters figure.active {
    background-color: #3a3d45;
    color: #ffbb00;
}

.products .box-filters figure .f-icon {
    display: block;
    font-size: 38px;
    line-height: 27px;
}

@media (min-width: 992px) {
    .products .box-filters figure {
        width: 100px;
        height: 100px;
    }
    .products .box-filters figure .f-icon {
        font-size: 68px;
        line-height: 50px;
    }
}

.products .box-filters-results {
    padding: 0;
    position: relative;
}

.products article {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background-color: white;
    position: relative;
    transition: all 0.5s;
    margin-bottom: 1px;
    overflow: hidden;
}

.products article .label {
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: initial;
}

.products article sub, .products article sup {
    font-size: 100%;
}

.products article .text {
    width: 100%;
    padding: 10px;
}

.products article .text a {
    color: white;
}





.products article .image img {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.products article .image img:hover{
	-webkit-filter: blur(0);
	filter: blur(0);
}




.products article .image img {
	-webkit-transform: rotate(15deg) scale(1.4);
	transform: rotate(15deg) scale(1.4);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.products article .image img:hover{
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
}














.products article .text .title {
    display: block;
    margin: 0 0 5px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.products article .text .title small {
    color: #3a3d45;
    font-size: 45%;
}

.products article .text sub, .products article .text sup {
    bottom: auto;
    top: auto;
    display: inline-block;
    margin-right: 10px;
}

.products article .text sub {
    text-decoration: line-through;
    font-weight: 300;
}

.products article .image {
    overflow: hidden;
    height: auto;
}

.products article .image a {
    display: block;
}

.products article .image img {
    width: 100%;
}

.products article .btn-add {
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.products article:hover .btn-add {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.products article .info {
    display: none;
    position: absolute;
    width: 35px;
    right: 15px;
    top: 15px;
    margin-right: 0;
    margin-top: 5px;
    z-index: 3;
}

.products article .info .add-favorite.added {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

    .products article .info .add-favorite.added a {
        background-color: #e71d36;
    }

.products article .info .add-favorite.added a:hover:after {
    content: attr(data-title-added);
    background-color: inherit;
}

.products article .info a {
    position: relative;
    display: inline-block;
    padding: 0 5px;
    background-color: dimgray;
    color: white;
    text-align: center;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .products article .info a {
        margin-bottom: 10px;
    }
}

.products article .info a:hover {
    background-color: #000000;
    color: white;
}

.products article .info a:hover:after {
    position: absolute;
    content: attr(data-title);
    padding: 5px 6px;
    right: 110%;
    top: 3px;
    white-space: nowrap;
    z-index: 20;
    background-color: #000000;
    color: #fff;
    font-size: 10px;
    border-radius: 5px;
    line-height: normal;
}

.products article .info > span {
    display: block;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

@media (min-width: 992px) {
    .products article .info {
        display: block;
    }
}

.products article:hover .info > span {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.products article .info > span:nth-child(1) {
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.products article .info > span:nth-child(2) {
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.products article .info > span:nth-child(3) {
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.products article .figure-list {
    display: table;
    width: 100%;
}

.products article .figure-list .image,
.products article .figure-list .text {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.products article .figure-list .text {
    position: relative;
    padding: 0 20px;
}

.products article .figure-list .text .title {
    white-space: inherit;
}

.products article .figure-list .text .description {
    display: none;
    margin-top: 15px;
}

.products article .figure-grid .text .description {
    display: none;
    
}

    

.products article .figure-block .text .description {
    position: relative;
    display: none;
    height: 80px;
    overflow: hidden;
    z-index: 1;
    padding-top: 5px;
}

.products article .figure-block .text .description:after {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    /* IE6-9 */
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    content: "";
    display: block;
    z-index: 2;
}

@media (min-width: 768px) {
    .products article .figure-block .text .description {
        display: block;
    }
}

@media (min-width: 768px) {
    .products.products-category {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .products article {
        margin-bottom: 30px;
    }
    .products article .label {
        top: auto;
        bottom: 10px;
        left: 10px;
    }
    .products article sub, .products article sup {
        font-size: 80%;
    }
    .products article:hover {
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    }
    .products article .figure-grid .text {
        position: absolute;
        padding: 20px 20px 0;
        top: 0;
    }
    .products article .figure-list .image {
        width: 30%;
    }
    .products article .figure-list .text {
        width: 70%;
    }
    .products article .figure-list .text .description {
        display: block;
    }
    .products article .figure-block .text {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .products .row {
        margin: 0;
    }
    .products .container,
    .products .row > div {
        padding-left: 1px;
        padding-right: 1px;
        padding-bottom: 1px;
    }
    .products .btn-add {
        display: none;
    }
}

/*  
    ----------------------------------
    20. Product page
    ----------------------------------
*/
.product {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.product .main {
    padding: 20px 0;
}

.product .product-info-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.product .title {
    color: black;
    font-weight: 600;
    position: relative;
}

.product .title:before {
    content: attr(data-title);
    font-size: 550%;
    color: rgba(99, 99, 99, 0.07);
    position: absolute;
    width: inherit;
    white-space: nowrap;
    left: -30%;
    top: -100%;
    z-index: 1;
}

.product .title small {
    display: block;
    text-transform: none;
    color: black;
    font-size: 40%;
    margin: 5px 0;
}

.product .price {
    margin-bottom: 20px;
}

.product .price small {
    text-decoration: line-through;
    margin-left: 10px;
}

.product .info-box {
    margin-bottom: 2px;
    padding: 5px 0;
    display: table;
    width: 100%;
}

.product .info-box > span {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.product .info-box > span:first-child {
    width: 35%;
}

.product .info-box > span:last-child {
    width: 65%;
}

.product .info-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.product .info-box .checked {
    border-color: #ffbb00;
}

.product .info-box strong {
    display: block;
    font-weight: 600;
}

.product .info-box.info-cell {
    display: table;
    width: 100%;
}

.product .info-box.info-cell > span {
    display: table-cell;
    vertical-align: middle;
}

.product .info-box.info-box-addto {
    cursor: pointer;
}

.product .info-box.info-box-addto i {
    font-style: normal;
}

.product .info-box.info-box-addto .added {
    display: none;
    color: #ffbb00;
}

.product .info-box.info-box-addto .add {
    display: block;
}

.product .info-box.info-box-addto.added .added {
    display: block;
}

.product .info-box.info-box-addto.added .add {
    display: none;
}

.product .product-colors {
    display: block;
}

.product .info {
    background-color: #e2e2e2;
    padding: 20px 0;
    z-index: 1;
}

.product .info .content {
    padding: 30px 0;
}

.product .info .content hr {
    border-color: #c1c1c1;
}

.product .info .content .full-image {
    width: 100%;
}

.product .info .content h3 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.product .info .content h3:after {
    background: #fbb700;
    content: "";
    width: 50px;
    height: 1px;
    position: absolute;
    top: 100%;
    left: 0;
}

.product .info .products {
    background-color: transparent;
}

.product .owl-product-gallery.owl-theme .owl-controls .owl-buttons div span {
    background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .product .main {
        padding: 50px 0;
        margin-bottom: 50px;
    }
    .product .title {
        margin-top: 0;
    }
    .product .product-info-wrapper {
        padding-top: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .product .product-flex {
        display: flex;
        flex-flow: column;
    }
    .product .product-flex .product-flex-gallery {
        order: 1;
    }
    .product .product-flex .product-flex-info {
        order: 2;
    }
}

/*  
    ----------------------------------
    21. Product color buttons
    ----------------------------------
*/
.color-btn {
    display: block;
    float: left;
    position: relative;
    width: 25px;
    height: 25px;
    background-color: #f8f8f8;
    border: 2px solid transparent;
    margin-right: 10px;
    text-align: center;
    font-size: 10px;
    line-height: 21px;
    color: black;
}

.color-btn:hover {
    cursor: pointer;
}

.color-btn.checked {
    border-color: black;
}

.color-btn.color-btn-red {
    background-color: #d20f0f;
}

.color-btn.color-btn-blue {
    background-color: #2863bd;
}

.color-btn.color-btn-green {
    background-color: #3c763d;
}

.color-btn.color-btn-gray {
    background-color: #adadad;
}

.color-btn.color-btn-biege {
    background-color: #ece3b4;
}

/*  
    ----------------------------------
    22. BLog
    ----------------------------------
*/
.blog {
    position: relative;
    background-color: #eeeeee;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.blog .title {
    color: #607d8b
}

.blog .pre-header {
    margin-bottom: 15px;
    padding-bottom: 7.5px;
    display: table;
    width: 100%;
}

.blog .pre-header .sort-bar {
    background-color: transparent;
    padding: 0;
}

.blog .pre-header > div {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.blog .pre-header > div > * {
    margin: 0;
}

@media (min-width: 992px) {
    .blog .pre-header {
        margin-bottom: 20px;
        padding-bottom: 7.5px;
    }
}

.blog .blog-title,
.blog .blog-subtitle {
    text-transform: none;
    color: #3a3d45;
}

.blog strong {
    font-weight: 600;
}

.blog .wrapper-more {
    margin: 20px 10px 0;
}

@media (min-width: 992px) {
    .blog .wrapper-more {
        margin: 30px 20px 0;
    }
}

.blog aside .box {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 20px;
    position: relative;
    margin-bottom: 15px;
}

.blog aside .box .title {
    padding-top: 7.5px;
    margin-bottom: 15px;
}

.blog aside .box ul {
    margin: 0;
    padding: 0;
}

.blog aside .box ul li {
    list-style-type: circle;
    margin-left: 20px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog aside .box ul li:hover {
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.blog aside .box ul li a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #eaeaea;
}

.blog aside .box ul li.active a {
    color: #ffbb00;
}

.blog aside .box ul li:last-child a {
    border-bottom: 0;
}

.blog aside .box.box-search {
    padding: 0;
    position: relative;
    background-color: white;
}

.blog aside .box.box-search .form-control {
    border: 0;
}

.blog aside .box.box-search .btn {
    position: absolute;
    right: 10px;
    top: 8px;
}

.blog aside .box.box-posts ul li {
    list-style-type: none;
    margin-left: 0;
}

.blog aside .box.box-posts ul li a {
    position: relative;
    display: table;
    width: 100%;
}

.blog aside .box.box-posts ul li a > span {
    display: table-cell;
    vertical-align: middle;
}

.blog aside .box.box-posts ul li a .date {
    width: 40px;
    text-align: center;
    line-height: 1;
}

.blog aside .box.box-posts ul li a .date span {
    display: block;
}

.blog aside .box.box-posts ul li a .date span:nth-child(1) {
    font-size: 75%;
}

.blog aside .box.box-posts ul li a .date span:nth-child(2) {
    font-weight: bold;
    font-size: 20px;
}

.blog aside .box.box-posts ul li a .text {
    padding-left: 5px;
}

.blog aside .box.box-tags ul li {
    margin: 0 2px 2px 0;
    display: block;
    float: left;
}

.blog aside .box.box-tags ul li a {
    padding: 5px;
    border: 0;
    background-color: #ffbb00;
    color: white;
    font-size: 13px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.blog aside .box.box-tags ul li a:hover {
    background-color: #cc9600;
}

@media (min-width: 768px) {
    .blog aside {
        display: block;
    }
    .blog aside .box {
        margin-bottom: 30px;
    }
}

.blog .nav-link {
    position: absolute;
    width: 65px;
    height: 85px;
    top: 220px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 50;
}

.blog .nav-link:hover {
    opacity: 1;
}

.blog .nav-link:before {
    font-family: 'LinearIcons';
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-weight: normal;
    font-stretch: normal;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 60px;
    content: "";
    display: inline-block;
    width: 65px;
    height: 65px;
}

.blog .nav-link.next {
    right: 5px;
}

.blog .nav-link.prev {
    left: 5px;
}

.blog .nav-link.prev:before {
    content: "\e875";
}

.blog .nav-link.next:before {
    content: "\e876";
}

.blog .nav-link figure {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    display: none;
    opacity: 0;
    position: absolute;
    width: 180px;
    left: auto;
    right: auto;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.blog .nav-link figure figcaption {
    text-align: center;
    padding: 10px;
}

.blog .nav-link figure figcaption .blog-title {
    margin: 0;
}

.blog .nav-link figure .image {
    position: relative;
    overflow: hidden;
}

.blog .nav-link figure .image img {
    width: 100%;
}

.blog .nav-link.next figure {
    right: 100%;
}

.blog .nav-link.prev figure {
    left: 100%;
}

.blog .nav-link.next:hover figure,
.blog .nav-link.prev:hover figure {
    opacity: 1;
}

@media (min-width: 992px) {
    .blog .nav-link figure {
        display: block;
    }
}

@media (max-width: 767px) {
    .blog .nav-link {
        display: none;
    }
}

.blog article {
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.blog article, .blog article a {
    color: black;
}

.blog article a {
    display: block;
}

.blog article a:hover {
    color: black;
}

.blog article .image {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    height: auto;
}

.blog article .image img {
    display: block;
    width: 100%;
}

.blog article .entry {
    background-color: white;
    padding: 10px 15px;
    position: relative;
}

.blog article .entry.entry-table {
    display: table;
    width: 100%;
    height: 80px;
}

.blog article .entry.entry-table > div {
    display: table-cell;
    vertical-align: middle;
}

.blog article .entry.entry-table .title {
    padding-left: 10px;
}

.blog article .entry .date-wrapper {
    width: 55px;
}

.blog article .entry .date-wrapper .date {
    width: 50px;
    height: 60px;
    z-index: 99;
    z-index: 99;
    padding: 7px 0;
    text-align: center;
    border-right: 1px solid #ccc;
}

.blog article .entry .date-wrapper .date span {
    display: block;
    font-size: 11px;
    line-height: 12px;
}

.blog article .entry .title > * {
    margin: 0;
    text-transform: none;
}

.blog article .description {
    padding: 15px 0;
    color: white;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog article .show-more {
    background-color: white;
    position: absolute;
    padding: 0 15px 15px;
    left: 0;
    top: 100%;
    width: 100%;
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
}

.blog article .show-more .btn {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.blog article .show-more, .blog article .show-more .btn {
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.blog article.article-table {
    background-color: white;
}

.blog article.article-table > a {
    display: table;
    width: 100%;
}

.blog article.article-table > a > div {
    display: table-cell;
    vertical-align: middle;
}

.blog article.article-table > a .image {
    width: 50%;
}

.blog article.article-table > a .image img {
    display: none;
}

.blog article.article-table > a .text {
    padding: 15px;
    position: relative;
}

.blog article.article-table > a .text > * {
    position: relative;
    z-index: 99;
}

.blog article.article-table > a .text .text-intro {
    display: none;
}

.blog article.article-table > a .text:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.blog article.article-table:hover {
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
}

@media (min-width: 768px) {
    .blog article {
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        margin-bottom: 30px;
    }
    .blog article .description {
        padding: 25px 0;
        -moz-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        -o-transform: translate3d(0, 20px, 0);
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
    .blog article:hover {
        position: relative;
        color: initial;
        -moz-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        -o-transform: translate3d(0, -20px, 0);
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    .blog article:hover .text-wrapper {
        padding-bottom: 40px;
    }
    .blog article:hover .show-more {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    .blog article:hover .show-more .btn {
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .blog article:hover .description {
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    .blog article .image {
        height: 220px;
    }
    .blog article .image img {
        display: none;
    }
    .blog article.article-table:hover .text:before {
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    }
    .blog article.article-table > a .text {
        padding: 40px;
    }
    .blog article.article-table > a .text .text-intro {
        display: block;
    }
    .blog article header {
        margin-bottom: 50px;
    }
}

.blog.blog-block article {
    position: relative;
}

.blog.blog-block article, .blog.blog-block article a, .blog.blog-block article .title {
    color: white;
}

.blog.blog-block article .entry-block {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    overflow: hidden;
    padding: 25px;
}

.blog.blog-block article .date {
    font-size: 80%;
    margin-bottom: 5px;
}

.blog.blog-block article .image {
    height: auto;
}

.blog.blog-block article .image img {
    display: block;
}

.blog.blog-block article .image:before {
    background: -moz-linear-gradient(top, black 0%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, black 0%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, black 0%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00ffffff',GradientType=0 );
    /* IE6-9 */
    position: absolute;
    opacity: 0.5;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog.blog-block article .show-more {
    padding: 0;
    background-color: transparent;
    bottom: -45px;
    top: inherit;
    width: 90%;
    left: 50%;
    -moz-transform: scale(1, 1) translate(-50%, -50%);
    -ms-transform: scale(1, 1) translate(-50%, -50%);
    -o-transform: scale(1, 1) translate(-50%, -50%);
    -webkit-transform: scale(1, 1) translate(-50%, -50%);
    transform: scale(1, 1) translate(-50%, -50%);
}

.blog .blog-info.blog-info-top {
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    padding: 5px 0;
    margin-bottom: 20px;
    text-align: left;
}

@media (min-width: 992px) {
    .blog .blog-info.blog-info-top {
        padding: 10px 0;
    }
}

.blog .blog-info.blog-info-bottom {
    padding: 20px 0;
}

.blog .blog-info ul {
    margin: 0;
    padding: 0;
}

.blog .blog-info ul li {
    padding: 0;
    list-style-type: none;
}

.blog .blog-info .entry {
    padding: 5px 10px 5px 25px;
    list-style-type: none;
    display: inline-block;
    font-size: 90%;
}

.blog .blog-info .entry .fa {
    margin-left: -25px;
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.blog .blog-info .entry.divider {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 10px;
}

.blog .blog-post .blog-image-main img {
    width: 100%;
}

@media (min-width: 992px) {
    .blog .blog-post .blog-image-main {
        margin-top: -130px;
    }
    .blog .blog-post .blog-image-main img {
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 1200px) {
    .blog .blog-post .blog-image-main {
        margin-top: -160px;
    }
}

.blog .blog-post .blog-post-content {
    background-color: white;
    padding: 20px;
}

@media (min-width: 992px) {
    .blog .blog-post .blog-post-content {
        padding: 60px;
    }
}

.blog .blog-post .blog-image {
    margin: 20px 0;
    display: block;
}

.blog .blog-post .blog-image .caption {
    display: block;
    text-align: center;
    font-size: 75%;
    font-style: italic;
    padding: 5px 0;
}

@media (min-width: 992px) {
    .blog .blog-post .blog-image {
        margin: 30px 0;
    }
}

.blog .blog-post .blog-post-text img {
    border: 5px solid white;
    width: 100%;
}

.blog .blog-post .blog-post-text h2, .blog .blog-post .blog-post-text h3, .blog .blog-post .blog-post-text h4, .blog .blog-post .blog-post-text h5 {
    margin-top: 35px;
    text-transform: none;
}

/*  
    ----------------------------------
    23. Designer
    ----------------------------------
*/
.designer {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
}

.designer .box {
    display: table;
    width: 100%;
}

.designer .image {
    background: #ffffff;
    padding: 10px;
    border-bottom: 1px solid #dddddd;
}

.designer .image img {
    width: 80%;
    margin: 0 auto;
    display: block;
    border-radius: 100%;
}

.designer .name {
    background-color: #f5f5f5;
    text-align: left;
    padding-left: 15px;
    padding: 20px !important;
}

.designer .name .title {
    margin: 0;
}

.designer .name .title small {
    font-size: initial;
    color: #666;
}

@media (min-width: 992px) {
    .designer {
        margin-top: -73px;
    }
    .designer .image {
        padding: 30px 40px;
    }
}

/*  
    ----------------------------------
    24. Tabs navigation
    ----------------------------------
*/
.nav-tabs {
    border: 0;
}

.nav-tabs > li > a {
    border-radius: 1px;
    background: #f1f1f1;
    border: 0;
    margin-right: 1px;
    padding: 14px 20px;
    border-top: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
    color: black;
}

.nav-tabs > li.active > a {
    background: #e2e2e2;
    color: #000;
    box-shadow: 0 -5px 0px #fbb700;
}

.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background: #e2e2e2;
    color: #000;
    box-shadow: 0 -5px 0px #fbb700;
}

@media (min-width: 992px) {
    .nav-tabs {
        margin-top: -73px;
    }
}

/*  
    ----------------------------------
    25. Comments
    ----------------------------------
*/
.comments {
    display: block;
    background-color: white;
}

.comments h2 {
    font-size: 18px;
}

.comments .fa.active {
    color: #ffbb00;
}

.comments h2 .rating {
    display: inline-block;
}

.comments .rate-box {
    display: block;
    width: 100%;
    background-color: white;
    padding: 20px 30px;
    border: 1px solid #eee;
}

.comments .rate-box strong {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.comments .rate-box .rating {
    padding: 5px 0;
}

@media (min-width: 992px) {
    .comments .rate-box {
        width: 33.333333333%;
        float: left;
    }
}

@media (max-width: 1199px) {
    .comments {
        margin-bottom: 20px;
    }
}

.comments content {
    max-width: 700px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.comments .comment-header {
    padding: 20px 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    text-align: center;
}

.comments .comment-header a {
    display: inline-block;
    padding: 0 10px;
}

.comments .comment-block {
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dddddd;
    padding-left: 15px;
    padding-right: 30px;
}

.comments .comment-block:last-child,
.comments .comment-block > .comment-block {
    border-bottom: none;
}

.comments .comment-block > .comment-block {
    background-color: #eeeeee;
    border-top: 1px solid rgba(221, 221, 221, 0.5);
    padding-bottom: 20px;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .comments .comment-block {
        padding-left: 40px;
        padding-right: 40px;
    }
    .comments .comment-block > .comment-block {
        margin-left: 50px;
    }
}

.comments .comment-user {
    display: table;
    width: 100%;
}

.comments .comment-user div {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.comments .comment-user div img {
    border-radius: 100%;
    width: 40px;
}

.comments .comment-user div h5 {
    margin: 0;
}

.comments .comment-user div h5 small {
    display: block;
    padding: 4px 0;
}

.comments .comment-user div:first-child {
    width: 50px;
}

.comments .comment-desc {
    margin-left: 50px;
    margin-top: 10px;
}

.comments .comment-add {
    margin-top: 40px;
    padding: 0 20px 20px;
}

.comments .comment-add .comment-reply-message {
    margin-bottom: 15px;
}

.comments .comment-add .comment-reply-message .title {
    margin-bottom: 10px;
}

.comments .comment-add .btn-circle {
    background-color: black;
    color: white;
}

/*  
    ----------------------------------
    26. Wrapper more
    ----------------------------------
*/
.wrapper-more {
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .wrapper-more .wrapper-more {
        margin-top: 0;
    }
}

/*  
    ----------------------------------
    27. Stretcher
    ----------------------------------
*/
.stretcher-wrapper {
    margin: 0;
    padding: 0;
    background-color: #cc9600;
}

.stretcher-wrapper header {
    background-color: white;
    position: relative;
    margin-bottom: 0;
    padding: 30px 0;
}

.stretcher-wrapper header:before {
    content: '';
    position: absolute;
    border-width: 20px 20px 0px 20px;
    border-style: solid solid solid solid;
    border-color: white transparent white;
    bottom: -15px;
    left: 50%;
    z-index: 2;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.stretcher-wrapper .stretcher {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 0;
    margin: 0;
    padding: 0;
}

.stretcher-wrapper .stretcher .stretcher-item {
    position: relative;
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    -moz-transition: width 0.5s;
    -o-transition: width 0.5s;
    -webkit-transition: width 0.5s;
    transition: width 0.5s;
}

.stretcher-wrapper .stretcher .stretcher-item > a {
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    z-index: 99;
}

.stretcher-wrapper .stretcher .stretcher-item:hover > a {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.stretcher-wrapper .stretcher .stretcher-item.more {
    background-color: #cc9600;
    position: relative;
    height: 100px;
}

.stretcher-wrapper .stretcher .stretcher-item.more a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon {
    font-size: 70px;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon,
.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span {
    display: inline-block;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span:before, .stretcher-wrapper .stretcher .stretcher-item.more .more-icon span:after {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    white-space: nowrap;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span:before {
    content: attr(data-title-show);
    opacity: 0;
    font-size: 16px;
}

.stretcher-wrapper .stretcher .stretcher-item.more .more-icon span:after {
    content: attr(data-title-hide);
    opacity: 1;
}

.stretcher-wrapper .stretcher .stretcher-item.more:hover .more-icon span:before {
    opacity: 1;
}

.stretcher-wrapper .stretcher .stretcher-item.more:hover .more-icon span:after {
    opacity: 0;
}

@media (min-width: 992px) {
    .stretcher-wrapper .stretcher .stretcher-item.more, .stretcher-wrapper .stretcher .stretcher-item.more.inactive {
        width: 8%;
    }
    .stretcher-wrapper .stretcher .stretcher-item.more.active {
        width: 28%;
    }
    .stretcher-wrapper .stretcher .stretcher-item.more.more {
        height: 100%;
    }
}

.stretcher-wrapper .stretcher .stretcher-item.inactive, .stretcher-wrapper .stretcher .stretcher-item.active {
    width: 100%;
}

@media (min-width: 992px) {
    .stretcher-wrapper .stretcher .stretcher-item {
        width: 23%;
        height: 100%;
        display: inline-block;
    }
    .stretcher-wrapper .stretcher .stretcher-item.inactive {
        width: 18%;
    }
    .stretcher-wrapper .stretcher .stretcher-item.active {
        width: 38%;
    }
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo {
    /*background-color: rgba($color-base, 0.0);*/
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    font-size: initial;
    color: white;
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo img,
.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text {
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text {
    text-align: center;
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text .f-icon {
    font-size: 100px;
}

.stretcher-wrapper .stretcher .stretcher-item .stretcher-logo .text .text-intro {
    display: block;
}

.stretcher-wrapper .stretcher .stretcher-item:hover .stretcher-logo {
    opacity: 0;
}

.stretcher-wrapper .stretcher .stretcher-item figure {
    background-color: rgba(204, 150, 0, 0.5);
    color: white;
    position: absolute;
    z-index: 9;
    font-size: initial;
    padding: 20px 10px;
    width: 100%;
    left: 0;
    bottom: 0;
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.stretcher-wrapper .stretcher .stretcher-item figure h4 {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .stretcher-wrapper .stretcher .stretcher-item figure {
        padding: 20px 30px;
    }
}

.stretcher-wrapper .stretcher .stretcher-item:hover figure {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (min-width: 992px) {
    .stretcher-wrapper .stretcher {
        height: 500px;
        white-space: nowrap;
    }
    .stretcher-wrapper.stretcher-wrapper-frontpage .stretcher {
        height: 100vh;
    }
    .stretcher-wrapper.stretcher-wrapper-frontpage .stretcher .stretcher-item figure {
        bottom: 20%;
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        overflow: hidden;
        padding: 50px 30px;
    }
    .stretcher-wrapper.stretcher-wrapper-frontpage .stretcher .stretcher-item:hover figure {
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/*  
    ----------------------------------
    28. Scroll to top
    ----------------------------------
*/
.scroll-top {
    visibility: hidden;
    padding: 18px 20px;
    background-color: #e86172;
    color: white;
    position: fixed;
    bottom: 15px;
    right: 20px;
    z-index: 999;
    border-radius: 100%;
    cursor: pointer;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.scroll-top.visible {
    visibility: visible;
    opacity: 1;
}

.scroll-top.active {
    bottom: 15px;
}

.scroll-top:hover {
    background-color: #333;
}

@media (min-width: 768px) {
    .scroll-top.active {
        bottom: 545px;
    }
}

@media (min-width: 992px) {
    .scroll-top.active {
        bottom: 590px;
    }
}

@media (min-width: 1200px) {
    .scroll-top.active {
        bottom: 620px;
    }
}

/*  
    ----------------------------------
    29. Banner
    ----------------------------------
*/
.banner {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
    color: white;
    background-color: #3a3d45;
    height: 420px;
}


.banner .container .col-xs-6 {
    color: white;
    font-size: 18px;
    border: 1px solid white;
    line-height: 40px;
    margin: 7px;
    width: 23%;
    padding: 15px;
}
.banner .container .col-xs-6:hover {
 color: black;
 background-color: white;
}
.banner .container .col-xs-5:hover {
    color: black;
    background-color: white;
   }
.banner .container .col-xs-5 {
    color: white;
    font-size: 18px;
    border: 1px solid white;
    line-height: 40px;
    margin: 7px;
    padding: 15px;

}

@media (min-width: 768px) {
    .banner.banner-smaller {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1200px) {
    .banner.banner-smaller {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}
@media screen and (max-width: 990px) {
    .banner {
        height: 450px;
    }
    .banner .container .col-xs-6 figure {
      box-sizing: border-box;
       line-height: 15px;

    }
    .banner .container .col-xs-6  {
        width: 200px;
        font-size: 15px;
         
      }
      .banner .container .col-xs-5 figure {
        box-sizing: border-box;
         line-height: 13px;
  
      }
      .banner .container .col-xs-5  {
        width: 200px;
        font-size: 12px;
      }
      .banner .container .col-xs-6:hover {
        color: black;
        background-color: white;
       }
       .banner .container .col-xs-5:hover {
           color: black;
           background-color: white;
          }
}
@media screen and (max-width: 430px) {
    .banner {
        height: 450px;
    }
    .banner .container .col-xs-6 figure {
      box-sizing: border-box;
       line-height: 13px;

    }
    .banner .container .col-xs-6  {
        width: 190px;
        font-size: 13px;
         
      }
      .banner .container .col-xs-5 figure {
        box-sizing: border-box;
         line-height: 12px;
  
      }
      .banner .container .col-xs-5  {
        width: 190px;
        font-size: 11px;
      }
      .banner .container .col-xs-6:hover {
        color: black;
        background-color: white;
       }
       .banner .container .col-xs-5:hover {
           color: black;
           background-color: white;
          }
}
@media screen and (max-width: 370px) {
    .banner {
        height: 450px;
    }
    .banner .container .col-xs-6 figure {
      box-sizing: border-box;
       line-height: 13px;

    }
    .banner .container .col-xs-6  {
        width: 160px;
        font-size: 11.5px;
         
      }
      .banner .container .col-xs-5 figure {
        box-sizing: border-box;
         line-height: 12px;
  
      }
      .banner .container .col-xs-5  {
        width: 160px;
        font-size: 9.5px;
      }
      .banner .container .col-xs-6:hover {
        color: black;
        background-color: white;
       }
       .banner .container .col-xs-5:hover {
           color: black;
           background-color: white;
          }
}
/*  
    ----------------------------------
    30. Main popup
    ----------------------------------
*/
.popup-main {
    background: #e6e6e6;
    text-align: center;
    width: 100%;
    margin: 0px auto;
    position: relative;
    box-shadow: 0 0 20px #000;
    /*popup-product-styles*/
}



.popup-main .popup-title {
    padding: 10px;
    text-align: center;
    font-size: 25px;
    
}
.popup-main .popup-title img{
    padding: 5px;
    text-align: center;
 width: 200px;
    
}
.popup-main .popup-title .title small {
    color: #ffbb00;
    font-size: 20px;
}

.popup-main .owl-product-gallery p{
    padding: 5px;
    line-height: 30px;
    margin: 20px;
}



.popup-main .popup-title > * {
    margin: 5px;
}

.popup-main .popup-content {
    background-color: white;
    padding: 20px;
}

.popup-main .popup-buttons a {
    border-left: 1px solid #fff;
    padding: 32px 30px;
    display: inline-block;
    margin-left: -3px;
}

.popup-main .popup-buttons a:hover {
    background-color: black;
    border-color: black;
    color: white;
}

.popup-main .mfp-close {
    height: 72px;
    border-left: 1px solid white;
}

.popup-main .popup-table {
    display: table;
    width: 100%;
    width: 100%;
}

.popup-main .popup-table .popup-cell {
    display: table-cell;
    vertical-align: middle;
    vertical-align: middle;
}

.popup-main .popup-table .popup-cell:nth-child(1) {
    padding-left: 18px;
}

.popup-main .popup-table .popup-cell:nth-child(2) {
    text-align: right;
}

@media (max-width: 767px) {
    .popup-main .popup-table .popup-cell .icon {
        font-size: 20px;
    }
}

.popup-main .product .product-info-wrapper {
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
}

.popup-main .product .title small {
    display: block;
    margin: 0;
}

.popup-main .product .price {
    text-align: left;
    margin: 0;
}

.popup-main .product .price.price-single {
    padding: 15px 0;
}

@media (min-width: 992px) {
    .popup-main .product .price.price-single {
        padding: 20px 0;
    }
}

.popup-main .product .price small {
    display: block;
    margin: 0;
}

.popup-main .product .product-colors {
    margin-top: 10px;
}

.popup-main .product .owl-product-gallery {
    margin-bottom: 1px;
}

@media (min-width: 768px) {
    .popup-main {
        width: 640px;
    }
    .popup-main.popup-main-article {
        width: 760px;
    }
    .popup-main .popup-content {
        padding: 40px;
    }
    .popup-main .mfp-close {
        height: 90px;
        border-left: 1px solid white;
    }
    .popup-main .product .owl-product-gallery {
        margin-bottom: 1px;
    }
}

/*  
    ----------------------------------
    31. Instagram
    ----------------------------------
*/
.instagram {
    padding-top: 30px;
    padding-bottom: 0;
    background-color: grey;
 
}

.instagram .gallery .item {
    width: 16.66667%;
    float: left;
    overflow: hidden;
    padding: 23px;
}
/* .instagram .gallery h2.title {
    font-size: 15px;
    color: #d62e2e; 
}
.instagram .gallery h2.title i {
   
    color: #ac2bac; 
} */
.instagram .gallery .p1 {
   padding-left: 40px;
    color: #2ecf71; 
    line-height: 5px;/* Set the title color */
}
.instagram .gallery .p2 {
    padding-left: 0px;
    color: #2e87cf; /* Set the title color */
}

/* ------------------------------------------------------------------------------------------------------------------ */
.instagram .gallery .item img {
    width: 100%;
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.instagram .gallery .item:hover img {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

@media (min-width: 768px) {
    .instagram {
        padding-top: 20px;
    }
}

@media (min-width: 992px) {
    .instagram {
        padding-top: 30px;
    }
}

@media (min-width: 1200px) {
    .instagram {
        padding-top: 40px;
    }
}

/*  
    ----------------------------------
    32. Checkout
    ----------------------------------
*/
.checkout {
    background-color: #eeeeee;
    padding-top: 60px;
    padding-bottom: 60px;
}

.checkout hr {
    border-color: #dddddd;
}

.checkout .cart-wrapper {
    margin: 15px 0;
}

@media print {
    .checkout .cart-wrapper {
        border-top: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd;
    }
    .checkout .cart-wrapper + .cart-wrapper {
        border-top: 0;
    }
}

.checkout .white-block {
    background-color: white;
    padding: 20px 15px;
    margin-bottom: 15px;
}

.checkout .note-block {
    background-color: white;
}

.checkout .title {
    margin: 0;
}

.checkout .cart-block {
    position: relative;
    margin-bottom: 15px;
}

.checkout .cart-block:last-child {
    margin-bottom: 0;
}

.checkout .cart-block.cart-block-header {
    display: none;
    background-color: #fbfbfb;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.checkout .cart-block.cart-block-item {
    background-color: white;
}

.checkout .cart-block.cart-block-footer {
    color: black;
    margin-top: 1px;
    background-color: white;
    padding: 15px 10px;
}

.checkout .cart-block.cart-block-footer.cart-block-footer-price {
    padding: 30px 30px;
    background-color: white;
}

.checkout .cart-block.cart-block-footer > div {
    padding: 0;
}

.checkout .cart-block.cart-block-footer > div:nth-child(1), .checkout .cart-block.cart-block-footer > div:nth-child(2) {
    width: 50%;
}

.checkout .cart-block.cart-block-footer > div:nth-child(2) {
    text-align: right;
}

.checkout .cart-block.cart-block-footer .form-coupon {
    display: inline-block;
    width: inherit;
    margin-left: 10px;
    text-align: left;
}

.checkout .cart-block > div {
    padding: 0 30px;
}

.checkout .cart-block > div img {
    width: 100%;
    vertical-align: middle;
}

.checkout .cart-block > div.image {
    padding: 0;
}

.checkout .cart-block > div.quantity, .checkout .cart-block > div.price {
    width: 50%;
    float: left;
}

.checkout .cart-block > div.quantity .form-quantity {
    display: inline-block;
    width: 80px;
}

.checkout .cart-block .title > * {
    margin: 0;
}

.checkout .cart-block .price > span {
    display: block;
    text-align: right;
}

.checkout .cart-block .price .final {
    margin: 0;
}

.checkout .cart-block .price .discount {
    text-decoration: line-through;
}

.checkout .cart-block .icon-delete {
    position: absolute;
    cursor: pointer;
    padding: 5px;
    right: 0;
    top: 0;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.checkout .cart-block .icon-delete:hover {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .checkout .white-block {
        padding: 30px;
    }
    .checkout .cart-block {
        display: table;
        width: 100%;
        margin-bottom: 1px;
    }
    .checkout .cart-block.cart-block-header {
        display: table;
        padding: 15px;
    }
    .checkout .cart-block.cart-block-header > div {
        padding: 0;
    }
    .checkout .cart-block.cart-block-footer {
        padding: 15px 30px;
    }
    .checkout .cart-block.cart-block-footer .form-coupon {
        position: absolute;
        top: 0;
    }
    .checkout .cart-block > div {
        display: table-cell;
        vertical-align: middle;
    }
    .checkout .cart-block > div img {
        width: 100%;
        vertical-align: middle;
    }
    .checkout .cart-block > div:nth-child(1) {
        width: 15%;
    }
    .checkout .cart-block > div:nth-child(2) {
        width: 45%;
    }
    .checkout .cart-block > div:nth-child(3) {
        width: 10%;
    }
    .checkout .cart-block > div:nth-child(4) {
        width: 30%;
    }
    .checkout .cart-block > div.quantity, .checkout .cart-block > div.price {
        float: none;
    }
    .checkout .cart-block > div.quantity {
        text-align: center;
    }
    .checkout .cart-block .title {
        padding: 0 0 0 30px;
    }
    .checkout .cart-block .title > * {
        margin: 0;
    }
    .checkout .cart-block .price {
        padding-right: 30px;
    }
    .checkout .cart-block .price > span {
        display: block;
        text-align: right;
    }
    .checkout .cart-block .price .final {
        margin: 0;
    }
    .checkout .cart-block .price .discount {
        text-decoration: line-through;
    }
    .checkout .cart-block .form-control {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .checkout .cart-block {
        padding-bottom: 15px;
    }
    .checkout .cart-block > div {
        padding: 0 10px;
    }
    .checkout .cart-block .title {
        margin-bottom: 15px;
    }
    .checkout .cart-block .form-control {
        height: 30px;
    }
    .checkout .cart-block.cart-block-footer {
        color: black;
    }
    .checkout .cart-block.cart-block-footer > div {
        float: left;
    }
    .checkout .cart-block.cart-block-footer .form-coupon {
        margin-top: 10px;
        margin-left: 0;
    }
}



/*  
    ----------------------------------
    35. Contact
    ----------------------------------
*/
.contact {
    background-color: #eeeeee;
    padding: 0 0 80px 0;
}

.contact.contact-single {
    background-color: #3a3d45;
}

.contact.contact-single.banner {
    padding-bottom: 0;
}

.contact #map {
    width: 100%;
    height: 400px;
    background-color: grey;
}

.contact .contact-block {
    margin-top: -80px;
}

.contact .contact-block .banner {
    padding: 80px 40px;
}

.contact .contact-block .contact-info {
    background-color: white;
    padding-bottom: 40px;
}

.contact .contact-block .contact-info figure {
    padding: 15px;
}

.contact .contact-block .contact-info figure figcaption > strong {
    display: block;
    padding: 7.5px 0;
}

.contact .contact-block .contact-info figure figcaption > span {
    font-size: 90%;
}

.contact .contact-block .contact-info figure .icon {
    font-size: 50px;
    color: #ffbb00;
}

.contact .contact-block .contact-form {
    display: none;
    margin-top: 50px;
}

.contact .contact-block .contact-form .form-control {
    border-color: transparent;
}

/*  
    ----------------------------------
    36. Map Info window
    ----------------------------------
*/
.map-info-window .fa {
    width: 20px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}


/*  
    ----------------------------------
    38. Tabsy wrapper
    ----------------------------------
*/
.tabsy-wrapper.tabsy-wrapper-clean {
    padding: 0;
}

.tabsy-wrapper.tabsy-wrapper-frontpage {
    margin-top: -40px;
    padding: 0;
}

.tabsy-wrapper.tabsy-wrapper-frontpage .container {
    padding-left: 0;
    padding-right: 0;
}

.tabsy-wrapper.tabsy-wrapper-frontpage .tabsy {
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .tabsy-wrapper.tabsy-wrapper-frontpage {
        margin-top: -100px;
    }
}

@media (min-width: 1480px) {
    .tabsy-wrapper.tabsy-wrapper-frontpage .container {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .tabsy-wrapper.tabsy-wrapper-frontpage {
        margin-top: -62px;
    }
}

.tabsy-wrapper .tabsy {
    background-size: cover;
    background-position: center;
    position: relative;
}

.tabsy-wrapper .tabsy .tabsy-images, .tabsy-wrapper .tabsy .tabsy-images > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tabsy-wrapper .tabsy .tabsy-images > div {
    background-size: cover;
    background-position: center;
    opacity: 0;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.tabsy-wrapper .tabsy .tabsy-images > div.current {
    opacity: 1;
}

.tabsy-wrapper .tabsy .tabsy-images img {
    display: none;
}

.tabsy-wrapper .tabsy .tabsy-links .row {
    margin: 0;
}

.tabsy-wrapper .tabsy .tabsy-links figure {
    cursor: pointer;
    padding: 0;
    position: relative;
    min-height: 150px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.tabsy-wrapper .tabsy .tabsy-links figure + figure {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.tabsy-wrapper .tabsy .tabsy-links figure:after {
    font: normal normal normal 24px/30px LinearIcons;
    content: "\e876";
    -webkit-font-smoothing: antialiased;
    display: block;
    position: absolute;
    text-align: right;
    width: 100%;
    right: 0;
    bottom: 0;
    padding: 10px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.tabsy-wrapper .tabsy .tabsy-links figure a.link {
    background-color: transparent;
    font-size: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 88;
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.tabsy-wrapper .tabsy .tabsy-links figure figcaption {
    margin: 20px;
    overflow: hidden;
}

.tabsy-wrapper .tabsy .tabsy-links figure figcaption .date {
    font-size: 75%;
    display: block;
    color: #ffbb00;
}

.tabsy-wrapper .tabsy .tabsy-links figure figcaption .title {
    display: block;
    margin-top: 5px;
    text-transform: none;
    color: white;
}

.tabsy-wrapper .tabsy .tabsy-links figure figcaption .desc {
    display: none;
    color: white;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

@media (min-width: 768px) {
    .tabsy-wrapper .tabsy .tabsy-links figure figcaption .desc {
        display: block;
    }
}

.tabsy-wrapper .tabsy .tabsy-links figure.current {
    background-color: rgba(0, 0, 0, 0.5);
}

.tabsy-wrapper .tabsy .tabsy-links figure.current a.link {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabsy-wrapper .tabsy .tabsy-links figure.current figcaption .desc {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabsy-wrapper .tabsy .tabsy-links figure.current:after {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

@media (min-width: 768px) {
    .tabsy-wrapper .tabsy .tabsy-links figure {
        min-height: 350px;
    }
}

@media (min-width: 768px) {
    .tabsy-wrapper .wrapper-more {
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .tabsy-wrapper .wrapper-more {
        margin-top: 35px;
    }
}

/*  
    ----------------------------------
    39. History
    ----------------------------------
*/
.history {
    background-color: #eeeeee;
}

.history .title {
    text-transform: none;
}

.history .history-title .title {
    margin-bottom: 0;
    margin-top: 14px;
    font-size: 24px;
}

.history .history-image {
    background-position: center;
    background-size: cover;
    min-height: 300px;
}

.history .row-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

.history .row-block:last-child {
 
    border-bottom: 0;
}


@media (min-width: 992px) {
    .history {
        padding: 80px 0;
    }
    .history .row-block {
        display: table;
        width: 100%;
        margin-bottom: 60px;
        border-bottom: 0;
    }
    .history .row-block > * {
        display: table-cell;
        vertical-align: middle;
        float: none;
        padding: 50px;
    }
    .history .history-title {
        position: absolute;
        text-align: center;
        color: white;
        width: 100px;
        height: 100px;
        padding-top: 20px;
        z-index: 1;
        margin: 0 auto;
        top: 50%;
        right: -50px;
        margin-top: -50px;
    }
    .history .history-title:before {
        z-index: -1;
        content: "";
        display: block;
        background-color: #68b5ae;
        left: 50%;
        top: 50%;
        position: absolute;
        width: 100%;
        height: 100%;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        border-radius: 100%;
        -moz-transform: translate(-50%, -50%) scale(1.3);
        -ms-transform: translate(-50%, -50%) scale(1.3);
        -o-transform: translate(-50%, -50%) scale(1.3);
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
    }
    .history .history-desc {
        background-color: white;
        padding-left: 120px;
    }
}

@media (max-width: 991px) {
    .history .row-block {
        border: 0;
    }
    .history .history-title {
        background-color: #ffbb00;
        color: white;
        display: inline-block;
        padding: 15px;
        margin-left: -20px;
        width: 40%;
        border-bottom-right-radius: 35px;
    }
    .history .history-title p {
        margin-bottom: 0;
    }
    .history .history-image {
        margin-bottom: 20px;
    }
}

/*  
    ----------------------------------
    40. Intro
    ----------------------------------
*/
.intro {
    background-color: #eeeeee;
    padding: 30px 0;
}

.intro.intro-white {
    background-color: white;
}

@media (min-width: 768px) {
    .intro {
        padding: 160px 0;
        text-align: center;
    }
}

/*  
    ----------------------------------
    41. Text blocks
    ----------------------------------
*/
.text-blocks {
    padding: 40px 0;
}

.text-blocks .text-block {
    padding: 60px 0;
    display: table;
    width: 100%;
    text-align: left;
}

.text-blocks .text-block > div {
    display: table-cell;
    vertical-align: middle;
}

.text-blocks .text-block .icon {
    font-size: 50px;
    padding: 0 60px;
}

@media (min-width: 992px) {
    .text-blocks {
        padding: 80px 0;
    }
}

/*  
    ----------------------------------
    42. Quotes
    ----------------------------------
*/
.quotes {
    padding: 60px 0;
    background-color: #ffbb00;
    position: relative;
    background-size: cover;
    background-position: center;
}

@media (min-width: 992px) {
    .quotes {
        padding: 80px 0;
    }
}

.quotes header {
    position: relative;
    z-index: 2;
}

.quotes header .title {
    color: white;
    text-align: center;
}

.quotes:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 0;
}

.quotes .row {
    position: relative;
    z-index: 10;
}

.quotes .row, .quotes .row > div {
    margin: 0;
    padding: 0;
}

.quotes .quote {
    color: white;
    text-align: center;
}

.quotes .quote .image {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    top: 0;
    margin-bottom: 40px;
}

.quotes .quote .image img {
    width: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.quotes .quote .text h4, .quotes .quote .text .h4 {
    text-transform: none;
    margin-bottom: 10px;
}

.quotes .quote:hover .image {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.quotes .quote .more .rating {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 20px;
}

.quotes .quote .more .rating .icon {
    width: 16px;
    display: inline-block;
}

@media (max-width: 767px) {
    .quotes .quote {
        margin-bottom: 80px;
    }
}

.quotes.quotes-slider .quote {
    padding-top: 30px;
}

.quotes.quotes-slider .quote .image img {
    width: 100px;
}

@media (max-width: 767px) {
    .quotes.quotes-slider .quote {
        margin-bottom: 0;
    }
}

.quotes.quotes-slider .owl-theme {
    margin-bottom: 20px;
}

.quotes.quotes-slider .owl-theme .owl-controls .owl-buttons > div {
    color: white;
}

.quotes.quotes-slider .owl-theme .owl-controls .owl-buttons > div span {
    background-color: transparent;
}

.quotes.quotes-slider .owl-theme .owl-controls .owl-pagination {
    position: relative;
    margin-top: 40px;
}

.quotes.quotes-slider .owl-theme .owl-controls .owl-page span {
    background-color: rgba(255, 255, 255, 0.5);
}

.quotes.quotes-slider .owl-theme .owl-controls .owl-page.active span {
    background-color: white;
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

/*  
    ----------------------------------
    43. Team
    ----------------------------------
*/
.team {
    padding: 40px 0;
}

.team article {
    background-color: white;
    margin-bottom: 30px;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.team article.inactive {
    opacity: 0.2;
}

.team article.active {
    opacity: 1;
}

.team article .title {
    text-transform: none;
    margin: 0;
}

.team article .image img {
    width: 100%;
    display: block;
}

.team article a {
    color: white;
}

.team article .details {
    background-color: #ffbb00;
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 0;
    -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.team article .details .inner {
    padding: 15px 0;
}

.team article .details-text {
    top: auto;
    bottom: 100%;
}

.team article .details-social {
    top: 100%;
    bottom: auto;
}

.team article .details-social .fa {
    width: 30px;
    height: 30px;
    padding: 5px;
    text-align: center;
}

.team article:hover {
    position: relative;
    z-index: 999;
}

.team article:hover .details-text {
    height: 70px;
}

.team article:hover .details-social {
    height: 60px;
}

/*  
    ----------------------------------
    44. Owl-icons
    ----------------------------------
*/
.owl-icons-wrapper {
    padding: 0;@media(min-width: 300px) and (max-width: 710px)
    position: relative;
    background: #fff;
}

.owl-icons-wrapper .owl-icons {
    position: relative;
    padding: 5px 0;
}

.owl-icons-wrapper .owl-icons a:hover,
.owl-icons-wrapper .owl-icons figure:hover {
    color: black;
}

.owl-icons-wrapper .owl-icons figure {
    text-align: center;
    padding: 10px 0 20px 0;
}

.owl-icons-wrapper .owl-icons figure:hover .f-icon {
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.owl-icons-wrapper .owl-icons figure .f-icon {
    font-size: 70px;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.owl-icons-wrapper .owl-icons figcaption {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;

}

.owl-icons-wrapper .owl-icons.owl-theme .owl-controls .owl-buttons div span {
    color: #3a3d45;
}

.owl-icons-wrapper .owl-icons.owl-theme .owl-controls .owl-buttons .owl-next {
    right: -50px;
}

.owl-icons-wrapper .owl-icons.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: -50px;
}

.owl-icons-wrapper .owl-icons-boxed {
    padding: 50px 0;
}

.owl-icons-wrapper .owl-icons-boxed figure {
    background-color: #fafafa;
    border-radius: 4px;
    color: black;
    margin: 0 5px;
}

.owl-icons-wrapper .owl-icons-boxed figure:hover {
    color: #ffbb00;
}

.owl-icons-wrapper.owl-icons-frontpage {
    margin-top: -125px;
    background: transparent;
}

.owl-icons-wrapper.owl-icons-frontpage a, .owl-icons-wrapper.owl-icons-frontpage a:focus, .owl-icons-wrapper.owl-icons-frontpage a:active, .owl-icons-wrapper.owl-icons-frontpage a:hover {
    color: white;
}

.owl-icons-wrapper.owl-icons-frontpage figure:hover,
.owl-icons-wrapper.owl-icons-frontpage .owl-icons.owl-theme .owl-controls .owl-buttons div span {
    color: white;
}

@media (min-width: 992px) {
    .owl-icons-wrapper.owl-icons-frontpage {
        margin-top: -160px;
        background: transparent;
    }
    .owl-icons-wrapper .owl-icons figcaption {
        font-size: 14px;
    }
    .owl-icons-wrapper .owl-icons figure .f-icon {
        font-size: 100px;
    }
}

/*  
    ----------------------------------
    45. Footer
    ----------------------------------
*/
footer {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #f5f3f3;
    background-color: #104a82;;
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer .h1, footer .h2, footer .h3, footer .h4, footer .h5, footer .h6 {
    color: #cc9600;
}

footer .form-control {
    background-color: transparent;
    border: 0;
    padding: 0;
    border-bottom: 1px solid #ffbb00;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    list-style-type: none;
}

footer a {
    color: #f5f3f3;
}

footer a:hover {
    color: #ffbb00;
}

footer .footer-showroom {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
}

footer .footer-showroom.footer-showroom-single {
    margin-bottom: 0;
}

footer .footer-showroom .call-us {
    margin-top: 20px;
}

@media (min-width: 768px) {
    footer .footer-showroom {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    footer .footer-showroom {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1200px) {
    footer .footer-showroom {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 80px;
    }
}

footer .footer-links .form-newsletter {
    position: relative;
}

footer .footer-links .form-newsletter .btn {
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media print {
    footer .footer-links {
        display: none !important;
    }
}

footer .footer-social {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #222;
}

footer .footer-social li {
    display: inline-block;
}

footer .footer-social li a {
    padding: 0 5px;
}

@media (min-width: 992px) {
    footer .footer-social {
        padding: 30px 0;
        text-align: left;
    }
    footer .footer-social .links {
        text-align: right;
    }
}

@media (max-width: 991px) {
    footer .row > div {
        margin-bottom: 30px;
    }
    footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/*  
    ----------------------------------
    46. Info icons
    ----------------------------------
*/
.info-icons {
    padding: 60px 0;
    background-color: #eeeeee;
}

.info-icons.info-icons-frontpage {
    margin-top: -100px;
    padding: 0;
}

.info-icons.info-icons-inverted {
    background-color: #ffbb00;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.info-icons figure {
    border: 1px solid #dddddd;
    background-color: white;
}

.info-icons figure figcaption {
    text-align: center;
}

.info-icons figure figcaption .icon {
    font-size: 40px;
}

.info-icons figure figcaption > span {
    display: block;
}

.info-icons figure figcaption > span,
.info-icons figure figcaption > span > * {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 5px;
}

.info-icons figure figcaption > span:nth-child(1) {
    padding-top: 40px;
    padding-bottom: 15px;
}

.info-icons figure figcaption > span:nth-child(2) {
    padding-bottom: 40px;
}

.info-icons figure figcaption > span > strong {
    display: block;
}

@media (max-width: 991px) {
    .info-icons figure {
        margin-bottom: 20px;
    }
}

/*  
    ----------------------------------
    47. Cards
    ----------------------------------
*/
.cards {
    position: relative;
}

.cards figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.cards figure figcaption {
    position: relative;
    background-position: center;
    background-size: cover;
    min-height: 360px;
    -moz-transition: all 5s;
    -o-transition: all 5s;
    -webkit-transition: all 5s;
    transition: all 5s;
}

.cards figure figcaption img {
    display: none;
}

.cards figure figcaption:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffbb00;
    opacity: 0;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cards figure:hover figcaption {
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.cards figure:hover figcaption:before {
    opacity: 0.8;
}

.cards figure .btn {
    position: absolute;
    top: 80%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cards figure:hover .btn {
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
}


/*  
    ----------------------------------
    49. Single page
    ----------------------------------
*/
.single-page {
    -moz-animation: moveToBottom .7s ease-in-out both;
    -o-animation: moveToBottom .7s ease-in-out both;
    -webkit-animation: moveToBottom .7s ease-in-out both;
    animation: moveToBottom .7s ease-in-out both;
    color: red;
}


.steps{
     text-align: center;
}
.partner  .owl-icons figcaption, h2{
      text-transform: inherit;
}

.partner .owl-icons img{
    width: 180px;
}


 .about1:after {
    content: "";
    position: absolute;
    top: 50px;
    left: -50px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 30px solid rgba(0,0,0,0.1);
}

.about .para p{
    color: #24202d;
     text-align: justify;
    padding: 1px 44px 8px 4px;
}
.about small{
    padding: 2px;
}
.about .head1{
    text-transform: capitalize;
    color: #633c3c;
}


.we_do ul {
  list-style: none;
  padding: 0;
}
.we_do li {
  padding-left: 1.5em;
  padding: 7px;
  margin-left: 30%;
  font-size: 18px;
}
.we_do li:before {
  content: "\f00c"; 
  font-family: FontAwesome;
  display: inline-block;
  color: #a90b95;
  margin-left: -1.3em; 
  width: 1.3em; 
}

.home_icon .icon{
   font-size: 38px;
   line-height: 45px;
   margin-top: 2px;
}


.sectiontitle {
    color:#6f8348;
    text-transform: capitalize;

}
.sectiontitle::after {
    background-color: #0a9606!important;
    display: block;
    position: absolute;
    bottom: -2px!important;
    left: 0;
    width: 100px;
    height: 3px;
    content: "";
}
#service p {
    text-align: justify;
    line-height: 27px;
    color:#2f222c;
}

#service {
    padding: 30px 0;
    background: url(../assets/images/bg.jpg) center center;}



*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }

.content {
    margin: 0 auto;
    max-width: 1000px;
}

.content > h2 {
    clear: both;
    margin: 0;
    padding: 4em 1% 0;
    color: #484B54;
    font-weight: 800;
    font-size: 1.5em;
}

.content > h2:first-child {
    padding-top: 0em;
}





.grid {
    position: relative;
    clear: both;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 360px;
    max-height: 360px;
    width: 31.3%;
    height: auto;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}



.grid figure h2 {
    margin: 0;
}


figure.effect-jazz {
    background: -webkit-linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
    background: linear-gradient(-45deg, #f3cf3f 0%,#f33f58 100%);
}

figure.effect-jazz img {
    opacity: 0.9;
}

figure.effect-jazz figcaption::after,
figure.effect-jazz img {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-jazz figcaption::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
    transform: rotate3d(0,0,1,45deg) scale3d(1,0,1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

figure.effect-jazz h2 {
    opacity: 1;
    -webkit-transform: scale3d(0.8,0.8,1);
    transform: scale3d(0.8,0.8,1);
}

figure.effect-jazz h2 {
    padding-top: 26%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

 figure.effect-jazz h2 {
   /* padding: 0.5em 2em;*/
    text-transform: none;
    font-size: 1.05em;
    opacity: 0;
}

figure.effect-jazz:hover img {
    opacity: 0.7;
    -webkit-transform: scale3d(1.05,1.05,1);
    transform: scale3d(1.05,1.05,1);
}



figure.effect-jazz:hover h2 {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
}


/* Media queries */
@media screen and (max-width: 50em) {
    .content {
        padding: 0 10px;
        text-align: center;
    }
    .grid figure {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}


.gallery1 .h4>a{
    color: #ffbe0b;
    text-transform: capitalize;

}


.popular  .h4>a{
    text-transform: capitalize!important;
}


@media(min-width: 300px) and (max-width: 710px)
{
     .partner .owl-icons img {
    width: 100px!important;
   }
   .info-icons.info-icons-frontpage {
    margin-top: -10px;
    padding: 0;
}
}



nav.navbar-sticked   .logo img {
    max-width: 150px;
}

 #c1.card  {
    background-color: rgba(255, 255, 255, 0.541);
    height: 380px;
    width: 380px;
    border-radius: 10px;
}
#c1.card .row{
 margin-top: 40px;
 margin-left: 5px;
}
#c1 #c3{
    margin-top: 78px;
   }
   

.box .container .col-md-6{
    padding-left: 80px;
}


   #c1.card p{
  
    color: #795548; 
    font-size: 32px;
    padding: 5px;
    margin: 4px;

    text-align: center;
    font-family: 'Times New Roman', Times, serif;
       }


    @media screen and (max-width: 990px) {
        /* Adjust card layout for smaller screens */
        #c1.card .row .card {
            float: none;
            width: 100%;
            margin-bottom: 20px;
        }
    
        /* Remove left padding for smaller screens */
        .box .container .col-md-6 {
            padding-left: 20px;

        }
        #c1.card  {
            width: 380px;
            height: 280px;
            border-radius: 10px;
            margin-top: 70px;
        }
        /* Adjust text size and padding for smaller screens */
        #c1.card p {
            font-size: 24px;
            padding: 10px;
        }
        .header-content .item .box h3{
            color: rgb(209, 209, 209);
            margin-top: 10px;
            font-size: 25px;
        }
        .header-content .item .box .animated a{
            margin-top: -5px;
        }

        #c2 #c1.card {
   
            margin-top: 10px; /* Background color for the "Cargo Goods Lift" card */
        }
        #c1.card {
            border: 2px solid red; /* Background color for the "Cargo Goods Lift" card */
        }
        .svideo #myVideo{
            display: none ;
        }
        .svideo #myVideo1{
            display: block;
         
        }
        #c1.card .row .card{
            height: 115px;
            width: 115px;
            margin: 4px;
            float: inline-start;
   
        }
        #c1 #c3{
            margin-top: 20px;
           }
    }



    @media screen and (max-width: 430px) {
        /* Adjust card layout for smaller screens */
        #c1.card .row .card {
            float: none;
            width: 100%;
            margin-bottom: 20px;
        }
        #c1 #c3{
            margin-top: 35px;
           }
        /* Remove left padding for smaller screens */
        .box .container .col-md-6 {
            padding-left: 20px;
        }

        #c1.card  {
            height: 300px;
            width: 380px;
            border-radius: 10px;

        }

        /* Adjust text size and padding for smaller screens */
        #c1.card p {
            font-size: 28px;
            padding: 10px;
        }
       
        #c2 #c1.card {
           
            margin-top: 10px;
          
        }
        #c1.card {
            border: 2px solid red; /* Background color for the "Cargo Goods Lift" card */
        }
        #c1.card .row .card{
            height: 115px;
            width: 115px;
            float: inline-start;
        }
    }
    @media(min-width: 371px) and (max-width: 429px){
        #c1.card .row .card{
            height: 115px;
            width: 115px;
            float: inline-start;
        }
    }
    @media screen and (max-width: 370px) {
        /* Adjust card layout for smaller screens */
        #c1.card .row .card {
            float: none;
 
            margin-bottom: 20px;
        }
        #c1 #c3{
            margin-top: 15px;
           }
        /* Remove left padding for smaller screens */
        .box .container .col-md-6 {
            padding-left: 1px;
        }

        #c1.card  {
            height: 280px;
            width: 358px;
            border-radius: 10px;
margin-top: -5px;
        }

        /* Adjust text size and padding for smaller screens */
        #c1.card p {
            font-size: 20px;
            padding: 5px;
        }
       
        #c2 #c1.card {
            margin-top: 8px;   
        }
        #c1.card .row .card{
    height: 105px;
        width: 108px; 
        }

        .header-content .item .box h3{
            color: rgb(209, 209, 209);
            margin-top: 3px;
            font-size: 19px;
        }
        .header-content .item .box .animated .btn-main{
margin-top: -10px;
width: 100px;
height: 15px;
font-size: 12px;
text-align: center;
padding: 8px;
padding-bottom: 20px;
        }
    }

    @media screen and (min-width: 992px) {
        #c1.card .row .card{
              height: 116px;
        width: 116px; 
        }
    }

    #c1.card .row .card{

        margin: 4px;
        border-radius: 5px;
        float: inline-start; 
       
       }
       #c1.card .row .card p{
       font-size: 18px;
       color: #795548; 
       text-align: center;
       padding-top: 120px;
          }
          #c1.card .row .card p:hover{
            text-decoration: underline;
          } 



  #goodsarticles article {
    --img-scale: 1.001;
    --title-color: black;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
  
  }
  #goodsarticles article {
    margin-top: 20px;
    border-radius: 16px;
  }

  /* basic article elements styling */
  #goodsarticles article h2 {
    margin: 0 0 18px 0;
    font-family: "Bebas Neue", cursive;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    color: var(--title-color);
    transition: color 0.3s ease-out;
  }
  
  #goodsarticles figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  
  #goodsarticles article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
  }
  
  .article-body {
    padding: 24px;
  }
  
  #goodsarticles article a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #28666e;
  }
  
  #goodsarticles article a:focus {
    outline: 1px dotted #28666e;
  }
  

  /* using the has() relational pseudo selector to update our custom properties */
   #goodsarticles article:has(:hover, :focus) {
    --img-scale: 1.1;
    --title-color: #28666e;
    --link-icon-translate: 0;
    --link-icon-opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
   

  /************************ 
  Generic layout (demo looks)
  **************************/
  
#goodsarticles #a1 .article-body h2{
    text-align: center;
    font-size: 33px;
   
}
#goodsarticles #a1 .article-body p{
    text-align: justify;
    padding-top: 10px;
    font-size: 20px;
    line-height: 32px;
    text-indent: 20px;
   
}
#goodsarticles #a1image figure{
height:445px ;
}
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  

  
  #goodsarticles.articles {
    display: grid;

    margin-inline: auto;
    padding-inline: 24px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
  
  @media screen and (max-width: 960px) {
    #goodsarticles article {
      container: card/inline-size;
    }
    #goodsarticles.article-body p {
      display: none;
    }
  }

  
  @containercard (min-width: 380px) {
    #goodsarticles.article-wrapper {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 16px;
    }
    #goodsarticles.article-body {
      padding-left: 0;
    }
    #goodsarticles figure {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    #goodsarticles figure img {
      height: 100%;
   
      object-fit: cover;
    }
  }
  
  @media screen and (max-width: 990px) {
    #goodsarticles figure img {
        width: 100%;
    }

  }
  @media screen and (max-width: 429px) {
    #goodsarticles figure img {
        width: 50%;
    }
  }
  @media screen and (min-width: 1730px) {
    #goodsarticles.articles {
      gap: 60px;
    }
        #goodsarticles figure img {
        width: 420px;
    }
  }
  @media screen and (min-width: 1860px) {
    #goodsarticles.articles {
      gap: 80px;
    }
  }
  @media screen and (min-width: 1960px) {
    #goodsarticles.articles {
      gap: 140px;
    }
  }
  @media(min-width: 940px)and (max-width: 1420px) {
    #goodsarticles.articles {
      gap: 10px;
      width: 70%;
    }
  }

  .sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0); 
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; 
    width: 1px;
  }
  #mainheader{
    background-color: white;
  }
  #mainheader .row .title{
   color: #0750ca;
  }






  #wrapperid.wrapper {
    background-color: #f6f8ff;
    width: 100%;
    /* min-height: 10vh;
    min-width: 90vh; */
    background: transparent;
    opacity: 1;
   
  }
  
  #goodsdescription {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    margin: auto;
  }
  #goodsdescription .card {
     max-width: 900px;
    /* min-height: 140px; */
    min-width: 595px;
   
    background-color: transparent;
    border-radius: 10px;
    /* border: 0px solid #e3e3e3; */
    margin: 0 auto;
  }
  .tabs {
    text-align: left;
    position: relative;
  }
  .tabs input {
    position: absolute;
    opacity: 0;
    margin: 0;
    padding: 0;
  }
  
  .tabs input + label:hover {
    color: #777;
  }
  .tabs .tabsShadow {
    width: 100%;
    padding: 10px;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    position: absolute;
    height: 35px;
    z-index: 0;
    top: 0;
    pointer-events: none;
  }
  
  .content .item {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
    padding: 10px 20px;
  }
  
  #tab-1:checked ~ .glider {
    left: 0px;
  }
  
  #tab-1:checked ~ section #content-1,

  #tab-4:checked ~ section #content-4 {
    opacity: 1;
    visibility: visible;
  }
  
  .tabs input + label {
    margin: 12px -1px;
    width: 15%;
    transition: all 0.3s;
    text-align: center;
    border: none;
    border-bottom: 0.5pt solid #1d1e22;
    color: #e7e9f5;
    display: inline-flex;
    -webkit-box-pack: center;
    padding: 5pt 7pt;
    vertical-align: top;
    justify-content: flex-start;
    background: #333;
    box-shadow: 1px 1px 2px 1px #231f20;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 10pt;
    background: #26292c;
    margin-bottom: 0.5px;
    border-radius: 7px 7px 0 0 !important;
    border-top: 1px solid #3b3d3f;
    letter-spacing: 0.1666666667em !important;
    font-family: "antique-olive" !important;
    background: hsl(232deg 6% 17%);
    cursor: pointer;
  }
  
 .content {
    margin: 0px auto;
    text-align: left;
    line-height: 20px;
    height: 550px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 10%);
    display: block;
    padding: 1.25rem;
    z-index: 2;
    border-top: 1px solid #3b3d3f;
    background: hsl(232deg 16% 15%);
    position: relative;
  }
  
  #goodsdescription.card {

    border-radius: 10px;
    border: none;
    margin: 0 auto;
    z-index: 4 !important;
    position: relative;
    background: linear-gradient(#141e30, #243b55);
    background: #16181a;
    border-top: 1px solid #3b3d3f;
    background: hsl(232deg 18% 8%);
  }
  
  .content p {
    margin: 10px 15px 10px 0;
    letter-spacing: 0.75px;
    font-size: 14pt;
    font-style: normal;
    color: #f0f2fc;
    line-height: 30px;
    margin-top: 10pt;
    font-family: "freight-display-pro";
    font-weight: 300 !important;
  }
  h2.tab-title.tab-warning,
  h2.tab-title.tab-primary {
    display: inline-flex;
    color: #fff;
    background-position: bottom center;
    margin-bottom: 0pt !important;
    margin-top: 6pt;
    height: 22pt;
    text-fill-color: transparent !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    -ms-background-clip: text;
    -ms-text-fill-color: transparent;
    text-transform: capitalize;
    font-size: 24px;
    letter-spacing: 0px;
    font-family: "Manrope" !important;
    font-weight: 800 !important;
  }

  
  h2.tab-title.tab-primary {
    background: linear-gradient(
      60deg,
      hsl(202deg 100% 75%),
      hsl(205deg 100% 64%),
      hsl(230deg 100% 75%),
      hsl(270deg 100% 72%)
    );
  }
  
  h2.tab-title.tab-warning {
    background: linear-gradient(70deg, #c51574, #97389b);
  }
  
  .tabs input {
    position: relative;
    opacity: 0;
    margin: auto !important;
    padding: 0;
  }
  label.tab.tab-primary {
    border-radius: 6pt 0 0 6pt;
  }
  label.tab.tab-warning {
    border-radius: 0 6pt 6pt 0;
  }
  #tab-1:checked + label {
    color: deepskyblue;
  }

  #tab-4:checked + label {
    color: #ffadfa;
  }
  #tab-1:checked ~ .glider {
    left: 2%;
  }
  
 
  
  #tab-4:checked ~ .glider {
    background: linear-gradient(90deg, #b9326f 0%, #ff5ddc 100%);
    box-shadow: 0px 0px 8px 0px rgba(231, 13, 93, 0.57);
    left: 18% !important;
  }
  
  .glider {
    width: 11%;
    padding: 0px 13px;
    height: 4.5px;
    border-radius: 0 0 1px 1px;
    position: absolute;
    box-shadow: 0px 0px 8px 0px hsl(262deg 100% 70% / 70%);
    background: linear-gradient(
      113deg,
      hsl(260deg 100% 64%) 0%,
      hsl(190deg 100% 55%) 100%
    );
    transition: all 0.3s;
    top: 61px;
    z-index: 2;
  }
  
  span.numit {
    font-size: 12pt;
    font-family: "muli";
    font-weight: 600;
    text-shadow: 0.5px 0.5px 0.5px #e7e9f5;
    color: #0e101a;
    margin-right: 2px;
    margin-left: -2px;
    padding: 0;
    color: aliceblue;
    text-shadow: 0.5pt 0.5pt 0.5pt #2d3748;
  }
  #wrapperid.wrapper {
    padding: 0;

    height: 120%;
    font-family: "Roboto", sans-serif;
    /* background: linear-gradient(#141e30, #243b55); */
    background-color: white; 
    background-image: linear-gradient(white,#141e30, #243b55);
 
  }
  #wrapperid .title {
    text-align: center;
    padding: 50px 0px 25px 0;
    font-size: 44px;
    font-weight: 600;
    color: #101fbe;
    margin-top: 60px;
    font-family: "Playfair Display SC";
  }

  .dot {
    height: 6px;
    width: 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 4px;
    margin-right: 5px;
  }





  #galleryid {
    --s: 250px; /* control the size */
     --g: 10px;   /* control the gap */
 margin-left: 180px;
    display: grid;
    grid: auto-flow var(--s)/repeat(2,var(--s));
    gap: var(--g);

  }
  @media screen and (min-width: 991px) {
  #galleryid.gallery > img {
    width: 100%; }}
  #galleryid.gallery > img {
  
    aspect-ratio: 1;
 
    cursor: pointer;
    filter: grayscale();
    z-index: 0;
    transition: .25s,z-index 0s .25s;
  }
  #galleryid.gallery > img:hover {
    width: calc(120% + var(--g));
    filter: grayscale(0);
    z-index: 1;
    --_c: 50%;
    transition: .3s,z-index 0s;
  }

  @media screen and (max-width: 990px) {
    #wrapperid.wrapper {
   
    height: 140%;
}

.content .item {
 
    padding: 5px 0px;
  }

      #wrapperid .title {
        text-align: center;
        padding: 25px 0px 10px 0;
        font-size: 36px;
        
      }

      .content {
        line-height: 14px;
        height: 670px;
        width: 70%;
        margin-right: 140px;
margin-bottom: 100px;
      }

      #goodsdescription .content p {
     font-size: 21px;
        line-height: 30px;
        margin-top: 5pt;
    
      }
      #galleryid {
        --s: 140px; /* control the size */
         --g: 80px;   /* control the gap */
        display: grid;

      }
      #galleryid.gallery > img {
        width: 150%; 
     /* margin-left: -120px; */
     margin-bottom: 5px;

      }


      #galleryid.gallery > img:hover {
        width: calc(160% + var(--g));
    
      }
      .tabs input + label {
        margin: 10px -1px;
        width: 27%;
        height: 67px;
        margin-left: 129.5px;

        padding: 5pt 7pt;
        margin-bottom: 0.4px;

      }
      .glider {
        width: 21%;
        top: 70px;
      }
      #tab-1:checked ~ .glider {
        left: 18%;
      }
      
      #tab-4:checked ~ .glider {
        background: linear-gradient(90deg, #b9326f 0%, #ff5ddc 100%);
        box-shadow: 0px 0px 8px 0px rgba(231, 13, 93, 0.57);
        left: 60% !important;
      }
      label.tab.tab-primary {
   font-size: 20px;
      }
      label.tab.tab-warning {
        font-size: 20px;
      }

  }


  @media screen and (max-width: 440px) {
    #wrapperid.wrapper {
   
    height: 135%;
}

.content .item {
 
    padding: 5px 0px;
  }

      #wrapperid .title {
        text-align: center;
        padding: 25px 0px 10px 0;
        font-size: 36px;
        
      }

      .content {
        line-height: 10px;
        height: 970px;
        width: 64%;
        margin-right: 199px;
margin-bottom: 100px;
      }

      #goodsdescription .content p {
     font-size: 20px;
        line-height: 30px;
        margin-top: 5pt;
    
      }
      #galleryid {
        --s: 160px; /* control the size */
         --g: 5px;   /* control the gap */
        display: block;
      
      }
      #galleryid.gallery > img {
        width: 120%; 
     margin-left: -120px;
     margin-bottom: 5px;
      }


      #galleryid.gallery > img:hover {
        width: calc(150% + var(--g));
    
      }
      .tabs input + label {
        margin: 10px -1px;
        width: 27%;
        height: 67px;
        margin-left: 23px;
        padding: 5pt 7pt;
        margin-bottom: 0.4px;

      }
      .glider {
        width: 19%;
        top: 70px;
      }
      #tab-1:checked ~ .glider {
        left: 8%;
      }
      
      #tab-4:checked ~ .glider {
        background: linear-gradient(90deg, #b9326f 0%, #ff5ddc 100%);
        box-shadow: 0px 0px 8px 0px rgba(231, 13, 93, 0.57);
        left: 40% !important;
      }
      label.tab.tab-primary {
   font-size: 18px;
      }
      label.tab.tab-warning {
        font-size: 18px;
      }

  }




  @media screen and (max-width: 370px) {
    #wrapperid.wrapper {
   
    height: 197%;
}

.content .item {
 
    padding: 5px 0px;
  }

      #wrapperid .title {
        text-align: center;
        padding: 25px 0px 10px 0;
        font-size: 35px;
        
      }

      .content {

        height: 1209px;
        width: 55%;
        margin-right: 250px;

      }

      #goodsdescription .content p {
     font-size: 20px;
        line-height: 31.5px;
        margin-top: 5pt;
        text-align: justify;
    
      }
      #goodsdescription .content #contentpara {
        font-size: 25px;
           line-height: 33px;
           margin-top: 5pt;
           text-align: justify;
       
         }
         #contentheading{
            font-size: 26px;
         }
      #galleryid {
        --s: 170px; /* control the size */
         --g: 5px;   /* control the gap */
        display: block;
      
      }
      #galleryid.gallery > img {
        width: 200%; 
     margin-left: -170px;
     margin-bottom: 5px;
      }


      #galleryid.gallery > img:hover {
        width: calc(210% + var(--g));
    
      }
      .tabs input + label {
        margin: 10px -1px;
        width: 24%;
        height: 67px;
        margin-left: 20px;
        padding: 5pt 7pt;
        margin-bottom: 0.4px;

      }
      .glider {
        width: 19%;
        top: 70px;
      }
      #tab-1:checked ~ .glider {
        left: 6%;
      }
      
      #tab-4:checked ~ .glider {
        background: linear-gradient(90deg, #b9326f 0%, #ff5ddc 100%);
        box-shadow: 0px 0px 8px 0px rgba(231, 13, 93, 0.57);
        left: 35% !important;
      }
      label.tab.tab-primary {
   font-size: 16px;
      }
      label.tab.tab-warning {
        font-size: 16px;
      }

  }
  
  #wrapperid2.wrapper {
    background-color: #f6f8ff;
    width: 100%;
    /* min-height: 10vh;
    min-width: 90vh; */
    background: transparent;
    opacity: 1;
   
  }
  #wrapperid2.wrapper {
    padding: 0;

    height: 120%;
    font-family: "Roboto", sans-serif;
    /* background: linear-gradient(#141e30, #243b55); */
    background-color: white; 
    background-image: linear-gradient(white,#141e30, #243b55);
 
  }
  #wrapperid2 .title {
    text-align: center;
    padding: 50px 0px 25px 0;
    font-size: 44px;
    font-weight: 600;
    color: #101fbe;
    margin-top: 60px;
    font-family: "Playfair Display SC";
  }

  @media screen and (max-width: 990px) {
    #wrapperid2.wrapper {
   
    height: 140%;
}


      #wrapperid2 .title {
        text-align: center;
        padding: 25px 0px 10px 0;
        font-size: 36px;
        
      }}
      @media screen and (max-width: 440px) {
        #wrapperid2.wrapper {
       
        height: 135%;
    }

          #wrapperid2 .title {
            text-align: center;
            padding: 25px 0px 10px 0;
            font-size: 36px;
            
          }
    }
          @media screen and (max-width: 370px) {
            #wrapperid2.wrapper {
           
            height: 205%;
        }
              #wrapperid2 .title {
                text-align: center;
                padding: 25px 0px 10px 0;
                font-size: 35px;
                
              }
            }
    



        #tracker.track-wrapper {
        width: 80%;
        /* max-inline-size: 1200px; Assuming size-content-3 is 1200px */
        
        overflow: hidden;
        /* background-color:#666666; */
        background-color: transparent;
        -webkit-mask: linear-gradient(90deg,
                                    transparent 0,
                                    black 15% 85%,
                                    transparent
                                ) 0 50% / 100% calc(100% - (2 * 1rem)) no-repeat,
                                linear-gradient(0deg, black, black) 50% 0 / 100% 1rem no-repeat,
                                linear-gradient(0deg, black, black) 50% 100% / 100% 1rem no-repeat;
    }
    
    #tracker img {
        height: 100%;
        width: 100%;
        object-fit: cover;

        /* -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out; */
    }
    
    #tracker .track {
    
        --size: clamp(600px, 75vmin, 50rem); 
        /* You can keep this CSS variable here or replace it with a specific value */
        height: var(--size);
        width: 100%;
        display: flex;
        /* overflow: overlay; */
        gap: 1rem; /* Assuming size-4 is 1rem */  
        list-style-type: none;
        margin: 0;
    
        padding: 1.1rem 2%; /* Assuming size-4 is 1rem */
        scroll-snap-type: x mandatory;
        -webkit-mask: radial-gradient(#0000 0 30%, #000 30.5%) 50% calc(var(--size) * 0.5) / 300% 100%,
                                    linear-gradient(0deg, black, black) 50% 0 / 100% 1rem no-repeat,
                                    linear-gradient(0deg, black, black) 50% 100% / 100% 1rem no-repeat;
                    
    }
    
    #tracker .track::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    #tracker .track__item {
        height: 100%;
        aspect-ratio: 1;
        flex: 0 0 auto; 
        width: max-content; /* Adjust based on your needs */
        
        /*background: #ececec;*/ /* Assuming surface-2 is a light surface color */
        scroll-snap-align: center;
        animation: scroll 20s linear infinite;
    }
    
    @keyframes scroll {
        0% {
        transform: translateX(0);
        }
        100% {
        transform: translateX(calc(-950%)); /* Adjusted to scroll half the width of the track */
        }
    }



    @media screen and (max-width: 990px) {
        #tracker.track-wrapper {
            width: 100%;
            /* max-inline-size: 1200px; Assuming size-content-3 is 1200px */
            margin-left: 2px;
        }
        #tracker .track__item {
            height: 100%;
            aspect-ratio: 1;
            flex: 0 0 auto; 
            width: 60%; 
        }
        #tracker .track {
            --size: clamp(100px, 75vmin, 50rem); 
                height: var(--size);
            width: 100%;
                display: flex;
                gap: 1.2rem; /* Assuming size-4 is 1rem */  
                padding: 1.5rem 2%; /* Assuming size-4 is 1rem */        
            }

    }
    @media screen and (min-width: 990px) {
        #tracker.track-wrapper {
            width: 80%;
            margin-left: 200px;
        }

    }