/*
-----------------------------------------------------
* Template Name    : Envy HTML                      *
* Author           : Kutetheme                      *
* Author URI:      : https//kutethemes.com          *
* Version          : 1.0.0                          *
* Created          : September 2019                 *
* File Description : Main CSS file of the template  *
*----------------------------------------------------

*--------------- Table of Content -------------------

    1. Header Templates

    2. Footer Templates

    3. Home Pages
        -Simple 01
        -Simple 02
        -Simple 03
        -Classic 01
        -Classic 02
        -Categories 01
        -Categories 02
        -Grid 01
        -Grid 02
        -Lookbook 01
        -Lookbook 02
        -Promo banner
        -Boxed

    4. Blog Post
        -Left Sidebar
        -Right Sidebar
        -No Sidebar

    5. Blog
        -List
        -Grid 2 Columns
        -Grid 3 Columns
        -Left Sidebar
        -Right Sidebar
        -No Sidebar

    6. Category


    7. Single Product
    8. Login Page
    9. Shopping Cart
    10. About Us
    11. Contact Us
    13. Check Out
    14. Newsletter Template Popup
    15. Quick View Template

----------------------------------------------------*/


/*==========================================================================
FONT FACE
===========================================================================*/
@font-face{
    font-family: HKV;
    src: url(../fonts/HKVenetian-Italic.otf);
    src: url(../fonts/HKVenetian-Italic.ttf);
    src: url(../fonts/HKVenetian-Regular.otf);
    src: url(../fonts/HKVenetian-Regular.ttf);
}
@font-face{
    font-family: Uni;
    src: url(../fonts/UniversalisADFStd-Bold.otf);
    src: url(../fonts/UniversalisADFStd-BoldItalic.otf);
    src: url(../fonts/UniversalisADFStd-Italic.otf);
    src: url(../fonts/UniversalisADFStd-Regular.otf);
}
@font-face{
    font-family: HKV;
    src: url('../fonts/HKVenetian-Regular.woff2') format('woff2'),
    url('../fonts/HKVenetian-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: HKV;
    src: url('../fonts/HKVenetian-Italic.woff2') format('woff2'),
    url('../fonts/HKVenetian-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face{
    font-family: Uni;
    src: url('../fonts/UniversalisADFStd-BoldItalic.woff2') format('woff2'),
    url('../fonts/UniversalisADFStd-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}
@font-face{
    font-family: Uni;
    src: url('../fonts/UniversalisADFStd-Bold.woff2') format('woff2'),
    url('../fonts/UniversalisADFStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face{
    font-family: Uni;
    src: url('../fonts/UniversalisADFStd-Regular.woff2') format('woff2'),
    url('../fonts/UniversalisADFStd-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: Uni;
    src: url('../fonts/UniversalisADFStd-Italic.woff2') format('woff2'),
    url('../fonts/UniversalisADFStd-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
/*==========================================================================
BANNER EFFECT
===========================================================================*/
.effect{
    display: block;
    position: relative;
}
/*----- NORMAL -----*/
.normal-effect::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 2;
}
.normal-effect:hover::before{
    opacity: 0.5;
}
.normal-effect.light-bg::before{
    background-color: #fff;
}
/*----- PLUS ZOOM -----*/
.plus-zoom::before,
.plus-zoom::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 2;
}
.plus-zoom:hover::before{
    width: 0;
    background-color: rgba(255, 255, 255, 0.5);
}
.plus-zoom:hover::after{
    height: 0;
    background-color: rgba(255, 255, 255, 0.5);
}
/*----- BOUNCE IN -----*/
.bounce-in:hover img{
    -webkit-animation: bounceIn 0.5s ease;
    -o-animation: bounceIn 0.5s ease;
    animation: bounceIn 0.5s ease;
}
/*----- FADED IN -----*/
@media (min-width: 1025px){
    .faded-in img{
        -webkit-transition: opacity 0.2s ease;
        -moz-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
    }
    .faded-in:not(:hover) img{
        opacity: 0.15;
    }
}
/*----- BACKGROUND ZOOM -----*/
.background-zoom{
    overflow: hidden;
}
.background-zoom img{
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.background-zoom:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
/*----- BORDER ZOOM -----*/
.border-zoom::before,
.border-zoom::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 2;
    opacity: 0;
}
.border-zoom::before{
    background-color: #000;
}
.border-zoom::after{
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border: 3px solid #fff;
}
.border-zoom:hover::before{
    opacity: 0.2;
}
.border-zoom:hover::after{
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    opacity: 1;
}
/*----- BORDER SCALE -----*/
.border-scale::before,
.border-scale::after{
    content: '';
    position: absolute;
    z-index: 2;
    border: solid #fff;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.border-scale::before{
    width: 0;
    border-width: 3px 0 3px 0;
}
.border-scale::after{
    height: 0;
    border-width: 0 3px 0 3px;
}
.border-scale:hover::before{
    width: calc(100% - 20px);
}
.border-scale:hover::after{
    height: calc(100% - 20px);
}
/*----- ROTATE UP -----*/
.rotate-up{
    overflow: hidden;
}
.rotate-up img{
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.rotate-up.rotate-left:hover img{
    -webkit-transform: scale(1.2) rotate(-5deg);
    -moz-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    -o-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
    opacity: 0.9;
}
.rotate-up.rotate-right:hover img{
    -webkit-transform: scale(1.2) rotate(5deg);
    -moz-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
    opacity: 0.9;
}
/*==========================================================================
MOBILE MENU
===========================================================================*/
.envy-menu-clone-wrap{
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100002;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    color: #000;
}
.envy-menu-clone-wrap.open{
    left: 0;
}
.envy-menu-clone-wrap.open ~ .overlay-body{
    opacity: 1;
    visibility: visible;
}
.envy-menu-panels-actions-wrap{
    border-bottom: 1px solid #eee;
    height: 44px;
    position: relative;
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn,
.envy-menu-panels-actions-wrap .envy-menu-prev-panel{
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    border-left: 1px solid #eee;
    text-align: center;
    line-height: 44px;
    color: #000;
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn:hover,
.envy-menu-panels-actions-wrap .envy-menu-prev-panel:hover{
    color: #000;
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn{
    font-size: 0;
    line-height: 0;
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn::before,
.envy-menu-panels-actions-wrap .envy-menu-close-btn::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 2px;
    border-radius: 90px;
    background-color: #555;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn:not(:hover)::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.envy-menu-panels-actions-wrap .envy-menu-close-btn:not(:hover)::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.envy-menu-panels-actions-wrap .envy-menu-prev-panel{
    right: inherit;
    left: 0;
    border: none;
    border-right: 1px solid #eee;
    font-size: 16px;
    font-weight: 600;
}
.envy-menu-panels-actions-wrap .envy-menu-current-panel-title{
    display: block;
    text-align: center;
    line-height: 44px;
    padding: 0 44px;
    text-transform: uppercase;
    font-weight: 600;
}
.envy-menu-panels-actions-wrap .envy-menu-prev-panel:before{
    content: "\f104";
    font-family: FontAwesome, sans-serif;
}
.envy-menu-panel > ul{
    padding: 0;
    margin: 0;
}
.envy-menu-panel li{
    list-style: none;
    position: relative;
}
.envy-menu-panel > ul > li{
    padding: 0 20px;
    border-bottom: 1px solid #eee;
}
.envy-menu-panel li > a > .icon{
    margin-right: 10px;
}
.envy-menu-panel > ul > li > a{
    display: block;
    line-height: 44px;
    color: #000;
}
.envy-menu-panel > ul > li:hover > a,
.envy-menu-panel > ul > li.active > a{
    color: #000;
}
.envy-menu-next-panel{
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
.envy-menu-next-panel:before{
    content: "\f105";
    font-family: FontAwesome, sans-serif;
}
.envy-menu-clone-wrap .toggle-submenu{
    display: none !important;
}
.envy-menu-clone-wrap .envy-menu-panels{
    background: inherit;
    border-color: inherit;
    z-index: 0;
    box-sizing: border-box;
    overflow: hidden;
    height: calc(100% - 44px);
    position: relative;
}
.envy-menu-clone-wrap .envy-menu-panel{
    background-color: #fff;
}
.envy-menu-clone-wrap .envy-menu-panel.envy-menu-sub-panel{
    border-color: #fff;
    bottom: 0;
    box-sizing: border-box;
    display: block;
    left: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all 0.2s ease 0s;
    z-index: 0;
}
.envy-menu-clone-wrap .envy-menu-panel.envy-menu-panel-opened{
    transform: translateX(0);
    z-index: 999;
}
.envy-menu-clone-wrap .envy-menu-sub-opened{
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
.envy-menu-clone-wrap .envy-menu-hidden{
    display: block !important;
    opacity: 0;
    visibility: hidden;
}
.envy-menu-clone-wrap .sub-menu.mega-menu{
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
}
.envy-menu li > a > .icon{
    margin-right: 10px;
}
.envy-menu-panel-main{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.envy-menu-clone-wrap .mega-menu [class^="col-"],
.envy-menu-clone-wrap .mega-menu [class*=" col-"]{
    width: 100% !important;
    float: none;
}
/*==========================================================================
SLICK SLIDER
===========================================================================*/
.slick-slider{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    overflow: visible;
}
.slick-list{
    padding: 0;
}
.slick-track{
    margin-left: 0;
}
.slick-slider:not(:hover) .slick-arrow{
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.slick-slider .slick-arrow{
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 30px;
    font-size: 24px;
    line-height: 30px;
    color: #bbb;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.32s ease;
}
.slick-slider .slick-arrow:hover{
    color: #000;
}
.slick-slider .slick-arrow.prev{
    top: calc(50% - 15px);
    left: -15px;
}
.slick-slider .slick-arrow.next{
    top: calc(50% - 15px);
    right: -15px;
}
.slick-slide > .row-item > *{
    display: block !important;
}
.slick-dots{
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 0;
    line-height: 0;
    margin: 10px -4px -5px;
}
.slick-dots li{
    display: inline-block;
    margin: 0 4px 5px;
    cursor: pointer;
}
.slick-dots li button{
    display: block;
    opacity: 1;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    overflow: hidden;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #edeef0;
}
.slick-dots li.slick-active button,
.slick-dots li:hover button{
    background-color: #000;
}
.slick-slider.slick-vertical .slick-slide{
    border: none;
}
.slick-slider.slick-vertical .slick-arrow{
    width: 30px;
    height: 15px;
    line-height: 15px;
}
.slick-slider.slick-vertical .slick-arrow.prev{
    top: -15px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
}
.slick-slider.slick-vertical .slick-arrow.next{
    top: auto;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
}
.slick-slider.slick-vertical .slick-arrow::before{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
@media (min-width: 1230px){
    .slick-slider .slick-arrow{
        width: 30px;
    }
    .slick-slider .slick-arrow.prev{
        left: -30px;
    }
    .slick-slider .slick-arrow.next{
        right: -30px;
    }
    .slick-slider.slick-vertical .slick-arrow{
        height: 30px;
        line-height: 30px;
    }
    .slick-slider.slick-vertical .slick-arrow.prev{
        top: -30px;
    }
    .slick-slider.slick-vertical .slick-arrow.next{
        bottom: -30px;
    }
}
/*==========================================================================
CHOSEN
===========================================================================*/
.chosen-container{
    vertical-align: top;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    width: auto !important;
    max-width: 100%;
    min-width: inherit;
}
.chosen-container-single .chosen-single{
    padding: 7px 22px;
    height: auto;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.chosen-container-single .chosen-single::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f107";
}
.chosen-container-single .chosen-single span{
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.chosen-container-single .chosen-single div{
    display: none;
}
.chosen-container-active.chosen-with-drop .chosen-single{
    border: 1px solid #e6e6e6;
    background: transparent;
    box-shadow: none;
}
.chosen-container-single .chosen-drop{
    top: 100%;
    left: 0;
    clip: auto;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: auto;
    min-width: 100%;
    white-space: nowrap;
    margin: 0;
    padding: 13px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.chosen-container:not(.chosen-with-drop) .chosen-drop{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.chosen-container-single .chosen-drop .chosen-search{
    display: none;
}
.chosen-container-single .chosen-results{
    color: #666;
    padding: 0;
    margin: 0;
}
.chosen-container .chosen-results li{
    font-size: 14px;
    line-height: 20px;
    padding: 5px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chosen-container .chosen-results li[class^="level-"]::before,
.chosen-container .chosen-results li[class*=" level-"]::before{
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 1px;
    margin-right: 6px;
    content: '';
}
.chosen-container .chosen-results li.level-0::before{
    border-top: 1px solid;
}
.chosen-container .chosen-results li.result-selected{
    background-color: #eee;
    color: #222;
}
.chosen-container .chosen-results li.highlighted{
    background-image: none;
    background-color: red;
    color: #fff;
}
/*==========================================================================
AUTO CLEAR
===========================================================================*/
@media (min-width: 1200px){
    .auto-clear .col-lg-1:nth-child(12n+1),
    .auto-clear .col-lg-2:nth-child(6n+1),
    .auto-clear .col-lg-15:nth-child(5n+1),
    .auto-clear .col-lg-3:nth-child(4n+1),
    .auto-clear .col-lg-4:nth-child(3n+1),
    .auto-clear .col-lg-6:nth-child(odd){
        clear: both;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .auto-clear .col-md-1:nth-child(12n+1),
    .auto-clear .col-md-2:nth-child(6n+1),
    .auto-clear .col-md-15:nth-child(5n+1),
    .auto-clear .col-md-3:nth-child(4n+1),
    .auto-clear .col-md-4:nth-child(3n+1),
    .auto-clear .col-md-6:nth-child(odd){
        clear: both;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .auto-clear .col-sm-1:nth-child(12n+1),
    .auto-clear .col-sm-2:nth-child(6n+1),
    .auto-clear .col-sm-15:nth-child(5n+1),
    .auto-clear .col-sm-3:nth-child(4n+1),
    .auto-clear .col-sm-4:nth-child(3n+1),
    .auto-clear .col-sm-6:nth-child(odd){
        clear: both;
    }
}
@media (min-width: 480px) and (max-width: 767px){
    .auto-clear .col-xs-1:nth-child(12n+1),
    .auto-clear .col-xs-2:nth-child(6n+1),
    .auto-clear .col-xx-15:nth-child(5n+1),
    .auto-clear .col-xs-3:nth-child(4n+1),
    .auto-clear .col-xs-4:nth-child(3n+1),
    .auto-clear .col-xs-6:nth-child(odd){
        clear: both;
    }
}
@media (max-width: 479px){
    .auto-clear .col-xxs-1:nth-child(12n+1),
    .auto-clear .col-xxs-2:nth-child(6n+1),
    .auto-clear .col-xxs-15:nth-child(5n+1),
    .auto-clear .col-xxs-3:nth-child(4n+1),
    .auto-clear .col-xxs-4:nth-child(3n+1),
    .auto-clear .col-xxs-6:nth-child(odd){
        clear: both;
    }
}
/*==========================================================================
BOOTSTRAP COLUMN XXS
===========================================================================*/
@media (max-width: 479px){
    .col-xxs-1,
    .col-xxs-2,
    .col-xxs-3,
    .col-xxs-4,
    .col-xxs-5,
    .col-xxs-6,
    .col-xxs-7,
    .col-xxs-8,
    .col-xxs-9,
    .col-xxs-10,
    .col-xxs-11,
    .col-xxs-12{
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .col-xxs-1,
    .col-xxs-2,
    .col-xxs-3,
    .col-xxs-4,
    .col-xxs-5,
    .col-xxs-6,
    .col-xxs-7,
    .col-xxs-8,
    .col-xxs-9,
    .col-xxs-10,
    .col-xxs-11{
        float: left;
    }
    .col-xxs-1{
        width: 8.33333333%;
    }
    .col-xxs-2{
        width: 16.66666667%;
    }
    .col-xxs-3{
        width: 25%;
    }
    .col-xxs-4{
        width: 33.33333333%;
    }
    .col-xxs-5{
        width: 41.66666667%;
    }
    .col-xxs-6{
        width: 50%;
    }
    .col-xxs-7{
        width: 58.33333333%;
    }
    .col-xxs-8{
        width: 66.66666667%;
    }
    .col-xxs-9{
        width: 75%;
    }
    .col-xxs-10{
        width: 83.33333333%;
    }
    .col-xxs-11{
        width: 91.66666667%;
    }
    .col-xxs-12{
        width: 100%;
    }
}
/*==========================================================================
BOOTSTRAP COLUMNS 20%
===========================================================================*/
.col-lg-15,
.col-md-15,
.col-sm-15,
.col-xs-15,
.col-xxs-15{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@media (max-width: 479px){
    .col-xxs-15{
        float: left;
        width: 20%;
    }
}
@media (min-width: 480px){
    .col-xs-15{
        float: left;
        width: 20%;
    }
}
@media (min-width: 768px){
    .col-sm-15{
        float: left;
        width: 20%;
    }
}
@media (min-width: 992px){
    .col-md-15{
        float: left;
        width: 20%;
    }
}
@media (min-width: 1200px){
    .col-lg-15{
        float: left;
        width: 20%;
    }
}
/*==========================================================================
DEFAULT DATAS
===========================================================================*/
/*----- MAKE CLASS -----*/
:focus{
    outline: none;
}
@media (min-width: 1230px){
    .container{
        width: 1200px;
    }
}
/*----- STICKY CONTENT -----*/
.sticky-content-main.remove-sticky-content {
    bottom: 0;
    position: absolute !important;
    top: auto !important;
}
/*----- DROPDOWN -----*/
.envy-dropdown{
    position: relative;
}
.envy-dropdown > .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 145px;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    z-index: 11;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
    visibility: visible;
}
.envy-dropdown > .sub-menu > .menu-item > a{
    display: block;
    padding: 5px 10px;
}
.envy-dropdown > .sub-menu > .menu-item > a:hover{
    color: #fff;
    background-color: #000;
}
@media (min-width: 1200px){
    .envy-dropdown:not(:hover) > .sub-menu{
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
}
@media (max-width: 1199px){
    .envy-dropdown:not(.open) > .sub-menu{
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
}
/*----- BODY OVERLAY -----*/
.overlay-body{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(0,0,0,0.15);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.show-sub .overlay-body{
    visibility: visible;
    opacity: 1;
}
/*.header.style-1 .header-top .header-control,*/
/*.header-cart,*/
.header-main-menu .main-menu,
.shop-filter-01 .shop-filter .widget-area{
    position: relative;
}
/*.header.style-1 .header-top .header-control:hover,*/
/*.header-cart:hover,*/
.header-main-menu .main-menu:hover,
.shop-filter-01 .shop-filter .widget-area:hover{
    z-index: 100000;
}
/*.header.style-1 .header-top .header-control > * > .sub-menu,*/
/*.header-cart > .sub-menu{*/
    /*box-shadow: none;*/
/*}*/
/*----- FONT AWESOME -----*/
span.fa{
    display: inline-block;
    vertical-align: top;
    line-height: inherit;
    text-decoration: inherit;
}
span.fa::before{
    display: block;
}
/*----- FLATICON -----*/
[class^="flaticon-"],
[class*=" flaticon-"]{
    display: inline-block;
    vertical-align: top;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after{
    display: block;
    font-size: inherit;
    margin-left: 0;
}
/*----- DATA COLOR -----*/
[data-width="10%"]{
    width: 10%;
}
[data-width="20%"]{
    width: 20%;
}
[data-width="30%"]{
    width: 30%;
}
[data-width="40%"]{
    width: 40%;
}
[data-width="50%"]{
    width: 50%;
}
[data-width="60%"]{
    width: 60%;
}
[data-width="70%"]{
    width: 70%;
}
[data-width="80%"]{
    width: 80%;
}
[data-width="90%"]{
    width: 90%;
}
[data-width="100%"]{
    width: 100%;
}
/*----- DATA COLOR -----*/
[data-bg-color="black"]{
    background-color: #000;
}
[data-bg-color="white"]{
    background-color: #fff;
}
[data-bg-color="blue"]{
    background-color: #0299d0;
}
[data-bg-color="brown"]{
    background-color: #976743;
}
[data-bg-color="green"]{
    background-color: #00b100;
}
[data-bg-color="red"]{
    background-color: #c10d22;
}
[data-bg-color="yellow"]{
    background-color: #fed639;
}
[data-bg-color="gray"]{
    background-color: #cecece;
}
[data-bg-color="orange"]{
    background-color: #ff9900;
}
[data-bg-color="camo"]{
    background-image: url(../images/color-camo.jpg);
    background-size: cover;
}
[data-bg-color="stripes"]{
    background-image: url(../images/color-stripes.jpg);
    background-size: cover;
}
[data-bg-color="tweed"]{
    background-image: url(../images/color-tweed.jpg);
    background-size: cover;
}
[data-bg-color="blue-plaid"]{
    background-image: url(../images/color-blue-plaid.jpg);
    background-size: cover;
}
[data-bg-color="red-tartan"]{
    background-image: url(../images/color-red-tartan.jpg);
    background-size: cover;
}
[data-bg-color="blue-tartan"]{
    background-image: url(../images/color-blue-tartan.jpg);
    background-size: cover;
}
[data-bg-color="gold-tartan"]{
    background-image: url(../images/color-gold-tartan.jpg);
    background-size: cover;
}
[data-bg-color="red-plaid"]{
    background-image: url(../images/color-red-plaid.jpg);
    background-size: cover;
}
/*==========================================================================
BODY DATAS
===========================================================================*/
body{
    font-family: "Uni", sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #555;
    font-weight: 400;
    overflow-x: hidden;
}
.site{
    overflow-x: hidden;
}
/*----- HEADING -----*/
h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: 600;
    margin: 0 0 20px;
    color: #000;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 32px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 16px;
}
p{
    margin-bottom: 20px;
}
/*----- A -----*/
a{
    color: inherit;
    text-decoration: none;
    line-height: inherit;
    -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    -moz-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    -o-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
a:hover,
a:focus,
a:active{
    text-decoration: none;
    outline: none;
    color: inherit;
}
a:hover{
    color: #000;
}
/*----- B, STRONG -----*/
b,
strong{
    font-weight: 600;
}
/*----- IMAGE -----*/
img{
    height: auto;
    max-width: 100%;
}
iframe{
    display: block;
    max-width: 100% !important;
}
/*----- UL, OL -----*/
ul,
ol{
    list-style-position: inside;
    padding: 0;
}
ul ul,
ol ul,
ul ol,
ol ol{
    padding: 0 0 0 20px;
}
/*----- TABLE -----*/
table{
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: auto;
    width: 100%;
    margin-bottom: 20px;
}
th,
td{
    border: 1px solid #ddd;
    padding: 5px;
    font-weight: 400;
    text-align: left;
}
/*----- LABEL -----*/
label{
    font-weight: 600;
    color: #222;
}
label .required{
    border-bottom: none;
    text-decoration: none;
    color: inherit;
}
/*----- INPUT, TEXTAREA, SELECT -----*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"],
select,
textarea{
    border: 2px solid #ddd;
    padding: 8px 20px;
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    text-align: inherit;
}
/* input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"]{
    height: 44px;
}
/* textarea */
textarea{
    display: block;
    min-height: 124px;
}
/* select */
select{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGRURCODBBRTFBQTkxMUU4QTk5Q0IzODg4MkIyMTRGNiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGRURCODBBRDFBQTkxMUU4QTk5Q0IzODg4MkIyMTRGNiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNjk1MERGRUU3MEFFODExQTE4QUNDRTlGODdCMDRDNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv9lMv8AAABlSURBVHjaYvz//z8DIcDEQARgWb16dSiQLgfisNDQ0HswCaC4EpBaBcSdIJPOArEgEO+GSsAU7IaKn2UEuQlJEATSgXgmlO0KMh3sJqg1rlCJ3cgKUByOpHAWsgIQYKRaEAAEGADbsSi0+3rpqQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: center right 18px;
    padding-right: 35px;
    cursor: pointer;
}
select::-ms-expand{
    display: none;
}
/* checkbox, radio */
input[type="radio"],
input[type="checkbox"]{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    cursor: pointer;
}
/* placeholder */
::-webkit-input-placeholder{
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-moz-placeholder{
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
::-moz-placeholder{
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-ms-input-placeholder{
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
/*----- BUTTON -----*/
.added_to_cart,
.button,
button,
input[type="submit"]{
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 30px;
    border: none;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    -moz-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    -o-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.added_to_cart:hover,
.added_to_cart:focus,
.button:hover,
.button:focus,
button:hover,
input[type="submit"]:hover{
    color: #fff;
}
.added_to_cart:hover,
.button:hover,
button:hover,
input[type="submit"]:hover{
    opacity: 0.7;
}
.button.loading::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    margin: auto;
    font-family: FontAwesome, sans-serif;
    content: "\f110";
    font-weight: 400;
    -webkit-animation: fa-spin 1.5s infinite linear;
    -o-animation: fa-spin 1.5s infinite linear;
    animation: fa-spin 1.5s infinite linear;
}
.envy-icon-plus{
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.envy-icon-plus::before,
.envy-icon-plus::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 10px;
    height: 2px;
    margin: auto;
    background-color: #333;
}
.envy-icon-plus::after{
    width: 2px;
    height: 10px;
}
/*==========================================================================
WIDGET, BREADCRUMB, PAGINATION, PAGE BANNER, SIDEBAR POSITION
===========================================================================*/
/*-------------------- WIDGET --------------------*/
.widget-area .widget:not(:last-child){
    padding-bottom: 20px;
    border-bottom: 2px solid #d9d9d9;
    margin-bottom: 50px;
}
.widget-area .widget_media_image:not(:last-child){
    margin-bottom: 50px;
}
.widget-area .widget_products:not(:last-child),
.widget-area .widget_media_image:not(:last-child){
    padding-bottom: 0;
    border-bottom: none;
}
.widget .widgettitle{
    display: table;
    font-size: 18px;
    line-height: 20px;
    border-bottom: 2px solid;
    margin-bottom: 25px;
}
.widget .subtitle{
    font-size: 15px;
    line-height: 20px;
    padding-top: 5px;
    margin-bottom: 15px;
}
.widget .subtitle:not(:first-child){
    margin-top: 10px;
}
.widget .subtitle span{
    display: inline-block;
    vertical-align: top;
    border-bottom: 2px solid;
}
/* widget_media_image */
.widget_media_image a{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
}
.widget_media_image a img{
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.widget_media_image a:hover img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
/* widget_recent_post */
.widget_recent_post ul{
    list-style: none;
    margin-bottom: 0;
}
.widget_recent_post ul li:not(:first-child){
    padding-top: 25px;
    border-top: 1px solid #e6e6e6;
}
.widget_recent_post ul li:not(:last-child){
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}
.widget_recent_post .post-number{
    font-family: "HKV", sans-serif;
    display: inline-block;
    float: left;
    width: 60px;
    margin-right: 10px;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #000;
}
.widget_recent_post .post-number p{
    margin-bottom: 0;
}
.widget_recent_post .post-info{
    overflow: hidden;
}
.widget_recent_post .post-meta{
    font-size: 14px;
    line-height: 20px;
    color: #888;
    margin-bottom: 5px;
}
.widget_recent_post .post-meta > *:not(:last-child)::after{
    content: '-';
    margin-left: 5px;
}
.widget_recent_post .post-title{
    font-family: "HKV", sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.widget_recent_post .post-title a:hover{
    opacity: 0.7;
}
/* widget instagram */
.widget_instagram ul{
    padding: 5px 0 0;
    margin: 0 -3px;
}
.widget_instagram ul li{
    display: inline-block;
    font-size: 0;
    line-height: 0;
    width: 33.3333333%;
    float: left;
    padding: 0 3px 6px 3px;
}
.widget_instagram ul li:nth-child(3n+1){
    clear: left;
}
/* widget_product_categories, widget_product_filter_2, widget_product_brand, widget_product_size, widget_product_sortby */
.widget_product_sortby ul,
.widget_product_size ul,
.widget_product_brand ul,
.widget_product_filter_2 ul,
.widget_product_categories ul{
    list-style: none;
    font-size: 15px;
    line-height: 20px;
    max-height: 360px;
    overflow-y: auto;
    margin-bottom: 0;
}
.widget_product_sortby ul li,
.widget_product_size ul li,
.widget_product_brand ul li,
.widget_product_filter_2 ul li,
.widget_product_categories ul li{
    padding: 5px 0;
}
.widget_product_sortby ul li a,
.widget_product_size ul li a,
.widget_product_brand ul li a,
.widget_product_filter_2 ul li a,
.widget_product_categories ul li a{
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.widget_product_sortby ul li a::before,
.widget_product_size ul li a::before,
.widget_product_brand ul li a::before,
.widget_product_filter_2 ul li a::before,
.widget_product_categories ul li a::before{
    display: inline-block;
    vertical-align: top;
    float: left;
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #ddd;
}
.widget_product_sortby ul li a::after,
.widget_product_size ul li a::after,
.widget_product_brand ul li a::after,
.widget_product_filter_2 ul li a::after,
.widget_product_categories ul li a::after{
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    font-family: FontAwesome, sans-serif;
    content: "\f00c";
    font-size: 11px;
    line-height: 19px;
    text-align: center;
    color: #000;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.widget_product_sortby ul li.active,
.widget_product_size ul li.active,
.widget_product_brand ul li.active,
.widget_product_filter_2 ul li.active,
.widget_product_categories ul li.active{
    color: #000;
    font-weight: 600;
}
.widget_product_sortby ul li a:hover,
.widget_product_size ul li a:hover,
.widget_product_brand ul li a:hover,
.widget_product_filter_2 ul li a:hover,
.widget_product_categories ul li a:hover{
    color: #000;
}
.widget_product_sortby ul li:not(.active) a:not(:hover)::after,
.widget_product_size ul li:not(.active) a:not(:hover)::after,
.widget_product_brand ul li:not(.active) a:not(:hover)::after,
.widget_product_filter_2 ul li:not(.active) a:not(:hover)::after,
.widget_product_categories ul li:not(.active) a:not(:hover)::after{
    opacity: 0;
}
/* widget filter 2, widget_product_sortby*/
.widget_product_sortby ul,
.widget_product_filter_2 ul{
    color: #000;
    font-weight: 600;
}
.widget_product_filter_2 ul li a span{
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
    color: #555;
    margin-right: 3px;
}
/* widget_product_size */
.widget_product_size ul{
    margin: 0 -10px;
}
.widget_product_size ul::before,
.widget_product_size ul::after{
    display: table;
    clear: both;
    content: '';
}
.widget_product_size ul li{
    display: inline-block;
    float: left;
    width: 73px;
    margin: 0 10px;
}
.widget_product_size ul li:nth-child(2n+1){
    clear: both;
}
/* widget_product_color, */
.widget_product_color ul{
    list-style: none;
    margin: 0 -10px 5px;
}
.widget_product_color ul::before,
.widget_product_color ul::after{
    display: table;
    content: '';
    clear: both;
}
.widget_product_color ul li{
    display: inline-block;
    float: left;
    width: 73px;
    margin: 0 10px 20px;
    font-size: 15px;
    line-height: 27px;
    color: #000;
}
.widget_product_color ul li a{
    display: block;
    width: 100%;
    height: 31px;
    border: 2px solid #ddd;
    text-align: center;
}
.widget_product_color ul li.active a,
.widget_product_color ul li a:hover{
    border-color: #000;
}
.widget_product_color ul li span{
    display: block;
    margin-bottom: -15px;
}
/*-------------------- BREADCRUMB --------------------*/
.breadcrumb{
    list-style: none;
    background-color: transparent;
    font-size: 0;
    line-height: 0;
    padding: 15px 0;
    color: #000;
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumb li{
    max-width: 100%;
    padding-right: 10px;
    font-size: 15px;
    line-height: 24px;
}
.breadcrumb li:last-child{
    padding-right: 0;
}
.breadcrumb li,
.breadcrumb li a,
.breadcrumb > li + li:before{
    display: inline-block;
    vertical-align: top;
}
.breadcrumb li a:not(:hover){
    color: #888;
}
.breadcrumb > li + li:before{
    content: "/";
    padding: 0 10px 0 0;
    color: #888;
}
/*-------------------- PAGINATION --------------------*/
.pagination{
    display: block;
    font-size: 0;
    line-height: 0;
    border-radius: 0;
    padding: 0;
    margin: 20px 0 0;
    clear: both;
}
.pagination .nav-links{
    margin: 0 -7px;
}
.pagination .page-numbers{
    display: inline-block;
    vertical-align: top;
    margin: 0 7px;
    font-size: 18px;
    line-height: 20px;
    color: #000;
    padding-top: 2px;
    border-bottom: 2px solid;
}
.pagination .page-numbers.dots,
.pagination a.page-numbers:not(:hover){
    color: #666;
    border-bottom-color: transparent;
}
.pagination a.page-numbers.prev,
.pagination a.page-numbers.next{
    font-size: 0;
    line-height: 0;
    width: 24px;
    border: none;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 0;
}
.pagination a.page-numbers.prev:hover,
.pagination a.page-numbers.next:hover{
    opacity: 0.7;
}
.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before{
    display: block;
    font-family: FontAwesome, sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}
.pagination .page-numbers.prev::before{
    content: "\f0d9";
}
.pagination .page-numbers.next::before{
    content: "\f0da";
}
@media (max-width: 991px) {
    .pagination{
        margin-top: 0;
    }
}
/*-------------------- PAGE BANNER --------------------*/
/* banner slider */
.banner-slider .slick-list{
    margin-top: -30px;
    padding-top: 30px;
}
.banner-slider .banner-item{
    text-align: center;
}
.banner-slider .banner-item > a{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.banner-slider .banner-item > a:hover{
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-15px);
}
.banner-slider .banner-item .thumb{
    margin-bottom: 16px;
}
.banner-slider .banner-item .title{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    font-weight: 600;
}
/* banner image */
.banner-image{
    background-color: #000;
    background-size: cover;
    background-position: center center;
}
.banner-image.bg-1{
    background-image: url(../images/shop-banner-01.jpg);
}
.banner-image.bg-2{
    background-image: url(../images/shop-banner-02.jpg);
}
.banner-image .content{
    max-width: 670px;
    margin-left: auto;
    text-align: center;
    padding: 53px 130px 68px;
}
.banner-image .title{
    font-family: "HKV", sans-serif;
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: #eee;
    margin-bottom: -6px;
}
.banner-image .subtitle{
    font-family: "HKV", sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    font-style: italic;
    color: #ddd;
    margin-bottom: -2px;
}
.banner-image .description{
    font-size: 16px;
    line-height: 20px;
    color: #888;
    margin-top: 19px;
    margin-bottom: 22px;
}
.banner-image .button{
    background-color: #fff;
    color: #000;
    min-width: 190px;
}
.banner-image .button::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    font-weight: 400;
    margin-left: 5px;
}
@media (max-width: 1199px){
    .banner-image .content{
        max-width: 500px;
        padding: 40px 70px 58px;
    }
    .banner-image .title{
        font-size: 55px;
    }
    .banner-image .subtitle{
        font-size: 45px;
    }
    .banner-image .description{
        margin-top: 17px;
        margin-bottom: 20px;
    }
}
@media (max-width: 991px){
    .banner-image .content{
        max-width: 410px;
        padding: 40px 30px 58px;
    }
    .banner-image .title{
        font-size: 50px;
    }
    .banner-image .subtitle{
        font-size: 42px;
    }
    .banner-image .description{
        font-size: 15px;
    }
}
@media (max-width: 767px){
    .inner-page-shop-category .banner-image .description,
    .inner-page-shop .banner-image .description{
        color: #ffffff;
    }
}
@media (max-width: 479px){
    .banner-image .content{
        padding-left: 15px;
        padding-right: 15px;
    }
    .banner-image .button{
        padding-top: 8px;
        padding-bottom: 8px;
    }
}
/*-------------------- SIDEBAR POSITION --------------------*/
@media (min-width: 992px){
    .left-sidebar .main-content{
        float: right;
    }
}
@media (max-width: 991px) {
    .sidebar{
        margin-top: 50px;
    }
}
/*==========================================================================
SHORT CODE
===========================================================================*/
/*-------------------- HEADING --------------------*/
/* style-1 */
.envy-heading.style-1{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
}
/* style-2 */
.envy-heading.style-2{
    font-family: "HKV", sans-serif;
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
    color: #000;
}
/* style-3 */
.envy-heading.style-3{
    font-size: 18px;
    line-height: 26px;
    color: #333;
}
/* style-4 */
.envy-heading.style-4{
    font-size: 23px;
    line-height: 36px;
    color: #111;
    font-weight: 600;
}
.envy-heading.style-4 > span{
    display: inline-block;
    vertical-align: top;
    border-bottom: 4px solid;
}
.envy-heading.style-4 > span span{
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}
@media (max-width: 479px){
    .envy-heading.style-4 > span{
        border-bottom-width: 3px;
    }
}
/* style-5 */
.envy-heading.style-5{
    font-family: "HKV", sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #333;
    font-style: italic;
    font-weight: 400;
}
.envy-heading.style-5 > span{
    text-decoration: underline;
    color: #000;
}
/* style-6 */
.envy-heading.style-6{
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}
/* style-7 */
.envy-heading.style-7{
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
/* style-8 */
.envy-heading.style-8{
    font-size: 16px;
    line-height: 16px;
    color: #000;
    font-weight: 600;
}
.envy-heading.style-8 > span{
    display: inline-block;
    vertical-align: top;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
}
/* style-9 */
.envy-heading.style-9{
    font-size: 17px;
    line-height: 24px;
    color: #000;
}
/* style-10 */
.envy-heading.style-10{
    font-size: 16px;
    line-height: 28px;
    color: #333;
}
/* style-11 */
.envy-heading.style-11{
    font-family: HKV, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: #000;
}
/* style-12 */
.envy-heading.style-12{
    font-family: HKV, sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: #000;
}
/* style-13 */
.envy-heading.style-13{
    font-size: 16px;
    line-height: 24px;
    color: #333;
}
/* style-14 */
.envy-heading.style-14{
    font-size: 18px;
    line-height: 20px;
    color: #333;
}
/* style-15 */
.envy-heading.style-15{
    font-size: 14px;
    line-height: 20px;
}
.envy-heading.style-15 span{
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    color: #000;
}
/* style-16 */
.envy-heading.style-16{
    font-family: HKV, sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-style: italic;
    color: #333;
}
/* style-17 */
.envy-heading.style-17{
    font-family: HKV, sans-serif;
    font-size: 56px;
    line-height: 50px;
    color: #000;
    font-weight: 400;
}
.envy-heading.style-17 span{
    font-style: italic;
}
/* style-18 */
.envy-heading.style-18{
    font-family: HKV, sans-serif;
    font-size: 40px;
    line-height: 38px;
    color: #000;
    font-style: italic;
    font-weight: 400;
}
/*----- IMAGE -----*/
.envy-image img{
    display: inline-block;
    vertical-align: top;
}
/* style-1 */
.envy-image.style-1 .image-wrap{
    display: inline-block;
    vertical-align: top;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.envy-image.style-1 .image-wrap:hover{
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
/*-------------------- CUSTOM MENU --------------------*/
/* style-1 */
.envy-menu.style-1{
    color: #888;
}
.envy-menu.style-1 ul{
    list-style: none;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}
.envy-menu.style-1 ul li{
    padding: 5px 0;
}
.envy-menu.style-1 ul li a{
    display: inline-block;
    vertical-align: top;
}
/* style-2 */
.envy-menu.style-2{
    color: #888;
}
.envy-menu.style-2 ul{
    list-style: none;
    font-size: 0;
    line-height: 0;
    margin: 0 -7px;
}
.envy-menu.style-2 ul li{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 24px;
    padding: 3px 0;
    margin: 0 7px;
    position: relative;
}
.envy-menu.style-2 ul li:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -8px;
    border-right: 1px solid;
    height: 14px;
    opacity: 0.4;
    margin: auto;
}
.envy-menu.style-2 ul li a{
    display: inline-block;
    vertical-align: top;
}
/* style-3 */
.envy-menu.style-3{
    color: #333;
}
.envy-menu.style-3 ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.envy-menu.style-3 ul li{
    font-size: 15px;
    line-height: 24px;
    padding: 3px 0;
}
.envy-menu.style-3 ul li a{
    display: inline-block;
    vertical-align: top;
}
/*-------------------- NEWSLETTER --------------------*/
/* style-1 */
.envy-newsletter.style-2 .newsletter-inner,
.envy-newsletter.style-1 .newsletter-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}
.envy-newsletter.style-3 .newsletter-form-wrap,
.envy-newsletter.style-2 .newsletter-form-wrap,
.envy-newsletter.style-1 .newsletter-form-wrap{
    display: table;
    width: 100%;
    max-width: 370px;
    text-align: left;
}
.envy-newsletter.style-3 .text-field,
.envy-newsletter.style-2 .text-field,
.envy-newsletter.style-1 .text-field{
    display: table-cell;
    vertical-align: top;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    width: 100%;
}
.envy-newsletter.style-3 .input,
.envy-newsletter.style-2 .input,
.envy-newsletter.style-1 .input{
    width: 100%;
    border-right: none;
}
.envy-newsletter.style-3 .button,
.envy-newsletter.style-2 .button,
.envy-newsletter.style-1 .button{
    display: table-cell;
    vertical-align: top;
    white-space: nowrap;
}
/* style-2 */
.envy-newsletter.style-2 .input{
    padding-top: 6px;
    padding-bottom: 6px;
    border-color: transparent;
    border-bottom-color: #000;
    height: 40px;
}
.envy-newsletter.style-2 .button{
    padding-top: 8px;
    padding-bottom: 8px;
}
/* style-2 */
.envy-newsletter.style-3 .newsletter-form-wrap{
    max-width: 530px;
}
.envy-newsletter.style-3 .spacing{
    display: table-cell;
    vertical-align: top;
    padding-left: 7px;
}
.envy-newsletter.style-3 .input{
    padding: 6px 0;
    border-color: transparent;
    border-bottom-color: #000;
    height: 40px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.envy-newsletter.style-3 .button{
    font-size: 13px;
    padding: 8px 15px;
    background-color: transparent;
    box-shadow: 0 0 0 2px #000 inset;
    color: #000;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.envy-newsletter.style-3 .button span{
    font-weight: 400;
    font-size: 12px;
    margin-left: 18px;
}
.envy-newsletter.style-3 .button:hover{
    background-color: #000;
    color: #fff;
    opacity: 1;
}
/*-------------------- SOCIALS --------------------*/
/* style-1 */
.envy-socials.style-1 ul{
    list-style: none;
    font-size: 0;
    line-height: 0;
    margin: 0 -7px -10px;
}
.envy-socials.style-1 ul li{
    display: inline-block;
    vertical-align: top;
    margin: 0 7px 10px;
}
.envy-socials.style-1 ul li a{
    display: block;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
}
.envy-socials.style-1 ul li a:hover{
    opacity: 0.7;
}
/*-------------------- GALLERY --------------------*/
/* style-1 */
.envy-gallery.style-1 ul{
    list-style: none;
    font-size: 0;
    line-height: 0;
    margin: 0 -7px -10px;
}
.envy-gallery.style-1 ul li{
    display: inline-block;
    vertical-align: top;
    margin: 0 7px 10px;
}
/*-------------------- STATISTIC --------------------*/
/* style-1 */
.envy-statistic.style-1{
    text-align: center;
    color: #000;
}
.envy-statistic.style-1 .content{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    margin-bottom: 26px;
}
.envy-statistic.style-1 .info{
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.envy-statistic.style-1 .icon{
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 13px;
}
.envy-statistic.style-1 .number{
    display: block;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
}
.envy-statistic.style-1 .description{
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}
.envy-statistic.style-1 .title{
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.envy-statistic.style-1 .title a{
    display: inline-block;
    vertical-align: top;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
}
.envy-statistic.style-1 .title a:hover{
    opacity: 0.7;
}
/* style-2 */
.envy-statistic.style-2 .statistic-item{
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 0;
    line-height: 0;
    padding: 14px 0 13px;
    margin: 0 30px;
}
.envy-statistic.style-2 .statistic-item > *{
    display: inline-block;
    vertical-align: top;
}
.envy-statistic.style-2 .statistic-item .icon{
    font-size: 45px;
    line-height: 1;
    color: #aaa;
    text-align: center;
}
.envy-statistic.style-2 .statistic-item .icon.fa-instagram{
    padding-top: 1px;
}
.envy-statistic.style-2 .statistic-item .icon.fa-facebook{
    padding-top: 5px;
}
.envy-statistic.style-2 .statistic-item .content{
    padding: 3px 0 0 18px;
}
.envy-statistic.style-2 .statistic-item .number{
    display: block;
    font-size: 35px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
}
.envy-statistic.style-2 .statistic-item .description{
    font-size: 20px;
    line-height: 20px;
    color: #666;
}
/*-------------------- CLIENT --------------------*/
/* style-1 */
.envy-client.style-1{
    text-align: center;
}
.envy-client.style-1 > *{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 590px;
}
.envy-client.style-1 .text{
    font-family: "HKV", sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-style: italic;
    margin-bottom: 35px;
}
.envy-client.style-1 .author{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}
.envy-client.style-1 .author::before,
.envy-client.style-1 .author::after{
    content: '-';
}
.envy-client.style-1 .author a:hover{
    opacity: 0.7;
}
/*-------------------- CATEGORY --------------------*/
/* style-1 */
.envy-category.style-1{
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.envy-category.style-1 .category-thumb{
    margin-bottom: 18px;
}
.envy-category.style-1 .category-thumb > a{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.envy-category.style-1.has-bg .category-thumb > a::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.envy-category.style-1.has-bg .category-thumb > a:hover::after{
    background-color: rgba(0,0,0,0.3);
}
.envy-category.style-1 .category-thumb img{
    position: relative;
    max-width: calc(100% + 40px);
    width: calc(100% + 40px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.envy-category.style-1 .category-thumb > a:hover img{
    left: calc(50% + 20px);
}
.envy-category.style-1 .category-title{
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.envy-category.style-1 .category-title a{
    display: inline-block;
    vertical-align: top;
    border-bottom: 2px solid #333;
}
.envy-category.style-1 .category-title a:hover{
    opacity: 0.7;
}
@media ( max-width: 767px ) {
    .envy-category.style-1 .category-thumb{
        margin-bottom: 30px;
    }
}
/* style-2 */
.envy-category.style-2{
    text-align: center;
}
.envy-category.style-2 .category-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.envy-category.style-2 .thumb img{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
}
.envy-category.style-2 .category-inner:hover .thumb img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.envy-category.style-2 .content{
    position: absolute;
    left: 15px;
    right: 15px;
    max-width: 160px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.envy-category.style-2 .title{
    font-family: HKV, sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
}
.envy-category.style-2 .button{
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
}
/*-------------------- ICONBOX --------------------*/
/* style-1 */
.envy-iconbox.style-1 .iconbox-inner::before,
.envy-iconbox.style-1 .iconbox-inner::after{
    display: table;
    clear: both;
    content: '';
}
.envy-iconbox.style-1 .icon{
    display: inline-block;
    float: left;
    width: 80px;
    height: 80px;
    font-size: 30px;
    line-height: 40px;
    color: #000;
    padding: 18px 0;
    text-align: center;
    border: 2px solid;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 10px;
}
.envy-iconbox.style-1 .content{
    overflow: hidden;
}
.envy-iconbox.style-1 .title{
    font-size: 36px;
    line-height: 50px;
    font-family: HKV, sans-serif;
    font-weight: 400;
    margin-bottom: 7px;
}
.envy-iconbox.style-1 .info{
    font-size: 16px;
    line-height: 28px;
    color: #333;
    margin-bottom: 0;
}
/* sytle-2 */
.envy-iconbox.style-2 .iconbox-inner{
    text-align: center;
    padding: 60px 65px 75px;
    box-shadow: 0 0 0 2px #eee inset;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.envy-iconbox.style-2 .iconbox-inner:hover{
    box-shadow: 0 0 0 3px #000 inset;
}
.envy-iconbox.style-2 .icon{
    display: block;
    font-size: 45px;
    line-height: 1;
    color: #000;
    margin-bottom: 12px;
}
.envy-iconbox.style-2 .title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
}
.envy-iconbox.style-2 .info{
    font-family: HKV, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-style: italic;
    color: #333;
    margin-bottom: 0;
}
@media (max-width: 768px){
    .inner-page-about-2 #section-1 .envy-iconbox.style-1{
        margin-bottom: 70px !important;
    }
    .inner-page-about-2 #section-1 .envy-image{
        margin-bottom: 80px;
    }
    .envy-iconbox.style-1 .icon{
        margin-right: 10px;
        width: 60px;
        height: 60px;
        font-size: 30px;
        line-height: 30px;
        padding: 13px 0;
    }
    .envy-iconbox.style-1 .content{
        overflow: visible;
    }
    .envy-iconbox.style-1 .info{
        clear: both;
    }
}
@media (max-width: 1199px){
    .envy-iconbox.style-2 .iconbox-inner{
        padding: 45px 25px 55px;
    }
}
@media (max-width: 767px) and (min-width: 480px){
    .envy-iconbox.style-2 .title{
        font-size: 22px;
    }
}
/* sytle-3 */
.envy-iconbox.style-3 .iconbox-inner{
    text-align: center;
    padding: 60px 65px 75px;
}
.envy-iconbox.style-3 .icon{
    display: block;
    font-size: 45px;
    line-height: 1;
    color: #000;
    margin-bottom: 12px;
}
.envy-iconbox.style-3 .title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
}
.envy-iconbox.style-3 .info{
    font-family: HKV, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-style: italic;
    color: #333;
    margin-bottom: 0;
}
@media (max-width: 1199px){
    .envy-iconbox.style-3 .iconbox-inner{
        padding: 45px 25px 55px;
    }
}
@media (max-width: 767px) and (min-width: 480px){
    .envy-iconbox.style-3 .title{
        font-size: 22px;
    }
    .envy-iconbox.style-3 .iconbox-inner{
        padding-left: 5px;
        padding-right: 5px;
    }
}
/*-------------------- PEOPLE --------------------*/
.envy-people.style-1{
    text-align: center;
}
.envy-people.style-1 .avatar{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    margin-bottom: 15px;
}
.envy-people.style-1 .name{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 0;
}
.envy-people.style-1 .position{
    font-family: HKV, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-style: italic;
    margin-bottom: 11px;
}
.envy-people.style-1 .socials{
    list-style: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
    margin: 0 -5px -10px;
}
.envy-people.style-1 .socials li{
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 10px;
}
.envy-people.style-1 .socials li a{
    display: block;
    width: 30px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
}
.envy-people.style-1 .socials li a:hover{
    opacity: 0.7;
}
/*-------------------- PINMAP --------------------*/
/* style-1 */
.envy-pinmap.style-1{
    position: relative;
    text-align: center;
}
.envy-pinmap.style-1 .thumb img{
    width: 100%;
}
.envy-pinmap.style-1 .pinmap{
    position: absolute;
    top: 0;
    left: 0;
}
.envy-pinmap.style-1 .pinmap > a{
    display: block;
    width: 44px;
    height: 44px;
    font-family: HKV, sans-serif;
    font-size: 23px;
    line-height: 44px;
    font-style: italic;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
}
.envy-pinmap.style-1 .pinmap .sub-menu{
    width: 155px;
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: inherit;
}
.envy-pinmap.style-1 .pinmap .title{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
    color: inherit;
}
.envy-pinmap.style-1 .pinmap .title a{
    color: inherit;
}
.envy-pinmap.style-1 .pinmap .price{
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
/* left */
.envy-pinmap.style-1 .content-left .sub-menu{
    top: 50%;
    bottom: auto;
    right: calc(100% + 15px);
    left: auto;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.envy-pinmap.style-1 .content-left .sub-menu::before,
.envy-pinmap.style-1 .content-left .sub-menu::after{
    position: absolute;
    content: '';
    left: calc(100% - 1px);
    top: 0;
    bottom: 0;
}
.envy-pinmap.style-1 .content-left .sub-menu::before{
    width: 16px;
}
.envy-pinmap.style-1 .content-left .sub-menu::after{
    height: 20px;
    width: 11px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 11px solid #000;
    margin: auto;
}
/* right */
.envy-pinmap.style-1 .content-right .sub-menu{
    top: 50%;
    bottom: auto;
    left: calc(100% + 15px);
    right: auto;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.envy-pinmap.style-1 .content-right .sub-menu::before,
.envy-pinmap.style-1 .content-right .sub-menu::after{
    position: absolute;
    content: '';
    right: calc(100% - 1px);
    top: 0;
    bottom: 0;
}
.envy-pinmap.style-1 .content-right .sub-menu::before{
    width: 16px;
}
.envy-pinmap.style-1 .content-right .sub-menu::after{
    height: 20px;
    width: 11px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 11px solid #000;
    margin: auto;
}
/* up */
.envy-pinmap.style-1 .content-up .sub-menu{
    top: auto;
    bottom: calc(100% + 15px);
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.envy-pinmap.style-1 .content-up .sub-menu::before,
.envy-pinmap.style-1 .content-up .sub-menu::after{
    position: absolute;
    content: '';
    top: calc(100% - 1px);
    left: 0;
    right: 0;
}
.envy-pinmap.style-1 .content-up .sub-menu::before{
    height: 16px;
}
.envy-pinmap.style-1 .content-up .sub-menu::after{
    width: 20px;
    height: 11px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 11px solid #000;
    margin: auto;
}
/* down */
.envy-pinmap.style-1 .content-down .sub-menu{
    top: calc(100% + 15px);
    bottom: auto;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.envy-pinmap.style-1 .content-down .sub-menu::before,
.envy-pinmap.style-1 .content-down .sub-menu::after{
    position: absolute;
    content: '';
    bottom: calc(100% - 1px);
    left: 0;
    right: 0;
}
.envy-pinmap.style-1 .content-down .sub-menu::before{
    height: 16px;
}
.envy-pinmap.style-1 .content-down .sub-menu::after{
    width: 20px;
    height: 11px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 11px solid #000;
    margin: auto;
}
.envy-pinmap.style-1 > .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.envy-pinmap.style-1 > .content .title-1{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: -3px;
}
.envy-pinmap.style-1 > .content .title-2{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 40px;
    font-weight: 400;
    color: #000;
    font-style: italic;
    margin-bottom: 2px;
}
.envy-pinmap.style-1 > .content .title-3{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}
.envy-pinmap.style-1 > .content .subtitle{
    font-size: 18px;
    line-height: 20px;
    color: #333;
    margin-bottom: 34px;
}
.envy-pinmap.style-1 > .content .button{
    padding-left: 40px;
    padding-right: 40px;
}
@media (min-width: 1200px){
    .envy-pinmap.style-1 .pinmap:hover > a{
        background-color: #d70f26;
        color: #fff;
    }
}
@media (max-width: 1199px){
    .envy-pinmap.style-1 .pinmap.open > a{
        background-color: #d70f26;
        color: #fff;
    }
}
/*-------------------- INSTAGRAM --------------------*/
.envy-instagram.style-1{
    position: relative;
}
.envy-instagram.style-1:hover .instagram-head{
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.envy-instagram.style-1 .instagram-head{
    position: absolute;
    top: 10px;
    bottom: 25px;
    left: 15px;
    right: 15px;
    margin: auto;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    width: calc(100% - 30px);
    height: calc(100% - 35px);
    max-width: 410px;
    max-height: 200px;
    z-index: 1;
    padding: 15px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.envy-instagram.style-1 .instagram-head .title{
    font-size: 23px;
    line-height: 30px;
    padding: 3px 0;
    margin-bottom: 5px;
}
.envy-instagram.style-1 .instagram-head .title > span{
    display: inline-block;
    vertical-align: top;
    border-top: 4px solid transparent;
    border-bottom: 4px solid;
}
.envy-instagram.style-1 .instagram-head .title > span span{
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.envy-instagram.style-1 .instagram-head .subtitle{
    font-family: HKV, sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: #333;
    font-style: italic;
}
.envy-instagram.style-1 .instagram-head .subtitle span{
    display: inline-block;
    vertical-align: top;
    color: #000;
    position: relative;
}
.envy-instagram.style-1 .instagram-head .subtitle span::before{
    position: absolute;
    content: '';
    bottom: 3px;
    left: 0;
    right: 0;
    border-top: 1px solid;
}
.envy-instagram.style-1 .instagram-item{
    position: relative;
    text-align: center;
}
.envy-instagram.style-1 .instagram-item:hover .thumb::before{
    background-color: rgba(0,0,0,0.5);
}
.envy-instagram.style-1 .instagram-item .thumb::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.envy-instagram.style-1 .instagram-item img{
    width: 100%;
}
.envy-instagram.style-1 .instagram-info{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}
.envy-instagram.style-1 .instagram-info > *{
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
    padding: 3px 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.envy-instagram.style-1 .instagram-info > * > span{
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.envy-instagram.style-1 .instagram-item:not(:hover) .instagram-info > *{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
@media (max-width: 1199px){
    .envy-instagram.style-1 .instagram-head{
        max-width: 370px;
        max-height: 180px;
    }
    .envy-instagram.style-1 .instagram-head .subtitle{
        margin-bottom: 10px;
    }
}
@media (max-width: 991px){
    .envy-instagram.style-1 .instagram-head{
        max-height: 170px;
    }
}
@media (max-width: 767px){
    .envy-instagram.style-1 .instagram-head{
        height: auto;
        width: 100%;
        display: block;
        position: static;
        padding: 0;
        margin-bottom: 50px;
    }
    .envy-instagram.style-1 .instagram-head .title{
        font-size: 20px;
        padding: 0;
        margin-bottom: 20px;
    }
    .envy-instagram.style-1 .instagram-head .subtitle{
        font-size: 19px;
        line-height: 24px;
        margin: 0;
    }
    .envy-instagram.style-1:hover .instagram-head{
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }
}
/*-------------------- BANNER --------------------*/
.envy-banner.bg-7{
    background-image: url(../images/banner-07.jpg);
}
/* style-1 */
.envy-banner.style-1{
    text-align: center;
}
.envy-banner.style-1 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-1.effect.plus-zoom > *{
    position: relative;
    z-index: 3;
}
.envy-banner.style-1 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-1 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 23px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 3px;
}
.envy-banner.style-1 .title{
    font-family: HKV, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 28px;
}
.envy-banner.style-1 .button{
    font-size: 14px;
    line-height: 16px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    background-color: transparent;
    color: #333;
    padding: 0;
}
@media (max-width: 1199px){
    .envy-banner.style-1 .content{
        max-width: 270px;
        padding: 30px 15px;
    }
}
@media (max-width: 991px){
    .envy-banner.style-1 .thumb img{
        width: auto;
        max-height: 300px;
        max-width: inherit;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
/* style-2 */
.envy-banner.style-2{
    background-color: #000;
    padding: 18px 20px;
}
.envy-banner.style-2 > *{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0;
}
.envy-banner.style-2 > span,
.envy-banner.style-2 > a{
    line-height: 18px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    margin: 1px 0;
}
.envy-banner.style-2 > a:hover{
    opacity: 0.7;
}
.envy-banner.style-2 > a span{
    display: inline-block;
    vertical-align: top;
}
/* style-3 */
.envy-banner.style-3{
    text-align: center;
}
.envy-banner.style-3 .banner-inner{
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    text-align: left;
}
.envy-banner.style-3.effect.plus-zoom > *{
    position: relative;
    z-index: 3;
}
.envy-banner.style-3 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 280px;
    padding: 30px;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-3.text-left .content{
    margin-left: 0;
}
.envy-banner.style-3.text-right .content{
    margin-right: 0;
}
.envy-banner.style-3 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 30px;
    line-height: 30px;
    color: #000;
    font-style: italic;
    margin-bottom: -2px;
    padding-right: 40px;
}
.envy-banner.style-3 .title{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 21px;
}
.envy-banner.style-3 .button{
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    color: #000;
    background-color: transparent;
}
.envy-banner.style-3 .button:hover{
    opacity: 0.7;
}
@media (max-width: 1199px){
    .envy-banner.style-3 .content{
        max-width: 250px;
        padding: 30px 15px;
    }
}
@media (max-width: 991px){
    .envy-banner.style-3 .thumb img{
        width: auto;
        max-height: 330px;
        max-width: inherit;
        position: relative;
    }
    .envy-banner.style-3.text-center .thumb img{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .envy-banner.style-3.text-left .thumb{
        direction: ltr;
    }
    .envy-banner.style-3.text-right .thumb{
        direction: rtl;
    }
}
/* style-4 */
.envy-banner.style-4{
    position: relative;
}
.envy-banner.style-4 .banner-thumb img{
    width: 100%;
}
.envy-banner.style-4 .banner-inner{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 20px;
    background-color: #fff;
    text-align: center;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-4 .title{
    font-family: HKV, sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 4px;
}
.envy-banner.style-4 .subtitle{
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 141px;
}
.envy-banner.style-4 .button{
    font-size: 18px;
    line-height: 20px;
    color: #000;
    background-color: transparent;
    padding: 0;
    border-bottom: 2px solid;
}
@media (max-width: 1199px){
    .envy-banner.style-4 .banner-inner{
        padding-left: 35px;
        padding-right: 35px;
    }
    .envy-banner.style-4 .title{
        font-size: 45px;
        line-height: 55px;
    }
    .envy-banner.style-4 .subtitle{
        font-size: 17px;
        margin-bottom: 80px;
    }
}
@media (max-width: 991px){
    .envy-banner.style-4 .banner-inner{
        padding-left: 20px;
        padding-right: 20px;
        margin: 15px;
    }
    .envy-banner.style-4 .title{
        font-size: 35px;
        line-height: 45px;
    }
    .envy-banner.style-4 .subtitle{
        font-size: 16px;
        margin-bottom: 60px;
    }
}
@media (max-width: 767px){
    .envy-banner.style-4{
        margin-left: auto;
        margin-right: auto;
        padding: 15px;
    }
    .envy-banner.style-4 .banner-image img{
        width: 100%;
    }
    .envy-banner.style-4 .banner-image{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        overflow: hidden;
    }
    .envy-banner.style-4 .banner-inner{
        position: static;
        margin: 0;
    }
    .envy-banner.style-4 .subtitle{
        margin-bottom: 25px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-4 .title{
        font-size: 30px;
        line-height: 40px;
    }
    .envy-banner.style-4 .subtitle{
        font-size: 15px;
        margin-bottom: 25px;
        margin-top: 15px;
    }
}
/* style-5 */
.envy-banner.style-5{
    background-size: cover;
    background-position: center center;
}
.envy-banner.style-5.effect.plus-zoom > *{
    position: relative;
    z-index: 3;
}
.envy-banner.style-5 .banner-inner{
    text-align: center;
    max-width: 630px;
    margin: 0 auto;
    padding: 130px 0 120px;
}
.envy-banner.style-5 .banner-inner::before,
.envy-banner.style-5 .banner-inner::after{
    display: table;
    content: '';
    clear: both;
}
.envy-banner.style-5 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-style: italic;
    color: #fff;
    margin-bottom: -4px;
    padding-right: 115px;
}
.envy-banner.style-5 .title{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 60px;
    font-style: italic;
    color: #fff;
    font-weight: 400;
    margin-bottom: 36px;
}
.envy-banner.style-5 .button{
    float: right;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    background-color: transparent;
    padding: 0;
    border-bottom: 2px solid;
    margin-right: 100px;
}
@media (max-width: 991px){
    .envy-banner.style-5 .banner-inner{
        padding: 105px 0 95px;
    }
}
@media (max-width: 767px){
    .envy-banner.style-5 .banner-inner{
        max-width: 450px;
        padding: 70px 0;
    }
    .envy-banner.style-5 .subtitle{
        padding-right: 50px;
    }
    .envy-banner.style-5 .button{
        margin-right: 80px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-5 .banner-inner{
        max-width: 450px;
        padding: 70px 0;
    }
    .envy-banner.style-5 .subtitle{
        font-size: 28px;
        line-height: 30px;
        padding-right: 20px;
        margin-bottom: 0;
    }
    .envy-banner.style-5 .title{
        font-size: 58px;
        line-height: 50px;
    }
    .envy-banner.style-5 .button{
        font-size: 16px;
        margin-right: 30px;
    }
}
/* style-6 */
.envy-banner.style-6{
    text-align: center;
}
.envy-banner.style-6 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-6 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 230px;
    padding: 30px 15px 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-6.text-left .content{
    margin-left: 0;
}
.envy-banner.style-6.text-right .content{
    margin-right: 0;
}
.envy-banner.style-6 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-style: italic;
    color: #000;
    margin-bottom: 5px;
}
.envy-banner.style-6 .title{
    font-family: HKV, sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 23px;
}
.envy-banner.style-6 .button{
    padding: 0;
    color: #000;
    background-color: transparent;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 2px solid;
    letter-spacing: 0;
}
@media (max-width: 767px){
    .envy-banner.style-6 .thumb img{
        width: auto;
        max-height: 250px;
        max-width: inherit;
        position: relative;
    }
    .envy-banner.style-6.text-center .thumb img{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .envy-banner.style-6.text-left .thumb{
        direction: ltr;
    }
    .envy-banner.style-6.text-right .thumb{
        direction: rtl;
    }
}
/* style-7 */
.envy-banner.style-7{
    text-align: center;
}
.envy-banner.style-7 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-7 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 290px;
    text-align: center;
    z-index: 3;
    padding: 30px 20px 180px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-7 .title{
    font-family: HKV, sans-serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
}
.envy-banner.style-7 .subtitle{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 11px;
}
.envy-banner.style-7 .description{
    font-family: HKV, sans-serif;
    font-size: 36px;
    line-height: 1;
    color: #000;
    margin-bottom: 25px;
}
.envy-banner.style-7 .button{
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    background-color: transparent;
    border-bottom: 2px solid;
    letter-spacing: 0.1em;
}
@media (max-width: 1199px){
    .envy-banner.style-7 .content{
        max-width: 280px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-7 .thumb{
        direction: rtl;
    }
    .envy-banner.style-7 .thumb img{
        width: auto;
        max-height: 430px;
        max-width: inherit;
        position: relative;
    }
}
/* style-8 */
.envy-banner.style-8{
    text-align: center;
}
.envy-banner.style-8 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-8 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    z-index: 3;
    padding: 30px 20px 20px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-8 .title{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 13px;
}
.envy-banner.style-8 .subtitle{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 25px;
}
.envy-banner.style-8 .button{
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    background-color: transparent;
    border-bottom: 2px solid;
    letter-spacing: 0.1em;
    margin: 15px 13px 0;
}
@media (max-width: 1199px){
    .envy-banner.style-8 .content{
        max-width: 285px;
        padding: 30px 15px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-8 .thumb{
        direction: ltr;
    }
    .envy-banner.style-8 .thumb img{
        width: auto;
        max-height: 430px;
        max-width: inherit;
        position: relative;
    }
}
/* style-9 */
.envy-banner.style-9{
    text-align: center;
}
.envy-banner.style-9 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-9 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-9 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    font-style: italic;
    padding-right: 53px;
    margin-bottom: -5px;
}
.envy-banner.style-9 .title{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.05em;
    margin-bottom: 15px;
}
.envy-banner.style-9 .description{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 0;
}
.envy-banner.style-9 .description span{
    text-decoration: underline;
}
@media (max-width: 1199px){
    .envy-banner.style-9 .content{
        max-width: 330px;
        padding: 30px 15px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-9 .thumb img{
        width: auto;
        max-height: 330px;
        max-width: inherit;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .envy-banner.style-9 .subtitle{
        font-size: 24px;
        line-height: 30px;
        padding-right: 45px;
        margin-bottom: -5px;
    }
    .envy-banner.style-9 .title{
        font-size: 70px;
        margin-bottom: 15px;
    }
}
/* style-10 */
.envy-banner.style-10{
    text-align: center;
}
.envy-banner.style-10 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-10 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 340px;
    text-align: center;
    z-index: 3;
    padding: 30px 20px 130px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-10 .title{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 3px;
}
.envy-banner.style-10 .subtitle{
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 40px;
    overflow: hidden;
}
.envy-banner.style-10 .subtitle span{
    float: right;
}
.envy-banner.style-10 .button{
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    color: #000;
    background-color: transparent;
    border-bottom: 2px solid;
    letter-spacing: 0.1em;
}
@media (max-width: 1199px){
    .envy-banner.style-10 .content{
        max-width: 290px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-10 .thumb{
        direction: ltr;
    }
    .envy-banner.style-10 .thumb img{
        width: auto;
        max-height: 330px;
        max-width: inherit;
        position: relative;
    }
}
/* style-11 */
.envy-banner.style-11 .banner-inner{
    text-align: center;
}
.envy-banner.style-11 .thumb{
    margin-bottom: 14px;
}
.envy-banner.style-11 .thumb img{
    display: inline-block;
    vertical-align: top;
}
.envy-banner.style-11 .content{
    font-size: 0;
    line-height: 0;
}
.envy-banner.style-11 .title{
    font-family: HKV, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 13px;
}
.envy-banner.style-11 .button{
    padding: 0;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 2px solid;
}
/* style-12 */
.envy-banner.style-12{
    text-align: center;
}
.envy-banner.style-12 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-12 .content{
    position: absolute;
    top: 74px;
    left: 38px;
    right: 38px;
    bottom: 52px;
    max-width: 300px;
    background-color: #fff;
    text-align: center;
    padding: 56px 30px 32px;
    z-index: 3;
}
.envy-banner.style-12 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 24px;
    font-style: italic;
    color: #000;
    padding-right: 10px;
    margin-bottom: 0;
}
.envy-banner.style-12 .title{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-style: italic;
    color: #000;
    font-weight: 400;
    margin-bottom: 50px;
}
.envy-banner.style-12 .button{
    padding: 0;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 2px solid;
}
@media (max-width: 1199px){
    .envy-banner.style-12 .thumb img{
        width: auto;
        max-height: 360px;
        max-width: inherit;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .envy-banner.style-12 .content{
        top: 65px;
        bottom: 43px;
        left: 30px;
        right: 30px;
        padding: 43px 30px 25px;
    }
    .envy-banner.style-12 .subtitle{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .envy-banner.style-12 .title{
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 40px;
    }
}
@media (max-width: 479px){
    .envy-banner.style-12 .thumb img{
        max-height: 330px;
    }
    .envy-banner.style-12 .content{
        top: 40px;
        bottom: 30px;
        left: 20px;
        right: 20px;
        padding: 43px 15px 25px;
    }
    .envy-banner.style-12 .subtitle{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .envy-banner.style-12 .title{
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 40px;
    }
}
/* style-13 */
.envy-banner.style-13{
    text-align: center;
}
.envy-banner.style-13 .banner-inner{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.envy-banner.style-13 .content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 70px 30px 30px;
    text-align: center;
    z-index: 3;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.envy-banner.style-13 .subtitle{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-style: italic;
    color: #fff;
    margin-bottom: -15px;
}
.envy-banner.style-13 .title{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 69px;
}
.envy-banner.style-13 .title span{
    font-style: italic;
}
.envy-banner.style-13 .button{
    padding: 0;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 2px solid;
}
@media (max-width: 1199px){
    .envy-banner.style-13 .thumb img{
        width: auto;
        max-height: 360px;
        max-width: inherit;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
@media (max-width: 479px){
    .envy-banner.style-13 .thumb img{
        max-height: 330px;
    }
    .envy-banner.style-13 .content{
        padding: 50px 15px 30px;
    }
    .envy-banner.style-13 .title{
        margin-bottom: 50px;
    }
}
/*-------------------- BUTTON --------------------*/
/* style-2 */
.envy-button.style-2 .button{
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: transparent;
    color: #000;
    border: 2px solid #333;
    text-transform: none;
}
.envy-button.style-2 .button:hover{
    background-color: #000;
    border-color: #000;
    color: #fff;
    opacity: 1;
}
.envy-button.style-2 .button span{
    display: inline-block;
    vertical-align: top;
    font-size: 23px;
    margin-right: 10px;
}
/* style-3 */
.envy-button.style-3 .button{
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    background-color: transparent;
    color: #000;
    border-bottom: 2px solid;
}
.envy-button.style-3 .button span{
    width: 10px;
    height: 16px;
}
/*-------------------- BLOG --------------------*/
.envy-blog.style-1 .slick-slider .slick-arrow.prev,
.envy-blog.style-1 .slick-slider .slick-arrow.next{
    top: 32%;
}
@media (min-width: 1230px){
    .envy-blog.style-1 .slick-slider .slick-arrow.prev{
        height: 40px;
        width: 40px;
        left: -40px;
    }
    .envy-blog.style-1 .slick-slider .slick-arrow.next{
        height: 40px;
        width: 40px;
        right: -40px;
    }
}
/*-------------------- PRODUCT --------------------*/
.envy-product.style-1 .slick-slider .slick-arrow.prev,
.envy-product.style-1 .slick-slider .slick-arrow.next{
    top: 32%;
}
@media (min-width: 1230px){
    .envy-product.style-1 .slick-slider .slick-arrow.prev{
        height: 40px;
        width: 40px;
        left: -40px;
    }
    .envy-product.style-1 .slick-slider .slick-arrow.next{
        height: 40px;
        width: 40px;
        right: -40px;
    }
}
/* style-1 */
.envy-product.style-1 > .title{
    font-size: 23px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
}
.envy-product.style-1 > .title span{
    display: inline-block;
    vertical-align: top;
    border-bottom: 4px solid;
}
.envy-product.style-1 .slick-slider{
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.envy-product.style-1 .slick-slider:hover{
    z-index: 1;
}
.envy-product.style-1 .slick-slider .slick-list{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@Media (max-width: 767px){
    .envy-product.style-1 > .title{
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 50px;
    }
    .envy-product.style-1 > .title span{
        border-bottom-width: 3px;
    }
}
.product-item.style-1 .product-inner{
    text-align: center;
}
.product-item.style-1 .product-thumb{
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 13px;
    position: relative;
}
.product-item.style-1 .thumb-link{
    display: inline-block;
    vertical-align: top;
}
.product-item.style-1 .onsale,
.product-item.style-1 .onnew{
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    font-size: 15px;
    line-height: 56px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #000;
}
.product-item.style-1 .onsale{
    background-color: #d70f26;
}
.product-item.style-1 .product-title{
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
}
.product-item.style-1 .product-price{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.product-item.style-1 .product-price > *{
    display: inline-block;
    vertical-align: bottom;
}
.product-item.style-1 .product-price ins{
    text-decoration: none;
}
.product-item.style-1 .product-price del{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #888;
}
.product-item.style-1 .product-button{
    font-size: 0;
    line-height: 0;
}
.product-item.style-1 .product-button .button{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 16px;
    color: #333;
    letter-spacing: 0;
    background-color: transparent;
    padding: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
}
.product-item.style-1 .product-button .button:hover{
    opacity: 0.7;
}
.product-item.style-1 .product-button .button::after{
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    margin-left: 5px;
}
.product-item.style-1 .star-rating{
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}
.product-item.style-1 .star-rating > span{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    line-height: 0;
    background-color: #fff;
}
.product-item.style-1 .star-rating::before,
.product-item.style-1 .star-rating > span::before{
    display: inline-block;
    float: left;
    font-family: FontAwesome, sans-serif;
    content: "\f005\f005\f005\f005\f005";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.2em;
    color: #ccc;
    margin-right: -0.11em;
}
.product-item.style-1 .star-rating > span::before{
    color: #f1c30a;
}
.product-item.style-1 .product-variation{
    margin-bottom: 15px;
}
.product-item.style-1 .product-variation > *{
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
}
.product-item.style-1 .product-variation .variation-label{
    display: none;
}
.product-item.style-1 .product-variation .variation-value{
    font-size: 0;
    line-height: 0;
    margin: 0 -5px -10px;
}
.product-item.style-1 .product-variation .value{
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 10px;
    padding: 0;
    border-radius: 0;
}
.product-item.style-1 .product-variation .value.color{
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.product-item.style-1 .product-variation .value.color::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: FontAwesome, sans-serif;
    content: "\f00c";
    font-size: 8px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.product-item.style-1 .product-variation .value.color:not(.active):not(:hover)::after{
    opacity: 0;
}
.product-item.style-1 .product-variation .value.label{
    font-size: 14px;
    line-height: 16px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    padding: 0 2px;
}
.product-item.style-1 .product-variation .value.label:hover,
.product-item.style-1 .product-variation .value.label.active{
    color: #111;
    border-bottom-color: #111;
}
.product-item.style-1 .product-add-to-cart > .button{
    font-size: 14px;
    line-height: 16px;
    color: #111;
    letter-spacing: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid #333;
    padding: 0;
    background-color: transparent;
}
.product-item.style-1 .product-add-to-cart > .button .icon{
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 16px;
    margin-right: 3px;
    position: relative;
}
.product-item.style-1 .product-add-to-cart > .button .icon::before,
.product-item.style-1 .product-add-to-cart > .button .icon::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 2px;
    background-color: #333;
}
.product-item.style-1 .product-add-to-cart > .button .icon::after{
    width: 2px;
    height: 10px;
}
.product-item.style-1 .product-quickview{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 7px 30px;
    letter-spacing: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.5s ease;
    z-index: 1;
}
.product-item.style-1 .product-inner:not(:hover) .product-quickview{
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.product-item.style-1 .product-hover{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 13px 18px 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    z-index: 1;
}
.product-item.style-1 .product-inner:not(:hover) .product-hover{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-40px);
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
@media (min-width: 1200px) {
    .product-item.style-1 .product-thumb{
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .product-item.style-1 .product-inner:hover .product-thumb{
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }
    .product-item.style-1 .product-inner > .product-title,
    .product-item.style-1 .product-inner > .product-price,
    .product-item.style-1 .product-inner > .product-button{
        padding: 0 18px;
    }
}
@media ( min-width: 1200px ) {
    .slick-slider.including-products:hover .slick-list{
        padding: 15px 15px 300px;
        margin: -15px -15px -300px;
    }
}
@media (max-width: 1199px) {
    .product-item.style-1 .product-quickview,
    .product-item.style-1 .product-hover{
        display: none;
    }
}
@media (max-width: 991px) {
    .product-item.style-1 .product-title a{
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 479px) {
    .product-item.style-1 .product-price{
        font-size: 18px;
    }
    .product-item.style-1 .product-price del{
        font-size: 14px;
    }
}
/* style-2 */
.envy-product.style-2{
    position: relative;
}
.envy-product.style-2 .slick-slider{
    position: static;
}
.envy-product.style-2 .slick-slider .slick-arrow{
    font-size: 18px;
    width: 16px;
    top: 0;
    bottom: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.envy-product.style-2 .slick-slider .slick-arrow.prev{
    left: auto;
    right: 15px;
    text-align: left;
    padding-right: 3px;
}
.envy-product.style-2 .slick-slider .slick-arrow.next{
    right: 0;
    text-align: right;
    padding-left: 3px;
}
.envy-product.style-2 > .title{
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 30px;
    padding-right: 50px;
}
.envy-product.style-2 > .title span{
    display: inline-block;
    vertical-align: top;
    border-bottom: 3px solid;
}
.product-item.style-2 .product-inner{
    text-align: center;
}
.product-item.style-2 .product-thumb{
    display: inline-block;
    vertical-align: top;
    margin-bottom: 6px;
}
.product-item.style-2 .product-thumb .thumb-link{
    display: block;
    overflow: hidden;
}
.product-item.style-2 .product-thumb .thumb-link img{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item.style-2 .product-thumb .thumb-link:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.product-item.style-2 .product-title{
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-bottom: 2px;
}
.product-item.style-2 .product-title a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-item.style-2 .product-price{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}
.product-item.style-2 .product-price > *{
    display: inline-block;
    vertical-align: bottom;
}
.product-item.style-2 .product-price ins{
    text-decoration: none;
}
.product-item.style-2 .product-price del{
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #888;
}
/*-------------------- POPUP --------------------*/
body:not(.popup-open) .envy-popup{
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.envy-popup{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 40px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100000;
}
.envy-popup .popup-inner{
    position: relative;
}
.envy-popup .popup-title{
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.05em;
    padding: 8px 0;
    margin: 0;
    color: #fff;
}
.envy-popup .envy-newsletter.style-3{
    display: inline-block;
    vertical-align: middle;
    float: right;
}
.envy-popup .envy-newsletter.style-3 .input{
    color: #aaa;
    border-bottom-color: #fff;
}
.envy-popup .envy-newsletter.style-3 .button{
    box-shadow: 0 0 0 2px #fff inset;
    color: #fff;
}
.envy-popup .envy-newsletter.style-3 .button:hover{
    background-color: #fff;
    color: #000;
}
.envy-popup .popup-close{
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 45px);
    width: 25px;
    height: 30px;
    margin: auto;
}
.envy-popup .popup-close::before,
.envy-popup .popup-close::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: #fff;
    border-radius: 90px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: auto;
}
.envy-popup .popup-close:not(:hover)::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.envy-popup .popup-close:not(:hover)::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media (max-width: 1499px){
    .envy-popup .popup-close{
        left: calc(100% + 20px);
    }
}
@media (max-width: 1299px){
    .envy-popup .popup-close{
        left: calc(100% + 10px);
    }
}
@media (max-width: 1199px){
    .envy-popup{
        text-align: center;
        padding: 25px 0;
    }
    .envy-popup .popup-inner{
        padding-bottom: 10px;
    }
    .envy-popup .popup-close{
        left: auto;
        right: 0;
        top: -20px;
        bottom: auto;
    }
    .envy-popup .envy-newsletter.style-3{
        float: none;
    }
}
@media (max-width: 767px){
    .envy-popup .popup-title{
        font-size: 17px;
        margin: 0;
    }
    .envy-popup .envy-newsletter.style-3{
        padding: 0;
    }
    .envy-popup .envy-newsletter.style-3 .newsletter-form-wrap{
        max-width: 400px;
    }
    .envy-popup .envy-newsletter.style-3 .button span{
        margin-left: 15px;
    }
}
@media (max-width: 479px){
    .envy-popup{
        padding-bottom: 15px;
    }
    .envy-popup .envy-newsletter.style-3 .button span{
        margin-left: 10px;
    }
}
/*==========================================================================
INNER PAGE
===========================================================================*/
/*-------------------- 404 --------------------*/
.inner-page-404{
    background-image: url(../images/404.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0 344px;
}
.inner-page-404 .content-404{
    max-width: 400px;
    text-align: center;
}
.inner-page-404 .title{
    font-size: 200px;
    line-height: 1;
    margin-bottom: -10px;
}
.inner-page-404 .subtitle{
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
@media (max-width: 1499px){
    .inner-page-404{
        padding: 200px 0 250px;
    }
}
@media (max-width: 1199px){
    .inner-page-404{
        padding: 200px 0 180px;
    }
}
@media (max-width: 991px){
    .inner-page-404{
        padding: 150px 0;
    }
    .inner-page-404 .content-404{
        max-width: 330px;
    }
    .inner-page-404 .title{
        font-size: 150px;
    }
    .inner-page-404 .subtitle{
        font-size: 50px;
    }
}
@media (max-width: 767px){

    .inner-page-404{
        background-image: none;
        padding: 80px 0;
    }
    .inner-page-404 .title{
        font-size: 70px;
    }
    .inner-page-404 .subtitle{
        font-size: 31px;
        margin-top: 20px;
    }
    .inner-page-404 .content-404{
        max-width: inherit;
    }
}
/*-------------------- POST SINGLE --------------------*/
.inner-page-post{
    margin-bottom: 80px;
}
.inner-page-post .breadcrumb{
    border-bottom: 2px solid #000;
    margin-bottom: 40px;
}
/* post item */
.post-single .post-title{
    font-family: "HKV", sans-serif;
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: 18px;
}
.post-single .post-meta{
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin-bottom: 18px;
}
.post-single .post-meta > *:not(:last-child)::after{
    content: '-';
    margin-left: 5px;
}
.post-single .post-meta .meta-author a:not(:hover){
    color: #888;
}
.post-single .post-share{
    margin-bottom: 35px;
}
.post-single .post-content{
    margin-bottom: 25px;
}
.post-single .post-content p:last-child{
    margin-bottom: 0;
}
/* post comments */
.post-comments{
    margin-top: 60px;
    border-top: 2px solid #e5e5e5;
    padding-top: 38px;
}
.post-comments .comments-title{
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.post-comments .comments-title span{
    color: #888;
}
.post-comments .comments-list{
    list-style: none;
    margin-bottom: 0;
}
.post-comments .comment .comment-body{
    overflow: hidden;
    margin-bottom: 30px;
}
.post-comments .comment .comment-avatar{
    display: inline-block;
    float: left;
    width: 94px;
    margin-right: 20px;
}
.post-comments .comment .comment-info{
    overflow: hidden;
}
.post-comments .comment .comment-meta{
    color: #888;
    margin-bottom: 2px;
}
.post-comments .comment .comment-meta > *{
    display: inline-block;
    vertical-align: top;
}
.post-comments .comment .comment-author{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.post-comments .comment .children{
    list-style: none;
    padding-left: 30px;
}
/* comment respond*/
.comment-respond{
    margin-top: 40px;
    border-top: 2px solid #e5e5e5;
    padding-top: 38px;
}
.comment-respond .comment-respond-title{
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.comment-respond .comment-form p{
    margin-bottom: 10px;
}
.comment-respond .comment-form p label{
    display: block;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 0;
}
.comment-respond .comment-form p input[type="text"],
.comment-respond .comment-form p input[type="email"],
.comment-respond .comment-form p textarea{
    width: 100%;
    color: #888;
}
.comment-respond .comment-form .respond-first-name,
.comment-respond .comment-form .respond-last-name{
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 280px;
    max-width: calc(50% - 5px);
}
.comment-respond .comment-form .respond-first-name{
    margin-right: 10px;
}
.comment-respond .comment-form .respond-comment{
    clear: both;
}
.comment-respond .comment-form .respond-submit{
    margin-top: 30px;
    margin-bottom: 0;
}
.comment-respond .comment-form .respond-submit input[type="submit"]{
    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 767px){
    .post-single .post-title{
        font-size: 36px;
        line-height: 40px;
    }
    .post-single .post-share{
        margin-bottom: 20px;
    }
    .comment-respond .comment-form .respond-first-name,
    .comment-respond .comment-form .respond-last-name{
        margin-bottom: 30px;
    }
}
/*-------------------- BLOG PAGE --------------------*/
.inner-page-blog{
    margin-bottom: 80px;
}
.inner-page-blog .page-banner{
    padding-bottom: 40px;
    border-bottom: 2px solid #000;
    margin-bottom: 60px;
}
.inner-page-blog .blog-item{
    margin-bottom: 40px;
}
.inner-page-blog .breadcrumb{
    margin-bottom: 20px;
}
@media ( max-width: 767px){
    .inner-page-blog .blog-item{
        margin-bottom: 80px;
    }
    .inner-page-blog .blog-item .blog-title{
        font-size: 25px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    .inner-page-blog .blog-item .blog-thumb{
        margin-bottom: 20px;
    }
    .inner-page-blog .blog-item .blog-meta{
        margin-bottom: 10px;
    }
}
/* blog item */
.blog-item .blog-thumb{
    margin-bottom: 10px;
}
.blog-item .blog-thumb .thumb-link{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
}
.blog-item .blog-thumb .thumb-link img{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.blog-item .blog-inner:hover .blog-thumb .thumb-link img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.blog-item .blog-meta{
    font-size: 14px;
    line-height: 20px;
    color: #aaa;
    text-transform: uppercase;
}
.blog-item .blog-meta > *{
    display: inline-block;
    vertical-align: top;
}
.blog-item .blog-meta > *:not(:last-child)::after{
    content: '-';
    margin-left: 5px;
}
.blog-item .blog-meta .blog-category{
    color: #666;
    font-weight: 400;
}
.blog-item .blog-meta .blog-category > *{
    display: inline-block;
    vertical-align: top;
}
.blog-item .blog-meta .blog-category > *:not(:last-child)::after{
    content: ',';
    color: #666;
}
.blog-item .blog-meta .blog-category a:hover{
    opacity: 0.7;
}
.blog-item .blog-title{
    font-family: "HKV", sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}
.blog-item .blog-title a:hover{
    opacity: 0.7;
}
.blog-item .blog-content{
    margin-bottom: 25px;
}
.blog-item .blog-content p:last-child{
    margin-bottom: 0;
}
.blog-item .blog-readmore{
    font-size: 0;
    line-height: 0;
}
.blog-item .blog-readmore a{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    border-bottom: 1px solid;
    color: #666;
    text-transform: uppercase;
}
.blog-item .blog-readmore a:hover{
    opacity: 0.7;
}
.blog-item .blog-readmore a::after{
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    margin-left: 5px;
    font-weight: 400;
}
/* blog list */
@media (min-width: 768px){
    .blog-list .blog-item .blog-inner{
        font-size: 0;
        line-height: 0;
    }
    .blog-list .blog-item .blog-inner > *{
        display: inline-block;
        vertical-align: top;
        width: 50%;
        font-size: 15px;
        line-height: 24px;
    }
    .blog-list .blog-item .blog-thumb{
        padding-right: 15px;
    }
    .blog-list .blog-item .blog-info{
        padding-left: 15px;
    }
}
/* style-2 */
.blog-item.style-2 .blog-inner{
    text-align: center;
}
.blog-item.style-2 .blog-thumb{
    margin-bottom: 12px;
}
.blog-item.style-2 .blog-title{
    font-size: 23px;
    line-height: 28px;
}
@media (min-width: 1200px){
    .blog-item.style-2 .blog-info{
        padding-left: 25px;
        padding-right: 25px;
    }
}
/*-------------------- PRODUCT SINGLE --------------------*/
.inner-page-product{
    margin-bottom: 20px;
}
.inner-page-product .breadcrumb{
    margin-bottom: 20px;
}
.inner-page-product .main-content .envy-product.style-1{
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
}
.inner-page-product .main-content .envy-product.style-1:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.inner-page-product .main-content .envy-product.style-2{
    margin-bottom: 60px;
    margin-right: 20px;
}
.inner-page-product .sidebar .widget:not(:last-child){
    margin-bottom: 30px;
}
.inner-page-product .sidebar .widgettitle{
    display: block;
    font-size: 23px;
    line-height: 30px;
    border: none;
    margin-bottom: 15px;
}
@media (min-width: 992px){
    .inner-page-product .breadcrumb{
        margin-bottom: 40px;
    }
}
@media (max-width: 1199px){
    .inner-page-product .main-content .envy-product.style-2{
        margin-right: 0;
        margin-bottom: 80px;
    }
}
/* product gallery */
.product-single::before,
.product-single::after{
    display: table;
    content: '';
    clear: both;
}
.product-gallery{
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.product-gallery .gallery-viewport{
    position: relative;
}
.product-gallery .gallery-viewport .slick-slider .slick-arrow{
    font-size: 50px;
    width: 20px;
}
.product-gallery .gallery-viewport .slick-slider .slick-arrow.prev{
    left: 0;
}
.product-gallery .gallery-viewport .slick-slider .slick-arrow.next{
    right: 0;
}
.product-gallery .gallery-viewport .slick-slider .slick-dots{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}
.product-gallery .gallery-trigger{
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.product-gallery .gallery-trigger:hover{
    opacity: 0.7;
}
.product-gallery .gallery-dots{
    max-width: 430px;
    margin: 10px 0 0;
}
.product-gallery .gallery-dots .slick-slider .slick-slide figure{
    display: block;
    position: relative;
    cursor: pointer;
}
.product-gallery .gallery-dots .slick-slider .slick-slide figure::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.product-gallery .gallery-dots .slick-slider .slick-slide.slick-current figure::after,
.product-gallery .gallery-dots .slick-slider .slick-slide figure:hover::after{
    border-color: #000;
}
.product-gallery .gallery-dots .slick-slider .slick-arrow{
    font-size: 16px;
    line-height: 30px;
    background-color: #000;
    color: #fff;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.product-gallery .gallery-dots .slick-slider:not(:hover) .slick-arrow{
    opacity: 0;
}
.product-gallery .gallery-dots .slick-slider .slick-arrow::before{
    font-family: FontAwesome, sans-serif;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.product-gallery .gallery-dots .slick-slider .slick-arrow::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.product-gallery .gallery-dots .slick-slider .slick-arrow:hover::after{
    background-color: rgba(255,255,255,0.3);
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.prev,
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.next{
    top: 0;
    bottom: 0;
    width: 30px;
    height: auto;
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.prev{
    left: 0;
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.next{
    right: 0;
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.prev::before,
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.next::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    margin: auto;
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.prev::before{
    content: "\f0d9";
}
.product-gallery .gallery-dots .slick-slider:not(.slick-vertical) .slick-arrow.next::before{
    content: "\f0da";
}
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.prev,
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.next{
    left: 0;
    right: 0;
    height: 30px;
    width: auto;
    text-align: center;
}
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.prev{
    top: 0;
}
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.next{
    bottom: 0;
}
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.prev::before{
    content: "\f0d8";
}
.product-gallery .gallery-dots .slick-slider.slick-vertical .slick-arrow.next::before{
    content: "\f0d7";
}
/* product summary */
.product-summary{
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
    max-width: 100%;
}
.product-summary .product-category{
    margin-bottom: 5px;
}
.product-summary .product-category ul{
    list-style: none;
    margin-bottom: 0;
    color: #888;
    font-size: 0;
    line-height: 0;
}
.product-summary .product-category ul li{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 20px;
}
.product-summary .product-category ul li:not(:last-child)::after{
    content: '/';
}
.product-summary .product-title{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 2px;
}
.product-summary .product-price{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.product-summary .product-price > *{
    display: inline-block;
    vertical-align: bottom;
}
.product-summary .product-price ins{
    text-decoration: none;
}
.product-summary .product-price del{
    font-size: 16px;
    color: #888;
    font-weight: 400;
    line-height: 26px;
}
.product-summary .product-variation{
    margin-bottom: 28px;
}
.product-summary .product-variation > *{
    margin-bottom: 15px;
}
.product-summary .product-variation .variation-label{
    font-size: 15px;
    line-height: 20px;
    color: #555;
    margin-bottom: 2px;
}
.product-summary .product-variation .variation-label .title{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.product-summary .product-variation .variation-value{
    font-size: 0;
    line-height: 0;
    margin: 0 -5px -10px;
}
.product-summary .product-variation .value{
    display: inline-block;
    vertical-align: top;
    min-width: 32px;
    height: 32px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: 0 5px 10px;
    border: 2px solid;
    border-radius: 0;
}
.product-summary .product-variation .value:not(.active):not(:hover){
    border-color: #ddd;
}
.product-summary .product-guide{
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}
.product-summary .product-guide a{
    display: inline-block;
    vertical-align: top;
    border-bottom: 2px solid;
}
.product-summary .product-guide a:hover{
    opacity: 0.7;
}
.product-summary .cart{
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
    margin-bottom: 5px;
}
.product-summary .single_add_to_cart_button{
    display: inline-block;
    vertical-align: top;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 10px;
}
.product-summary .quantity{
    margin-right: 3px;
    margin-bottom: 10px;
}
.quantity{
    display: inline-block;
    vertical-align: top;
}
.quantity .control{
    display: inline-block;
    position: relative;
}
.quantity .input-qty{
    font-size: 14px;
    color: #000;
    font-weight: 600;
    text-align: center;
    width: 68px;
    border-color: #e2e2e2;
}
.quantity .btn-number:not(:hover){
    color: #aaa;
}
.quantity .btn-number{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    z-index: 1;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.quantity:not(:hover) .btn-number{
    opacity: 0;
}
.quantity .quantity-plus::after,
.quantity .btn-number::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 2px;
    border: 1px solid;
}
.quantity .quantity-minus{
    left: 3px;
}
.quantity .quantity-plus{
    right: 3px;
}
.quantity .quantity-plus::after{
    width: 2px;
    height: 8px;
}
.product-summary .product-add-to-wishlist{
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.product-summary .product-add-to-wishlist a{
    display: inline-block;
    vertical-align: top;
    border-bottom: 2px solid;
}
.product-summary .product-add-to-wishlist a:hover{
    opacity: 0.7;
}
.product-summary .product-description{
    margin-top: 10px;
    margin-bottom: -5px;
}
.product-summary .product-description .title{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
.product-summary .product-description .title a:hover{
    opacity: 0.7;
}
.product-summary .product-description .title a::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: '\f107';
    color: #666;
    margin-left: 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-summary .product-description .title a.active::after{
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.product-summary .product-description .content{
    font-size: 15px;
    line-height: 24px;
    color: #333;
    padding-top: 6px;
}
.product-summary .product-description .content p{
    margin-bottom: 0;
}
.product-summary .product-description .subtitle{
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
/* product tabs */
.product-tabs{
    clear: both;
    padding-top: 30px;
    margin-bottom: 60px;
}
.product-tabs .tabs-container:nth-child(2) .tabs-content,
.product-tabs .tabs-container:nth-child(3) .tabs-content{
    display: none;
}
.product-tabs .tabs-container{
    border-bottom: 2px solid #e5e5e5;
}
.product-tabs .tabs-container:first-child{
    border-top: 2px solid #e5e5e5;
}
.product-tabs .tabs-toggle{
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    padding: 15px 30px 15px 0;
    margin-bottom: 0;
    position: relative;
}
.product-tabs .tabs-toggle::before,
.product-tabs .tabs-toggle::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    margin: auto;
    content: '';
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.product-tabs .tabs-toggle::before{
    width: 16px;
    height: 2px;
}
.product-tabs .tabs-toggle::after{
    width: 2px;
    height: 16px;
    right: 7px;
}
.product-tabs .tabs-toggle.active::before{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.product-tabs .tabs-toggle.active::after{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.product-tabs .tabs-content{
    color: #333;
    margin-top: 3px;
}
@media (max-width: 1199px) {
    .product-summary .single_add_to_cart_button {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 991px){
    .product-summary .single_add_to_cart_button{
        padding-left: 30px;
        padding-right: 30px;
    }
    .product-summary .product-price{
        margin-bottom: 15px;
    }
    .product-summary .product-variation{
        margin-bottom: 22px;
    }
    .product-summary .product-guide{
        margin-bottom: 25px;
    }
    .product-summary .cart{
        margin-bottom: 2px;
        margin-right: 15px;
    }
    .product-summary .product-add-to-wishlist{
        margin-bottom: 12px;
    }
}
/* has-sidebar */
@media (max-width: 1199px) and (min-width: 992px) {
    .inner-page-product:not(.no-sidebar) .product-summary{
        width: 100% !important;
        margin-left: 0 !important;
    }
}
/* style-1 */
.inner-page-product.style-1 .product-gallery{
    width: 470px;
}
.inner-page-product.style-1 .product-summary{
    width: calc(100% - 500px);
    margin-left: 30px;
}
@media (max-width: 991px){
    .inner-page-product.style-1 .product-gallery{
        width: 430px;
    }
    .inner-page-product.style-1 .product-summary{
        width: calc(100% - 450px);
        margin-left: 20px;
    }
}
@media (max-width: 767px){
    .inner-page-product.style-1 .product-gallery{
        width: 470px;
    }
    .inner-page-product.style-1 .product-summary{
        width: 100%;
        margin-left: 0;
    }
}
/* style-1 gallery-vertical */
@media (min-width: 480px){
    .inner-page-product.style-1.gallery-vertical .product-gallery{
        width: 670px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-viewport{
        margin-left: 130px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-dots{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100px;
        margin: 0;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-dots .slick-slider{
        position: static;
    }
    .inner-page-product.style-1.gallery-vertical .product-summary{
        width: calc(100% - 700px);
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .inner-page-product.style-1.gallery-vertical .product-gallery{
        width: 570px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-dots{
        width: 140px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-viewport{
        margin-left: 200px;
    }
    .inner-page-product.style-1.gallery-vertical .product-summary{
        width: calc(100% - 600px);
    }
    .inner-page-product.style-1.gallery-vertical .product-summary .product-description .content{
        display: none;
    }
    .inner-page-product.style-1.gallery-vertical .product-summary .product-description .title a::after{
        content: '\f106';
    }
    .inner-page-product.style-1.gallery-vertical .product-summary .product-description .title a.active::after{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media (max-width: 991px) and (min-width: 480px){
    .inner-page-product.style-1.gallery-vertical .product-summary{
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 767px) and (min-width: 600px){
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-dots{
        width: 160px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-viewport{
        margin-left: 170px;
    }
}
@media (max-width: 599px) and (min-width: 480px){
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-dots{
        width: 120px;
    }
    .inner-page-product.style-1.gallery-vertical .product-gallery .gallery-viewport{
        margin-left: 130px;
    }
}
/* style-2 */
.inner-page-product.style-2 .product-gallery{
    width: 540px;
}
.inner-page-product.style-2 .product-summary{
    width: calc(100% - 570px);
    margin-left: 30px;
    border: 2px solid #000;
    padding: 45px 30px 35px;
}
.inner-page-product.style-2 .product-summary .single_add_to_cart_button{
    padding-left: 46px;
    padding-right: 46px;
}
@media (min-width: 992px) {
    .inner-page-product.style-2 .breadcrumb{
        margin-bottom: 18px;
    }
    .inner-page-product.style-2 .product-gallery{
        width: 505px;
    }
    .inner-page-product.style-2 .product-summary{
        width: calc(100% - 535px);
    }
}
@media (max-width: 1199px) {
    .inner-page-product.style-2 .product-summary{
        padding: 30px 30px 25px;
    }
}
@media (max-width: 991px) {
    .inner-page-product.style-2 .product-summary{
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 767px){
    .inner-page-product.style-2 .product-summary{
        padding: 0;
        border: none;
    }
}
/* style-2 gallery-vertical */
@media (min-width: 480px){
    .inner-page-product.style-2.gallery-vertical .product-gallery{
        width: 670px;
    }
    .inner-page-product.style-2.gallery-vertical .product-gallery .gallery-viewport{
        margin-left: 130px;
    }
    .inner-page-product.style-2.gallery-vertical .product-gallery .gallery-dots{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100px;
        margin: 0;
    }
    .inner-page-product.style-2.gallery-vertical .product-summary .product-description{
        display: none;
    }
}
@media (min-width: 1200px) {
    .inner-page-product.style-2.gallery-vertical .product-summary{
        width: calc(100% - 700px);
    }
}
@media (max-width: 1199px) {
    .inner-page-product.style-2.gallery-vertical .product-summary .single_add_to_cart_button{
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .inner-page-product.style-2.gallery-vertical .product-gallery{
        width: 550px;
    }
    .inner-page-product.style-2.gallery-vertical .product-summary{
        width: calc(100% - 580px);
    }
}
/* style-3 */
.inner-page-product.style-3 .product-gallery{
    float: right;
    width: 630px;
}
@media (min-width: 992px){
    .inner-page-product.style-3 .breadcrumb{
        margin-bottom: 16px;
    }
}
.inner-page-product.style-3 .product-summary{
    width: calc(100% - 660px);
    margin-right: 30px;
    padding-top: 20px;
}
@media (max-width: 1199px){
    .inner-page-product.style-3 .product-gallery{
        width: 600px;
    }
    .inner-page-product.style-3 .product-summary{
        width: calc(100% - 630px);
    }
}
@media (max-width: 991px){
    .inner-page-product.style-3 .product-gallery{
        width: 440px;
    }
    .inner-page-product.style-3 .product-summary{
        width: calc(100% - 460px);
        margin-right: 20px;
        padding-top: 0;
    }
}
@media (max-width: 767px){
    .inner-page-product.style-3 .product-gallery{
        float: none;
        width: 630px;
    }
    .inner-page-product.style-3 .product-summary{
        width: 100%;
        margin-right: 0;
    }
}
/* style-3 gallery-vertical */
@media (min-width: 480px){
    .inner-page-product.style-3.gallery-vertical .product-gallery{
        width: 770px;
    }
    .inner-page-product.style-3.gallery-vertical .product-summary{
        width: calc(100% - 800px);
    }
    .inner-page-product.style-3.gallery-vertical .product-gallery .gallery-viewport{
        margin-right: 140px;
    }
    .inner-page-product.style-3.gallery-vertical .product-gallery .gallery-dots{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 110px;
        margin: 0;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .inner-page-product.style-3.gallery-vertical .product-gallery{
        width: 600px;
    }
    .inner-page-product.style-3.gallery-vertical .product-summary{
        width: calc(100% - 630px);
    }
    .inner-page-product.style-3.gallery-vertical .product-summary .product-description .content{
        display: none;
    }
    .inner-page-product.style-3.gallery-vertical .product-summary .product-description .title a::after{
        content: '\f106';
    }
    .inner-page-product.style-3.gallery-vertical .product-summary .product-description .title a.active::after{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media (max-width: 991px) and (min-width: 480px){
    .inner-page-product.style-3.gallery-vertical .product-summary{
        width: 100%;
        margin-right: 0;
    }
}
/* style-4 */
.inner-page-product.style-4 .product-gallery{
    width: 770px;
}
.inner-page-product.style-4 .product-summary{
    width: calc(100% - 800px);
    margin-left: 30px;
}
@media (min-width: 480px){
    .inner-page-product.style-4 .product-gallery .slick-slider .slick-track{
        display: block !important;
        width: auto !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
        transform: none !important;
        font-size: 0;
        line-height: 0;
        margin: 0 -15px -30px;
    }
    .inner-page-product.style-4 .product-gallery .slick-slider .slick-slide{
        display: inline-block !important;
        vertical-align: top;
        width: calc(50% - 30px) !important;
        margin: 0 15px 30px !important;
        float: none;
        position: relative;
    }
    .inner-page-product.style-4 .gallery-dots{
        display: none;
    }
}
@media (min-width: 992px){
    .inner-page-product.style-4 .breadcrumb{
        margin-bottom: 18px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .inner-page-product.style-4 .product-gallery{
        width: 600px;
    }
    .inner-page-product.style-4 .product-summary{
        width: calc(100% - 630px);
    }
}
@media (max-width: 991px){
    .inner-page-product.style-4 .product-summary{
        width: 100%;
        margin-left: 0;
    }
}
/* style-5 */
.inner-page-product.style-5 .product-gallery{
    width: calc(50% - 15px);
}
.inner-page-product.style-5 .product-summary{
    width: calc(50% - 15px);
    margin-left: 30px;
    border: 2px solid #e2e2e2;
    padding: 20px 28px;
}
.inner-page-product.style-5 .product-gallery-second{
    clear: both;
    font-size: 0;
    line-height: 0;
    margin: 0 -15px;
}
.inner-page-product.style-5 .product-gallery-second > *{
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 30px;
    width: calc(50% - 30px);
}
.inner-page-product.style-5 .product-summary .product-category{
    margin-bottom: 3px;
}
.inner-page-product.style-5 .product-summary .product-price{
    margin-bottom: 18px;
}
.inner-page-product.style-5 .product-summary .product-variation{
    margin-bottom: 25px;
}
.inner-page-product.style-5 .product-summary .product-guide{
    margin-bottom: 29px;
}
@media (min-width: 768px){
    .inner-page-product.style-5 .product-gallery .slick-slider{
        pointer-events: none;
    }
    .inner-page-product.style-5 .product-gallery .gallery-dots{
        display: none;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .inner-page-product.style-5 .product-summary .product-category{
        margin-bottom: 9px;
    }
    .inner-page-product.style-5 .product-summary .product-price{
        margin-bottom: 22px;
    }
    .inner-page-product.style-5 .product-summary .product-variation{
        margin-bottom: 32px;
    }
    .inner-page-product.style-5 .product-summary .product-guide{
        margin-bottom: 31px;
    }
    .inner-page-product.style-5 .product-summary .product-variation > *{
        margin-bottom: 17px;
    }
    .inner-page-product.style-5 .product-summary .cart{
        margin-bottom: 12px;
    }
    .inner-page-product.style-5 .product-summary .product-description{
        margin-bottom: 0;
    }
}
@media (max-width: 1199px) and (min-width: 768px){
    .inner-page-product.style-5 .product-summary .product-description .content{
        display: none;
    }
    .inner-page-product.style-5 .product-summary .product-description .title a::after{
        content: '\f106';
    }
    .inner-page-product.style-5 .product-summary .product-description .title a.active::after{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media (max-width: 767px){
    .inner-page-product.style-5 .product-gallery{
        width: 570px;
    }
    .inner-page-product.style-5 .product-gallery-second{
        display: none;
    }
    .inner-page-product.style-5 .product-summary{
        width: 100%;
        padding: 0;
        border: none;
        margin-left: 0;
    }
}
/* style-6 */
.inner-page-product.style-6 .product-gallery{
    width: 570px;
}
.inner-page-product.style-6 .product-gallery .gallery-dots{
    display: none;
}
.inner-page-product.style-6 .product-gallery .gallery-viewport .slick-slider .slick-arrow{
    font-size: 26px;
    width: auto;
}
.inner-page-product.style-6 .product-summary{
    width: calc(100% - 600px);
    margin-left: 30px;
}
.inner-page-product.style-6 .product-summary .single_add_to_cart_button{
    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 991px) and (min-width: 768px){
    .inner-page-product.style-6 .product-gallery{
        width: 430px;
    }
    .inner-page-product.style-6 .product-summary{
        width: calc(100% - 450px);
        margin-left: 20px;
    }
    .inner-page-product.style-6 .product-summary .product-description .content{
        display: none;
    }
    .inner-page-product.style-6 .product-summary .product-description .title a::after{
        content: '\f106';
    }
    .inner-page-product.style-6 .product-summary .product-description .title a.active::after{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@media (max-width: 767px){
    .inner-page-product.style-6 .product-summary{
        width: 100%;
        margin-left: 0;
    }
}
/* style-7 */
.inner-page-product.style-7 .product-gallery{
    width: 570px;
}
.inner-page-product.style-7 .product-summary{
    width: calc(100% - 600px);
    margin-left: 30px;
}
.inner-page-product.style-7 .product-summary .summar-inner{
    border: 2px solid #e2e2e2;
    padding: 20px 28px;
    margin-bottom: 30px;
}
.inner-page-product.style-7 .product-summary .single_add_to_cart_button{
    padding-left: 50px;
    padding-right: 50px;
}
.inner-page-product.style-7 .product-gallery .gallery-trigger{
    bottom: auto;
    top: 576px;
    z-index: 2;
}

@media (min-width: 992px){
    .inner-page-product.style-7 .product-gallery .slick-slider .slick-track{
        display: block !important;
        width: auto !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
        transform: none !important;
    }
    .inner-page-product.style-7 .product-gallery .slick-slider .slick-slide{
        display: block !important;
        width: auto !important;
        margin: 0 0 10px !important;
        float: none;
        position: relative;
    }
    .inner-page-product.style-7 .product-gallery .gallery-dots{
        display: none;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .inner-page-product.style-7 .product-gallery {
        width: 470px;
    }
    .inner-page-product.style-7 .product-summary {
        width: calc(100% - 500px);
    }
}
@media ( max-width: 1199px ){
    .inner-page-product.style-7 .product-gallery .gallery-trigger{
        bottom: auto;
        top: 10px;
        z-index: 2;
    }
}
@media (max-width: 991px){
    .inner-page-product.style-7 .product-summary {
        width: 100%;
        margin-left: 0;
    }
    .inner-page-product.style-7 .product-summary .summar-inner{
        position: static !important;
        width: 100% !important;
    }
}
@media (max-width: 767px){
    .inner-page-product.style-7 .product-summary .summar-inner{
        padding: 0;
        border: none;
        margin-bottom: 0;
    }
}
/*-------------------- SHOP PAGE --------------------*/
.inner-page-shop{
    padding-bottom: 60px;
}
.inner-page-shop .page-banner{
    margin-top: 20px;
}
.inner-page-shop .breadcrumb{
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
}
.inner-page-shop .sidebar .widgettitle{
    display: block;
    font-size: 23px;
    line-height: 30px;
    border: none;
    margin-bottom: 15px;
}
.inner-page-shop ul.products{
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
.inner-page-shop ul.products .product-item{
    margin-bottom: 30px;
}
.inner-page-shop .pagination{
    margin-top: 30px;
    text-align: center;
}
.inner-page-shop .envy-heading.style-4{
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid #000;
    margin-bottom: 40px;
}
@media (max-width: 991px){
    .inner-page-shop .sidebar .widgettitle{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px){
    .inner-page-shop-category .envy-heading.style-4.custom-1{
        font-size: 20px;
        margin-bottom: 50px !important;
        margin-top: 10px;
    }
    .inner-page-shop-category .envy-heading.style-4.custom-2,
    .inner-page-shop .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 50px !important;
        padding-top: 70px !important;
    }
    .inner-page-shop-category ul.products.row,
    .inner-page-shop ul.products.row{
        margin-left: -8px;
        margin-right: -8px;
    }
    .inner-page-shop-category ul.products.row>li[class*="col-"],
    .inner-page-shop ul.products.row>li[class*="col-"]{
        padding-left: 8px;
        padding-right: 8px;
    }
}
    /* shop filter 01*/
.shop-filter-01 .shop-filter .widget .widgettitle{
    display: block;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    border: none;
    color: #000;
    margin-top: -3px;
    margin-bottom: 10px;
}
.shop-filter-01 .widget_product_size ul li:nth-child(2n+1){
    clear: inherit;
}
@media (min-width: 992px){
    .shop-filter-01 .breadcrumb{
        border-bottom: none;
        margin-bottom: 0;
    }
    .shop-filter-01 .shop-filter{
        background-color: #f4f4f4;
        margin-bottom: 20px;
    }
    .shop-filter-01 .shop-filter .widget-area{
        display: table;
        width: 100%;
    }
    .shop-filter-01 .shop-filter .widget{
        display: table-cell;
        vertical-align: top;
        text-align: center;
        width: 17%;
        padding-bottom: 0;
        border-bottom: none;
    }
    .shop-filter-01 .shop-filter .widget .widgettitle{
        font-size: 17px;
        line-height: 24px;
        padding: 13px 28px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .shop-filter-01 .shop-filter .widget .widgettitle::after{
        display: inline-block;
        vertical-align: top;
        font-family: FontAwesome, sans-serif;
        content: '\f107';
        font-size: 15px;
        color: #666;
        font-weight: 400;
        margin-left: 5px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .shop-filter-01 .shop-filter .widget_product_color .action{
        margin-top: -5px;
    }
    .shop-filter-01 .shop-filter .widget .envy-dropdown{
        display: inline-block;
        vertical-align: top;
        text-align: left;
        min-width: 140px;
    }
    .shop-filter-01 .shop-filter .widget .sub-menu{
        padding: 15px 28px 25px;
        box-shadow: none;
        top: calc(100% - 4px);
        width: 240px;
        color: #555;
    }
    .shop-filter-01 .shop-filter .widget:last-child .envy-dropdown{
        text-align: right;
    }
    .shop-filter-01 .shop-filter .widget:last-child .sub-menu{
        left: auto;
        right: 0;
    }
    .shop-filter-01 .shop-filter .widget_product_size .sub-menu{
        width: 355px;
    }
    .shop-filter-01 .shop-filter .widget_product_color .sub-menu{
        width: 430px;
    }
    .shop-filter-01 .shop-filter .widget_product_filter_2 .sub-menu{
        width: 295px;
    }
    .shop-filter-01 .shop-filter .widget_product_brand .sub-menu{
        width: 345px;
    }
    .shop-filter-01 .shop-filter .widget_product_sortby .sub-menu{
        padding-left: 20px;
        padding-right: 20px;
    }
    .shop-filter-01 .shop-filter .widget_product_categories .sub-menu{
        width: 475px;
    }
    .shop-filter-01 .shop-filter .widget_product_categories ul::before,
    .shop-filter-01 .shop-filter .widget_product_categories ul::after{
        display: table;
        content: '';
        clear: both;
    }
    .shop-filter-01 .shop-filter .widget_product_categories ul li{
        display: inline-block;
        float: left;
        width: 50%;
    }
    .shop-filter-01 .shop-filter .widget .action{
        margin-top: 8px;
        margin-bottom: 5px;
    }
    .shop-filter-01 .shop-filter .widget .action .button{
        padding: 9px 25px;
        min-width: 100px;
        margin-top: 10px;
        margin-right: 10px;
    }
    .shop-filter-01 .shop-filter .widget .action .button:nth-child(2){
        background-color: #e8e8e8;
        color: #000;
    }
}
@media (min-width: 1200px){
    .shop-filter-01 .shop-filter .widget .envy-dropdown:hover .link-dropdown{
        background-color: #fff;
    }
    .shop-filter-01 .shop-filter .widget .envy-dropdown:hover .link-dropdown::after{
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .shop-filter-01 .shop-filter .widget .envy-dropdown.open .link-dropdown{
        background-color: #fff;
    }
    .shop-filter-01 .shop-filter .widget .envy-dropdown.open .link-dropdown::after{
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .shop-filter-01 .shop-filter .widget:nth-last-child(2) .sub-menu{
        left: auto;
        right: 0;
    }
}
@media (max-width: 991px){
    .shop-filter-01 .breadcrumb{
        margin-bottom: 15px;
    }
}
/* shop filter 02*/
.shop-filter-02 .shop-filter .widget-area{
    font-weight: 400;
    color: #555;
}
.shop-filter-02 .shop-filter .widget .widgettitle{
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin-top: -3px;
    border: none;
    margin-bottom: 10px;
}
.shop-filter-02 .widget_product_size ul li:nth-child(2n+1){
    clear: inherit;
}
@media (min-width: 992px){
    .shop-filter-02 .shop-filter > .link-dropdown{
        display: block;
        font-size: 17px;
    }
    .shop-filter-02 .shop-filter > .link-dropdown::after{
        display: inline-block;
        vertical-align: top;
        font-family: FontAwesome, sans-serif;
        content: '\f107';
        font-size: 15px;
        color: #666;
        font-weight: 400;
        margin-left: 5px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .shop-filter-02 .shop-filter .widget-area{
        right: 0;
        left: auto;
        width: 1170px;
        padding: 30px 0;
        margin-top: 10px;
    }
    .shop-filter-02 .shop-filter .widget-area::before{
        position: absolute;
        content: '';
        top: -9px;
        right: 28px;
        width: 18px;
        height: 18px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .shop-filter-02 .shop-filter .widget-area::after{
        position: absolute;
        content: '';
        top: 0;
        right: 18px;
        width: 54px;
        height: 20px;
        background-color: #fff;
    }
    .shop-filter-02 .widget-area .widget:not(:last-child){
        padding-bottom: 25px;
    }
    .shop-filter-02 .shop-filter .widget .widgettitle{
        font-size: 18px;
        line-height: 24px;
        margin-top: -3px;
        margin-bottom: 6px;
    }
    .shop-filter-02 .shop-filter .filter-row::before{
        position: absolute;
        content: '';
        top: -10px;
        left: 0;
        right: 0;
        height: 11px;
    }
    .shop-filter-02 .shop-filter .filter-row{
        display: table;
        width: 100%;
    }
    .shop-filter-02 .shop-filter .filter-col{
        display: table-cell;
        vertical-align: top;
        padding: 0 30px;
    }
    .shop-filter-02 .shop-filter .filter-col:not(:last-child){
        border-right: 2px solid #eee;
    }
    .shop-filter-02 .shop-filter .col-1{
        width: 20%;
    }
    .shop-filter-02 .shop-filter .col-2{
        width: 23%;
    }
    .shop-filter-02 .shop-filter .col-3{
        width: 30%;
    }
    .shop-filter-02 .shop-filter .col-4{
        width: 27%;
    }
    .shop-filter-02 .widget_product_brand ul,
    .shop-filter-02 .widget_product_categories ul{
        max-height: 540px;
    }
}
@media (min-width: 1200px){
    .shop-filter-02 .shop-filter:hover > .link-dropdown::after{
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
}
@media (max-width: 1229px) and (min-width: 1200px){
    .shop-filter-02 .shop-filter .widget-area{
        width: 1140px;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .shop-filter-02 .shop-filter.open > .link-dropdown::after{
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .shop-filter-02 .shop-filter .widget-area{
        width: 940px;
        padding: 20px 0;
    }
    .shop-filter-02 .shop-filter .filter-col{
        padding: 0 20px;
    }
    .shop-filter-02 .shop-filter .col-1{
        width: 24%;
    }
    .shop-filter-02 .shop-filter .col-2{
        width: 28%;
    }
    .shop-filter-02 .shop-filter .col-3{
        width: 24%;
    }
    .shop-filter-02 .shop-filter .col-4{
        width: 24%;
    }
}
/* shop filter checked */
.shop-filter-checked{
    border: 3px solid #7ea113;
    background-color: #fff;
    border-radius: 3px;
    font-size: 0;
    line-height: 0;
    padding: 8px 0;
    margin-bottom: 15px;
}
.shop-filter-checked .checked-item{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    padding: 5px 0;
    margin: 0 30px;
    color: #000;
    font-weight: 600;
    position: relative;
}
.shop-filter-checked .checked-item::before,
.shop-filter-checked .checked-item::after{
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    font-family: FontAwesome, sans-serif;
    content: "\f00c";
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    font-weight: 300;
    margin-right: 10px;
    padding-top: 1px;
}
.shop-filter-checked .checked-item::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    content: "\f00d";
    background-color: #fff;
    margin: auto;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.shop-filter-checked .checked-item:not(:hover)::after{
    opacity: 0;
}
@media (max-width: 767px){
    .shop-filter-checked .checked-item{
        margin: 0 20px;
    }
}
/* shop control */
.shop-control{
    text-align: center;
    padding: 0 0 30px;
}
.shop-control::before,
.shop-control::after{
    display: table;
    content: '';
    clear: both;
}
.shop-control > *{
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 15px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}
.shop-control > *:not(:last-child){
    margin-right: 100px;
}
.shop-control > *:first-child{
    float: left;
}
.shop-control > *:last-child{
    float: right;
}
.shop-control select{
    border: none;
    padding: 0 13px 0 0;
    background-position: center right;
    font-size: inherit;
    line-height: inherit;
}
.shop-control .chosen-container-single .chosen-single{
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.shop-control .chosen-container-single .chosen-single:hover{
    opacity: 0.7;
}
.shop-control .chosen-container-single .chosen-single::after{
    font-weight: 400;
}
.shop-control .chosen-container-single .chosen-single::before{
    position: absolute;
    content: '';
    bottom: 5px;
    left: 0;
    right: 0;
    border-bottom: 2px solid;
}
.shop-control .chosen-container-single .chosen-drop{
    padding: 0;
    left: -10px;
    right: -10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
.shop-control .chosen-container-single .chosen-results{
    color: inherit;
}
.shop-control .chosen-container .chosen-results li{
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
}
.shop-control .chosen-container .chosen-results li.highlighted{
    background-color: #000;
    color: #fff;
}
@media (max-width: 1199px){
    .shop-control > *:not(:last-child){
        margin-right: 80px;
    }
    .inner-page-shop:not(.no-sidebar) .shop-control > *:not(:last-child){
        margin-right: 50px;
    }
}
@media (max-width: 991px){
    .shop-control > *:not(:last-child){
        margin-right: 60px;
    }
}
@media (max-width: 767px){
    .shop-control{
        padding: 0 0 20px;
        border-bottom: 2px solid #444;
        margin-bottom: 30px;
    }
    .shop-control > *{
        display: block;
        margin: 15px 0;
    }
    .shop-control > *:first-child,
    .shop-control > *:last-child{
        float: none;
    }
    .shop-control > *:not(:last-child){
        margin-right: 0;
    }
}
/*-------------------- SHOP CATEGORY PAGE --------------------*/
.inner-page-shop-category{
    padding-bottom: 60px;
}
.inner-page-shop-category .breadcrumb{
    margin-bottom: 10px;
}
.inner-page-shop-category .page-banner{
    margin-top: 20px;
}
.inner-page-shop-category ul.products{
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
.inner-page-shop-category ul.products .product-item{
    margin-bottom: 30px;
}
.inner-page-shop-category .pagination{
    margin-top: 30px;
    text-align: center;
}
.inner-page-shop-category .envy-heading.style-4.custom-1{
    margin-bottom: 40px;
}
.inner-page-shop-category .envy-heading.style-4.custom-2{
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid #000;
    margin-bottom: 40px;
}
/*-------------------- SHOPPING CART --------------------*/
/* shopping cart form */
.shopping-cart-form::before,
.shopping-cart-form::after{
    display: table;
    clear: both;
    content: '';
}
.shopping-cart-form .shop_table tr{
    border-bottom: 2px solid #dbdbdb;
}
.shopping-cart-form .shop_table th{
    font-size: 16px;
    line-height: 30px;
    padding: 15px 10px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    border: none;
}
.shopping-cart-form .shop_table td{
    border: none;
    padding: 10px;
}
.shopping-cart-form .shop_table .product-price{
    text-align: right;
}
.shopping-cart-form .shop_table .thumb img{
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 100%;
}
.shopping-cart-form .shop_table .thumb:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.shopping-cart-form .shop_table .category{
    color: #888;
    font-size: 0;
    line-height: 0;
}
.shopping-cart-form .shop_table .category a{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
}
.shopping-cart-form .shop_table .category a:not(:last-child)::after{
    content: '/';
    color: #888;
}
.shopping-cart-form .shop_table .name{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.shopping-cart-form .shop_table .name a:hover{
    opacity: 0.7;
}
.shopping-cart-form .shop_table .variation{
    margin: 0 -5px -10px;
}
.shopping-cart-form .shop_table .variation a{
    display: inline-block;
    vertical-align: top;
    min-width: 32px;
    height: 32px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: 0 5px 10px;
    border: 2px solid;
    border-radius: 0;
}
.shopping-cart-form .shop_table .variation a:not(:hover){
    border-color: #ddd;
}
.shopping-cart-form .shop_table .quantity .input-qty{
    padding: 2px 10px;
    width: 56px;
    height: 32px;
}
.shopping-cart-form .shop_table .quantity .quantity-minus{
    left: 0;
}
.shopping-cart-form .shop_table .quantity .quantity-plus{
    right: 0;
}
.shopping-cart-form .shop_table .remove,
.shopping-cart-form .shop_table .move{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 16px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    color: #000;
    margin: 2px 0;
}
.shopping-cart-form .shop_table .remove:hover,
.shopping-cart-form .shop_table .move:hover{
    opacity: 0.7;
}
.shopping-cart-form .shop_table .price{
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}
.shopping-cart-form .shop_table .product-thumbnail{
    width: 160px;
}
.shopping-cart-form .shop_table .product-color,
.shopping-cart-form .shop_table .product-size{
    width: 90px;
}
.shopping-cart-form .cart-coupon{
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 370px);
    padding-right: 30px;
    margin-bottom: 30px;
}
.shopping-cart-form .coupon .title{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    margin-right: 35px;
}
.shopping-cart-form .coupon .content{
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    width: 330px;
    position: relative;
    box-shadow: 0 -2px #000 inset;
}
.shopping-cart-form .coupon .content-inner{
    display: table;
}
.shopping-cart-form .coupon label{
    display: table-cell;
    vertical-align: top;
    font-size: 14px;
    color: inherit;
    font-weight: inherit;
    width: 100%;
}
.shopping-cart-form .coupon .input{
    border: none;
    height: 40px;
    padding: 8px 10px;
    width: 100%;
    text-overflow: ellipsis;
}
.shopping-cart-form .coupon .button{
    display: table-cell;
    vertical-align: top;
    padding: 8px 10px;
    background-color: transparent;
    color: #000;
    white-space: nowrap;
}
.shopping-cart-form .coupon .button::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    margin-left: 2px;
}
.shopping-cart-form .cart-totals{
    width: 370px;
    float: right;
    text-align: right;
    max-width: 100%;
}
.shopping-cart-form .totals{
    font-size: 16px;
    line-height: 30px;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.shopping-cart-form .totals span{
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    line-height: 28px;
    margin-left: 10px;
}
.shopping-cart-form .cart-totals .button{
    width: 100%;
    margin-top: 10px;
}
.shopping-cart-form .paypal-button{
    background-color: transparent;
    color: #000;
    box-shadow: 0 0 0 2px #ddd inset;
}
.shopping-cart-form .paypal-button figure{
    display: inline-block;
    vertical-align: middle;
}
@media (min-width: 992px){
    .shopping-cart-form .shop_table th:first-child,
    .shopping-cart-form .shop_table td:first-child{
        padding-left: 0;
    }
    .shopping-cart-form .shop_table th:last-child,
    .shopping-cart-form .shop_table td:last-child{
        padding-right: 0;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .shopping-cart-form .shop_table .product-thumbnail{
        width: 100px;
        padding-right: 0;
    }
    .shopping-cart-form .shop_table .product-color,
    .shopping-cart-form .shop_table .product-size{
        width: auto;
    }
    .shopping-cart-form .cart-coupon{
        width: calc(100% - 330px);
    }
    .shopping-cart-form .cart-totals{
        width: 330px;
    }
}
@media (max-width: 767px){
    .shopping-cart-form .shop_table thead{
        display: none;
    }
    .shopping-cart-form .shop_table tbody{
        display: block;
    }
    .shopping-cart-form .shop_table tr{
        display: block;
        border: 2px solid #ddd;
        margin-top: 10px;
    }
    .shopping-cart-form .shop_table tr+tr{
        margin-top: 30px;
    }
    .shopping-cart-form .shop_table tr:first-child{
        border-top: 2px solid #ddd;
    }
    .shopping-cart-form .shop_table td{
        display: block;
        text-align: center;
    }
    .shopping-cart-form .shop_table td:not(:first-child){
        border-top: 1px solid #eee;
    }
    .shopping-cart-form .shop_table td.product-action>div{
        display: inline-block;
        margin: 5px 10px;
    }
    .shopping-cart-form .shop_table .product-color,
    .shopping-cart-form .shop_table .product-size{
        width: auto;
    }
    .shopping-cart-form .shop_table .product-thumbnail{
        margin-left: auto;
        margin-right: auto;
    }
    .shopping-cart-form .shop_table .product-price{
        text-align: center;
    }
    .shopping-cart-form .cart-coupon{
        display: block;
        float: none;
        width: auto;
        padding-right: 0;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .shopping-cart-form .coupon .title{
        display: block;
        margin-right: 0;
    }
    .shopping-cart-form .coupon .input{
        text-align: left;
    }
    .shopping-cart-form .cart-totals{
        float: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .shopping-cart-form .totals{
        margin-bottom: 0;
    }
    .shopping-cart-form .cart-totals .button{
        margin-top: 30px;
    }
}
.inner-page-cart{
    padding-bottom: 80px;
}
.inner-page-cart #section-2 .section-inner{
    margin-top: 60px;
    border-top: 2px solid #000;
    padding-top: 60px;
}
@media (min-width: 992px) {
    .inner-page-cart .breadcrumb {
        margin-bottom: 76px;
    }
}
@media (max-width: 767px){
    .inner-page-cart{
        padding-bottom: 70px;
    }
}
@media (max-width: 479px){
    .inner-page-cart{
        padding-bottom: 60px;
    }
}
/*-------------------- CHECKOUT --------------------*/
/* checkout process */
.checkout-process{
    padding: 20px 200px;
    margin-bottom: 40px;
}
.checkout-process .process-inner{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout-process .process-point{
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
    padding: 0 10px;
}
.checkout-process .process-point .step{
    display: block;
    width: 54px;
    height: 54px;
    font-size: 24px;
    line-height: 54px;
    font-weight: 600;
    color: #aaa;
    text-align: center;
    box-shadow: 0 0 0 2px #ccc inset;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkout-process .process-point .title{
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
}
.checkout-process .process-point:hover .step{
    box-shadow: none;
    background-color: #000;
    color: #fff;
}
.checkout-process .process-done .step::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: FontAwesome, sans-serif;
    content: "\f00c";
    font-size: 15px;
    line-height: 54px;
    margin: auto;
    color: #fff;
    background-color: #000;
}
.checkout-process .process-running .step{
    box-shadow: 0 0 0 2px #000 inset;
    color: #000;
}
.checkout-process .process-point.process-done + .process-line,
.checkout-process .process-point.process-running + .process-line{
    border-color: #000;
}
.checkout-process .process-line{
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-top: 3px solid #dbdbdb;
}
@media (max-width: 1199px){
    .checkout-process{
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 991px){
    .checkout-process{
        padding-left: 80px;
        padding-right: 80px;
        margin-top: 20px;
        margin-bottom: 60px;
    }
}
@media (max-width: 767px){
    .checkout-process{
        padding-left: 50px;
        padding-right: 50px;
    }
    .checkout-process .process-point .step{
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    .checkout-process .process-done .step::after{
        line-height: 50px;
    }
}
@media (max-width: 479px){
    .checkout-process{
        padding-left: 0;
        padding-right: 0;
    }
    .checkout-process .process-point .title{
        font-size: 13px;
        line-height: 26px;
        left: 0;
        right: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }
}
/* checkout form */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="password"],
.checkout-form input[type="tel"],
.checkout-form input[type="search"],
.checkout-form input[type="url"],
.checkout-form input[type="number"],
.checkout-form select,
.checkout-form textarea{
    width: 100%;
    background-color: #fff;
}
.checkout-form select{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAZCAYAAAA14t7uAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyQTlGNTdGRUEyQUMxMUU4QjAyRkFFOTE1MTU3MjlDNCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyQTlGNTdGREEyQUMxMUU4QjAyRkFFOTE1MTU3MjlDNCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNUI5QkVCMTk3NzVFODExOUIzRUVEOURGNDZBRjY2MyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjXkMX8AAACCSURBVHjaYrx79+5/BiBQUlJiZKAiYGKgERg1eNTg4WAwC6kaGBkZ74IyKgFlruS4eBYB+T1AfJZkF////78T6GoQswOHoWFANe8ZQIUQCAMBAykYCMpB9iDh3UAsCJcn12A0w1EMpdhgqOEu6IaCMAulyQpoyJ7RnDdq8HA1GCDAAM3CwCzp/DKqAAAAAElFTkSuQmCC');
}
.checkout-form .checkout-form-block{
    margin-bottom: 60px;
}
.checkout-form .checkout-form-block > .title{
    font-size: 18px;
    line-height: 24px;
    margin-top: -3px;
    margin-bottom: 15px;
}
.checkout-form .checkout-form-block > .title span{
    display: inline-block;
    float: right;
    font-size: 15px;
}
.checkout-form .checkout-form-block .row{
    margin-left: -5px;
    margin-right: -5px;
}
.checkout-form .checkout-form-block [class^="col-"],
.checkout-form .checkout-form-block [class*=" col-"]{
    padding-left: 5px;
    padding-right: 5px;
}
.checkout-form .form-row{
    color: #888;
    margin-bottom: 10px;
}
.checkout-form .form-row label,
.checkout-form .form-checkbox label{
    display: block;
    color: inherit;
    font-weight: inherit;
    margin: 0;
}
.checkout-form .form-checkbox{
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
.checkout-form .form-checkbox label{
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkout-form .form-checkbox label:hover{
    opacity: 0.7;
}
.checkout-form .form-row-checkbox{
    font-size: 15px;
    line-height: 20px;
    color: #000;
    border: 2px solid #ddd;
    margin-bottom: 0;
}
.checkout-form .form-row-checkbox + .form-row-checkbox{
    margin-top: -2px;
}
.checkout-form .form-row-checkbox label{
    display: block;
    color: inherit;
    font-weight: inherit;
    margin: 0;
    cursor: pointer;
    padding: 15px 15px 15px 10px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkout-form .form-row-checkbox label:hover{
    opacity: 0.7;
}
.checkout-form .form-row-checkbox label .cost{
    float: right;
}
.checkout-form .form-row-card{
    border: 2px solid #ddd;
}
.checkout-form .form-row-card .head{
    padding: 12px 20px;
    border-bottom: 2px solid #ddd;
    text-align: right;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #aaa;
}
.checkout-form .form-row-card .head > *{
    display: inline-block;
    vertical-align: top;
    padding: 3px 0;
    margin-left: 10px;
}
.checkout-form .form-row-card .head .title{
    float: left;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}
.checkout-form .form-row-card .content{
    padding: 20px 20px 10px;
    background-color: #f5f5f5;
}
.checkout-form .result-step{
    font-size: 15px;
    line-height: 20px;
    color: #000;
    border: 2px solid #ddd;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
}
.checkout-form .result-step label{
    display: inline-block;
    vertical-align: top;
}
.checkout-form .result-step .edit{
    float: right;
    font-weight: 600;
    text-decoration: underline;
}
.checkout-form .result-step .edit:hover{
    opacity: 0.7;
}
.checkout-form .result-step.step-2{
    padding-top: 15px;
    padding-bottom: 15px;
}
.checkout-form .checkout-pagination{
    margin-top: -30px;
    margin-bottom: 60px;
}
.checkout-form .checkout-pagination::before,
.checkout-form .checkout-pagination::after{
    display: table;
    content: '';
    clear: both;
}
.checkout-form .checkout-pagination > *{
    display: inline-block;
    vertical-align: top;
}
.checkout-form .checkout-pagination .prev{
    font-size: 16px;
    line-height: 16px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    background-color: transparent;
    margin: 12px 0;
    padding: 0;
    color: #000;
    letter-spacing: 0;
    text-transform: none;
}
.checkout-form .checkout-pagination .next{
    float: right;
    padding-left: 45px;
    padding-right: 45px;
    white-space: nowrap;
    overflow: hidden;
}
.checkout-form .checkout-pagination .next::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    margin-left: 5px;
}
.checkout-form .order_review{
    border: 2px solid #000;
    padding: 30px 30px 20px;
    margin-bottom: 60px;
}
.checkout-form .shop_table tr{
    border-bottom: 2px solid #dbdbdb;
}
.checkout-form .shop_table td{
    border: none;
    padding: 0 10px 30px;
}
.checkout-form .shop_table tr:not(:first-child) td{
    padding-top: 30px;
}
.checkout-form .shop_table .product-thumbnail{
    width: 150px;
    padding-left: 0;
    padding-right: 0;
}
.checkout-form .shop_table .thumb img{
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 100%;
}
.checkout-form .shop_table .thumb:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.checkout-form .shop_table .category{
    color: #888;
    font-size: 0;
    line-height: 0;
}
.checkout-form .shop_table .category a{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
}
.checkout-form .shop_table .category a:not(:last-child)::after{
    content: '/';
    color: #888;
}
.checkout-form .shop_table .name{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.checkout-form .shop_table .name a:hover{
    opacity: 0.7;
}
.checkout-form .shop_table .variation{
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
}
.checkout-form .shop_table .variation .title{
    display: inline-block;
    vertical-align: top;
}
.checkout-form .shop_table .variation a{
    display: inline-block;
    vertical-align: top;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 0;
}
.checkout-form .shop_table .variation a:hover{
    opacity: 0.7;
}
.checkout-form .shop_table .product-price{
    text-align: right;
    padding-right: 0;
}
.checkout-form .shop_table .price{
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}
.checkout-form .coupon{
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid #dbdbdb;
}
.checkout-form .coupon .title{
    display: none;
}
.checkout-form .coupon .content{
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 340px;
    max-width: 100%;
    box-shadow: 0 -2px #000 inset;
    text-align: left;
}
.checkout-form .coupon .content-inner{
    display: table;
}
.checkout-form .coupon label{
    display: table-cell;
    vertical-align: top;
    width: 100%;
    font-size: 14px;
    color: inherit;
    font-weight: inherit;
}
.checkout-form .coupon .input{
    width: 100%;
    border: none;
    height: 40px;
    padding: 8px 10px;
    text-overflow: ellipsis;
    background-color: transparent;
}
.checkout-form .coupon .button{
    display: table-cell;
    vertical-align: top;
    padding: 8px 10px;
    background-color: transparent;
    color: #000;
    white-space: nowrap;
}
.checkout-form .coupon .button::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f0da";
    margin-left: 2px;
}
.checkout-form .checkout-totals{
    padding: 30px 0;
}
.checkout-form .checkout-totals::before,
.checkout-form .checkout-totals::after{
    display: table;
    clear: both;
    content: '';
}
.checkout-form .checkout-totals > *{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}
.checkout-form .totals{
    float: right;
}
.checkout-form .totals span{
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    line-height: 28px;
}
@media (max-width: 991px){
    .checkout-form .form-row,
    .checkout-form .checkout-form-block > .title{
        margin-bottom: 20px;
    }
}
@media (max-width: 599px){
    .checkout-form .checkout-pagination{
        text-align: center;
    }
    .checkout-form .checkout-pagination .prev{
        margin-bottom: 45px;
    }
    .checkout-form .checkout-pagination .next{
        width: 100%;
    }
}
@media (max-width: 479px){
    .checkout-form .checkout-form-block > .title span{
        display: block;
        float: none;
    }
    .checkout-form .form-row-card .head{
        text-align: inherit;
        padding: 7px 15px;
    }
    .checkout-form .form-row-card .head > *{
        margin-left: 0;
        margin-right: 10px;
    }
    .checkout-form .form-row-card .head .title{
        display: block;
        float: none;
    }
    .checkout-form .form-row-card .content{
        padding: 15px 15px 5px;
    }
    .checkout-form .order_review{
        padding-left: 15px;
        padding-right: 15px;
    }
    .checkout-form .checkout-pagination{
        margin-top: -20px;
        margin-bottom: 60px;
    }
    .checkout-form .checkout-pagination .next{
        padding-left: 35px;
        padding-right: 35px;
    }
    .checkout-form .shop_table .product-thumbnail{
        display: none;
    }
    .checkout-form .checkout-totals{
        text-align: center;
    }
    .checkout-form .checkout-totals > *{
        display: block;
        float: none;
    }
}
/* order done */
.order_done{
    max-width: 570px;
    margin: auto;
    text-align: center;
    padding: 140px 0 115px;
}
.order_done .title{
    font-size: 30px;
    line-height: 36px;
    color: #222;
    margin-bottom: 8px;
}
.order_done .subtitle{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 50px;
}
.order_done .button{
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    background-color: transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
    color: #000;
}
@media (max-width: 1199px) {
    .order_done {
        padding: 60px 0 30px;
    }
}
@media (max-width: 991px){
    .order_done{
        padding: 50px 0 20px;
    }
    .order_done .subtitle{
        margin-bottom: 40px;
    }
}
@media (max-width: 767px){
    .order_done{
        padding: 0;
    }
    .order_done .title{
        font-size: 26px;
        line-height: 30px;
    }
    .order_done .subtitle{
        margin-bottom: 30px;
        margin-top: 20px;
    }
}
.inner-page-checkout{
    padding-bottom: 20px;
}
@media (min-width: 992px){
    .inner-page-checkout .breadcrumb{
        margin-bottom: 16px;
    }
}
@media (max-width: 767px){
    .inner-page-checkout{
        padding-bottom: 10px;
    }
}
@media (max-width: 479px){
    .inner-page-checkout{
        padding-bottom: 0;
    }
}
/*-------------------- CHECKOUT STEP 2 --------------------*/
.inner-page-checkout-2{
    padding-bottom: 20px;
}
@media (min-width: 992px){
    .inner-page-checkout-2 .breadcrumb{
        margin-bottom: 16px;
    }
}
@media (max-width: 767px){
    .inner-page-checkout-2{
        padding-bottom: 10px;
    }
}
@media (max-width: 479px){
    .inner-page-checkout-2{
        padding-bottom: 0;
    }
}
/*-------------------- CHECKOUT STEP 3 --------------------*/
.inner-page-checkout-3{
    padding-bottom: 20px;
}
@media (min-width: 992px){
    .inner-page-checkout-3 .breadcrumb{
        margin-bottom: 16px;
    }
}
@media (max-width: 767px){
    .inner-page-checkout-3{
        padding-bottom: 10px;
    }
}
@media (max-width: 479px){
    .inner-page-checkout-3{
        padding-bottom: 0;
    }
}
/*-------------------- CHECKOUT STEP 4 --------------------*/
.inner-page-checkout-4{
    padding-bottom: 80px;
}
@media (min-width: 992px){
    .inner-page-checkout-4 .breadcrumb{
        margin-bottom: 16px;
    }
}
@media (max-width: 767px){
    .inner-page-checkout-4{
        padding-bottom: 70px;
    }
}
@media (max-width: 479px){
    .inner-page-checkout-4{
        padding-bottom: 60px;
    }
}
/*-------------------- ABOUT US --------------------*/
.inner-page-about #section-1{
    margin-bottom: 75px;
}
.inner-page-about .breadcrumb{
    margin-bottom: 10px;
}
.inner-page-about #section-1 .envy-heading.style-2{
    margin-top: 35px;
    margin-bottom: 10px;
}
.inner-page-about #section-2{
    margin-bottom: 80px;
}
.inner-page-about #section-2 .envy-heading.style-4{
    margin-bottom: 15px;
}
.inner-page-about #section-2 .envy-heading.style-5{
    margin-bottom: 59px;
}
.inner-page-about #section-2 .envy-statistic.style-1{
    max-width: 1026px;
    margin: auto;
}
.inner-page-about #section-3{
    padding-top: 55px;
    padding-bottom: 50px;
    background-color: #f4f4f4;
}
.inner-page-about #section-3 .envy-heading.style-4{
    margin-bottom: 33px;
}
.inner-page-about #section-3 .envy-slider.style-1 .slick-slider .slick-arrow.prev,
.inner-page-about #section-3 .envy-slider.style-1 .slick-slider .slick-arrow.next{
    top: calc(50% - 50px);
}
@media (min-width: 992px){
    .inner-page-about .breadcrumb{
        margin-bottom: 28px;
    }
}
@media (max-width: 1199px){
    .inner-page-about #section-1 .envy-heading.style-2{
        margin-top: 0;
    }
}
@media (max-width: 991px){
    .inner-page-about #section-1 .envy-heading.style-2{
        margin-top: 30px;
    }
}
@media (max-width: 767px){
    .inner-page-about #section-1 .envy-heading.style-2{
        font-size: 32px;
        line-height: 35px;
        font-weight: 700;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .inner-page-about #section-2 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .inner-page-about #section-2 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .inner-page-about #section-1{
        margin-bottom: 50px;
    }
    .inner-page-about #section-3 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 50px;
    }
}
    /*-------------------- ABOUT US 2 --------------------*/
.inner-page-about-2{
    padding-bottom: 80px;
}
.inner-page-about-2 .breadcrumb{
    margin-bottom: 10px;
}
.inner-page-about-2 #section-1 .envy-image{
    margin-bottom: 60px;
}
.inner-page-about-2 #section-1 .section-inner{
    padding-bottom: 23px;
    border-bottom: 2px solid #000;
    margin-bottom: 73px;
}
.inner-page-about-2 #section-1 .envy-iconbox.style-1{
    margin-bottom: 30px;
}
.inner-page-about-2 #section-2{
    margin-bottom: 82px;
}
.inner-page-about-2 #section-2 .envy-heading.style-4{
    margin-bottom: 18px;
}
.inner-page-about-2 #section-2 .envy-heading.style-5{
    margin-bottom: 59px;
}
.inner-page-about-2 #section-3{
    padding-top: 55px;
    padding-bottom: 50px;
    background-color: #f4f4f4;
    margin-bottom: 73px;
}
.inner-page-about-2 #section-4 .envy-heading.style-4{
    margin-bottom: 60px;
}
@media (min-width: 992px){
    .inner-page-about-2 .breadcrumb{
        margin-bottom: 16px;
    }
}
@media (max-width: 991px){
    .inner-page-about-2{
        padding-bottom: 70px;
    }
    .inner-page-about-2 #section-1 .envy-image{
        margin-bottom: 50px;
    }
    .inner-page-about-2 #section-1 .section-inner{
        padding-bottom: 15px;
        margin-bottom: 60px;
    }
    .inner-page-about-2 #section-2{
        margin-bottom: 70px;
    }
    .inner-page-about-2 #section-2 .envy-heading.style-5{
        margin-bottom: 45px;
    }
    .inner-page-about-2 #section-3{
        margin-bottom: 60px;
    }
    .inner-page-about-2 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
    }
}
@media (max-width: 767px){
    .inner-page-about-2{
        padding-bottom: 60px;
    }
    .inner-page-about-2 #section-1 .section-inner{
        margin-bottom: 0;
        border: 0;
        padding: 0;
    }
    .inner-page-about-2 #section-2{
        margin-bottom: 80px;
    }
    .inner-page-about-2 #section-3{
        margin-bottom: 60px;
    }
    .inner-page-about-2 #section-2 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 50px;
    }
}
/*-------------------- ABOUT US 3 --------------------*/
.inner-page-about-3{
    padding-bottom: 120px;
}
.inner-page-about-3 .breadcrumb{
    margin-bottom: 16px;
}
.inner-page-about-3 #section-1 .section-inner{
    padding-top: 45px;
    border-bottom: 2px solid #000;
    padding-bottom: 63px;
    margin-bottom: 73px;
}
.inner-page-about-3 #section-1 .envy-heading.style-2{
    margin-bottom: 10px;
}
.inner-page-about-3 #section-1 .envy-heading.style-10{
    margin-bottom: 40px;
}
.inner-page-about-3 #section-2{
    padding-bottom: 80px;
}
.inner-page-about-3 #section-2 .envy-heading.style-4{
    margin-bottom: 60px;
}
.inner-page-about-3 #section-3{
    padding-top: 55px;
    padding-bottom: 50px;
    background-color: #f4f4f4;
    margin-bottom: 73px;
}
.inner-page-about-3 #section-4 .envy-heading.style-4{
    margin-bottom: 60px;
}
@media (max-width: 991px){
    .inner-page-about-3{
        padding-bottom: 100px;
    }
}
@media (max-width: 767px){
    .inner-page-about-3{
        padding-bottom: 80px;
    }
    .inner-page-about-3 #section-1 .section-inner{
        padding-top: 20px;
        padding-bottom: 50px;
        margin-bottom: 60px;
    }
    .inner-page-about-3 #section-1 .envy-heading.style-10{
        margin-bottom: 30px;
    }
    .inner-page-about-3 #section-2{
        padding-bottom: 70px;
    }
    .inner-page-about-3 #section-3{
        margin-bottom: 60px;
    }
    .inner-page-about-3 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
    }
    .inner-page-about-3 #section-1 .envy-heading.style-2{
        font-size: 38px;
    }
    .envy-statistic.style-2{
        font-size: 0;
    }
    .envy-statistic.style-2 .statistic-item{
        margin: 0;
        text-align: center;
        width: 33.333333%;
    }
    .envy-statistic.style-2 .statistic-item .content{
        display: block;
        padding: 0;
    }
    .envy-statistic.style-2 .statistic-item .number{
        font-size: 24px;
        line-height: 24px;
        margin-top: 12px;
        margin-bottom: 5px;
    }
    .envy-statistic.style-2 .statistic-item .icon.fa-facebook{
        padding: 0;
    }
    .envy-statistic.style-2 .statistic-item .icon{
        font-size: 38px;
    }
}
/*-------------------- CONTACT US --------------------*/
.contact-form p{
    margin-bottom: 10px;
}
.contact-form p label{
    font-weight: inherit;
    color: inherit;
    display: block;
    margin-bottom: 0;
}
.contact-form p input[type="text"],
.contact-form p input[type="email"],
.contact-form p textarea{
    width: 100%;
    border-color: #000;
    background-color: #fff;
}
.contact-form p textarea{
    height: 290px;
}
.contact-form .contact-submit{
    margin-top: 30px;
    margin-bottom: 0;
}
.inner-page-contact .breadcrumb{
    margin-bottom: 48px;
}
.inner-page-contact #section-1{
    background-image: url(../images/contact-us-image-01.jpg);
    background-position: center center;
    background-size: cover;
    padding: 140px 0 202px;
}
.inner-page-contact #section-1 .envy-socials.style-1{
    margin-top: 40px;
    margin-bottom: 50px;
}
.inner-page-contact #section-1 .contact-form{
    margin-bottom: 50px;
}
@media (max-width: 1199px){
    .inner-page-contact #section-1{
        padding: 130px 0;
    }
}
@media (max-width: 991px){
    .inner-page-contact #section-1{
        padding: 30px 0;
    }
    .inner-page-contact .breadcrumb{
        margin-bottom: 0;
    }
    .contact-form p{
        margin-bottom: 30px;
    }
}
@media (max-width: 767px){

}
/*-------------------- CONTACT US 2 --------------------*/
.inner-page-contact-2{
    padding-bottom: 80px;
}
.inner-page-contact-2 .breadcrumb{
    margin-bottom: 16px;
}
.inner-page-contact-2 #section-1 .envy-map{
    margin-bottom: 60px;
}
.inner-page-contact-2 #section-1 .envy-socials.style-1{
    margin-top: 40px;
    margin-bottom: 50px;
}
@media (max-width: 767px){
    .inner-page-contact-2{
        padding-bottom: 70px;
    }
}
@media (max-width: 479px){
    .inner-page-contact-2{
        padding-bottom: 60px;
    }
}
/*-------------------- CONTACT US 3 --------------------*/
.inner-page-contact-3{
    background-image: url(../images/play2_1500x.jpg);
    background-position: center center;
    background-size: cover;
    padding-bottom: 120px;
}
.inner-page-contact-3 .breadcrumb{
    margin-bottom: 16px;
}
.inner-page-contact-3 #section-1{
    padding-top: 60px;
}
.inner-page-contact-3 #section-1 .envy-heading.style-6{
    margin-bottom: 18px;
}
.inner-page-contact-3 #section-1 .envy-heading.style-8{
    display: inline-block;
    vertical-align: top;
    margin-left: 12px;
    margin-right: 12px;
}
.inner-page-contact-3 #section-1 .envy-socials.style-1{
    margin-top: 19px;
    margin-bottom: 59px;
}
.inner-page-contact-3 .contact-submit input[type="submit"]{
    width: 100%;
}
@media (max-width: 991px){
    .inner-page-contact-3{
        padding-bottom: 100px;
    }
    .inner-page-contact-3 #section-1{
        padding-top: 50px;
    }
}
@media (max-width: 767px){
    .inner-page-contact-3{
        padding-bottom: 80px;
    }
    .inner-page-contact-3 #section-1{
        padding-top: 40px;
    }
}
@media (max-width: 479px){
    .inner-page-contact-3{
        padding-bottom: 60px;
    }
    .inner-page-contact-3 #section-1{
        padding-top: 30px;
    }
}
/*==========================================================================
HEADER BLOCK
===========================================================================*/
/*-------------------- LOGO --------------------*/
.logo a{
    display: inline-block;
    vertical-align: top;
}
/*-------------------- HEADER CUURENCY --------------------*/
.header-currency{
    display: inline-block;
    vertical-align: top;
}
.header-currency .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
.header-currency .link-dropdown:hover{
    opacity: 0.7;
}
.header-currency .link-dropdown::after{
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: '\f107';
    font-size: 13px;
    margin-left: 5px;
    font-weight: 400;
}
/*-------------------- HEADER USER --------------------*/
.header-user{
    display: inline-block;
    vertical-align: top;
}
.header-user .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
.header-user .link-dropdown:hover{
    opacity: 0.7;
}
.header-user .link-dropdown > .icon{
    display: none;
    font-size: 18px;
    margin-right: 5px;
}
.header-user > .sub-menu{
    width: 333px;
    padding: 20px;
    left:auto;
    right:0;
    z-index: 1111111;
}
.header-user .user-head{
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}
.header-user .user-title{
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 20px;
    border-bottom: 2px solid;
    margin-bottom: 10px;
}
.header-user .user-toggle{
    display: inline-block;
    float: right;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
.header-user .user-toggle:not(:hover){
    color: #666;
}
.header-user .register-form{
    display: none;
}
.header-user .user-form::before,
.header-user .user-form::after{
    display: table;
    clear: both;
    content: '';
}
.header-user .user-form p{
    margin-bottom: 10px;
}
.header-user .user-form p label{
    display: block;
    margin: 0;
    font-weight: inherit;
    color: inherit;
}
.header-user .user-form p input[type="text"],
.header-user .user-form p input[type="email"],
.header-user .user-form p input[type="password"],
.header-user .user-form p input[type="submit"]{
    width: 100%;
}
.header-user .user-form .login-rememberme{
    display: inline-block;
    vertical-align: top;
}
.header-user .user-form .login-rememberme label{
    font-weight: 600;
    color: #000;
    cursor: pointer;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
.header-user .user-form .login-rememberme label:hover{
    opacity: 0.7;
}
.header-user .user-form .login-rememberme label > span{
    display: inline-block;
    vertical-align: top;
}
.header-user .user-form .forget-pass{
    display: inline-block;
    float: right;
    font-size: 15px;
}
.header-user .user-form .forget-pass:not(:hover){
    color: #888;
}
.header-user .login-other{
    margin-top: 15px;
}
.header-user .login-other .title{
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}
.header-user .login-other .button{
    width: 100%;
    padding-left: 20px;
    padding-right: 40px;
}
.header-user .login-other .button:not(:last-child){
    margin-bottom: 10px;
}
.header-user .login-other .button span{
    float: left;
    min-width: 20px;
    text-align: left;
}
.header-user .login-other .facebook{
    background-color: #2f446f;
}
.header-user .login-other .google{
    background-color: #e71f1f;
}
/*-------------------- HEADER CART --------------------*/
.header-cart{
    display: inline-block;
    vertical-align: top;
}
.header-cart .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
.header-cart .link-dropdown:hover{
    opacity: 0.7;
}
.header-cart .link-dropdown > *{
    display: inline-block;
    vertical-align: top;
}
.header-cart .link-dropdown .count::before{
    content: '(';
}
.header-cart .link-dropdown .count::after{
    content: ')';
}
.header-cart .sub-menu{
    width: 333px;
    left: auto;
    right: 0;
}
.header-cart .cart-title{
    font-size: 15px;
    line-height: 20px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
}
.header-cart .cart-title span{
    border-bottom: 2px solid;
}
.header-cart .cart-content{
    padding: 20px;
}
.header-cart .cart-list{
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 20px;
}
.header-cart .cart-item:not(:first-child){
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
.header-cart .cart-item:not(:last-child){
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
.header-cart .cart-item::before,
.header-cart .cart-item::after{
    display: table;
    clear: both;
    content: '';
}
.header-cart .cart-item .thumb{
    display: block;
    float: left;
    width: 70px;
    margin-right: 10px;
}
.header-cart .cart-item .thumb img{
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-cart .cart-item .thumb:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.header-cart .cart-item .title{
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-bottom: 0;
}
.header-cart .cart-item .price{
    display: inline-block;
    vertical-align: top;
    font-size: 17px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}
.header-cart .cart-item .quantity{
    display: inline-block;
    vertical-align: top;
    font-size: 17px;
    line-height: 20px;
    color: #aaa;
    font-weight: 600;
}
.header-cart .cart-item .remove{
    margin-bottom: 0;
    color: #aaa;
    padding: 2px 0;
}
.header-cart .cart-item .remove a{
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 12px;
    border: 2px solid;
    text-align: center;
    border-radius: 50%;
}
.header-cart .cart-total p{
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 0;
    border-top: 2px solid #e5e5e5;
    font-weight: 600;
    color: #000;
}
.header-cart .cart-total p span{
    font-size: 18px;
    margin-left: 5px;
}
.header-cart .cart-action .button{
    width: 100%;
}
.header-cart .cart-action .cart{
    width: 100%;
    box-shadow: 0 0 0 2px #ddd inset;
    background-color: transparent;
    color: #000;
    margin-bottom: 10px;
}
/*-------------------- HEADER SEARCH --------------------*/
/* style-1 */
.header-search.style-2 .search-form,
.header-search.style-1 .search-form{
    color: #000;
    font-weight: 600;
    position: relative;
    text-align: left;
}
.header-search.style-2 .search-form::before,
.header-search.style-1 .search-form::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 2px solid;
}
.header-search.style-2 .search-form label,
.header-search.style-1 .search-form label{
    display: block;
    font-weight: inherit;
    color: inherit;
    margin: 0;
}
.header-search.style-2 .search-form .input,
.header-search.style-1 .search-form .input{
    border: none;
    padding: 2px 25px 4px 0;
    height: 30px;
    width: 100%;
}
.header-search.style-2 .search-form .button,
.header-search.style-1 .search-form .button{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 16px;
    line-height: 20px;
    padding: 5px 0;
    background-color: transparent;
    color: inherit;
}
/* style-2 */
.header-search.style-2{
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    text-align: right;
}
.header-search.style-2 .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-search.style-2 .link-dropdown:hover{
    opacity: 0.7;
}
.header-search.style-2 .search-form-wrap{
    height: 0;
    width: 270px;
    position: relative;
    margin-left: auto;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.header-search.style-2 .search-form{
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 270px;
    background-color: #fff;
}
.header-search.style-2:not(.open) .search-form-wrap{
    width: 0;
}
/* style-3 */
.header-search.style-3 .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
.header-search.style-3 .link-dropdown:hover{
    opacity: 0.7;
}
.header-search.style-3.open .search-form-wrap{
    z-index: 100000;
}
.header .header-search.style-3:not(.open) .search-form-wrap{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.header-search.style-3 .search-form-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 100000;
}
.header-search.style-3 .search-form{
    position: relative;
}
.header-search.style-3 .search-form::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    height: 20px;
    background-color: #e5e5e5;
    margin: auto;
}
.header-search.style-3 .search-form label{
    display: block;
    font-weight: inherit;
    color: inherit;
    margin-bottom: 0;
}
.header-search.style-3 .search-form .input{
    width: 100%;
    border: none;
    padding: 11px 25px 11px 12px;
    height: 46px;
}
.header-search.style-3 .search-form .button{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    color: #000;
    width: 25px;
    text-align: right;
    background-color: transparent;
    margin: auto;
}
.header-search.style-3 .search-form .button span{
    margin-top: 0;
}
.header-search.style-3 .search-form .button:hover{
    opacity: 0.7;
}
.header-search.style-4 .search-form .btn-close,
.header-search.style-3 .search-form .btn-close{
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px);
    width: 35px;
    height: 30px;
    margin: auto;
}
.header-search.style-4 .search-form .btn-close::before,
.header-search.style-4 .search-form .btn-close::after,
.header-search.style-3 .search-form .btn-close::before,
.header-search.style-3 .search-form .btn-close::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: #ccc;
    border-radius: 90px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: auto;
}
.header-search.style-4 .search-form .btn-close:not(:hover)::before,
.header-search.style-3 .search-form .btn-close:not(:hover)::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header-search.style-4 .search-form .btn-close:not(:hover)::after,
.header-search.style-3 .search-form .btn-close:not(:hover)::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media (max-width: 1249px){
    .header-search.style-3 .search-form .input{
        padding-right: 70px;
    }
    .header-search.style-3 .search-form .button{
        right: 45px;
    }
    .header-search.style-3 .search-form .btn-close{
        left: auto;
        right: 0;
    }
}
/* style-4 */
.header-search.style-4 .link-dropdown{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-search.style-4 .link-dropdown .text{
    display: none;
}
.header-search.style-4 > .sub-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: #666;
    z-index: 100000;
    padding-top: 130px;
    box-shadow: none;
    overflow-y: auto;
    border: none;
    width: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.header-search.style-4:not(.open) > .sub-menu{
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}
/*-------------------- HEADER MENU --------------------*/
.header-main-menu .main-menu{
    list-style: none;
    font-size: 0;
    line-height: 0;
    margin: 0 -7px;
}
.header-main-menu .main-menu > .menu-item{
    display: inline-block;
    vertical-align: top;
    margin: 0 7px;
}
.header-main-menu .main-menu > .menu-item > a{
    font-size: 16px;
    line-height: 20px;
    padding: 16px 18px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header-main-menu .main-menu > .menu-item:hover > a{
    background-color: #000;
    color: #fff;
}
.header-main-menu .main-menu .menu-item{
    position: relative;
}
.header-main-menu .main-menu .menu-item > a{
    display: block;
    position: relative;
}
.header-main-menu .main-menu .sub-menu .current-menu-item > a,
.header-main-menu .main-menu .sub-menu .parent-menu-item > a{
    font-weight: 600;
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .sub-menu,
.header-main-menu .main-menu > .menu-item > .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    list-style: none;
    padding: 0;
    z-index: 11;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-main-menu .main-menu > .menu-item:not(:hover) > .sub-menu{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .menu-item:not(:hover) > .sub-menu{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .menu-item > a{
    padding: 10px 20px;
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .menu-item:hover > a{
    color: #fff;
    background-color: #000;
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .menu-item-has-children > a::after{
    display: inline-block;
    vertical-align: top;
    float: right;
    font-family: FontAwesome, sans-serif;
    content: '\f105';
    font-size: 12px;
    margin-left: 3px;
    font-weight: 400;
}
.header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .sub-menu{
    top: 0;
    left: 100%;
}
.header-main-menu .main-menu .menu-item .mega-menu{
    padding: 30px 60px 10px;
    border-bottom: 4px solid #000;
}
@media (max-width: 1199px){
    .header-main-menu{
        display: none !important;
    }
}
/*-------------------- HEADER MEGA MENU --------------------*/
/* mega menu 1 */
.mega-menu-1 .envy-image.style-1{
    margin-bottom: 10px;
}
.mega-menu-1 .envy-heading.style-9{
    margin-bottom: 25px;
}
/* mega menu 2 */
.mega-menu-2 .custom-1,
.mega-menu-2 .custom-2{
    width: 24%;
}
.mega-menu-2 .custom-3{
    width: 32%;
}
.mega-menu-2 .custom-4{
    width: 20%;
}
.mega-menu-2 .envy-heading.style-9{
    margin-bottom: 6px;
}
.mega-menu-2 .envy-menu.style-3{
    margin-bottom: 30px;
}
/* mega menu 1 */
.mega-menu-3 .custom-1{
    width: 20%;
}
.mega-menu-3 .custom-2{
    width: 24%;
}
.mega-menu-3 .custom-3{
    width: 56%;
}
.mega-menu-3 .envy-heading.style-9{
    margin-bottom: 6px;
}
.mega-menu-3 .envy-menu.style-3{
    margin-bottom: 30px;
}
.mega-menu-3 .envy-image{
    margin-bottom: 50px;
}
/*-------------------- HEADER STICKY --------------------*/
.header-sticky{
    display: none;
}
.header-sticky .header-mobile-menu a,
.header-sticky .header-main-menu .main-menu > .menu-item > a{
    color: #fff;
}
.header-sticky .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header-sticky .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header-sticky .header-main-menu .main-menu > .menu-item:hover > a{
    background-color: #fff;
    color: #000;
}
.header-sticky .header-search.style-1 .search-form{
    color: #fff;
    margin: 11px 0;
}
@media (min-width: 992px){
    .header-sticky{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #000;
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        z-index: 100001;
        max-width: 100%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .header-sticky:not(.is-sticky){
        box-shadow: none;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
/*-------------------- HEADER MOBILE MENU --------------------*/
.header-mobile-menu a{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 0;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.header-mobile-menu a > *{
    display: inline-block;
    vertical-align: top;
}
.header-mobile-menu a .icon{
    font-size: 0;
    line-height: 0;
}
.header-mobile-menu a .icon{
    position: relative;
    width: 20px;
    font-size: 0;
    line-height: 0;
    padding: 3px 0;
}
.header-mobile-menu a .icon span{
    display: block;
    width: 100%;
    height: 2px;
    border: 1px solid;
}
.header-mobile-menu a .icon span:not(:last-child){
    margin-bottom: 4px;
}
@media (min-width: 992px){
    .header-mobile-menu a .icon{
        display: none !important;
    }
}
@media (min-width: 1200px){
    .header-mobile-menu{
        display: none !important;
    }
}
@media (max-width: 991px){
    .header-mobile-menu a .text{
        display: none !important;
    }
}
/*-------------------- HEADER DROPDOWN --------------------*/
.header .envy-dropdown:not(.open) > .sub-menu{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.header .envy-dropdown > .sub-menu{
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
/*==========================================================================
HEADER
===========================================================================*/
/*-------------------- HEADER 1 --------------------*/
.header.style-1 .header-message{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
    padding: 5px 0;
}
.header.style-1 .header-message > *{
    margin: 0;
}
.header.style-7 .header-search .search-form::before,
.header.style-3 .header-search .search-form::before,
.header.style-1 .header-search .search-form::before{
    border-color: rgba(255,255,255,0.3);
}
/* header-top */
.header.style-1 .header-top{
    border-bottom: 2px solid #e5e5e5;
    padding: 8px 0;
}
.header.style-9 .header-top .header-control,
.header.style-8 .header-top .header-control,
.header.style-7 .header-top .header-control,
.header.style-5 .header-top .header-control,
.header.style-3 .header-top .header-control,
.header.style-2 .header-top .header-control,
.header.style-1 .header-top .header-control{
    display: inline-block;
    vertical-align: top;
    margin: 0 -15px;
}
.header.style-9 .header-top .header-control > *,
.header.style-8 .header-top .header-control > *,
.header.style-7 .header-top .header-control > *,
.header.style-5 .header-top .header-control > *,
.header.style-3 .header-top .header-control > *,
.header.style-2 .header-top .header-control > *,
.header.style-1 .header-top .header-control > *{
    display: inline-block;
    vertical-align: top;
    float: left;
    margin: 0 15px;
}
.header.style-8 .header-top .header-control > * > a,
.header.style-7 .header-top .header-control > * > a,
.header.style-5 .header-top .header-control > * > a,
.header.style-3 .header-top .header-control > * > a,
.header.style-2 .header-top .header-control > * > a,
.header.style-1 .header-top .header-control > * > a{
    position: relative;
}
.header.style-8 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-7 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-5 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-3 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-2 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-1 .header-top .header-control > *:not(:last-child) > a::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: -16px;
    border-right: 2px solid;
    height: 18px;
    opacity: 0.1;
    margin: auto;
    pointer-events: none;
}
/* header-middle */
.header.style-11 .header-middle .header-inner,
.header.style-9 .header-middle .header-inner,
.header.style-1 .header-middle .header-inner{
    padding-top: 28px;
    padding-bottom: 28px;
}
.header.style-11 .header-middle .header-inner > *,
.header.style-9 .header-middle .header-inner > *,
.header.style-7 .header-middle .header-inner > *,
.header.style-6 .header-middle .header-inner > *,
.header.style-5 .header-middle .header-inner > *,
.header.style-2 .header-middle .header-inner > *,
.header.style-1 .header-middle .header-inner > *{
    padding-top: 5px;
    padding-bottom: 5px;
}
.header.style-11 .header-middle .header-socials,
.header.style-9 .header-middle .header-socials,
.header.style-1 .header-middle .header-socials{
    padding-top: 10px;
    padding-bottom: 10px;
}
/* header-bottom */
.header.style-11 .header-bottom,
.header.style-4 .header-bottom,
.header.style-1 .header-bottom{
    background-color: #000;
}
.header.style-11 .header-bottom .header-mobile-menu a,
.header.style-11 .header-bottom .header-main-menu .main-menu > .menu-item > a,
.header.style-4 .header-bottom .header-mobile-menu a,
.header.style-4 .header-bottom .header-main-menu .main-menu > .menu-item > a,
.header.style-1 .header-bottom .header-mobile-menu a,
.header.style-1 .header-bottom .header-main-menu .main-menu > .menu-item > a{
    color: #fff;
}
.header.style-11 .header-bottom .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-11 .header-bottom .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-11 .header-bottom .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-4 .header-bottom .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-4 .header-bottom .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-4 .header-bottom .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-1 .header-bottom .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-1 .header-bottom .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-1 .header-bottom .header-main-menu .main-menu > .menu-item:hover > a{
    background-color: #fff;
    color: #000;
}
.header.style-11 .header-bottom .header-search.style-1 .search-form,
.header.style-1 .header-bottom .header-search.style-1 .search-form{
    margin: 8px 0 14px;
    color: #fff;
}
@media (min-width: 768px){
    .header.style-9 .header-top .header-inner::before,
    .header.style-9 .header-top .header-inner::after,
    .header.style-8 .header-top .header-inner::before,
    .header.style-8 .header-top .header-inner::after,
    .header.style-7 .header-top .header-inner::before,
    .header.style-7 .header-top .header-inner::after,
    .header.style-5 .header-top .header-inner::before,
    .header.style-5 .header-top .header-inner::after,
    .header.style-3 .header-top .header-inner::before,
    .header.style-3 .header-top .header-inner::after,
    .header.style-2 .header-top .header-inner::before,
    .header.style-2 .header-top .header-inner::after,
    .header.style-1 .header-top .header-inner::before,
    .header.style-1 .header-top .header-inner::after{
        display: table;
        clear: both;
        content: '';
    }
    .header.style-9 .header-top .header-left,
    .header.style-8 .header-top .header-left,
    .header.style-7 .header-top .header-left,
    .header.style-5 .header-top .header-left,
    .header.style-3 .header-top .header-left,
    .header.style-1 .header-top .header-left{
        display: inline-block;
        vertical-align: top;
    }
    .header.style-9 .header-top .header-right,
    .header.style-8 .header-top .header-right,
    .header.style-7 .header-top .header-right,
    .header.style-5 .header-top .header-right,
    .header.style-3 .header-top .header-right,
    .header.style-2 .header-top .header-right,
    .header.style-1 .header-top .header-right{
        display: inline-block;
        vertical-align: top;
        float: right;
    }
    .header.style-9 .header-top .header-control > * > .sub-menu,
    .header.style-8 .header-top .header-control > * > .sub-menu,
    .header.style-7 .header-top .header-control > * > .sub-menu,
    .header.style-5 .header-top .header-control > * > .sub-menu,
    .header.style-3 .header-top .header-control > * > .sub-menu,
    .header.style-2 .header-top .header-control > * > .sub-menu,
    .header.style-1 .header-top .header-control > * > .sub-menu{
        left: auto;
        right: 0;
    }
    .header.style-11 .header-middle .header-inner,
    .header.style-9 .header-middle .header-inner,
    .header.style-7 .header-middle .header-inner,
    .header.style-6 .header-middle .header-inner,
    .header.style-5 .header-middle .header-inner,
    .header.style-2 .header-middle .header-inner,
    .header.style-1 .header-middle .header-inner{
        display: table;
        width: 100%;
    }
    .header.style-11 .header-middle .header-inner > *,
    .header.style-9 .header-middle .header-inner > *,
    .header.style-7 .header-middle .header-inner > *,
    .header.style-6 .header-middle .header-inner > *,
    .header.style-5 .header-middle .header-inner > *,
    .header.style-2 .header-middle .header-inner > *,
    .header.style-1 .header-middle .header-inner > *{
        display: table-cell;
        vertical-align: middle;
    }
    .header.style-11 .header-middle .header-left,
    .header.style-11 .header-middle .header-right,
    .header.style-9 .header-middle .header-left,
    .header.style-9 .header-middle .header-right,
    .header.style-7 .header-middle .header-left,
    .header.style-7 .header-middle .header-right,
    .header.style-5 .header-middle .header-left,
    .header.style-5 .header-middle .header-right,
    .header.style-1 .header-middle .header-left,
    .header.style-1 .header-middle .header-right{
        width: 230px;
    }
    .header.style-11 .header-middle .header-left,
    .header.style-9 .header-middle .header-left,
    .header.style-7 .header-middle .header-left,
    .header.style-6 .header-middle .header-left,
    .header.style-5 .header-middle .header-left,
    .header.style-2 .header-middle .header-left,
    .header.style-1 .header-middle .header-left{
        text-align: left;
    }
    .header.style-11 .header-middle .header-center,
    .header.style-9 .header-middle .header-center,
    .header.style-7 .header-middle .header-center,
    .header.style-6 .header-middle .header-center,
    .header.style-5 .header-middle .header-center,
    .header.style-2 .header-middle .header-center,
    .header.style-1 .header-middle .header-center{
        text-align: center;
    }
    .header.style-11 .header-middle .header-right,
    .header.style-9 .header-middle .header-right,
    .header.style-7 .header-middle .header-right,
    .header.style-6 .header-middle .header-right,
    .header.style-5 .header-middle .header-right,
    .header.style-2 .header-middle .header-right,
    .header.style-1 .header-middle .header-right{
        text-align: right;
    }
}
@media (max-width: 767px){
    .header .envy-dropdown{
        position: static;
    }
    .header .envy-dropdown > .sub-menu{
        left: 0;
        right: 0;
        width: auto;
    }
    .header.style-11 .header-middle,
    .header.style-9 .header-top,
    .header.style-9 .header-middle,
    .header.style-8 .header-top,
    .header.style-8 .header-middle,
    .header.style-7 .header-top,
    .header.style-7 .header-middle,
    .header.style-6 .header-middle,
    .header.style-5 .header-top,
    .header.style-5 .header-middle,
    .header.style-3 .header-top,
    .header.style-2 .header-top,
    .header.style-2 .header-middle,
    .header.style-1 .header-top,
    .header.style-1 .header-middle{
        text-align: center;
    }
    .header.style-11 .header-middle .header-inner,
    .header.style-9 .header-middle .header-inner,
    .header.style-1 .header-middle .header-inner{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header.style-11 .header-middle .header-inner > *,
    .header.style-9 .header-top .header-inner > *,
    .header.style-9 .header-middle .header-inner > *,
    .header.style-8 .header-top .header-inner > *,
    .header.style-8 .header-middle .header-inner > *,
    .header.style-7 .header-top .header-inner > *,
    .header.style-7 .header-middle .header-inner > *,
    .header.style-6 .header-middle .header-inner > *,
    .header.style-5 .header-top .header-inner > *,
    .header.style-5 .header-middle .header-inner > *,
    .header.style-3 .header-top .header-inner > *,
    .header.style-2 .header-top .header-inner > *,
    .header.style-2 .header-middle .header-inner > *,
    .header.style-1 .header-top .header-inner > *,
    .header.style-1 .header-middle .header-inner > *{
        position: relative;
    }
    .header.style-9 .header-top .header-control > *,
    .header.style-8 .header-top .header-control > *,
    .header.style-7 .header-top .header-control > *,
    .header.style-5 .header-top .header-control > *,
    .header.style-3 .header-top .header-control > *,
    .header.style-2 .header-top .header-control > *,
    .header.style-1 .header-top .header-control > *{
        float: none;
    }
}
/*-------------------- HEADER 2 --------------------*/
.header.style-10 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-10 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-10 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-8 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-8 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-8 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-7 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-7 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-7 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-6 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-6 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-6 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-5 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-5 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-5 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-3 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-3 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-3 .header-main-menu .main-menu > .menu-item:hover > a,
.header.style-2 .header-main-menu .main-menu > .menu-item.parent-menu-item > a,
.header.style-2 .header-main-menu .main-menu > .menu-item.current-menu-item > a,
.header.style-2 .header-main-menu .main-menu > .menu-item:hover > a{
    background-color: transparent;
    color: #000;
}
.header.style-10 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-8 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-7 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-6 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-5 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-3 .header-main-menu .main-menu > .menu-item > a::before,
.header.style-2 .header-main-menu .main-menu > .menu-item > a::before{
    position: absolute;
    content: '';
    bottom: 15px;
    left: 18px;
    width: calc(100% - 36px);
    border-top: 2px solid;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header.style-10 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-8 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-7 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-6 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-5 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-3 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before,
.header.style-2 .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before{
    width: 0;
}
/* header top */
.header.style-2 .header-top .header-inner{
    border-bottom: 2px solid #e5e5e5;
    padding: 8px 0;
}
/* header middle */
.header.style-2 .header-middle{
    text-align: center;
    padding: 8px 0;
}
.header.style-2 .header-middle .header-socials{
    padding-top: 20px;
    text-align: right;
}
/* header bottom */
.header.style-8 .header-bottom .header-message,
.header.style-2 .header-bottom .header-message{
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 15px;
    background-color: #000;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}
.header.style-8 .header-bottom .header-message > *,
.header.style-2 .header-bottom .header-message > *{
    padding: 5px 0;
    margin: 0;
}
.header.style-8 .header-bottom .header-message > * span,
.header.style-2 .header-bottom .header-message > * span{
    border-bottom: 2px solid;
}
@media (min-width: 768px){
    .header.style-2 .header-top .header-right{
        display: inline-block;
        vertical-align: top;
        float: right;
    }
    .header.style-2 .header-middle .header-right{
        width: 270px;
    }
}
@media (min-width: 992px){
    .header.style-8 .header-bottom .header-message,
    .header.style-2 .header-bottom .header-message{
        display: table;
        width: 100%;
    }
    .header.style-8 .header-bottom .header-message > *,
    .header.style-2 .header-bottom .header-message > *{
        display: table-cell;
        vertical-align: top;
        position: relative;
    }
    .header.style-8 .header-bottom .header-message > *:not(:last-child)::before,
    .header.style-2 .header-bottom .header-message > *:not(:last-child)::before{
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        right: -1px;
        height: 20px;
        margin: auto;
        border-right: 2px solid;
        opacity: 0.3;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .header.style-8 .header-bottom .header-message,
    .header.style-2 .header-bottom .header-message{
        letter-spacing: 0.05em;
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media (max-width: 767px){
    .header.style-2 .header-middle .header-socials{
        text-align: inherit;
        padding: 10px 0;
    }
    .header.style-2 .header-mobile-menu a{
        padding: 2px 0;
    }
    .header.style-2 .header-middle .header-right{
        max-width: 270px;
        margin: auto;
    }
}
/*-------------------- HEADER 3 --------------------*/
/* header-top */
.header.style-7 .header-top,
.header.style-3 .header-top{
    background-color: #000;
    padding: 9px 0;
}
.header.style-7 .header-top .envy-socials.style-1 ul,
.header.style-3 .header-top .envy-socials.style-1 ul{
    margin-left: -6px;
    margin-right: -6px;
}
.header.style-7 .header-top .envy-socials.style-1 ul li,
.header.style-3 .header-top .envy-socials.style-1 ul li{
    margin-left: 6px;
    margin-right: 6px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.header.style-7 .header-top .envy-socials.style-1 ul li a,
.header.style-3 .header-top .envy-socials.style-1 ul li a{
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #000;
    background-color: #fff;
}
.header.style-7 .header-top .header-control > *:not(:last-child) > a::before,
.header.style-3 .header-top .header-control > *:not(:last-child) > a::before{
    opacity: 0.4;
}
.header.style-7 .header-top .header-search.style-2 .search-form,
.header.style-3 .header-top .header-search.style-2 .search-form{
    color: #aaa;
    background-color: #000;
}
.header.style-7 .header-top .header-search.style-2 .search-form::before,
.header.style-3 .header-top .header-search.style-2 .search-form::before{
    bottom: 3px;
}
.header.style-7 .header-top .header-search.style-2 .search-form .button:hover,
.header.style-3 .header-top .header-search.style-2 .search-form .button:hover{
    color: #fff;
    opacity: 1;
}
.header.style-7 .header-top .header-search.style-2 + * > a::before,
.header.style-3 .header-top .header-search.style-2 + * > a::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: -15px;
    border-right: 2px solid;
    height: 18px;
    opacity: 0.4;
    margin: auto;
    pointer-events: none;
}
.header.style-7 .header-top .header-cart .link-dropdown,
.header.style-7 .header-top .header-user .link-dropdown,
.header.style-7 .header-top .header-currency .link-dropdown,
.header.style-7 .header-top .header-search.style-2 .link-dropdown,
.header.style-3 .header-top .header-cart .link-dropdown,
.header.style-3 .header-top .header-user .link-dropdown,
.header.style-3 .header-top .header-currency .link-dropdown,
.header.style-3 .header-top .header-search.style-2 .link-dropdown{
    color: #aaa;
}
.header.style-7 .header-top .header-cart .link-dropdown:hover,
.header.style-7 .header-top .header-user .link-dropdown:hover,
.header.style-7 .header-top .header-currency .link-dropdown:hover,
.header.style-7 .header-top .header-search.style-2 .link-dropdown:hover,
.header.style-3 .header-top .header-cart .link-dropdown:hover,
.header.style-3 .header-top .header-user .link-dropdown:hover,
.header.style-3 .header-top .header-currency .link-dropdown:hover,
.header.style-3 .header-top .header-search.style-2 .link-dropdown:hover{
    color: #fff;
    opacity: 1;
}
/* header-middle */
.header.style-3 .header-middle{
    text-align: center;
    padding: 60px 0 58px;
}
.header.style-3 .header-middle .envy-heading.style-16{
    margin-bottom: 0;
}
@media (max-width: 1199px){
    .header.style-3 .header-middle{
        padding: 50px 0;
    }
}
@media (max-width: 991px){
    .header.style-3 .header-middle{
        padding: 40px 0;
    }
}
@media (max-width: 767px){
    .header.style-3 .header-middle{
        padding: 30px 0;
    }
}
/* header-bottom */
.header.style-3 .header-bottom .header-inner{
    text-align: center;
    border-top: 2px solid #000;
}
/*-------------------- HEADER 4 --------------------*/
/* header-top */
.header.style-4 .header-top{
    padding-top: 18px;
    text-align: right;
}
/* header-middle */
.header.style-4 .header-middle{
    padding-bottom: 30px;
}
.header.style-4 .header-middle .header-control{
    margin-left: -12px;
    margin-right: -12px;
}
.header.style-4 .header-middle .header-control > *{
    display: inline-block;
    vertical-align: top;
    margin-left: 12px;
    margin-right: 12px;
}
/* header-bottom */
.header.style-4 .header-bottom{
    text-align: center;
}
@media (min-width: 768px){
    .header.style-4 .header-middle .header-left{
        display: inline-block;
        vertical-align: top;
    }
    .header.style-4 .header-middle .header-right{
        display: inline-block;
        vertical-align: top;
        float: right;
        padding-top: 30px;
    }
}
@media (max-width: 991px){
    .header.style-4 .header-middle{
        padding-bottom: 20px;
    }
}
@media (max-width: 767px){
    .header.style-4 .header-top,
    .header.style-4 .header-middle{
        text-align: center;
        padding-bottom: 15px;
    }
}
/*-------------------- HEADER 5 --------------------*/
.header.style-5{
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
/* header-top */
.header.style-5 .header-top{
    padding: 8px 0;
    border-bottom: 2px solid #f1f1f1;
}
.header.style-8 .header-top .envy-socials.style-1 ul,
.header.style-5 .header-top .envy-socials.style-1 ul{
    margin-left: -6px;
    margin-right: -6px;
}
.header.style-8 .header-top .envy-socials.style-1 ul li,
.header.style-5 .header-top .envy-socials.style-1 ul li{
    margin-left: 6px;
    margin-right: 6px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.header.style-8 .header-top .envy-socials.style-1 ul li a,
.header.style-5 .header-top .envy-socials.style-1 ul li a{
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
}
/* header-middle */
.header.style-5 .header-middle{
    padding: 20px 0;
}
/* header-message */
.header.style-5 .header-message{
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 15px 0;
    background-color: #000;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}
.header.style-5 .header-message .header-inner > *{
    padding: 5px 0;
    margin: 0;
}
.header.style-5 .header-message .header-inner > * span{
    line-height: 16px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid;
}
/* header-bottom */
.header.style-5 .header-bottom{
    text-align: center;
}
@media (min-width: 768px){
    .header.style-5 .header-top .header-control .header-search.style-3 .search-form-wrap{
        left: 0;
        right: 0;
    }
}
@media (min-width: 992px){
    .header.style-5 .header-message .header-inner{
        display: table;
        width: 100%;
    }
    .header.style-5 .header-message .header-inner > *{
        display: table-cell;
        vertical-align: top;
        position: relative;
    }
    .header.style-5 .header-message .header-inner > *:not(:last-child)::before{
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        right: -1px;
        height: 20px;
        margin: auto;
        border-right: 2px solid;
        opacity: 0.3;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .header.style-5 .header-message{
        letter-spacing: 0.05em;
        padding-left: 5px;
        padding-right: 5px;
    }
}
/*-------------------- HEADER 6 --------------------*/
/* header-top */
.header.style-6 .header-top{
    text-align: center;
    background-color: #000;
    padding: 14px 0;
}
.header.style-6 .header-top .header-message{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.header.style-6 .header-top .header-message > *{
    margin-bottom: 0;
}
.header.style-6 .header-top .header-message > * span{
    border-bottom: 2px solid;
}
/* header-middle */
.header.style-6 .header-middle{
    border-bottom: 2px solid #e5e5e5;
    padding: 20px 0;
}
.header.style-6 .header-middle .header-left > *,
.header.style-6 .header-middle .header-right > *{
    display: inline-block;
    vertical-align: top;
}
.header.style-6 .header-middle .header-left > *:not(:last-child){
    margin-right: 30px;
}
.header.style-6 .header-middle .header-right > *:not(:first-child){
    margin-left: 15px;
}
.header.style-6 .header-middle .header-user .link-dropdown > .icon{
    display: inline-block;
}
.header.style-6 .header-middle .header-user .link-dropdown > .text{
    display: none;
}
@media (min-width: 768px){
    .header.style-6 .header-middle .header-left,
    .header.style-6 .header-middle .header-right{
        width: 380px;
    }
    .header.style-6 .header-middle .header-right .header-search.style-1{
        width: 230px;
    }
}
/* header-bottom */
.header.style-6 .header-bottom{
    text-align: center;
}
/*-------------------- HEADER 7 --------------------*/
.header.style-7{
    border-bottom: 2px solid #e5e5e5;
}
/* header-middle */
.header.style-8 .header-middle,
.header.style-7 .header-middle{
    padding: 20px 0;
}
.header.style-8 .header-middle .header-mobile-menu,
.header.style-7 .header-middle .header-mobile-menu{
    display: inline-block;
    vertical-align: top;
    margin-right: 50px;
}
.header.style-8 .header-middle .header-mobile-menu a,
.header.style-7 .header-middle .header-mobile-menu a{
    padding: 5px 0;
}
@media (max-width: 1199px){
    .header.style-7 .header-middle .header-left,
    .header.style-7 .header-middle .header-right{
        width: auto;
    }
}
@media (max-width: 991px){
    .header.style-8 .header-middle .header-mobile-menu,
    .header.style-7 .header-middle .header-mobile-menu{
        margin-right: 30px;
    }
}
/*-------------------- HEADER 8 --------------------*/
/* header-top */
.header.style-8 .header-top{
    border-bottom: 2px solid #f1f1f1;
    padding: 8px 0;
}
@media (min-width: 768px){
    .header.style-8 .header-middle .header-inner{
        display: table;
        width: 100%;
    }
    .header.style-8 .header-middle .header-inner > *{
        display: table-cell;
        vertical-align: middle;
        padding: 5px 0;
    }
    .header.style-8 .header-middle .header-right{
        text-align: right;
    }
}
/*-------------------- HEADER 9 --------------------*/
/* header-top */
.header.style-9 .header-top{
    background-color: #000;
}
.header.style-9 .header-top .header-user .link-dropdown,
.header.style-9 .header-top .header-currency .link-dropdown,
.header.style-9 .header-top .header-search.style-2 .link-dropdown{
    color: #fff;
}
.header.style-9 .header-top .header-user .link-dropdown:hover,
.header.style-9 .header-top .header-currency .link-dropdown:hover,
.header.style-9 .header-top .header-search.style-2 .link-dropdown:hover{
    opacity: 0.7;
}
.header.style-9 .header-top .header-main-menu .main-menu{
    margin-left: 0;
    margin-right: 0;
}
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item{
    margin-left: 0;
    margin-right: 0;
}
.header.style-9 .header-top .header-mobile-menu a,
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item > a{
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    padding: 14px 20px;
}
.header.style-9 .header-top .header-mobile-menu a,
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item:first-child > a{
    padding-left: 0;
}
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item:not(.parent-menu-item):not(.current-menu-item):not(:hover) > a::before{
    width: 0;
}
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item > a::before{
    position: absolute;
    content: '';
    bottom: 12px;
    left: 18px;
    width: calc(100% - 36px);
    border-top: 2px solid;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header.style-9 .header-top .header-main-menu .main-menu > .menu-item:first-child > a::before{
    left: 0;
    width: calc(100% - 18px);
}
.header.style-9 .header-top .header-search.style-2 .search-form{
    background-color: #000;
    color: #fff;
}
.header.style-9 .header-top .header-right{
    padding: 8px 0;
}
/*-------------------- HEADER 10 --------------------*/
.header.style-10 .header-inner{
    display: table;
    width: 100%;
    padding: 33px 0;
    border-bottom: 2px solid #000;
}
.header.style-10 .header-inner > *{
    display: table-cell;
    vertical-align: middle;
    padding: 5px 0;
}
.header.style-10 .header-right{
    text-align: right;
}
.header.style-10 .header-left > *{
    display: inline-block;
    vertical-align: middle;
}
.header.style-10 .header-right > *{
    display: inline-block;
    vertical-align: middle;
}
.header.style-10 .header-main-menu .main-menu{
    margin-left: -3px;
    margin-right: -3px;
}
.header.style-10 .header-main-menu .main-menu > .menu-item{
    margin-left: 3px;
    margin-right: 3px;
}
.header.style-10 .header-main-menu .main-menu > .menu-item > a{
    font-size: 14px;
}
.header.style-10 .logo{
    margin-right: 50px;
}
/*-------------------- HEADER 11 --------------------*/
.header.style-11 .header-top{
    background-color: #e5e5e5;
}
.header.style-11 .header-top .header-message p{
    font-size: 22px;
    line-height: 30px;
    font-family: HKV, sans-serif;
    color: #000;
    font-style: italic;
    margin-bottom: 0;
    padding: 10px 0;
    text-align: center;
}
.header.style-11 .header-top .header-message p .button{
    display: inline-block;
    vertical-align: top;
    position: relative;
    background-color: transparent;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-transform: none;
    letter-spacing: 0;
}
.header.style-11 .header-top .header-message p .button::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 4px;
    right: 0;
    height: 2px;
    border-bottom: 2px solid;
}
.header.style-11 .header-top .header-message p .button span{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
}
.header.style-11 .header-top{}
.header.style-11 .header-middle .header-left,
.header.style-11 .header-middle .header-right{
    font-size: 0;
    line-height: 0;
}
.header.style-11 .header-middle .header-left > *,
.header.style-11 .header-middle .header-right > *{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 24px;
}
.header.style-11 .header-middle .header-left > *:not(:last-child),
.header.style-11 .header-middle .header-right > *:not(:last-child){
    margin-right: 30px;
}
.header.style-11 .header-middle .header-right > *:not(:last-child) > a::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: -16px;
    width: 1px;
    height: 18px;
    border-left: 1px solid;
    opacity: 0.1;
    content: '';
    margin: auto;
}
@media (min-width: 768px){
    .header.style-11 .header-middle .header-left,
    .header.style-11 .header-middle .header-right{
        width: 500px;
    }
}
/*==========================================================================
PROMOTION BANNER
===========================================================================*/
.promotion-banner .slick-slider .slick-arrow{
    width: 45px;
    height: 60px;
    font-size: 22px;
    line-height: 60px;
    background-color: #aaa;
    color: #fff;
}
.promotion-banner .slick-slider .slick-arrow:hover{
    background-color: #000;
}
.promotion-banner .slick-slider .slick-arrow.prev{
    left: 0;
}
.promotion-banner .slick-slider .slick-arrow.next{
    right: 0;
}
.promotion-banner .banner-slide{
    background-position: center center;
    background-size: cover;
}
.promotion-banner .button{
    padding-left: 45px;
    padding-right: 45px;
}
.promotion-banner.banner-6 .slide-3.slick-current .button-2,
.promotion-banner.banner-6 .slide-3.slick-current .text-1,
.promotion-banner.banner-6 .slide-2.slick-current .text-1,
.promotion-banner.banner-5 .slide-3.slick-current .text-3,
.promotion-banner.banner-5 .slide-3.slick-current .text-1,
.promotion-banner.banner-5 .slide-2.slick-current .text-1,
.promotion-banner.banner-5 .slide-1.slick-current .text-1,
.promotion-banner.banner-4 .slide-3.slick-current .text-1,
.promotion-banner.banner-4 .slide-2.slick-current .text-1,
.promotion-banner.banner-4 .slide-1.slick-current .text-1,
.promotion-banner.banner-3 .slide-3.slick-current .text-2,
.promotion-banner.banner-3 .slide-2.slick-current .text-2,
.promotion-banner.banner-3 .slide-1.slick-current .text-4,
.promotion-banner.banner-3 .slide-1.slick-current .text-2,
.promotion-banner.banner-1 .slide-3.slick-current .text-1,
.promotion-banner.banner-1 .slide-2.slick-current .text-1,
.promotion-banner.banner-1 .slide-1.slick-current .text-1{
    -webkit-animation: fadeInLeft 2.1s;
    -o-animation: fadeInLeft 2.1s;
    animation: fadeInLeft 2.1s;
}
.promotion-banner.banner-6 .slide-3.slick-current .button-1,
.promotion-banner.banner-6 .slide-3.slick-current .text-3,
.promotion-banner.banner-6 .slide-2.slick-current .text-2,
.promotion-banner.banner-5 .slide-3.slick-current .text-2,
.promotion-banner.banner-5 .slide-2.slick-current .text-2,
.promotion-banner.banner-5 .slide-1.slick-current .text-3,
.promotion-banner.banner-4 .slide-3.slick-current .text-2,
.promotion-banner.banner-4 .slide-2.slick-current .text-2,
.promotion-banner.banner-4 .slide-1.slick-current .text-3,
.promotion-banner.banner-3 .slide-3.slick-current .text-3,
.promotion-banner.banner-3 .slide-2.slick-current .text-3,
.promotion-banner.banner-3 .slide-1.slick-current .text-3,
.promotion-banner.banner-1 .slide-3.slick-current .text-3,
.promotion-banner.banner-1 .slide-2.slick-current .text-2,
.promotion-banner.banner-1 .slide-1.slick-current .text-3{
    -webkit-animation: fadeInRight 2.1s;
    -o-animation: fadeInRight 2.1s;
    animation: fadeInRight 2.1s;
}
.promotion-banner.banner-6 .slide-2.slick-current .text-3,
.promotion-banner.banner-6 .slide-1.slick-current .text-3,
.promotion-banner.banner-5 .slide-3.slick-current .text-4,
.promotion-banner.banner-5 .slide-2.slick-current .text-3,
.promotion-banner.banner-5 .slide-1.slick-current .text-4,
.promotion-banner.banner-4 .slide-3.slick-current .text-3,
.promotion-banner.banner-4 .slide-2.slick-current .text-3,
.promotion-banner.banner-4 .slide-1.slick-current .text-4,
.promotion-banner.banner-3 .slide-2.slick-current .text-4,
.promotion-banner.banner-3 .slide-1.slick-current .text-6,
.promotion-banner.banner-3 .slide-1.slick-current .text-5,
.promotion-banner.banner-1 .slide-2.slick-current .text-3,
.promotion-banner.banner-1 .slide-1.slick-current .text-4{
    -webkit-animation: fadeInUp 2.1s;
    -o-animation: fadeInUp 2.1s;
    animation: fadeInUp 2.1s;
}
.promotion-banner.banner-6 .slide-3.slick-current .text-4,
.promotion-banner.banner-6 .slide-1.slick-current .text-1,
.promotion-banner.banner-3 .slide-3.slick-current .text-1,
.promotion-banner.banner-3 .slide-2.slick-current .text-1,
.promotion-banner.banner-3 .slide-1.slick-current .text-1{
    -webkit-animation: fadeInDown 2.1s;
    -o-animation: fadeInDown 2.1s;
    animation: fadeInDown 2.1s;
}
.promotion-banner.banner-6 .slide-3.slick-current .text-2,
.promotion-banner.banner-6 .slide-1.slick-current .text-2,
.promotion-banner.banner-5 .slide-1.slick-current .text-2,
.promotion-banner.banner-4 .slide-1.slick-current .text-2,
.promotion-banner.banner-1 .slide-3.slick-current .text-2,
.promotion-banner.banner-1 .slide-1.slick-current .text-2{
    -webkit-animation: zoomIn 2.1s;
    -o-animation: zoomIn 2.1s;
    animation: zoomIn 2.1s;
}
.promotion-banner .banner-slide.slick-current .button{
    -webkit-animation: flipInX 2.1s;
    -o-animation: flipInX 2.1s;
    animation: flipInX 2.1s;
}
@media (max-width: 991px){
    .promotion-banner .slick-slider .slick-arrow{
        width: 30px;
        height: 45px;
        font-size: 14px;
        line-height: 45px;
    }
}
@media (max-width: 767px){
    .promotion-banner .button{
        padding-left: 35px;
        padding-right: 35px;
    }
}
/*-------------------- BANNER 1 --------------------*/
.promotion-banner.banner-1 .slide-1{
    background-image: url(../images/banner-01/banner-1.jpg);
}
.promotion-banner.banner-1 .slide-2{
    background-image: url(../images/banner-01/banner-2.jpg);
}
.promotion-banner.banner-1 .slide-3{
    background-image: url(../images/banner-01/banner-3.jpg);
}
.promotion-banner.banner-1 .slide-1 .slide-content{
    max-width: 530px;
    padding: 116px 50px 134px;
    text-align: center;
}
.promotion-banner.banner-1 .slide-1 .text-1{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: -12px;
}
.promotion-banner.banner-1 .slide-1 .text-2{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-style: italic;
    color: #000;
    margin-bottom: 2px;
}
.promotion-banner.banner-1 .slide-1 .text-3{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 20px;
}
.promotion-banner.banner-1 .slide-1 .text-4{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    margin-bottom: 36px;
}
.promotion-banner.banner-1 .slide-2 .slide-content{
    max-width: 595px;
    text-align: right;
    padding: 157px 50px 193px;
}
.promotion-banner.banner-1 .slide-2 .text-1{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 62px;
    letter-spacing: 0.2em;
    margin-right: -0.2em;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-1 .slide-2 .text-2{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 62px;
    letter-spacing: 0.2em;
    margin-right: -0.2em;
    color: #000;
    margin-bottom: 8px;
}
.promotion-banner.banner-1 .slide-2 .text-3{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 44px;
}
.promotion-banner.banner-1 .slide-3 .slide-content{
    max-width: 570px;
    margin-left: auto;
    text-align: center;
    padding: 76px 130px 126px;
}
.promotion-banner.banner-1 .slide-3 .text-1{
    font-family: HKV, sans-serif;
    font-size: 86px;
    line-height: 80px;
    color: #000;
    margin-bottom: -10px;
}
.promotion-banner.banner-1 .slide-3 .text-2{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 60px;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-right: -0.1em;
    color: #000;
    margin-bottom: 6px;
}
.promotion-banner.banner-1 .slide-3 .text-3{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 60px;
    color: #000;
    margin-bottom: 20px;
}
.promotion-banner.banner-1 .slide-3 .text-4{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 20px;
    font-style: italic;
    color: #000;
    margin-bottom: 98px;
}
@media (max-width: 991px){
    .promotion-banner.banner-1 .slide-1 .slide-content{
        max-width: 370px;
        padding: 70px 0 80px;
    }
    .promotion-banner.banner-1 .slide-1 .text-1{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: -7px;
    }
    .promotion-banner.banner-1 .slide-1 .text-2{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-1 .slide-1 .text-3{
        font-size: 60px;
        line-height: 60px;
    }
    .promotion-banner.banner-1 .slide-1 .text-4{
        font-size: 15px;
        margin-bottom: 21px;
    }
    .promotion-banner.banner-1 .slide-2 .slide-content{
        max-width: 415px;
        padding: 90px 0 132px;
    }
    .promotion-banner.banner-1 .slide-2 .text-1,
    .promotion-banner.banner-1 .slide-2 .text-2{
        font-size: 50px;
        line-height: 50px;
    }
    .promotion-banner.banner-1 .slide-2 .text-3{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .promotion-banner.banner-1 .slide-3 .slide-content{
        max-width: 330px;
        padding: 35px 30px 58px;
    }
    .promotion-banner.banner-1 .slide-3 .text-1{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: -5px;
    }
    .promotion-banner.banner-1 .slide-3 .text-2,
    .promotion-banner.banner-1 .slide-3 .text-3{
        font-size: 50px;
        line-height: 50px;
    }
    .promotion-banner.banner-1 .slide-3 .text-4{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 60px;
    }

    .promotion-banner.banner-1 .slide-3 .slide-content,
    .promotion-banner.banner-1 .slide-2 .slide-content,
    .promotion-banner.banner-1 .slide-1 .slide-content{
        position: absolute;
        background-color: rgba(255, 255, 255, 0.8);
        color: rgb(255, 255, 255);
        border-color: rgb(102, 102, 102);
        width: 290px;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-width: inherit;
        padding: 30px 15px 30px;
    }
    .promotion-banner.banner-1 .slide-1 .text-1{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: -2px;
    }
    .promotion-banner.banner-1 .slide-1 .text-2{
        font-size: 30px;
        line-height: 30px;
    }
    .promotion-banner.banner-1 .slide-1 .text-3{
        font-size: 50px;
        line-height: 50px;
    }
    .promotion-banner.banner-1 .slide-1 .text-4{
        font-size: 14px;
    }
    .promotion-banner.banner-1 .slide-2 .text-1,
    .promotion-banner.banner-1 .slide-2 .text-2{
        font-size: 40px;
        line-height: 40px;
        letter-spacing: 0.1em;
        margin-right: -0.1em;
    }
    .promotion-banner.banner-1 .slide-2 .text-3{
        font-size: 18px;
        line-height: 24px;
    }
    .promotion-banner.banner-1 .slide-3 .text-1{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: -3px;
    }
    .promotion-banner.banner-1 .slide-3 .text-2,
    .promotion-banner.banner-1 .slide-3 .text-3{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-1 .slide-3 .text-4{
        line-height: 24px;
        margin-bottom: 25px;
    }
    .promotion-banner.banner-1 .slide-1,
    .promotion-banner.banner-1 .slide-2,
    .promotion-banner.banner-1 .slide-3{
        min-height: 370px;
    }
}

/*-------------------- BANNER 2 --------------------*/
.promotion-banner.banner-2 .banner-slide{
    background-image: url(../images/banner-02/banner-1.jpg);
    text-align: center;
}
.promotion-banner.banner-2 .banner-slide .slide-content{
    max-width: 570px;
    padding: 77px 15px 260px;
    margin: auto;
}
.promotion-banner.banner-2 .banner-slide .text-1{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-2 .banner-slide .text-2{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-style: italic;
    color: #000;
    margin-bottom: 2px;
}
.promotion-banner.banner-2 .banner-slide .text-3{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 18px;
}
.promotion-banner.banner-2 .banner-slide .text-4{
    font-family: HKV, sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-style: italic;
    color: #333;
    margin-bottom: 0;
}
.promotion-banner.banner-2 .banner-slide .text-5{
    font-family: HKV, sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333;
    font-style: italic;
    margin-bottom: 43px;
}
.promotion-banner.banner-2 .banner-slide .text-5 span{
    color: #000;
    text-decoration: underline;
}
.promotion-banner.banner-2 .banner-slide .group-button{
    font-size: 0;
    line-height: 0;
    margin: 0 -15px -30px;
}
.promotion-banner.banner-2 .banner-slide .button{
    min-width: 210px;
    margin: 0 15px 30px;
}
@media (max-width: 1199px){
    .promotion-banner.banner-2 .banner-slide .slide-content{
        padding-top: 40px;
        padding-bottom: 200px;
    }
}
@media (max-width: 991px){
    .promotion-banner.banner-2 .banner-slide .slide-content{
        padding-top: 40px;
        padding-bottom: 200px;
    }
    .promotion-banner.banner-2 .banner-slide .text-1{
        font-size: 60px;
        line-height: 60px;
    }
    .promotion-banner.banner-2 .banner-slide .text-2{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 1px;
    }
    .promotion-banner.banner-2 .banner-slide .text-3{
        font-size: 60px;
        line-height: 60px;
    }
    .promotion-banner.banner-2 .banner-slide .text-4{
        font-size: 16px;
    }
    .promotion-banner.banner-2 .banner-slide .text-5{
        font-size: 16px;
        margin-bottom: 60px;
    }
    .promotion-banner.banner-2 .banner-slide .group-button{
        margin: 0 -10px -20px;
    }
    .promotion-banner.banner-2 .banner-slide .button{
        min-width: 190px;
        margin: 0 10px 20px;
        padding-left: 35px;
        padding-right: 35px;
    }
}
@media (max-width: 767px){
    .promotion-banner.banner-2 .banner-slide{
        height: 430px;
        position: relative;
    }
    .promotion-banner.banner-2 .banner-slide .slide-content{
        padding: 30px 10px 30px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate( -50% , -50%);
        -moz-transform: translate( -50% , -50%);
        -ms-transform: translate( -50% , -50%);
        -o-transform: translate( -50% , -50%);
        transform: translate( -50% , -50%);
        width: 380px;
        background-color: rgba(255, 255, 255, 0.8);
        color: rgb(255, 255, 255);
        border-color: rgb(102, 102, 102);

    }
    .promotion-banner.banner-2 .banner-slide .text-1{
        font-size: 35px;
        line-height: 40px;
    }
    .promotion-banner.banner-2 .banner-slide .text-2{
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .promotion-banner.banner-2 .banner-slide .text-3{
        font-size: 35px;
        line-height: 40px;
    }
    .promotion-banner.banner-2 .banner-slide .text-4{
        font-size: 21px;
    }
    .promotion-banner.banner-2 .banner-slide .text-5{
        font-size: 20px;
        margin-bottom: 30px;
        margin-top: 12px;
    }
    .promotion-banner.banner-2 .banner-slide .text-5 span{
        text-decoration: none;
        font-weight: 700;
    }
    .promotion-banner.banner-2 .banner-slide .group-button{
        margin: 0 -5px -10px;
    }
    .promotion-banner.banner-2 .banner-slide .button{
        min-width: 130px;
        font-size: 13px;
        padding: 6px 10px;
        letter-spacing: 0;
        margin: 0 5px 10px;
    }
}

@media (max-width: 479px){
    .promotion-banner.banner-2 .banner-slide .slide-content{
        width: auto;
        left: 10px;
        right: 10px;
        -webkit-transform: translate( 0 , -50%);
        -moz-transform: translate( 0 , -50%);
        -ms-transform: translate( 0 , -50%);
        -o-transform: translate( 0 , -50%);
        transform: translate( 0 , -50%);
        padding: 15px 10px ;
    }
    .promotion-banner.banner-2 .banner-slide .group-button{
        margin: 0;
        display: inline-block;
    }
    .promotion-banner.banner-2 .banner-slide .button{
        min-width: 115px;
        margin: 0 0 10px;
        float: left;
    }
    .promotion-banner.banner-2 .banner-slide .button:nth-child(odd){
        clear: left;
        margin-right: 10px;
    }
}

/*-------------------- BANNER 3 --------------------*/
.promotion-banner.banner-3 .slide-1{
    background-image: url(../images/banner-03/banner-1.jpg);
}
.promotion-banner.banner-3 .slide-2{
    background-image: url(../images/banner-03/banner-2.jpg);
}
.promotion-banner.banner-3 .slide-3{
    background-image: url(../images/banner-03/banner-3.jpg);
}
.promotion-banner.banner-3 .slide-1 .slide-content{
    max-width: 400px;
    padding: 134px 15px 146px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.promotion-banner.banner-3 .slide-1 .text-1{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 45px;
}
.promotion-banner.banner-3 .slide-1 .text-2,
.promotion-banner.banner-3 .slide-1 .text-3,
.promotion-banner.banner-3 .slide-1 .text-4{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-3 .slide-1 .text-2 span,
.promotion-banner.banner-3 .slide-1 .text-3 span,
.promotion-banner.banner-3 .slide-1 .text-4 span{
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 3px #000;
}
.promotion-banner.banner-3 .slide-1 .text-4{
    margin-bottom: 56px;
}
.promotion-banner.banner-3 .slide-1 .text-5,
.promotion-banner.banner-3 .slide-1 .text-6{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-3 .slide-1 .text-6{
    margin-bottom: 45px;
}
.promotion-banner.banner-3 .slide-1 .text-6 span{
    text-decoration: underline;
}
.promotion-banner.banner-3 .slide-2 .slide-content{
    max-width: 600px;
    padding: 185px 100px 227px;
    text-align: center;
}
.promotion-banner.banner-3 .slide-2 .text-1{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 10px;
}
.promotion-banner.banner-3 .slide-2 .text-2,
.promotion-banner.banner-3 .slide-2 .text-3{
    font-family: HKV, sans-serif;
    font-size: 90px;
    line-height: 80px;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-3 .slide-2 .text-3{
    margin-bottom: 47px;
}
.promotion-banner.banner-3 .slide-2 .text-4{
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.3em;
    color: #000;
    margin-bottom: 65px;
}
.promotion-banner.banner-3 .slide-2 .text-4 span{
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 23px;
}
.promotion-banner.banner-3 .slide-2 .text-4 span::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 23px;
    border-top: 2px solid;
}
.promotion-banner.banner-3 .slide-2 .text-4 span::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 23px;
    border-top: 2px solid;
}
.promotion-banner.banner-3 .slide-3 .slide-content{
    max-width: 600px;
    text-align: center;
    padding: 50px 15px 83px;
    margin-left: auto;
    margin-right: auto;
}
.promotion-banner.banner-3 .slide-3 .text-1{
    font-family: HKV, sans-serif;
    font-size: 68px;
    line-height: 70px;
    color: #000;
    margin-bottom: 30px;
}
.promotion-banner.banner-3 .slide-3 .text-1 span{
    display: inline-block;
    vertical-align: top;
    border-bottom: 3px solid;
}
.promotion-banner.banner-3 .slide-3 .text-2{
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
.promotion-banner.banner-3 .slide-3 .text-3{
    font-size: 24px;
    line-height: 30px;
    color: #000;
    margin-bottom: 440px;
}
.promotion-banner.banner-3 .slide-3 .text-3 span{
    text-decoration: underline;
    font-weight: 600;
}
.promotion-banner.banner-3 .slide-3 .group-button{
    font-size: 0;
    line-height: 0;
    margin: 0 -15px -30px;
}
.promotion-banner.banner-3 .slide-3 .button{
    min-width: 210px;
    margin: 0 15px 30px;
}
@media (max-width: 1199px){
    .promotion-banner.banner-3 .slide-1 .slide-content{
        padding: 98px 15px 115px;
    }
    .promotion-banner.banner-3 .slide-1 .text-1{
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 25px;
    }
    .promotion-banner.banner-3 .slide-1 .text-2,
    .promotion-banner.banner-3 .slide-1 .text-3,
    .promotion-banner.banner-3 .slide-1 .text-4{
        font-size: 75px;
        line-height: 75px;
    }
    .promotion-banner.banner-3 .slide-1 .text-4{
        margin-bottom: 35px;
    }
    .promotion-banner.banner-3 .slide-1 .text-5,
    .promotion-banner.banner-3 .slide-1 .text-6{
        font-size: 22px;
        line-height: 26px;
    }
    .promotion-banner.banner-3 .slide-1 .text-6{
        margin-bottom: 30px;
    }
    .promotion-banner.banner-3 .slide-2 .slide-content{
        max-width: 460px;
        padding: 146px 30px 148px;
    }
    .promotion-banner.banner-3 .slide-2 .text-1{
        font-size: 22px;
    }
    .promotion-banner.banner-3 .slide-2 .text-2,
    .promotion-banner.banner-3 .slide-2 .text-3{
        font-size: 85px;
        line-height: 75px;
    }
    .promotion-banner.banner-3 .slide-2 .text-3{
        margin-bottom: 35px;
    }
    .promotion-banner.banner-3 .slide-2 .text-4{
        margin-bottom: 55px;
    }
    .promotion-banner.banner-3 .slide-3 .slide-content{
        padding: 30px 15px 60px;
    }
    .promotion-banner.banner-3 .slide-3 .text-1{
        font-size: 62px;
        line-height: 62px;
        margin-bottom: 25px;
    }
    .promotion-banner.banner-3 .slide-3 .text-3{
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 350px;
    }
}
@media (max-width: 991px){
    .promotion-banner.banner-3 .slide-1 .slide-content{
        padding: 72px 15px 77px;
    }
    .promotion-banner.banner-3 .slide-1 .text-1{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .promotion-banner.banner-3 .slide-1 .text-2,
    .promotion-banner.banner-3 .slide-1 .text-3,
    .promotion-banner.banner-3 .slide-1 .text-4{
        font-size: 70px;
        line-height: 70px;
    }
    .promotion-banner.banner-3 .slide-1 .text-4{
        margin-bottom: 20px;
    }
    .promotion-banner.banner-3 .slide-1 .text-5,
    .promotion-banner.banner-3 .slide-1 .text-6{
        font-size: 20px;
        line-height: 24px;
    }
    .promotion-banner.banner-3 .slide-1 .text-6{
        margin-bottom: 20px;
    }
    .promotion-banner.banner-3 .slide-2 .slide-content{
        padding: 109px 30px 120px;
    }
    .promotion-banner.banner-3 .slide-2 .text-1{
        font-size: 20px;
        margin-bottom: 0;
    }
    .promotion-banner.banner-3 .slide-2 .text-2,
    .promotion-banner.banner-3 .slide-2 .text-3{
        font-size: 75px;
        line-height: 65px;
    }
    .promotion-banner.banner-3 .slide-2 .text-3{
        margin-bottom: 20px;
    }
    .promotion-banner.banner-3 .slide-2 .text-4{
        font-size: 20px;
        margin-bottom: 35px;
    }
    .promotion-banner.banner-3 .slide-3 .slide-content{
        padding: 34px 15px 50px;
    }
    .promotion-banner.banner-3 .slide-3 .text-1{
        font-size: 52px;
        line-height: 55px;
        margin-bottom: 15px;
    }
    .promotion-banner.banner-3 .slide-3 .text-2{
        font-size: 35px;
        line-height: 45px;
    }
    .promotion-banner.banner-3 .slide-3 .text-3{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 250px;
    }
}
@media (max-width: 767px){
    .promotion-banner.banner-3 .slide-1,
    .promotion-banner.banner-3 .slide-2,
    .promotion-banner.banner-3 .slide-3{
        height: 450px;
        position: relative;
    }
    .promotion-banner.banner-3 .slide-3 .slide-content,
    .promotion-banner.banner-3 .slide-2 .slide-content,
    .promotion-banner.banner-3 .slide-1 .slide-content{
        padding: 20px 10px 30px;
        position: absolute;
        width: 400px;
        top: 50%;
        left: 50%;
        margin: 0;
        -webkit-transform: translate( -50% , -50%);
        -moz-transform: translate( -50% , -50%);
        -ms-transform: translate( -50% , -50%);
        -o-transform: translate( -50% , -50%);
        transform: translate( -50% , -50%);
        background-color: rgba(255, 255, 255, 0.8);
        color: rgb(255, 255, 255);
        border-color: rgb(102, 102, 102);
    }
    .promotion-banner.banner-3 .slide-1 .text-2,
    .promotion-banner.banner-3 .slide-1 .text-3,
    .promotion-banner.banner-3 .slide-1 .text-4{
        font-size: 40px;
        line-height: 50px;
    }
    .promotion-banner.banner-3 .slide-1 .text-5{
        margin-bottom: 10px;
    }
    .promotion-banner.banner-3 .slide-2 .text-2,
    .promotion-banner.banner-3 .slide-2 .text-3{
        font-size: 41px;
        line-height: 45px;
    }
    .promotion-banner.banner-3 .slide-2 .text-4{
        font-size: 16px;
    }
    .promotion-banner.banner-3 .slide-3 .text-1{
        font-size: 36px;
        line-height: 45px;
    }
    .promotion-banner.banner-3 .slide-3 .text-2{
        font-size: 28px;
        line-height: 32px;
    }
    .promotion-banner.banner-3 .slide-3 .text-3{
        margin-bottom: 20px;
        margin-top: 5px;
    }
    .promotion-banner.banner-3 .slide-1 .text-6 span{
        font-weight: 700;
        text-decoration: none;
    }
    .promotion-banner.banner-3 .slide-3 .group-button{
        margin: 0 -5px -10px;
    }
    .promotion-banner.banner-3 .slide-3 .button{
        min-width: 130px;
        font-size: 13px;
        padding: 6px 10px;
        letter-spacing: 0;
        margin: 0 5px 10px;
    }
}

@media (max-width: 479px){
    .promotion-banner.banner-3 .slide-3 .slide-content,
    .promotion-banner.banner-3 .slide-2 .slide-content,
    .promotion-banner.banner-3 .slide-1 .slide-content{
        width: auto;
        left: 10px;
        right: 10px;
        -webkit-transform: translate( 0 , -50%);
        -moz-transform: translate( 0 , -50%);
        -ms-transform: translate( 0 , -50%);
        -o-transform: translate( 0 , -50%);
        transform: translate( 0 , -50%);
        max-width: initial;
    }
    .promotion-banner.banner-3 .slide-2 .button{
        padding-left: 20px;
        padding-right: 20px;
    }
    .promotion-banner.banner-3 .slide-3 .text-1{
        font-size: 33px;
    }
}

/*-------------------- BANNER  --------------------*/
.promotion-banner.banner-4 .slide-1{
    background-image: url(../images/banner-04/banner-1.jpg);
}
.promotion-banner.banner-4 .slide-2{
    background-image: url(../images/banner-04/banner-2.jpg);
}
.promotion-banner.banner-4 .slide-3{
    background-image: url(../images/banner-04/banner-3.jpg);
}
.promotion-banner.banner-4 .slide-2 .slide-content,
.promotion-banner.banner-4 .slide-1 .slide-content{
    max-width: 530px;
    padding: 116px 50px 134px;
    text-align: center;
}
.promotion-banner.banner-4 .slide-2 .text-1,
.promotion-banner.banner-4 .slide-1 .text-1{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: -12px;
}
.promotion-banner.banner-4 .slide-2 .text-2,
.promotion-banner.banner-4 .slide-1 .text-2{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-style: italic;
    color: #000;
    margin-bottom: 2px;
}
.promotion-banner.banner-4 .slide-2 .text-3,
.promotion-banner.banner-4 .slide-1 .text-3{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 20px;
}
.promotion-banner.banner-4 .slide-2 .text-4,
.promotion-banner.banner-4 .slide-1 .text-4{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    margin-bottom: 36px;
}
.promotion-banner.banner-4 .slide-3 .slide-content{
    text-align: center;
    padding: 148px 30px 180px;
}
.promotion-banner.banner-4 .slide-3 .text-1{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-style: italic;
    color: #fff;
    padding-right: 180px;
    margin-bottom: -19px;
}
.promotion-banner.banner-4 .slide-3 .text-2{
    font-family: HKV, sans-serif;
    font-size: 96px;
    line-height: 90px;
    color: #fff;
    margin-bottom: 15px;
}
.promotion-banner.banner-4 .slide-3 .text-3{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #fff;
    margin-bottom: 52px;
}
@media (max-width: 991px){
    .promotion-banner.banner-4 .slide-3,
    .promotion-banner.banner-4 .slide-2,
    .promotion-banner.banner-4 .slide-1{
        height: 430px;
        position: relative;
    }
    .promotion-banner.banner-4 .slide-3 .slide-content,
    .promotion-banner.banner-4 .slide-2 .slide-content,
    .promotion-banner.banner-4 .slide-1 .slide-content{
        width: 430px;
        padding: 30px 40px;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.8);
        color: rgb(255, 255, 255);
        border-color: rgb(102, 102, 102);
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .promotion-banner.banner-4 .slide-3 .slide-content{
        width: 500px;
    }
    .promotion-banner.banner-4 .slide-2 .text-1,
    .promotion-banner.banner-4 .slide-1 .text-1{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: -7px;
    }
    .promotion-banner.banner-4 .slide-2 .text-2,
    .promotion-banner.banner-4 .slide-1 .text-2{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-4 .slide-2 .text-3,
    .promotion-banner.banner-4 .slide-1 .text-3{
        font-size: 60px;
        line-height: 60px;
    }
    .promotion-banner.banner-4 .slide-2 .text-4,
    .promotion-banner.banner-4 .slide-1 .text-4{
        font-size: 15px;
        margin-bottom: 21px;
    }
    .promotion-banner.banner-4 .slide-3 .text-1{
        font-size: 50px;
        padding-right: 0;
        color: #000000;
        text-align: left;
        padding-left: 5px;
        margin-bottom: -27px;
    }
    .promotion-banner.banner-4 .slide-3 .text-2{
        font-size: 83px;
        margin-bottom: 13px;
        color: #000000;
    }
    .promotion-banner.banner-4 .slide-3 .text-3{
        margin-bottom: 45px;
        color: #000000;
    }
}
@media (max-width: 767px){
    .promotion-banner.banner-4 .slide-3,
    .promotion-banner.banner-4 .slide-2,
    .promotion-banner.banner-4 .slide-1{
        height: 370px;
    }
    .promotion-banner.banner-4 .slide-2 .text-1,
    .promotion-banner.banner-4 .slide-1 .text-1{
        font-size: 40px;
        line-height: 50px;
        margin-bottom: -2px;
    }
    .promotion-banner.banner-4 .slide-2 .text-2,
    .promotion-banner.banner-4 .slide-1 .text-2{
        font-size: 30px;
        line-height: 30px;
    }
    .promotion-banner.banner-4 .slide-2 .text-3,
    .promotion-banner.banner-4 .slide-1 .text-3{
        font-size: 40px;
        line-height: 50px;
    }
    .promotion-banner.banner-4 .slide-2 .text-4,
    .promotion-banner.banner-4 .slide-1 .text-4{
        font-size: 14px;
    }
    .promotion-banner.banner-4 .slide-3 .slide-content{
        width: 400px;
    }
    .promotion-banner.banner-4 .slide-3 .text-1{
        font-size: 30px;
        line-height: 35px;
        padding: 0;
        text-align: center;
        margin-bottom: 5px;
    }
    .promotion-banner.banner-4 .slide-3 .text-2{
        font-size: 40px;
        line-height: 60px;
    }
    .promotion-banner.banner-4 .slide-3 .text-3{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}
@media (max-width: 479px){
    .promotion-banner.banner-4 .slide-2 .slide-content,
    .promotion-banner.banner-4 .slide-1 .slide-content,
    .promotion-banner.banner-4 .slide-3 .slide-content{
        padding-left: 10px;
        padding-right: 10px;
        left: 10px;
        width: auto;
        max-width: 100%;
        right: 10px;
        -webkit-transform: translate( 0 , -50%);
        -moz-transform: translate( 0 , -50%);
        -ms-transform: translate( 0 , -50%);
        -o-transform: translate( 0 , -50%);
        transform: translate( 0 , -50%);
    }
    .promotion-banner.banner-4 .slide-3 .text-1{
        margin-bottom: -4px;
    }
    .promotion-banner.banner-4 .slide-1 .button,
    .promotion-banner.banner-4 .slide-3 .button{
        padding-left: 20px;
        padding-right: 20px;
    }
}
/*-------------------- BANNER 5 --------------------*/
.promotion-banner.banner-5 .slide-1{
    background-image: url(../images/banner-05/banner-1.jpg);
}
.promotion-banner.banner-5 .slide-2{
    background-image: url(../images/banner-05/banner-2.jpg);
}
.promotion-banner.banner-5 .slide-3{
    background-image: url(../images/banner-05/banner-3.jpg);
}
.promotion-banner.banner-5 .slide-1 .slide-content{
    max-width: 470px;
    padding: 116px 20px 134px;
    text-align: center;
    margin-left: auto;
    margin-right: 100px;
}
.promotion-banner.banner-5 .slide-1 .text-1{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: -12px;
}
.promotion-banner.banner-5 .slide-1 .text-2{
    font-family: HKV, sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-style: italic;
    color: #000;
    margin-bottom: 2px;
}
.promotion-banner.banner-5 .slide-1 .text-3{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin-bottom: 20px;
}
.promotion-banner.banner-5 .slide-1 .text-4{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    margin-bottom: 36px;
}
.promotion-banner.banner-5 .slide-2 .slide-content{
    max-width: 570px;
    padding: 158px 15px 187px;
    margin-left: 100px;
    text-align: center;
}
.promotion-banner.banner-5 .slide-2 .text-1{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 70px;
    color: #000;
    font-style: italic;
    margin-bottom: -16px;
    padding-right: 198px;
}
.promotion-banner.banner-5 .slide-2 .text-1 span{
    display: inline-block;
    vertical-align: bottom;
    font-size: 68px;
    font-style: normal;
    margin-bottom: -5px;
}
.promotion-banner.banner-5 .slide-2 .text-2{
    font-family: HKV, sans-serif;
    font-size: 120px;
    line-height: 100px;
    color: #000;
    margin-bottom: 4px;
}
.promotion-banner.banner-5 .slide-2 .text-3{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #000;
    margin-bottom: 23px;
}
.promotion-banner.banner-5 .slide-3 .slide-content{
    max-width: 430px;
    padding: 150px 30px 206px;
    text-align: center;
    margin-left: auto;
    margin-right: 140px;
}
.promotion-banner.banner-5 .slide-3 .text-1{
    padding-right: 70px;
}
.promotion-banner.banner-5 .slide-3 .text-1,
.promotion-banner.banner-5 .slide-3 .text-2,
.promotion-banner.banner-5 .slide-3 .text-3{
    font-family: HKV, sans-serif;
    font-size: 86px;
    line-height: 70px;
    color: #000;
    margin-bottom: -8px;
}
.promotion-banner.banner-5 .slide-3 .text-3{
    font-style: italic;
    margin-bottom: 10px;
}
.promotion-banner.banner-5 .slide-3 .text-4{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 20px;
    font-style: italic;
    color: #000;
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .promotion-banner.banner-5 .slide-1 .slide-content {
        margin-right: 0;
        padding-top: 90px;
        padding-bottom: 110px;
    }
    .promotion-banner.banner-5 .slide-2 .slide-content {
        margin-left: 0;
        padding-top: 133px;
        padding-bottom: 162px;
    }
    .promotion-banner.banner-5 .slide-3 .slide-content {
        margin-right: 0;
        padding-top: 125px;
        padding-bottom: 181px;
    }
}
@media (max-width: 991px){
    .promotion-banner.banner-5 .slide-1 .slide-content{
        max-width: 450px;
        padding: 70px 15px 84px;
    }
    .promotion-banner.banner-5 .slide-1 .text-1{
        font-size: 70px;
        line-height: 70px;
        margin-bottom: -10px;
    }
    .promotion-banner.banner-5 .slide-1 .text-2{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 0;
    }
    .promotion-banner.banner-5 .slide-1 .text-3{
        font-size: 70px;
        line-height: 70px;
        margin-bottom: 17px;
    }
    .promotion-banner.banner-5 .slide-1 .text-4{
        font-size: 15px;
        margin-bottom: 25px;
    }
    .promotion-banner.banner-5 .slide-2 .slide-content{
        padding-top: 100px;
        padding-bottom: 134px;
    }
    .promotion-banner.banner-5 .slide-2 .text-1{
        font-size: 70px;
        line-height: 60px;
        margin-bottom: -10px;
    }
    .promotion-banner.banner-5 .slide-2 .text-1 span{
        font-size: 60px;
    }
    .promotion-banner.banner-5 .slide-2 .text-2{
        font-size: 100px;
        line-height: 80px;
        margin-bottom: 4px;
    }
    .promotion-banner.banner-5 .slide-2 .text-3{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .promotion-banner.banner-5 .slide-3 .slide-content{
        max-width: 350px;
        padding: 97px 15px 140px;
    }
    .promotion-banner.banner-5 .slide-3 .text-1,
    .promotion-banner.banner-5 .slide-3 .text-2,
    .promotion-banner.banner-5 .slide-3 .text-3{
        font-size: 75px;
        line-height: 63px;
    }
    .promotion-banner.banner-5 .slide-3 .text-3{
        margin-bottom: 10px;
    }
    .promotion-banner.banner-5 .slide-3 .text-4{
        font-size: 22px;
    }
}
@media (max-width: 767px){
    .promotion-banner.banner-5 .slide-3,
    .promotion-banner.banner-5 .slide-2,
    .promotion-banner.banner-5 .slide-1{
        height: 430px;
        position: relative;
    }
    .promotion-banner.banner-5 .slide-3 .slide-content,
    .promotion-banner.banner-5 .slide-2 .slide-content,
    .promotion-banner.banner-5 .slide-1 .slide-content{
        position: absolute;
        width: 400px;
        max-width: 100%;
        padding: 20px 15px;
        background-color: rgba(255, 255, 255, 0.8);
        color: rgb(255, 255, 255);
        border-color: rgb(102, 102, 102);
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .promotion-banner.banner-5 .slide-2 .slide-content{
        padding-bottom: 35px;
    }
    .promotion-banner.banner-5 .slide-3 .slide-content{
        padding-bottom: 30px;
    }
    .promotion-banner.banner-5 .slide-1 .text-1{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: -8px;
    }
    .promotion-banner.banner-5 .slide-1 .text-2{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-5 .slide-1 .text-3{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 15px;
    }
    .promotion-banner.banner-5 .slide-1 .text-4{
        font-size: 14px;
    }
    .promotion-banner.banner-5 .slide-2 .text-1{
        font-size: 60px;
        line-height: 50px;
        margin-bottom: -6px;
        padding-right: 120px;
    }
    .promotion-banner.banner-5 .slide-2 .text-1 span{
        font-size: 50px;
    }
    .promotion-banner.banner-5 .slide-2 .text-2{
        font-size: 85px;
        line-height: 65px;
        margin-bottom: 4px;
    }
    .promotion-banner.banner-5 .slide-2 .text-3{
        font-size: 21px;
        line-height: 26px;
        margin-bottom: 18px;
    }
    .promotion-banner.banner-5 .slide-3 .text-1,
    .promotion-banner.banner-5 .slide-3 .text-2,
    .promotion-banner.banner-5 .slide-3 .text-3{
        font-size: 65px;
        line-height: 56px;
    }
    .promotion-banner.banner-5 .slide-3 .text-4{
        font-size: 20px;
    }
}
@media (max-width: 479px){
    .promotion-banner.banner-5 .slide-3,
    .promotion-banner.banner-5 .slide-2,
    .promotion-banner.banner-5 .slide-1{
        height: 380px;
    }
    .promotion-banner.banner-5 .slide-3 .slide-content,
    .promotion-banner.banner-5 .slide-2 .slide-content,
    .promotion-banner.banner-5 .slide-1 .slide-content{
        top: 50%;
        left: 15px;
        right: 15px;
        padding-left: 10px;
        padding-right: 10px;
        -webkit-transform: translate( 0 , -50%);
        -moz-transform: translate( 0 , -50%);
        -ms-transform: translate( 0 , -50%);
        -o-transform: translate( 0 , -50%);
        transform: translate( 0 , -50%);
        margin: 0;
        width: auto;
    }
    .promotion-banner.banner-5 .slide-1 .text-3,
    .promotion-banner.banner-5 .slide-1 .text-1{
        font-size: 50px;
        line-height: 50px;
    }
    .promotion-banner.banner-5 .slide-2 .text-1{
        font-size: 45px;
        line-height: 38px;
        padding-right: 0;
    }
    .promotion-banner.banner-5 .slide-2 .text-1 span{
        font-size: 38px;
        margin-bottom: -3px;
    }
    .promotion-banner.banner-5 .slide-2 .text-2{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 10px;
        padding-left: 13%;
    }
    .promotion-banner.banner-5 .slide-2 .text-3{
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 17px;
    }
    .promotion-banner.banner-5 .slide-3 .text-1,
    .promotion-banner.banner-5 .slide-3 .text-2,
    .promotion-banner.banner-5 .slide-3 .text-3{
        font-size: 50px;
        line-height: 52px;
    }
    .promotion-banner.banner-5 .button{
        padding-left: 20px;
        padding-right: 20px;
    }
}
/*-------------------- BANNER 6 --------------------*/
.promotion-banner.banner-6 .slide-1{
    background-image: url(../images/banner-06/banner-1.jpg);
}
.promotion-banner.banner-6 .slide-2{
    background-image: url(../images/banner-06/banner-2.jpg);
}
.promotion-banner.banner-6 .slide-3{
    background-image: url(../images/banner-06/banner-3.jpg);
}
.promotion-banner.banner-6 .slide-1 .slide-content{
    max-width: 540px;
    margin-left: auto;
    margin-right: 110px;
    padding: 171px 30px 178px;
    text-align: center;
}
.promotion-banner.banner-6 .slide-1 .text-1{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-style: italic;
    color: #000;
    margin-bottom: -10px;
}
.promotion-banner.banner-6 .slide-1 .text-2{
    font-family: HKV, sans-serif;
    font-size: 86px;
    line-height: 80px;
    font-style: italic;
    color: #000;
    margin-bottom: 23px;
}
.promotion-banner.banner-6 .slide-1 .text-3{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 20px;
    font-style: italic;
    color: #000;
    margin-bottom: 46px;
}
.promotion-banner.banner-6 .slide-2 .slide-content{
    max-width: 520px;
    margin-left: auto;
    margin-right: 100px;
    padding: 146px 30px 150px;
    text-align: center;
}
.promotion-banner.banner-6 .slide-2 .text-1,
.promotion-banner.banner-6 .slide-2 .text-2{
    font-family: HKV, sans-serif;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    font-style: italic;
    margin-bottom: -20px;
}
.promotion-banner.banner-6 .slide-2 .text-2{
    margin-bottom: 15px;
}
.promotion-banner.banner-6 .slide-2 .text-3{
    font-family: HKV, sans-serif;
    font-size: 24px;
    line-height: 20px;
    font-style: italic;
    color: #fff;
    margin-bottom: 65px;
}
.promotion-banner.banner-6 .slide-3 .slide-content{
    text-align: center;
    padding: 116px 30px 70px;
}
.promotion-banner.banner-6 .slide-3 .text-3,
.promotion-banner.banner-6 .slide-3 .text-1{
    font-family: HKV, sans-serif;
    font-size: 86px;
    line-height: 86px;
    color: #fff;
    margin-bottom: 0;
}
.promotion-banner.banner-6 .slide-3 .text-2{
    font-family: HKV, sans-serif;
    font-size: 48px;
    line-height: 50px;
    color: #fff;
    font-style: italic;
    margin-bottom: 3px;
}
.promotion-banner.banner-6 .slide-3 .text-3{
    margin-bottom: 100px;
}
.promotion-banner.banner-6 .slide-3 .text-4{
    font-family: HKV, sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
}
.promotion-banner.banner-6 .slide-3 .button{
    padding: 0;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    border-bottom: 2px solid #fff;
    margin: 15px 15px 0;
}
@media (min-width: 992px){
    .promotion-banner.banner-6 .slide-1 .button,
    .promotion-banner.banner-6 .slide-2 .button{
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 1199px){
    .promotion-banner.banner-6 .slide-1 .slide-content{
        max-width: 500px;
        margin-right: 50px;
        padding: 146px 30px 155px;
    }
    .promotion-banner.banner-6 .slide-1 .text-1{
        font-size: 45px;
        line-height: 45px;
    }
    .promotion-banner.banner-6 .slide-1 .text-2{
        font-size: 80px;
        line-height: 75px;
        margin-bottom: 17px;
    }
    .promotion-banner.banner-6 .slide-1 .text-3{
        font-size: 22px;
        margin-bottom: 38px;
    }
    .promotion-banner.banner-6 .slide-2 .slide-content{
        max-width: 480px;
        margin-right: 30px;
        padding: 120px 30px 129px;
    }
    .promotion-banner.banner-6 .slide-2 .text-1{
        font-size: 75px;
        line-height: 75px;
        margin-bottom: -16px;
    }
    .promotion-banner.banner-6 .slide-2 .text-2{
        font-size: 75px;
        line-height: 75px;
        margin-bottom: 13px;
    }
    .promotion-banner.banner-6 .slide-2 .text-3{
        font-size: 22px;
        margin-bottom: 50px;
    }
    .promotion-banner.banner-6 .slide-3 .slide-content{
        padding: 88px 30px 70px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3,
    .promotion-banner.banner-6 .slide-3 .text-1{
        font-size: 80px;
        line-height: 80px;
    }
    .promotion-banner.banner-6 .slide-3 .text-2{
        font-size: 45px;
        line-height: 45px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3{
        margin-bottom: 80px;
    }
    .promotion-banner.banner-6 .slide-3 .text-4{
        margin-bottom: 15px;
    }
}
@media (max-width: 991px){
    .promotion-banner.banner-6 .slide-1 .slide-content{
        max-width: 470px;
        margin-right: 30px;
        padding: 116px 30px 130px;
    }
    .promotion-banner.banner-6 .slide-1 .text-1{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-6 .slide-1 .text-2{
        font-size: 73px;
        line-height: 70px;
        margin-bottom: 12px;
    }
    .promotion-banner.banner-6 .slide-1 .text-3{
        font-size: 20px;
    }
    .promotion-banner.banner-6 .slide-2 .slide-content{
        max-width: 440px;
        margin-right: 0;
        padding: 97px 30px 110px;
    }
    .promotion-banner.banner-6 .slide-2 .text-1{
        font-size: 68px;
        line-height: 68px;
        margin-bottom: -15px;
    }
    .promotion-banner.banner-6 .slide-2 .text-2{
        font-size: 68px;
        line-height: 68px;
        margin-bottom: 8px;
    }
    .promotion-banner.banner-6 .slide-2 .text-3{
        font-size: 20px;
        margin-bottom: 40px;
    }
    .promotion-banner.banner-6 .slide-3 .slide-content{
        padding: 79px 30px 65px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3,
    .promotion-banner.banner-6 .slide-3 .text-1{
        font-size: 70px;
        line-height: 70px;
    }
    .promotion-banner.banner-6 .slide-3 .text-2{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3{
        margin-bottom: 60px;
    }
    .promotion-banner.banner-6 .slide-3 .text-4{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px){
    .promotion-banner.banner-6 .slide-1 .slide-content{
        max-width: 370px;
        margin-right: 0;
        padding: 113px 15px 125px;
    }
    .promotion-banner.banner-6 .slide-1 .text-1{
        font-size: 32px;
        line-height: 32px;
    }
    .promotion-banner.banner-6 .slide-1 .text-2{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 8px;
    }
    .promotion-banner.banner-6 .slide-1 .text-3{
        font-size: 17px;
    }
    .promotion-banner.banner-6 .slide-2 .slide-content{
        max-width: 370px;
        margin-right: 0;
        padding: 95px 15px 110px;
    }
    .promotion-banner.banner-6 .slide-2 .text-1{
        font-size: 58px;
        line-height: 58px;
        margin-bottom: -13px;
    }
    .promotion-banner.banner-6 .slide-2 .text-2{
        font-size: 58px;
        line-height: 58px;
        margin-bottom: 8px;
    }
    .promotion-banner.banner-6 .slide-2 .text-3{
        font-size: 17px;
        margin-bottom: 30px;
    }
    .promotion-banner.banner-6 .slide-3 .slide-content{
        padding: 71px 15px 60px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3,
    .promotion-banner.banner-6 .slide-3 .text-1{
        font-size: 56px;
        line-height: 56px;
    }
    .promotion-banner.banner-6 .slide-3 .text-2{
        font-size: 33px;
        line-height: 33px;
        margin-bottom: 0;
    }
    .promotion-banner.banner-6 .slide-3 .text-3{
        margin-bottom: 52px;
    }
    .promotion-banner.banner-6 .slide-3 .text-4{
        font-size: 22px;
        line-height: 26px;
    }
}
@media (max-width: 479px){
    .promotion-banner.banner-6 .slide-1 .slide-content{
        padding: 84px 15px 120px;
    }
    .promotion-banner.banner-6 .slide-1 .text-1{
        font-size: 26px;
        line-height: 26px;
        margin-bottom: -6px;
    }
    .promotion-banner.banner-6 .slide-1 .text-2{
        font-size: 47px;
        line-height: 47px;
        margin-bottom: 5px;
    }
    .promotion-banner.banner-6 .slide-1 .text-3{
        font-size: 15px;
        margin-bottom: 30px;
    }
    .promotion-banner.banner-6 .slide-2 .slide-content{
        padding: 75px 15px 90px;
    }
    .promotion-banner.banner-6 .slide-2 .text-1{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: -10px;
    }
    .promotion-banner.banner-6 .slide-2 .text-2{
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 6px;
    }
    .promotion-banner.banner-6 .slide-2 .text-3{
        font-size: 15px;
        margin-bottom: 25px;
    }
    .promotion-banner.banner-6 .slide-3 .slide-content{
        padding: 70px 15px 54px;
    }
    .promotion-banner.banner-6 .slide-3 .text-3,
    .promotion-banner.banner-6 .slide-3 .text-1{
        font-size: 40px;
        line-height: 40px;
    }
    .promotion-banner.banner-6 .slide-3 .text-2{
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .promotion-banner.banner-6 .slide-3 .text-3{
        margin-bottom: 40px;
    }
    .promotion-banner.banner-6 .slide-3 .text-4{
        font-size: 20px;
        line-height: 24px;
    }
}
/*==========================================================================
HOME PAGE
===========================================================================*/
/*-------------------- HOME SIMPLE 1 --------------------*/
.home-simple-1 #section-1{
    margin-bottom: 30px;
}
.home-simple-1 #section-2{
    margin-bottom: 50px;
}
.home-simple-1 #section-3 .envy-heading.style-4{
    margin-bottom: 17px;
}
.home-simple-1 #section-3 .envy-heading.style-5{
    margin-bottom: 37px;
}
.home-simple-1 #section-3 .envy-product.style-1{
    margin-bottom: 30px;
}
.home-simple-1 #section-3 .product-item.style-1{
    margin-bottom: 30px;
}
.home-simple-1 #section-3 .envy-button.style-1{
    margin-bottom: 60px;
}
.home-simple-1 #section-4{
    padding: 50px 0 60px;
    background-color: #f4f4f4;
    margin-bottom: 50px;
}
.home-simple-1 #section-4 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-simple-1 #section-5{
    margin-bottom: 80px;
}
.home-simple-1 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
@media (max-width: 767px){
    .home-simple-1 #section-2,
    .home-simple-1 #section-1{
        margin-bottom: 80px;
    }
    .home-simple-1 #section-3 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 7px;
    }
    .home-simple-1 #section-3 .envy-heading.style-5{
        margin-bottom: 50px;
        margin-top: 20px;
    }
    .home-simple-1 #section-3 .envy-product.style-1{
        margin-bottom: 30px;
    }
    .home-simple-1 #section-3 .product-item.style-1{
        margin-bottom: 20px;
    }
    .home-simple-1 #section-3 .envy-button.style-1{
        margin-bottom: 70px;
    }
    .home-simple-1 #section-4{
        padding: 55px 0 40px;
        margin-bottom: 60px;
    }
    .home-simple-1 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-simple-1 #section-5{
        margin-bottom: 60px;
    }
    .home-simple-1 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .blog-item.style-2 .blog-thumb{
        margin-bottom: 20px;
    }
    .blog-item.style-2 .blog-meta{
        margin-bottom: 5px;
    }
    .blog-item.style-2 .blog-title{
        margin-bottom: 25px;
        font-size: 20px;
        line-height: 24px;
    }
}
/*-------------------- HOME SIMPLE 2 --------------------*/
.home-simple-2 #section-1{
    padding-top: 30px;
    margin-bottom: 50px;
}
.home-simple-2 #section-2 .section-inner{
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-simple-2 #section-2 .envy-heading.style-4{
    margin-bottom: 15px;
}
.home-simple-2 #section-2 .envy-heading.style-5{
    margin-bottom: 37px;
}
.home-simple-2 #section-2 .envy-product.style-1{
    margin-bottom: 60px;
}
.home-simple-2 #section-2 .envy-button.style-1{
    margin-bottom: 60px;
}
.home-simple-2 #section-3{
    margin-bottom: 60px;
}
.home-simple-2 #section-3 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-simple-2 #section-4{
    background-color: #f1f1f1;
    margin-bottom: 50px;
}
.home-simple-2 #section-4 .custom-2{
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-simple-2 #section-4 .custom-2 .envy-heading.style-11{
    margin-bottom: 0;
}
.home-simple-2 #section-4 .custom-2 .envy-heading.style-12{
    margin-bottom: 19px;
}
.home-simple-2 #section-4 .custom-2 .envy-heading.style-13{
    margin-bottom: 37px;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-1{
    top: 27.2%;
    left: 8.5%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-2{
    top: 51.5%;
    left: 50.4%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-3{
    top: 8.7%;
    left: 69.6%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-4{
    top: 65.5%;
    left: 85.1%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-5{
    top: 80.8%;
    left: 35.8%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-6{
    top: 7.3%;
    left: 28.4%;
}
.home-simple-2 #section-4 .envy-pinmap.style-1 .pinmap-7{
    top: 29.4%;
    left: 62.8%;
}
.home-simple-2 #section-5 .section-inner{
    border-bottom: 2px solid #000;
    padding-bottom: 60px;
    margin-bottom: 53px;
}
.home-simple-2 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-simple-2 #section-6{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
}
.home-simple-2 #section-6 .envy-heading.style-4{
    margin-bottom: 20px;
    font-size: 20px;
}
.home-simple-2 #section-6 .envy-heading.style-5{
    margin-bottom: 36px;
}
@media (min-width: 992px){
    .home-simple-2 #section-4 .custom-1{
        display: flex;
    }
    .home-simple-2 #section-4 .custom-2,
    .home-simple-2 #section-4 .custom-3{
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (min-width: 1200px){
    .home-simple-2 #section-7 .envy-iconbox.style-3 .iconbox-inner{
        padding-top: 57px;
        padding-bottom: 57px;
    }
}
@media (max-width: 1199px){
    .home-simple-2 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 26px;
        line-height: 30px;
    }
    .home-simple-2 #section-4 .custom-2  .envy-heading.style-12{
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    .home-simple-2 #section-4 .custom-2  .envy-heading.style-13{
        font-size: 15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px){
    .home-simple-2 #section-1{
        margin-bottom: 80px;
        padding-top: 10px;
    }
    .home-simple-2 #section-2 .section-inner{
        margin-bottom: 70px;
        border-bottom: none;
    }
    .home-simple-2 #section-2 .envy-heading.style-4{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .home-simple-2 #section-2 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-simple-2 #section-2 .envy-product.style-1{
        margin-bottom: 50px;
    }
    .home-simple-2 #section-2 .envy-button.style-1{
        margin-bottom: 0;
    }
    .home-simple-2 #section-3{
        margin-bottom: 80px;
    }
    .home-simple-2 #section-3 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-simple-2 #section-4{
        margin-bottom: 80px;
    }
    .home-simple-2 #section-4 .custom-2{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .home-simple-2 #section-4 .custom-3{
        padding-bottom: 30px;
    }
    .home-simple-2 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 22px;
        line-height: 28px;
    }
    .home-simple-2 #section-4 .custom-2 .envy-heading.style-12{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 13px;
    }
    .home-simple-2 #section-4 .custom-2 .envy-heading.style-13{
        margin-bottom: 20px;
    }
    .home-simple-2 #section-5 .section-inner{
        padding-bottom: 35px;
        margin-bottom: 70px;
    }
    .home-simple-2 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-simple-2 #section-6{
        padding-bottom: 50px;
        border-bottom: 0;
    }
    .home-simple-2 #section-6 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-simple-2 #section-7{
        margin-bottom: 50px;
    }
}

/*-------------------- HOME SIMPLE 3 --------------------*/
.home-simple-3 #section-1{
    padding-top: 30px;
    margin-bottom: 50px;
}
.home-simple-3 #section-2 .section-inner{
    margin-bottom: 60px;
}
.home-simple-3 #section-2 .envy-heading.style-4{
    margin-bottom: 15px;
}
.home-simple-3 #section-2 .envy-heading.style-5{
    margin-bottom: 37px;
}
.home-simple-3 #section-2 .envy-product.style-1{
    margin-bottom: 30px;
}
.home-simple-3 #section-2 .envy-product.style-1 .product-item{
    margin-bottom: 30px;
}
.home-simple-3 #section-2 .envy-button.style-1{
    margin-bottom: 60px;
}
.home-simple-3 #section-3{
    margin-bottom: 20px;
}
.home-simple-3 #section-3 .envy-banner.style-1{
    margin-bottom: 30px;
}
.home-simple-3 #section-4 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-simple-3 #section-4 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-simple-3 #section-5 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
}
.home-simple-3 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-simple-3 #section-6{
    margin-bottom: 30px;
}
.home-simple-3 #section-6 .envy-heading.style-4{
    margin-bottom: 0;
}
.home-simple-3 #section-6 .envy-heading.style-14{
    margin-bottom: 22px;
}
.home-simple-3 #section-6 .envy-socials.style-1{
    padding-top: 4px;
}
.home-simple-3 #section-6 .envy-socials.style-1 ul li a{
    width: 36px;
    height: 36px;
    line-height: 36px;
}
.home-simple-3 #section-6 .custom-1,
.home-simple-3 #section-6 .custom-2{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width: 768px){
    .home-simple-3 #section-6 .custom-1{
        border-right: 1px solid #e3e3e3;
    }
    .home-simple-3 #section-6 .custom-2{
        border-left: 1px solid #e3e3e3;
    }
}
@media (max-width: 767px){
    .home-simple-3 #section-1{
        padding-top: 0;
        margin-bottom: 80px;
    }
    .home-simple-3 #section-2 .section-inner{
        margin-bottom: 50px;
    }
    .home-simple-3 #section-2 .envy-heading.style-4{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .home-simple-3 #section-2 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-simple-3 #section-2 .envy-product.style-1{
        margin-bottom: 20px;
    }
    .home-simple-3 #section-2 .envy-button.style-1{
        margin-bottom: 80px;
    }
    .home-simple-3 #section-3{
        margin-bottom: 0;
    }
    .home-simple-3 #section-3 .envy-banner.style-1{
        margin-bottom: 80px;
    }
    .home-simple-3 #section-4 .section-inner{
        padding-bottom: 40px;
        margin-bottom: 80px;
    }
    .home-simple-3 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-simple-3 #section-5 .section-inner{
        padding-bottom: 35px;
        margin-bottom: 70px;
    }
    .home-simple-3 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-simple-3 #section-6{
        margin-bottom: 20px;
    }
    .home-simple-3 #section-6 .custom-1,
    .home-simple-3 #section-6 .custom-2{
        padding-top: 0;
        padding-bottom: 30px;
        margin-bottom: 50px;
    }
    .home-simple-3 #section-6 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .home-simple-3 #section-6 .envy-heading.style-14{
        margin-bottom: 50px;
    }
}
/*-------------------- HOME CLASSIC 1 --------------------*/
.home-classic-1 #section-1{
    margin-bottom: 50px;
}
.home-classic-1 #section-2{
    margin-bottom: 50px;
}
.home-classic-1 #section-2 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-classic-1 #section-2 .envy-product.style-1{
    margin-bottom: 60px;
}
.home-classic-1 #section-3{
    margin-bottom: 50px;
}
.home-classic-1 #section-3 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-classic-1 #section-4{
    background-color: #f1f1f1;
    margin-bottom: 50px;
}
.home-classic-1 #section-4 .custom-2{
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-classic-1 #section-4 .custom-2 .envy-heading.style-11{
    margin-bottom: 0;
}
.home-classic-1 #section-4 .custom-2 .envy-heading.style-12{
    margin-bottom: 19px;
}
.home-classic-1 #section-4 .custom-2 .envy-heading.style-13{
    margin-bottom: 37px;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-1{
    top: 30.2%;
    left: 6.2%;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-2{
    top: 26.5%;
    left: 34.2%;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-3{
    top: 29.3%;
    left: 89.8%;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-4{
    top: 61.5%;
    left: 43.1%;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-5{
    top: 72.5%;
    left: 16.2%;
}
.home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-6{
    top: 59.3%;
    left: 70.4%;
}
.home-classic-1 #section-5 .section-inner{
    border-bottom: 2px solid #000;
    padding-bottom: 60px;
    margin-bottom: 53px;
}
.home-classic-1 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-classic-1 #section-6{
    margin-bottom: 50px;
}
.home-classic-1 #section-6 .envy-heading.style-4{
    margin-bottom: 10px;
}
.home-classic-1 #section-6 .envy-heading.style-5{
    margin-bottom: 36px;
}
.home-classic-1 #section-7{
    margin-bottom: 60px;
}
.home-classic-1 #section-7 .envy-heading.style-4{
    margin-bottom: 40px;
}
@media (min-width: 992px){
    .home-classic-1 #section-4 .custom-1{
        display: flex;
    }
    .home-classic-1 #section-4 .custom-2,
    .home-classic-1 #section-4 .custom-3{
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 1199px){
    .home-classic-1 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 26px;
        line-height: 30px;
    }
    .home-classic-1 #section-4 .custom-2  .envy-heading.style-12{
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    .home-classic-1 #section-4 .custom-2  .envy-heading.style-13{
        font-size: 15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 991px){
    .home-classic-1 #section-1{
        padding-top: 30px;
    }
}
@media (max-width: 767px){
    .home-classic-1 #section-1{
        padding-top: 30px;
        margin-bottom: 80px;
    }
    .home-classic-1 #section-2{
        margin-bottom: 80px;
    }
    .home-classic-1 #section-2 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-1 #section-2 .envy-product.style-1{
        margin-bottom: 50px;
    }
    .home-classic-1 #section-3{
        margin-bottom: 50px;
    }
    .home-classic-1 #section-3 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-1 #section-4{
        margin-bottom: 80px;
    }
    .home-classic-1 #section-4 .custom-2{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .home-classic-1 #section-4 .custom-3{
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .home-classic-1 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 22px;
        line-height: 28px;
    }
    .home-classic-1 #section-4 .custom-2 .envy-heading.style-12{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 13px;
    }
    .home-classic-1 #section-4 .custom-2 .envy-heading.style-13{
        margin-bottom: 20px;
    }
    .home-classic-1 #section-5 .section-inner{
        padding-bottom: 30px;
        margin-bottom: 80px;
    }
    .home-classic-1 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-1 #section-6{
        padding-bottom: 0;
        margin-bottom: 80px;
    }
    .home-classic-1 #section-6 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .home-classic-1 #section-6 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-classic-1 #section-7{
        margin-bottom: 80px;
    }
    .home-classic-1 #section-7 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
}
@media (max-width: 479px){
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-1{
        top: 30.2%;
        left: 6.2%;
    }
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-2{
        top: 26.5%;
        left: 34.2%;
    }
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-3{
        top: 29.3%;
        left: 89.8%;
    }
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-4{
        top: 61.5%;
        left: 43.1%;
    }
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-5{
        top: 72.5%;
        left: 16.2%;
    }
    .home-classic-1 #section-4 .envy-pinmap.style-1 .pinmap-6{
        top: 59.3%;
        left: 70.4%;
    }
}
/*-------------------- HOME CLASSIC 2 --------------------*/
.home-classic-2 #section-1{
    padding-top: 30px;
    margin-bottom: 50px;
}
.home-classic-2 #section-2{
    margin-bottom: 60px;
}
.home-classic-2 #section-2 .envy-heading.style-4{
    margin-bottom: 15px;
}
.home-classic-2 #section-2 .envy-heading.style-5{
    margin-bottom: 37px;
}
.home-classic-2 #section-2 .envy-product.style-1{
    margin-bottom: 30px;
}
.home-classic-2 #section-2 .envy-product.style-1 .product-item{
    margin-bottom: 30px;
}
.home-classic-2 #section-3{
    margin-bottom: 20px;
}
.home-classic-2 #section-3 .envy-banner.style-3{
    margin-bottom: 80px;
}
.home-classic-2 #section-3 .envy-banner.style-3.elm-last{
    margin-bottom: 60px;
}
.home-classic-2 #section-4 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-classic-2 #section-4 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-classic-2 #section-5 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-classic-2 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-classic-2 #section-6{
    margin-bottom: 60px;
}
.home-classic-2 #section-6 .envy-heading.style-4{
    margin-bottom: 40px;
}
@media (max-width: 767px){
    .home-classic-2 #section-1 {
        padding-top: 15px;
        margin-bottom: 80px;
    }
    .home-classic-2 #section-2{
        margin-bottom: 80px;
    }
    .home-classic-2 #section-2 .envy-heading.style-4{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .home-classic-2 #section-2 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-classic-2 #section-2 .envy-product.style-1{
        margin-bottom: 20px;
    }
    .home-classic-2 #section-3{
        margin-bottom: 10px;
    }
    .home-classic-2 #section-4 .section-inner{
        padding-bottom: 40px;
        margin-bottom: 80px;
    }
    .home-classic-2 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-2 #section-5 .section-inner{
        padding-bottom: 40px;
        margin-bottom: 80px;
    }
    .home-classic-2 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-2 #section-6{
        margin-bottom: 90px;
    }
    .home-classic-2 #section-6 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-classic-2 #section-7{
        margin-bottom: 80px;
    }
}
/*-------------------- HOME CATEGORIES 1 --------------------*/
.home-categories-1 #section-1{
    padding-top: 20px;
    margin-bottom: 50px;
}
.home-categories-1 #section-2 .section-inner{
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 30px;
    display: inline-block;
    clear: both;
}
.home-categories-1 #section-2 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-categories-1 #section-3 .row-item:not(:last-child) .envy-category.style-1,
.home-categories-1 #section-2 .row-item:not(:last-child) .envy-category.style-1{
    padding-bottom: 38px;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 10px;
}
.home-categories-1 #section-3 .envy-category.style-1 .category-thumb,
.home-categories-1 #section-2 .envy-category.style-1 .category-thumb{
    margin-bottom: 8px;
}
.home-categories-1 #section-3{
    margin-bottom: 80px;
}
.home-categories-1 #section-4{
    background-color: #f6f6f6;
    padding-top: 50px;
    padding-bottom: 80px;
    margin-bottom: 50px;
}
.home-categories-1 #section-4 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-categories-1 #section-5{
    margin-bottom: 50px;
}
.home-categories-1 #section-5 .envy-heading.style-4{
    margin-bottom: 15px;
}
.home-categories-1 #section-5 .envy-heading.style-5{
    margin-bottom: 37px;
}
.home-categories-1 #section-6{
    margin-bottom: 60px;
}
.home-categories-1 #section-6 .envy-heading.style-4{
    margin-bottom: 40px;
}
.envy-grid-categories{
    display: block;
    clear: both;
    margin-left: -15px;
    margin-right: -15px;
}
.envy-grid-categories .envy-image,
.envy-grid-categories .cat-container{
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.envy-grid-categories .cat-container .cat-list{
    display: block;
    padding: 0;
    margin: 0 -15px;
}
.envy-grid-categories .cat-list li{
    width: 50%;
    float: left;
    margin-top: 40px;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}
.envy-grid-categories .cat-list li:nth-child(2n+1){
    clear: left;
}
.envy-grid-categories .cat-list li .envy-category .category-thumb{
    border-top: 2px solid #e2e2e2;
    padding-top: 10px;
}
.envy-grid-categories .cat-list li:nth-child(2) .envy-category .category-thumb,
.envy-grid-categories .cat-list li:nth-child(1) .envy-category .category-thumb{
    border-top: 0;
    padding-top: 0;
}
.envy-grid-categories .cat-list li:nth-child(2),
.envy-grid-categories .cat-list li:nth-child(1){
    margin-top: 0;
}
@media ( max-width: 767px ){
    .home-categories-1 #section-1{
        padding-top: 15px;
        margin-bottom: 80px;
    }
    .home-categories-1 #section-2 .envy-heading.style-4{
        margin-bottom: 60px;
        font-size: 20px;
    }
    .home-categories-1 #section-3{
        margin-bottom: 90px;
    }
    .home-categories-1 #section-4{
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
    .home-categories-1 #section-4 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-categories-1 #section-5{
        margin-bottom: 60px;
    }
    .home-categories-1 #section-5 .envy-heading.style-4{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .home-categories-1 #section-5 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-categories-1 #section-6{
        margin-bottom: 80px;
    }
    .home-categories-1 #section-6 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .envy-grid-categories{
        margin-left: 0;
        margin-right: 0;
    }
    .envy-grid-categories .envy-image,
    .envy-grid-categories .cat-container{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .envy-grid-categories .cat-container{
        margin-top: 25px;
    }
    .envy-grid-categories .cat-container .cat-list{
        margin-left: -8px;
        margin-right: -8px;
    }
    .envy-grid-categories .cat-container .cat-list li{
        padding-left: 8px;
        padding-right: 8px;
    }
    .envy-grid-categories .cat-list li .envy-category .category-thumb{
        padding-top: 30px;
    }
    .envy-category.style-1 .category-title{
        font-size: 16px;
        line-height: 16px;
    }
    .home-categories-1 #section-2 .section-inner{
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
}

@media ( min-width: 768px ){
    .envy-grid-categories.reserve .envy-image{
        float: right;
    }
}
/*-------------------- HOME CATEGORIES 2 --------------------*/
.home-categories-2 #section-1{
    padding-top: 30px;
}
.home-categories-2 #section-4 .custom-1,
.home-categories-2 #section-4 .custom-2,
.home-categories-2 #section-1 .custom-1,
.home-categories-2 #section-1 .custom-2{
    margin-bottom: 30px;
}
.home-categories-2 #section-4,
.home-categories-2 #section-1{
    margin-bottom: 20px;
}
.home-categories-2 #section-7,
.home-categories-2 #section-2{
    margin-bottom: 60px;
}
.home-categories-2 #section-7 .envy-heading.style-4,
.home-categories-2 #section-2 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-categories-2 #section-3{
    margin-bottom: 60px;
}
.home-categories-2 #section-5{
    margin-bottom: 50px;
}
.home-categories-2 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-categories-2 #section-5 .envy-slider.style-1{
    margin-bottom: 60px;
}
.home-categories-2 #section-6 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-categories-2 #section-6 .envy-heading.style-4{
    margin-bottom: 40px;
}
@media (min-width: 768px){
    .home-categories-2 #section-4 .custom-1,
    .home-categories-2 #section-1 .custom-1{
        width: 55%;
    }
    .home-categories-2 #section-4 .custom-2,
    .home-categories-2 #section-1 .custom-2{
        width: 45%;
    }
}
@media (max-width: 767px){
    .home-categories-2 #section-1{
        padding-top: 15px;
    }
    .home-categories-2 #section-4,
    .home-categories-2 #section-1{
        margin-bottom: 0;
    }
    .home-categories-2 #section-8,
    .home-categories-2 #section-7,
    .home-categories-2 #section-2{
        margin-bottom: 80px;
    }
    .home-categories-2 #section-7 .envy-heading.style-4,
    .home-categories-2 #section-2 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-categories-2 #section-3{
        margin-bottom: 80px;
    }
    .home-categories-2 #section-5{
        margin-bottom: 80px;
    }
    .home-categories-2 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-categories-2 #section-5 .envy-slider.style-1{
        margin-bottom: 50px;
    }
    .home-categories-2 #section-6 .section-inner{
        padding-bottom: 40px;
        margin-bottom: 80px;
    }
    .home-categories-2 #section-6 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-categories-2 #section-4 .custom-1,
    .home-categories-2 #section-4 .custom-2,
    .home-categories-2 #section-1 .custom-1,
    .home-categories-2 #section-1 .custom-2{
        margin-bottom: 80px;
    }
}
/*-------------------- HOME GRID 1 --------------------*/
.home-grid-1 #section-1{
    margin-bottom: 30px;
}
.home-grid-1 #section-1 .envy-pinmap.style-1{
    max-width: 680px;
    margin: 0 auto 20px;
}
.home-grid-1 #section-1 .envy-pinmap.style-1 > .content{
    bottom: 25%;
    max-width: 390px;
    padding: 30px 50px;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.home-grid-1 #section-1 .envy-pinmap.style-1 .pinmap-1{
    top: 34.2%;
    left: 56%;
}
.home-grid-1 #section-1 .envy-pinmap.style-1 .pinmap-2{
    top: 68.5%;
    left: 63.4%;
}
.home-grid-1 #section-1 .envy-pinmap.style-1 .pinmap-3{
    top: 8.7%;
    left: 82.6%;
}
.home-grid-1 #section-1 .envy-banner.style-6{
    margin: 0 auto 20px;
}
.home-grid-1 #section-6 .section-inner,
.home-grid-1 #section-5 .section-inner,
.home-grid-1 #section-2 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid;
    margin-bottom: 50px;
}
.home-grid-1 #section-6 .envy-heading.style-4,
.home-grid-1 #section-5 .envy-heading.style-4,
.home-grid-1 #section-3 .envy-heading.style-4,
.home-grid-1 #section-2 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-grid-1 #section-3{
    margin-bottom: 60px;
}
.home-grid-1 #section-4{
    background-color: #f1f1f1;
    margin-bottom: 50px;
}
.home-grid-1 #section-4 .custom-2{
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-grid-1 #section-4 .custom-2 .envy-heading.style-11{
    margin-bottom: 0;
}
.home-grid-1 #section-4 .custom-2 .envy-heading.style-12{
    margin-bottom: 19px;
}
.home-grid-1 #section-4 .custom-2 .envy-heading.style-13{
    margin-bottom: 37px;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-1{
    top: 27.2%;
    left: 8.5%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-2{
    top: 51.5%;
    left: 50.4%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-3{
    top: 8.7%;
    left: 69.6%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-4{
    top: 65.5%;
    left: 85.1%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-5{
    top: 80.8%;
    left: 35.8%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-6{
    top: 7.3%;
    left: 28.4%;
}
.home-grid-1 #section-4 .envy-pinmap.style-1 .pinmap-7{
    top: 29.4%;
    left: 62.8%;
}
.home-grid-1 #section-7 .envy-heading.style-4{
    margin-bottom: 10px;
}
.home-grid-1 #section-7 .envy-heading.style-5{
    margin-bottom: 36px;
}
@media (min-width: 992px){
    .home-grid-1 #section-1 .custom-1{
        padding-right: 5px;
    }
    .home-grid-1 #section-4 .custom-1{
        display: flex;
    }
    .home-grid-1 #section-4 .custom-2,
    .home-grid-1 #section-4 .custom-3{
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content{
        max-width: 300px;
        padding: 20px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-3,
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-1{
        font-size: 50px;
        line-height: 40px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-2{
        font-size: 40px;
        line-height: 36px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .subtitle{
        font-size: 17px;
        margin-bottom: 30px;
    }
}
@media (max-width: 1199px){
    .home-grid-1 #section-1{
        padding-top: 20px;
    }
    .home-grid-1 #section-1 .envy-banner.style-6{
        margin-bottom: 19px;
    }
    .home-grid-1 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 26px;
        line-height: 30px;
    }
    .home-grid-1 #section-4 .custom-2  .envy-heading.style-12{
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 15px;
    }
    .home-grid-1 #section-4 .custom-2  .envy-heading.style-13{
        font-size: 15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px){
    .home-grid-1 #section-1{
        padding-top: 15px;
        margin-bottom: 0;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content{
        max-width: 330px;
        padding: 25px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-3,
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-1{
        font-size: 50px;
        line-height: 40px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .title-2{
        font-size: 40px;
        line-height: 36px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .subtitle{
        font-size: 17px;
        margin-bottom: 30px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1,
    .home-grid-1 #section-1 .envy-banner.style-6{
        margin-bottom: 80px;
    }
    .home-grid-1 #section-6 .section-inner,
    .home-grid-1 #section-5 .section-inner,
    .home-grid-1 #section-2 .section-inner{
        padding-bottom: 50px;
        margin-bottom: 80px;
    }
    .home-grid-1 #section-6 .envy-heading.style-4,
    .home-grid-1 #section-5 .envy-heading.style-4,
    .home-grid-1 #section-3 .envy-heading.style-4,
    .home-grid-1 #section-2 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-grid-1 #section-3{
        margin-bottom: 80px;
    }
    .home-grid-1 #section-4{
        margin-bottom: 80px;
    }
    .home-grid-1 #section-4 .custom-2{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .home-grid-1 #section-4 .custom-3{
        padding: 0 15px 50px;
    }
    .home-grid-1 #section-4 .custom-2  .envy-heading.style-11{
        font-size: 22px;
        line-height: 28px;
    }
    .home-grid-1 #section-4 .custom-2 .envy-heading.style-12{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 13px;
    }
    .home-grid-1 #section-4 .custom-2 .envy-heading.style-13{
        margin-bottom: 20px;
    }
    .home-grid-1 #section-7 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-grid-1 #section-7 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .home-grid-1 #section-7{
        margin-bottom: 80px;
    }
}
@media (max-width: 567px){
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content{
        max-width: 270px;
        padding: 15px;
    }
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content .subtitle{
        font-size: 16px;
    }
}
@media (max-width: 479px){
    .home-grid-1 #section-1 .envy-pinmap.style-1 > .content{
        display: none;
    }
}
/*-------------------- HOME GRID 2 --------------------*/
.home-grid-2 #section-1{
    padding-top: 20px;
    margin-bottom: 30px;
}
.home-grid-2 #section-1 .custom-1,
.home-grid-2 #section-1 .custom-2,
.home-grid-2 #section-1 .custom-3,
.home-grid-2 #section-1 .custom-4{
    margin-bottom: 20px;
}
.home-grid-2 #section-2 .section-inner,
.home-grid-2 #section-5 .section-inner{
    padding-bottom: 60px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-grid-2 #section-2 .envy-heading.style-4,
.home-grid-2 #section-3 .envy-heading.style-4,
.home-grid-2 #section-4 .envy-heading.style-4,
.home-grid-2 #section-5 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-grid-2 #section-3 .section-inner{
    margin-bottom: 60px;
}
.home-grid-2 #section-4{
    background-color: #f8f8f8;
    padding: 50px 0 60px;
    margin-bottom: 50px;
}
.home-grid-2 #section-6 .envy-heading.style-4{
    margin-bottom: 10px;
}
.home-grid-2 #section-6 .envy-heading.style-5{
    margin-bottom: 36px;
}
@media (min-width: 992px){
    .home-grid-2 #section-1 .custom-1{
        width: 48%;
        padding-right: 11px;
    }
    .home-grid-2 #section-1 .custom-2{
        width: 52%;
        padding-left: 9px;
    }
    .home-grid-2 #section-1 .custom-3{
        width: 52%;
        padding-right: 9px;
    }
    .home-grid-2 #section-1 .custom-4{
        width: 48%;
        padding-left: 11px;
    }
}
@media (max-width: 991px){
    .home-grid-2 #section-1 .envy-banner.style-7,
    .home-grid-2 #section-1 .envy-banner.style-8,
    .home-grid-2 #section-1 .envy-banner.style-9,
    .home-grid-2 #section-1 .envy-banner.style-10{
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px){
    .home-grid-2 #section-1{
        padding-top: 15px;
        margin-bottom: 0;
    }
    .home-grid-2 #section-1 .custom-1,
    .home-grid-2 #section-1 .custom-2,
    .home-grid-2 #section-1 .custom-3,
    .home-grid-2 #section-1 .custom-4{
        margin-bottom: 80px;
    }
    .home-grid-2 #section-2 .section-inner,
    .home-grid-2 #section-5 .section-inner{
        padding-bottom: 50px;
        margin-bottom: 80px;
    }
    .home-grid-2 #section-2 .envy-heading.style-4,
    .home-grid-2 #section-3 .envy-heading.style-4,
    .home-grid-2 #section-4 .envy-heading.style-4,
    .home-grid-2 #section-5 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-grid-2 #section-3 .section-inner{
        margin-bottom: 80px;
    }
    .home-grid-2 #section-4{
        padding: 60px 0 50px;
        margin-bottom: 80px;
        margin-top: 0;
    }
    .home-grid-2 #section-6 .envy-heading.style-5{
        margin-bottom: 50px;
    }
    .home-grid-2 #section-6 .envy-heading.style-4{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .home-grid-2 #section-6{
        margin-bottom: 80px;
    }
}
/*-------------------- HOME LOOKBOOK 1 --------------------*/
.home-lookbook-1 #section-1 .section-inner{
    padding-top: 45px;
    padding-bottom: 50px;
    border-bottom: 2px solid #000;
}
.home-lookbook-1 #section-1 .envy-heading.style-14{
    margin-bottom: 42px;
}
.home-lookbook-1 #section-6,
.home-lookbook-1 #section-4,
.home-lookbook-1 #section-2{
    padding: 65px 0;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-1{
    top: 29.2%;
    left: 4%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-2{
    top: 53.5%;
    left: 48.4%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-3{
    top: 11%;
    left: 69%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-4{
    top: 67.5%;
    left: 85.1%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-5{
    top: 82.8%;
    left: 32.8%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-6{
    top: 9.3%;
    left: 24.4%;
}
.home-lookbook-1 #section-2 .envy-pinmap.style-1 .pinmap-7{
    top: 31.4%;
    left: 61.8%;
}
.home-lookbook-1 #section-6 .custom-2,
.home-lookbook-1 #section-5 .custom-2,
.home-lookbook-1 #section-4 .custom-2,
.home-lookbook-1 #section-3 .custom-2,
.home-lookbook-1 #section-2 .custom-2{
    padding-top: 50px;
    padding-bottom: 50px;
}
.home-lookbook-1 #section-6 .envy-heading.style-17,
.home-lookbook-1 #section-5 .envy-heading.style-17,
.home-lookbook-1 #section-4 .envy-heading.style-17,
.home-lookbook-1 #section-3 .envy-heading.style-17,
.home-lookbook-1 #section-2 .envy-heading.style-17{
    margin-bottom: 0;
}
.home-lookbook-1 #section-6 .envy-heading.style-18,
.home-lookbook-1 #section-5 .envy-heading.style-18,
.home-lookbook-1 #section-4 .envy-heading.style-18,
.home-lookbook-1 #section-3 .envy-heading.style-18,
.home-lookbook-1 #section-2 .envy-heading.style-18{
    margin-bottom: 4px;
}
.home-lookbook-1 #section-6 .envy-heading.style-14,
.home-lookbook-1 #section-5 .envy-heading.style-14,
.home-lookbook-1 #section-4 .envy-heading.style-14,
.home-lookbook-1 #section-3 .envy-heading.style-14,
.home-lookbook-1 #section-2 .envy-heading.style-14{
    margin-top: 16px;
    margin-bottom: 55px;
}
.home-lookbook-1 #section-5,
.home-lookbook-1 #section-3{
    background-color: #f6f6f6;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-1{
    top: 30.2%;
    left: 0.5%;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-2{
    top: 26.5%;
    left: 30.2%;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-3{
    top: 29.3%;
    left: 89.8%;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-4{
    top: 62%;
    left: 40.1%;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-5{
    top: 72.5%;
    left: 11.2%;
}
.home-lookbook-1 #section-3 .envy-pinmap.style-1 .pinmap-6{
    top: 59.3%;
    left: 68.4%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-1{
    top: 17%;
    left: 9.5%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-2{
    top: 35.5%;
    left: 35.2%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-3{
    top: 56%;
    left: 24%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-4{
    top: 75%;
    left: 82%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-5{
    top: 78.5%;
    left: 37.2%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-6{
    top: 57.3%;
    left: 65.4%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-7{
    top: 31%;
    left: 60%;
}
.home-lookbook-1 #section-4 .envy-pinmap.style-1 .pinmap-8{
    top: 14%;
    left: 50%;
}
.home-lookbook-1 #section-5 .envy-pinmap.style-1 .pinmap-1{
    top: 35.2%;
    left: 21.5%;
}
.home-lookbook-1 #section-5 .envy-pinmap.style-1 .pinmap-2{
    top: 35.5%;
    left: 45.2%;
}
.home-lookbook-1 #section-5 .envy-pinmap.style-1 .pinmap-3{
    top: 18%;
    left: 39%;
}
.home-lookbook-1 #section-5 .envy-pinmap.style-1 .pinmap-4{
    top: 28%;
    left: 84%;
}
.home-lookbook-1 #section-5 .envy-pinmap.style-1 .pinmap-5{
    top: 71.5%;
    left: 57.2%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-1{
    top: 30.2%;
    left: 1.5%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-2{
    top: 44%;
    left: 39.2%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-3{
    top: 17.3%;
    left: 31.8%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-4{
    top: 72%;
    left: 61.1%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-5{
    top: 72.5%;
    left: 33%;
}
.home-lookbook-1 #section-6 .envy-pinmap.style-1 .pinmap-6{
    top: 23.3%;
    left: 63.4%;
}
.home-lookbook-1 #section-7{
    margin-bottom: 50px;
}
@media (min-width: 992px){
    .home-lookbook-1 #section-6 .custom-1,
    .home-lookbook-1 #section-5 .custom-1,
    .home-lookbook-1 #section-4 .custom-1,
    .home-lookbook-1 #section-3 .custom-1,
    .home-lookbook-1 #section-2 .custom-1{
        display: flex;
    }
    .home-lookbook-1 #section-6 .custom-2,
    .home-lookbook-1 #section-6 .custom-3,
    .home-lookbook-1 #section-5 .custom-2,
    .home-lookbook-1 #section-5 .custom-3,
    .home-lookbook-1 #section-4 .custom-2,
    .home-lookbook-1 #section-4 .custom-3,
    .home-lookbook-1 #section-3 .custom-2,
    .home-lookbook-1 #section-3 .custom-3,
    .home-lookbook-1 #section-2 .custom-2,
    .home-lookbook-1 #section-2 .custom-3{
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-lookbook-1 #section-6 .custom-1,
    .home-lookbook-1 #section-4 .custom-1,
    .home-lookbook-1 #section-2 .custom-1{
        direction: rtl;
        padding-left: 30px;
    }
    .home-lookbook-1 #section-6 .custom-1 > *,
    .home-lookbook-1 #section-4 .custom-1 > *,
    .home-lookbook-1 #section-2 .custom-1 > *{
        direction: ltr;
    }
    .home-lookbook-1 #section-6 .custom-2,
    .home-lookbook-1 #section-4 .custom-2,
    .home-lookbook-1 #section-2 .custom-2{
        padding-left: 15px;
        padding-right: 60px;
    }
    .home-lookbook-1 #section-5 .custom-1,
    .home-lookbook-1 #section-3 .custom-1{
        padding-right: 30px;
    }
    .home-lookbook-1 #section-5 .custom-2,
    .home-lookbook-1 #section-3 .custom-2{
        padding-right: 15px;
        padding-left: 50px;
    }
}
@media (min-width: 1200px){
    .home-lookbook-1 #section-6 .custom-1,
    .home-lookbook-1 #section-4 .custom-1,
    .home-lookbook-1 #section-2 .custom-1{
        padding-left: 68px;
    }
    .home-lookbook-1 #section-6 .custom-2,
    .home-lookbook-1 #section-4 .custom-2,
    .home-lookbook-1 #section-2 .custom-2{
        padding-left: 75px;
        padding-right: 75px;
    }
    .home-lookbook-1 #section-5 .custom-1,
    .home-lookbook-1 #section-3 .custom-1{
        padding-right: 68px;
    }
    .home-lookbook-1 #section-5 .custom-2,
    .home-lookbook-1 #section-3 .custom-2{
        padding-left: 75px;
        padding-right: 75px;
    }
}
@media (max-width: 1199px){
    .home-lookbook-1 #section-6,
    .home-lookbook-1 #section-4,
    .home-lookbook-1 #section-2{
        padding: 30px 0;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-14,
    .home-lookbook-1 #section-5 .envy-heading.style-14,
    .home-lookbook-1 #section-4 .envy-heading.style-14,
    .home-lookbook-1 #section-3 .envy-heading.style-14,
    .home-lookbook-1 #section-2 .envy-heading.style-14{
        margin-bottom: 45px;
    }
}
@media (max-width: 991px){
    .home-lookbook-1 #section-6,
    .home-lookbook-1 #section-4,
    .home-lookbook-1 #section-2{
        padding-top: 0;
    }
    .home-lookbook-1 #section-6 .custom-2,
    .home-lookbook-1 #section-5 .custom-2,
    .home-lookbook-1 #section-4 .custom-2,
    .home-lookbook-1 #section-3 .custom-2,
    .home-lookbook-1 #section-2 .custom-2{
        padding-bottom: 30px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-14,
    .home-lookbook-1 #section-5 .envy-heading.style-14,
    .home-lookbook-1 #section-4 .envy-heading.style-14,
    .home-lookbook-1 #section-3 .envy-heading.style-14,
    .home-lookbook-1 #section-2 .envy-heading.style-14{
        margin-bottom: 35px;
    }
}
@media (max-width: 767px){
    .home-lookbook-1 #section-1 .section-inner{
        padding-top: 35px;
        padding-bottom: 40px;
    }
    .home-lookbook-1 #section-1 .envy-heading.style-17 span{
        display: block;
        margin-top: -10px;
    }
    .home-lookbook-1 #section-1 .envy-heading.style-14{
        margin-bottom: 25px;
        font-size: 16px;
    }
    .home-lookbook-1 #section-6 .custom-2,
    .home-lookbook-1 #section-5 .custom-2,
    .home-lookbook-1 #section-4 .custom-2,
    .home-lookbook-1 #section-3 .custom-2,
    .home-lookbook-1 #section-2 .custom-2{
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-17,
    .home-lookbook-1 #section-5 .envy-heading.style-17,
    .home-lookbook-1 #section-4 .envy-heading.style-17,
    .home-lookbook-1 #section-3 .envy-heading.style-17,
    .home-lookbook-1 #section-2 .envy-heading.style-17{
        font-size: 50px;
        line-height: 46px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-18,
    .home-lookbook-1 #section-5 .envy-heading.style-18,
    .home-lookbook-1 #section-4 .envy-heading.style-18,
    .home-lookbook-1 #section-3 .envy-heading.style-18,
    .home-lookbook-1 #section-2 .envy-heading.style-18{
        font-size: 36px;
        line-height: 32px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-14,
    .home-lookbook-1 #section-5 .envy-heading.style-14,
    .home-lookbook-1 #section-4 .envy-heading.style-14,
    .home-lookbook-1 #section-3 .envy-heading.style-14,
    .home-lookbook-1 #section-2 .envy-heading.style-14{
        margin-bottom: 35px;
    }
    .home-lookbook-1 #section-7{
        margin-bottom: 80px;
    }
    .home-lookbook-1 #section-5,
    .home-lookbook-1 #section-4,
    .home-lookbook-1 #section-3,
    .home-lookbook-1 #section-2,
    .home-lookbook-1 #section-1{
        margin-bottom: 40px;
    }

    .home-lookbook-1 #section-6{
        margin-bottom: 30px;
    }
    .home-lookbook-1 #section-2{
        padding-bottom: 40px;
    }
}
@media (max-width: 479px){
    .home-lookbook-1 #section-1 .envy-heading.style-17,
    .home-lookbook-1 #section-6 .envy-heading.style-17,
    .home-lookbook-1 #section-5 .envy-heading.style-17,
    .home-lookbook-1 #section-4 .envy-heading.style-17,
    .home-lookbook-1 #section-3 .envy-heading.style-17,
    .home-lookbook-1 #section-2 .envy-heading.style-17{
        font-size: 35px;
        line-height: 38px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-18,
    .home-lookbook-1 #section-5 .envy-heading.style-18,
    .home-lookbook-1 #section-4 .envy-heading.style-18,
    .home-lookbook-1 #section-3 .envy-heading.style-18,
    .home-lookbook-1 #section-2 .envy-heading.style-18{
        font-size: 32px;
        line-height: 28px;
    }
    .home-lookbook-1 #section-6 .envy-heading.style-14,
    .home-lookbook-1 #section-5 .envy-heading.style-14,
    .home-lookbook-1 #section-4 .envy-heading.style-14,
    .home-lookbook-1 #section-3 .envy-heading.style-14,
    .home-lookbook-1 #section-2 .envy-heading.style-14{
        margin-bottom: 25px;
        margin-top: 10px;
        font-size: 16px;
    }
}
/*-------------------- HOME LOOKBOOK 2 --------------------*/
.home-lookbook-2 #section-1 .section-inner{
    padding: 45px 0 50px;
    border-bottom: 2px solid #000;
}
.home-lookbook-2 #section-1 .envy-heading.style-14{
    margin-bottom: 42px;
}
.home-lookbook-2 #section-4 .section-inner,
.home-lookbook-2 #section-3 .section-inner,
.home-lookbook-2 #section-2 .section-inner{
    padding: 30px 0;
    border-bottom: 2px solid #000;
}
.home-lookbook-2 #section-4 .envy-heading.style-17,
.home-lookbook-2 #section-3 .envy-heading.style-17,
.home-lookbook-2 #section-2 .envy-heading.style-17{
    margin-bottom: 0;
}
.home-lookbook-2 #section-4 .envy-heading.style-18,
.home-lookbook-2 #section-3 .envy-heading.style-18,
.home-lookbook-2 #section-2 .envy-heading.style-18{
    margin-bottom: 4px;
}
.home-lookbook-2 #section-4 .envy-heading.style-14,
.home-lookbook-2 #section-3 .envy-heading.style-14,
.home-lookbook-2 #section-2 .envy-heading.style-14{
    max-width: 310px;
    margin: 16px auto 76px;
    position: relative;
}
.home-lookbook-2 #section-4 .envy-heading.style-14::after,
.home-lookbook-2 #section-3 .envy-heading.style-14::after,
.home-lookbook-2 #section-2 .envy-heading.style-14::after{
    content: '';
    display: block;
    max-width: 230px;
    height: 2px;
    background-color: #e5e5e5;
    margin: 27px auto 0;
}
.home-lookbook-2 #section-2 .envy-pinmap.style-1 .pinmap-1{
    top: 13.2%;
    left: 59%;
}
.home-lookbook-2 #section-2 .envy-pinmap.style-1 .pinmap-2{
    top: 56%;
    left: 34%;
}
.home-lookbook-2 #section-2 .envy-pinmap.style-1 .pinmap-3{
    top: 87.3%;
    left: 58.8%;
}
.home-lookbook-2 #section-3 .envy-pinmap.style-1 .pinmap-1{
    top: 16.2%;
    left: 56.5%;
}
.home-lookbook-2 #section-3 .envy-pinmap.style-1 .pinmap-2{
    top: 57%;
    left: 27.2%;
}
.home-lookbook-2 #section-3 .envy-pinmap.style-1 .pinmap-3{
    top: 91.3%;
    left: 70.8%;
}
.home-lookbook-2 #section-4 .envy-pinmap.style-1 .pinmap-1{
    top: 30.2%;
    left: 39.5%;
}
.home-lookbook-2 #section-4 .envy-pinmap.style-1 .pinmap-2{
    top: 90%;
    left: 57.2%;
}
.home-lookbook-2 #section-5{
    padding: 60px 0 50px;
}
@media (min-width: 992px){
    .home-lookbook-2 #section-4 .custom-1,
    .home-lookbook-2 #section-3 .custom-1,
    .home-lookbook-2 #section-2 .custom-1{
        display: flex;
    }
    .home-lookbook-2 #section-4 .custom-2,
    .home-lookbook-2 #section-4 .custom-3,
    .home-lookbook-2 #section-3 .custom-2,
    .home-lookbook-2 #section-3 .custom-3,
    .home-lookbook-2 #section-2 .custom-2,
    .home-lookbook-2 #section-2 .custom-3{
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .home-lookbook-2 #section-4 .custom-1,
    .home-lookbook-2 #section-2 .custom-1{
        direction: rtl;
    }
    .home-lookbook-2 #section-4 .custom-1 > *,
    .home-lookbook-2 #section-2 .custom-1 > *{
        direction: ltr;
    }
}
@media (max-width: 1199px){
    .home-lookbook-2 #section-4 .envy-heading.style-14,
    .home-lookbook-2 #section-3 .envy-heading.style-14,
    .home-lookbook-2 #section-2 .envy-heading.style-14{
        margin-bottom: 40px;
    }
}
@media (max-width: 991px){
    .home-lookbook-2 #section-4 .section-inner,
    .home-lookbook-2 #section-3 .section-inner,
    .home-lookbook-2 #section-2 .section-inner{
        padding: 40px 0;
    }
    .home-lookbook-2 #section-4 .section-inner .envy-pinmap.style-1,
    .home-lookbook-2 #section-3 .section-inner .envy-pinmap.style-1,
    .home-lookbook-2 #section-2 .section-inner .envy-pinmap.style-1{
        padding-bottom: 30px;
        max-width: 570px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px){
    .home-lookbook-2 #section-3,
    .home-lookbook-2 #section-2,
    .home-lookbook-2 #section-1{
        margin-bottom: 40px;
    }
    .home-lookbook-2 #section-4 .section-inner,
    .home-lookbook-2 #section-3 .section-inner,
    .home-lookbook-2 #section-2 .section-inner{
        padding: 40px 0 50px;
    }
    .home-lookbook-2 #section-4 .section-inner .envy-pinmap.style-1,
    .home-lookbook-2 #section-3 .section-inner .envy-pinmap.style-1,
    .home-lookbook-2 #section-2 .section-inner .envy-pinmap.style-1{
        margin-bottom: 30px;
    }
    .home-lookbook-2 #section-1 .section-inner{
        padding: 35px 0 40px;
    }
    .home-lookbook-2 #section-1 .envy-heading.style-17 span{
        display: block;
        margin-top: -10px;
    }
    .home-lookbook-2 #section-1 .envy-heading.style-14{
        margin-bottom: 25px;
        font-size: 16px;
    }
    .home-lookbook-2 #section-5{
        padding: 80px 0;
    }
    .home-lookbook-2 #section-4 .envy-heading.style-17,
    .home-lookbook-2 #section-3 .envy-heading.style-17,
    .home-lookbook-2 #section-2 .envy-heading.style-17,
    .home-lookbook-2 #section-1 .envy-heading.style-17{
        font-size: 35px;
        line-height: 38px;
    }
    .home-lookbook-2 #section-4 .envy-heading.style-18,
    .home-lookbook-2 #section-3 .envy-heading.style-18,
    .home-lookbook-2 #section-2 .envy-heading.style-18{
        font-size: 32px;
        line-height: 28px;
    }
    .home-lookbook-2 #section-4 .envy-heading.style-14,
    .home-lookbook-2 #section-3 .envy-heading.style-14,
    .home-lookbook-2 #section-2 .envy-heading.style-14{
        margin-bottom: 50px;
        margin-top: 30px;
        font-size: 16px;
    }
}

/*-------------------- HOME PROMOBANNER --------------------*/
.home-promobanner #section-1{
    margin-bottom: 20px;
}
.home-promobanner #section-2 .section-inner{
    padding-bottom: 30px;
    border-bottom: 2px solid #000;
    margin-bottom: 50px;
}
.home-promobanner #section-4 .row,
.home-promobanner #section-2 .row{
    margin-left: -10px;
    margin-right: -10px;
}
.home-promobanner #section-4 [class^="col-"],
.home-promobanner #section-4 [class*=" col-"],
.home-promobanner #section-2 [class^="col-"],
.home-promobanner #section-2 [class*=" col-"]{
    padding-left: 10px;
    padding-right: 10px;
}
.home-promobanner #section-2 .envy-banner.style-11{
    margin-bottom: 30px;
}
.home-promobanner #section-3{
    margin-bottom: 30px;
}
.home-promobanner #section-3 .envy-heading.style-4{
    margin-bottom: 40px;
}
.home-promobanner #section-3 .envy-product.style-1{
    margin-bottom: 60px;
}
.home-promobanner #section-4{
    margin-bottom: 10px;
}
.home-promobanner #section-4 .envy-banner.style-11{
    margin-bottom: 20px;
}
.home-promobanner #section-5{
    margin-bottom: 40px;
}
.home-promobanner #section-5 .envy-banner.style-12,
.home-promobanner #section-5 .envy-banner.style-13{
    margin-bottom: 80px;
}
.home-promobanner #section-6{
    padding: 50px 0 60px;
    background-color: #f0f0f0;
}
.home-promobanner #section-6 .envy-heading.style-4{
    margin-bottom: 40px;
}
@media (min-width: 992px){
    .home-promobanner #section-5 .custom-2{
        padding-left: 5px;
    }
}
@media (max-width: 991px){
    .home-promobanner #section-1{
        padding-top: 20px;
    }
}
@media (max-width: 767px){
    .home-promobanner #section-1{
        padding-top: 15px;
        margin-bottom: 80px;
    }
    .home-promobanner #section-4 .envy-banner.style-11,
    .home-promobanner #section-2 .envy-banner.style-11{
        margin-bottom: 80px;
    }
    .home-promobanner #section-4 .envy-banner.style-11 .title,
    .home-promobanner #section-2 .envy-banner.style-11 .title{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .home-promobanner #section-2 .section-inner{
        padding-bottom: 0;
        margin-bottom: 0;
        border: none;
    }
    .home-promobanner #section-3{
        margin-bottom: 80px;
    }
    .home-promobanner #section-3 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
    .home-promobanner #section-3 .envy-product.style-1{
        margin-bottom: 50px;
    }
    .home-promobanner #section-5{
        margin-bottom: 0;
    }
    .home-promobanner #section-6{
        padding: 55px 0 50px;
        margin-bottom: 80px;
    }
    .home-promobanner #section-6 .envy-heading.style-4{
        margin-bottom: 50px;
        font-size: 20px;
    }
}
/*-------------------- HOME BOXED --------------------*/
.boxed-template{
    background-color: #eee;
}
.boxed-template .site{
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}
/*==========================================================================
FOOTER
===========================================================================*/
/* footer element */
.footer{
    background-color: #000;
    color: #666;
}
.footer a:hover,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6{
    color: #fff;
}
.footer .button,
.footer button,
.footer input[type="submit"]{
    background-color: #fff;
    color: #000;
}
.footer .button:hover,
.footer .button:focus,
.footer button:hover,
.footer input[type="submit"]:hover{
    color: #000;
}
.footer input[type="text"],
.footer input[type="email"],
.footer input[type="password"],
.footer input[type="tel"],
.footer input[type="search"],
.footer input[type="url"],
.footer select,
.footer textarea{
    border-color: #333;
    color: #aaa;
}
.footer .envy-heading.style-1,
.footer .envy-heading.style-2,
.footer .envy-heading.style-4,
.footer .envy-heading.style-6,
.footer .envy-heading.style-7,
.footer .envy-heading.style-8,
.footer .envy-heading.style-9,
.footer .envy-heading.style-11,
.footer .envy-heading.style-12{
    color: #fff;
}
.footer .envy-heading.style-15{
    color: #aaa;
}
.footer .envy-heading.style-15 span{
    color: #fff;
}
.footer .envy-button.style-2 .button{
    color: #fff;
}
.footer .envy-button.style-2 .button:hover{
    color: #000;
    border-color: #fff;
    background-color: #fff;
}
.footer .envy-menu.style-1{
    color: #aaa;
}
.footer .envy-menu.style-2{
    color: #ccc;
}
.footer .envy-socials.style-1 ul li a{
    background-color: #fff;
    color: #000;
}
.footer .envy-newsletter.style-2 .input{
    border-color: transparent;
    padding-left: 0;
    border-bottom-color: #fff;
}
/*-------------------- FOOTER 01 --------------------*/
.footer.style-3 .footer-middle .footer-inner,
.footer.style-2 .footer-middle .footer-inner,
.footer.style-1 .footer-middle .footer-inner{
    border-bottom: 2px solid #1a1a1a;
    padding-top: 55px;
    padding-bottom: 30px;
}
.footer.style-3 .footer-middle .custom-1,
.footer.style-3 .footer-middle .custom-2,
.footer.style-3 .footer-middle .custom-3,
.footer.style-3 .footer-middle .custom-4,
.footer.style-2 .footer-middle .custom-1,
.footer.style-2 .footer-middle .custom-2,
.footer.style-2 .footer-middle .custom-3,
.footer.style-2 .footer-middle .custom-4,
.footer.style-1 .footer-middle .custom-1,
.footer.style-1 .footer-middle .custom-2,
.footer.style-1 .footer-middle .custom-3,
.footer.style-1 .footer-middle .custom-4{
    margin-bottom: 30px;
}
.footer.style-3 .footer-bottom .footer-inner,
.footer.style-2 .footer-bottom .footer-inner,
.footer.style-1 .footer-bottom .footer-inner{
    padding-top: 15px;
    padding-bottom: 15px;
}
.footer.style-3 .footer-bottom .custom-5,
.footer.style-3 .footer-bottom .custom-6,
.footer.style-2 .footer-bottom .custom-5,
.footer.style-2 .footer-bottom .custom-6,
.footer.style-1 .footer-bottom .custom-5,
.footer.style-1 .footer-bottom .custom-6{
    padding-top: 5px;
    padding-bottom: 5px;
}
.footer.style-1 .footer-middle .envy-heading.style-1{
    margin-bottom: 23px;
}
.footer.style-1 .footer-middle .envy-newsletter.style-1{
    padding-top: 9px;
    margin-bottom: 40px;
}
@media (min-width: 992px){
    .footer.style-3 .footer-bottom .envy-gallery.style-1,
    .footer.style-2 .footer-bottom .envy-gallery.style-1,
    .footer.style-1 .footer-bottom .envy-gallery.style-1{
        text-align: right;
    }
    .footer.style-1 .footer-middle .custom-1{
        width: 20%;
    }
    .footer.style-1 .footer-middle .custom-2{
        width: 21%;
    }
    .footer.style-1 .footer-middle .custom-3{
        width: 26%;
    }
    .footer.style-1 .footer-middle .custom-4{
        width: 33%;
    }
}
@media (max-width: 1199px) and (min-width: 992px){
    .footer.style-1 .footer-middle .custom-1,
    .footer.style-1 .footer-middle .custom-2,
    .footer.style-1 .footer-middle .custom-3{
        width: 21%;
    }
    .footer.style-1 .footer-middle .custom-4{
        width: 37%;
    }
}
@media (max-width: 991px){
    .footer.style-3 .footer-bottom .envy-menu.style-2,
    .footer.style-3 .footer-bottom .envy-gallery.style-1,
    .footer.style-2 .footer-bottom .envy-menu.style-2,
    .footer.style-2 .footer-bottom .envy-gallery.style-1,
    .footer.style-1 .footer-bottom .envy-menu.style-2,
    .footer.style-1 .footer-bottom .envy-gallery.style-1{
        text-align: center;
    }
}
@media (max-width: 767px){
    .footer.style-1 .footer-middle .envy-newsletter.style-1{
        margin-bottom: 50px;
    }
    .footer.style-1 .footer-middle .footer-inner{
        padding-top: 70px;
        padding-bottom: 15px;
    }
    .footer.style-1 .footer-middle .envy-heading.style-1{
        margin-bottom: 15px;
    }
}
/*-------------------- FOOTER 02 --------------------*/
.footer.style-2 .footer-middle .envy-heading.style-1{
    margin-bottom: 13px;
}
.footer.style-2 .footer-middle .envy-newsletter.style-2{
    margin-bottom: 30px;
}
@media (min-width: 992px){
    .footer.style-2 .footer-middle .custom-1{
        width: 19%;
    }
    .footer.style-2 .footer-middle .custom-2{
        width: 19%;
    }
    .footer.style-2 .footer-middle .custom-3{
        width: 29%;
    }
    .footer.style-2 .footer-middle .custom-4{
        width: 33%;
    }
}
@media (max-width: 1199px) and  (min-width: 992px){
    .footer.style-2 .footer-middle .custom-1,
    .footer.style-2 .footer-middle .custom-2,
    .footer.style-2 .footer-middle .custom-3{
        width: 21%;
    }
    .footer.style-2 .footer-middle .custom-4{
        width: 37%;
    }
}
/*-------------------- FOOTER 03 --------------------*/
.footer.style-3 .footer-middle .envy-heading.style-1{
    margin-bottom: 13px;
}
.footer.style-3 .footer-middle .envy-heading.style-15{
    margin-bottom: 4px;
}
.footer.style-3 .footer-middle .envy-button.style-2 .button{
    min-width: 260px;
}
@media (min-width: 768px){
    .footer.style-3 .footer-middle .custom-1 .envy-heading.style-1{
        margin-bottom: 20px;
    }
    .footer.style-3 .footer-middle .custom-4 .envy-heading.style-1{
        margin-bottom: 23px;
    }
}
@media (min-width: 992px){
    .footer.style-3 .footer-middle .custom-1{
        width: 27%;
    }
    .footer.style-3 .footer-middle .custom-2{
        width: 19%;
    }
    .footer.style-3 .footer-middle .custom-3{
        width: 20%;
    }
    .footer.style-3 .footer-middle .custom-4{
        width: 34%;
    }
}
@media (max-width: 1199px) and  (min-width: 992px){
    .footer.style-3 .footer-middle .custom-1,
    .footer.style-3 .footer-middle .custom-4{
        width: 30%;
    }
    .footer.style-3 .footer-middle .custom-2{
        width: 21%;
    }
    .footer.style-3 .footer-middle .custom-3{
        width: 19%;
    }
}
/*-------------------- BACK TO TOP --------------------*/
a.backtotop:not(.show){
    -webkit-transform: translateX(75px);
    -moz-transform: translateX(75px);
    -ms-transform: translateX(75px);
    -o-transform: translateX(75px);
    transform: translateX(75px);
}
a.backtotop{
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #000;
    background-color: #fff;
    z-index: 9;
    color: #222;
}
a.backtotop:hover{
    background-color: #000;
    color: #fff;
}
@media (max-width: 991px){
    a.backtotop{
        display: none !important;
    }
}
/*-------------------- MOBILE HEADER --------------------*/
.header-mobile-nav{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    z-index: 22;
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-mobile-nav:not(.is-sticky){
    box-shadow: none;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.header-mobile-nav .mobile-inner{
    font-size: 0;
    line-height: 0;
    position: relative;
}
.header-mobile-nav .mobile-inner > *{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
}
.header-mobile-nav .logo{
    width: calc(100% - 150px);
}
.header-mobile-nav .mobile-control{
    text-align: right;
    width: 150px;
}
.header-mobile-nav .mobile-control > *{
    display: inline-block;
    vertical-align: top;
}
.header-mobile-nav .mobile-control > * > a{
    display: block;
    color: #000;
    padding: 10px;
}
.header-mobile-nav .mobile-control > *:last-child > a{
    padding-right: 0;
}
.header-mobile-nav .envy-dropdown{
    position: static;
}
.header-mobile-nav .envy-dropdown > .sub-menu{
    left: 0;
    right: 0;
    width: auto;
}

@media  ( max-width: 767px ) {
    .header-mobile-nav .envy-dropdown > .sub-menu{
        left: auto;
        width: 290px;
    }
}
.header-mobile-nav .header-search.style-1 .link-dropdown{
    font-size: 18px;
    line-height: 20px;
}
.header-mobile-nav .header-search.style-1 .search-form{
    margin: 15px;
}
.header-mobile-nav .header-cart .link-dropdown{
    font-size: 16px;
    line-height: 20px;
}
.header-mobile-nav .header-cart .link-dropdown > *:not(.icon){
    display: none;
}
@media (max-width: 991px){
    .header-mobile-nav{
        display: block;
    }
    .header{
        padding-top: 70px;
    }
    .header > *{
        display: none;
    }
}
@media (max-width: 479px){
    .header-mobile-nav .mobile-inner > *{
        padding: 5px 0;
    }
    .header{
        padding-top: 60px;
    }
}
/*-------------------- MOBILE NAV --------------------*/
.footer-mobile-nav{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    z-index: 22;
    max-width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer-mobile-nav:not(.is-sticky){
    box-shadow: none;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.footer-mobile-nav a.backtotop{
    display: block !important;
    position: static;
    width: auto;
    height: auto;
    font-size: inherit;
    line-height: inherit;
    border: none;
    z-index: inherit;
    color: inherit;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.footer-mobile-nav a.backtotop:hover{
    background-color: transparent;
    color: #000;
}
.footer-mobile-nav .footer-mobile-nav-inner{
    display: table;
    width: 100%;
}
.footer-mobile-nav .footer-mobile-nav-inner > *{
    display: table-cell;
    vertical-align: middle;
    width: 10%;
}
.footer-mobile-nav .footer-mobile-nav-inner .footer-mobile-nav-sidebar{
    display: none;
}
.inner-page-blog:not(.no-sidebar) ~ .footer-mobile-nav .footer-mobile-nav-sidebar,
.inner-page-post:not(.no-sidebar) ~ .footer-mobile-nav .footer-mobile-nav-sidebar,
.inner-page-shop ~ .footer-mobile-nav .footer-mobile-nav-sidebar,
.inner-page-product:not(.no-sidebar) ~ .footer-mobile-nav .footer-mobile-nav-sidebar{
    display: table-cell;
}
.footer-mobile-nav a{
    display: block;
    padding: 12px 0 8px;
}
.footer-mobile-nav .icon{
    display: block;
}
.footer-mobile-nav .text{
    display: block;
}
.footer-mobile-nav .footer-mobile-nav-home .icon{
    font-size: 20px;
}
.footer-mobile-nav .footer-mobile-nav-sidebar .icon{
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 18px;
    font-size: 0;
    line-height: 0;
    padding: 3px 0 5px;
}
.footer-mobile-nav .footer-mobile-nav-sidebar .icon span{
    display: block;
    width: 100%;
    height: 2px;
    border: 1px solid;
}
.footer-mobile-nav .footer-mobile-nav-sidebar .icon span:not(:last-child){
    margin-bottom: 3px;
}
.footer-mobile-nav .footer-mobile-nav-backtotop .icon{
    font-size: 18px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.head-mobile-sidebar{
    display: none;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
}
.title-mobile-sidebar{
    font-size: 16px;
    line-height: 30px;
    margin: 0 50px 0 0;
    padding: 7px 0;
    text-transform: uppercase;
    text-align: center;
}
.close-mobile-sidebar{
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    font-size: 0;
    line-height: 0;
    border-left: 1px solid #eee;
}
.close-mobile-sidebar::before,
.close-mobile-sidebar::after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 13px;
    height: 2px;
    border-radius: 90px;
    background-color: #555;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.close-mobile-sidebar:not(:hover)::before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-mobile-sidebar:not(:hover)::after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.slick-slider:not(.slick-initialized)>*:not(:first-child){
    display: none;
}
@media (max-width: 991px){
    .product-item.style-1 .onsale,
    .product-item.style-1 .onnew{
        width: 43px;
        height: 43px;
        font-size: 13px;
        padding: 0;
        line-height: 45px;
    }
    .footer-mobile-nav{
        display: block;
    }
    .footer{
        padding-bottom: 60px;
    }
    body.open-mobile-sidebar .overlay-body{
        visibility: visible;
        opacity: 1;
    }
    body.open-mobile-sidebar .sidebar,
    body.open-mobile-sidebar .shop-filter{
        left: 0;
    }
    .head-mobile-sidebar{
        display: block;
    }
    .sidebar,
    .shop-filter{
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        max-width: 100vw;
        height: 100vh;
        background-color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        z-index: 100000;
        -webkit-box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        color: #000;
        margin: 0;
        padding: 0;
    }
    .sidebar .widget-area,
    .shop-filter .widget-area{
        height: calc(100% - 44px);
        padding: 20px 15px 30px;
        overflow-y: auto;
    }
    .shop-filter .widget .action{
        display: none;
    }
    .shop-filter-01 .shop-filter .widget .sub-menu,
    .shop-filter-02 .shop-filter .widget-area{
        position: static;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        text-align: inherit;
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .shop-filter-02 .shop-filter > .link-dropdown{
        display: none;
    }
    .shop-filter-02 .widget-area .widget{
        padding-bottom: 20px;
        border-bottom: 2px solid #d9d9d9;
        margin-bottom: 30px;
    }
    .shop-filter-02 .filter-col:last-child .widget:last-child{
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) and (min-width: 768px){
    .shop-filter-02 .shop-control > *:nth-last-child(2){
        margin-right: 0;
        float: right;
    }
}

@media (max-width: 479px){
    .footer-mobile-nav{
        font-size: 13px;
        line-height: 18px;
    }
    .footer-mobile-nav a{
        padding: 6px 0 4px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="search"],
    input[type="url"],
    input[type="number"],
    select,
    textarea{
        padding-top: 10px;
        padding-bottom: 6px;
    }
    .header-cart .cart-title,
    .header-main-menu .main-menu > .menu-item > .sub-menu:not(.mega-menu) .menu-item > a,
    .added_to_cart,
    .button,
    button,
    input[type="submit"]{
        padding-top: 12px;
        padding-bottom: 8px;
    }
    .added_to_cart > span,
    .button > span,
    button > span,
    input[type="submit"] > span{
        margin-top: -2px;
    }
    .header-cart .cart-total p{
        padding-top: 16px;
        padding-bottom: 14px;
    }
    .header-mobile-menu a,
    .header-main-menu .main-menu > .menu-item > a{
        padding-top: 17px;
        padding-bottom: 15px;
    }
    .header-mobile-menu a .icon{
        margin-top: -2px;
    }
    .header.style-8 .header-bottom .header-message,
    .header.style-2 .header-bottom .header-message{
        padding-top: 16px;
        padding-bottom: 14px;
    }
    .header.style-8 .header-bottom .header-message > *:not(:last-child)::before,
    .header.style-2 .header-bottom .header-message > *:not(:last-child)::before{
        top: -2px;
        bottom: 2px;
    }
    .header.style-8 .header-middle .header-mobile-menu a,
    .header.style-7 .header-middle .header-mobile-menu a,
    .header-search.style-4 .link-dropdown,
    .header-search.style-3 .link-dropdown,
    .header-search.style-2 .link-dropdown,
    .envy-dropdown > .sub-menu > .menu-item > a,
    .header.style-1 .header-message,
    .header-user .link-dropdown,
    .header-currency .link-dropdown,
    .header-cart .link-dropdown{
        padding-top: 7px;
        padding-bottom: 3px;
    }
    .product-item.style-1 .product-button .button::after,
    .header-currency .link-dropdown::after,
    .header-user .link-dropdown > .icon,
    .header-cart .link-dropdown > .icon,
    .header-search.style-4 .link-dropdown > .icon,
    .header-search.style-3 .link-dropdown > .icon,
    .header-search.style-2 .link-dropdown > .icon{
        margin-top: -2px;
    }
    .header-search.style-2 .search-form .input,
    .header-search.style-1 .search-form .input{
        padding-top: 4px;
        padding-bottom: 2px;
    }
    .header-user .user-form .forget-pass,
    .header-user .user-form .login-rememberme label > span{
        padding-top: 2px;
        margin-bottom: -2px;
    }
    .envy-heading.style-4 > span{
        line-height: 33px;
        padding-top: 3px;
    }
    .envy-heading.style-4 > span span{
        margin-top: -3px;
    }
    .product-item.style-1 .product-quickview{
        padding-top: 9px;
        padding-bottom: 5px;
    }
    .blog-item .blog-readmore a,
    .envy-banner.style-1 .button,
    .envy-banner.style-3 .button,
    .product-item.style-1 .product-button .button,
    .product-item.style-1 .product-add-to-cart > .button,
    .product-item.style-1 .product-variation .value.label{
        line-height: 14px;
        border-top-width: 4px;
    }
    .product-item.style-1 .onsale,
    .product-item.style-1 .onnew{
        line-height: 51px;
        padding-top: 5px;
    }
    .envy-category.style-1 .category-title a{
        line-height: 16px;
        padding-top: 2px;
    }
    .envy-menu.style-2 ul li{
        padding-top: 5px;
        padding-bottom: 1px;
    }
    .envy-instagram.style-1 .instagram-info > *{
        padding-top: 5px;
        padding-bottom: 1px;
    }
    .envy-instagram.style-1 .instagram-info > * > .icon{
        margin-top: -2px;
    }
    .envy-button.style-2 .button,
    .envy-newsletter.style-3 .input,
    .envy-newsletter.style-2 .input{
        padding-top: 8px;
        padding-bottom: 4px;
    }
    .promotion-banner.banner-3 .slide-2 .text-4 span{
        line-height: 28px;
        padding-top: 4px;
    }
    .envy-banner.style-2{
        padding-top: 19px;
        padding-bottom: 17px;
    }
    .envy-banner.style-2 > a span{
        margin-top: -2px;
    }
    .envy-instagram.style-1 .instagram-head .title > span{
        line-height: 27px;
        padding-top: 3px;
    }
    .envy-instagram.style-1 .instagram-head .title > span span{
        margin-top: -3px;
    }
    .header.style-6 .header-top{
        padding-top: 16px;
        padding-bottom: 12px;
    }
    .header-search.style-3 .search-form .input{
        padding-top: 13px;
        padding-bottom: 9px;
    }
    .header.style-9 .header-top .header-mobile-menu a,
    .header.style-9 .header-top .header-main-menu .main-menu > .menu-item > a{
        padding-top: 15px;
        padding-bottom: 13px;
    }
    .envy-popup .popup-title,
    .envy-newsletter.style-3 .button,
    .envy-newsletter.style-2 .button{
        padding-top: 10px;
        padding-bottom: 6px;
    }
    .header.style-11 .header-top .header-message p{
        padding: 8px 0 12px;
    }
    .header.style-11 .header-top .header-message p .button::after{
        bottom: 1px;
    }
    .header.style-11 .header-top .header-message p .button span{
        margin-top: 3px;
        margin-bottom: -3px;
    }
    .checkout-form .coupon .button,
    .checkout-form .coupon .input{
        padding-top: 10px;
        padding-bottom: 6px;
    }
    .banner-image .button::after,
    .checkout-form .checkout-pagination .next::after,
    .checkout-form .coupon .button::after{
        margin-top: -2px;
    }
    .checkout-form .result-step{
        padding-top: 12px;
        padding-bottom: 8px;
    }
    .breadcrumb,
    .checkout-form .form-row-checkbox label,
    .checkout-form .result-step.step-2{
        padding-top: 17px;
        padding-bottom: 13px;
    }
    .checkout-form .form-row-checkbox label input[type="radio"],
    .checkout-form .form-row-checkbox label input[type="checkbox"],
    .checkout-form .result-step.step-2 input[type="radio"],
    .checkout-form .result-step.step-2 input[type="checkbox"]{
        margin-top: -2px;
    }
    .checkout-form .form-checkbox label{
        padding-top: 2px;
        margin-bottom: -2px;
    }
    .checkout-form .form-checkbox label input[type="radio"],
    .checkout-form .form-checkbox label input[type="checkbox"]{
        margin-top: -2px;
    }
    .checkout-form .form-row-card .head > .title,
    .checkout-form .form-row-card .head > span{
        padding-top: 5px;
        padding-bottom: 1px;
    }
    .pagination .page-numbers{
        padding-top: 4px;
        margin-bottom: -2px;
    }
    .product-summary .product-variation .value,
    .shopping-cart-form .shop_table .variation a{
        line-height: 24px;
        padding-top: 4px;
    }
    .shopping-cart-form .shop_table .quantity .input-qty{
        padding-top: 4px;
        padding-bottom: 0;
    }
    .checkout-process .process-point .step{
        line-height: 50px;
        padding-top: 4px;
    }
    .shop-filter-01 .shop-filter .widget .action .button{
        padding-top: 11px;
        padding-bottom: 7px;
    }
    .widget_product_sortby ul li a,
    .widget_product_size ul li a,
    .widget_product_brand ul li a,
    .widget_product_filter_2 ul li a,
    .widget_product_categories ul li a{
        padding-top: 2px;
        margin-bottom: -2px;
    }
    .widget_product_sortby ul li a::before,
    .widget_product_size ul li a::before,
    .widget_product_brand ul li a::before,
    .widget_product_filter_2 ul li a::before,
    .widget_product_categories ul li a::before{
        margin-top: -2px;
    }
    .shop-filter-checked .checked-item{
        padding-top: 7px;
        padding-bottom: 3px;
    }
    .shop-filter-checked .checked-item::before{
        margin-top: -2px;
    }
}

@media (max-width: 991px){
    .product-item.style-1 .onsale,
    .product-item.style-1 .onnew{
        width: 43px;
        height: 43px;
        font-size: 13px;
        padding-top: 0;
        line-height: 45px;
    }
    .header-cart .sub-menu{
        left: auto;
        width: 333px;
    }
    .inner-page-product .sidebar .widgettitle{
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width: 767px){
    .footer.style-3 .footer-middle .custom-1,
    .footer.style-3 .footer-middle .custom-2,
    .footer.style-3 .footer-middle .custom-3,
    .footer.style-3 .footer-middle .custom-4,
    .footer.style-2 .footer-middle .custom-1,
    .footer.style-2 .footer-middle .custom-2,
    .footer.style-2 .footer-middle .custom-3,
    .footer.style-2 .footer-middle .custom-4,
    .footer.style-1 .footer-middle .custom-1,
    .footer.style-1 .footer-middle .custom-2,
    .footer.style-1 .footer-middle .custom-3,
    .footer.style-1 .footer-middle .custom-4{
        margin-bottom: 50px;
    }
    .footer.style-3 .footer-bottom .custom-5,
    .footer.style-3 .footer-bottom .custom-6,
    .footer.style-2 .footer-bottom .custom-5,
    .footer.style-2 .footer-bottom .custom-6,
    .footer.style-1 .footer-bottom .custom-5,
    .footer.style-1 .footer-bottom .custom-6{
        padding-bottom: 10px;
    }
    .envy-heading.style-5{
        font-size: 19px;
    }
    .shop-filter-checked{
        margin-top: 15px;
    }
    .inner-page-product .main-content .envy-product.style-1{
        padding-bottom: 50px;
    }
    .product-summary .quantity,
    .product-summary .single_add_to_cart_button{
        margin-bottom: 0;
    }
    .product-summary .product-variation,
    .product-summary .product-guide,
    .product-summary .product-add-to-wishlist,
    .product-summary .cart{
        margin-bottom: 30px;
        margin-top: 0;
    }
    .product-summary .product-description{
        margin-top: 0;
    }
    .product-summary .product-variation > *{
        display: inline-block;
        width: 100%;
        margin-bottom: 30px;
    }
    .product-summary .product-variation{
        display: inline-block;
        width: 100%;
    }
    .product-summary .product-variation > *:last-child{
        margin-bottom: 0;
    }
    .product-summary .product-variation .variation-label{
        margin-bottom: 15px;
    }
    .product-summary .product-price{
        margin-bottom: 25px;
    }
    .inner-page-product.style-5 .product-summary .product-category,
    .product-summary .product-title,
    .product-summary .product-category{
        margin-top: 0;
        margin-bottom: 20px;
    }
    .inner-page-product .product-gallery{
        border-bottom: 2px solid #000000;
        padding-bottom: 35px;
        margin-bottom: 30px;
    }
    .inner-page-product .product-tabs{
        padding-top: 0;
    }
    .product-tabs .tabs-toggle{
        font-size: 16px;
    }
    .product-summary .product-description .subtitle{
        margin-top: 15px;
        margin-bottom: 5px !important;
    }
    .product-gallery .gallery-dots{
        margin-top: 30px;
    }
}
/* ===== AARRREAS HOMEPAGE SLIDER FIX ===== */

/* Remove gap below slider */

#section-1,
#section-1 .section-inner,
.promotion-banner,
.main-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Fix inconsistent slide height */

.promotion-banner.banner-1 {
    height: 820px !important;
    overflow: hidden;
}


/* Slick structure height fix */

.promotion-banner .slick-slider,
.promotion-banner .slick-list,
.promotion-banner .slick-track,
.banner-slide {
    height: 100% !important;
}

/* Image scaling fix */

.banner-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Remove left-right white gap */

#section-1 {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}

/* Mobile */

@media(max-width:768px){
    .promotion-banner.banner-1 {
        height: 300px !important;
    }
}
/* ===== MOBILE HERO GAP FIX ===== */

@media (max-width: 768px) {

    /* Lock hero height */

    .promotion-banner.banner-1 {
        height: 380px !important;
        min-height: 380px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Force slick wrappers */

    .promotion-banner .slick-list,
    .promotion-banner .slick-track,
    .promotion-banner .banner-slide {
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Remove image spacing */

    .banner-slide img {
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    /* Remove next section gap */

    #section-1,
    #section-1 .section-inner {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}
/* ===== MOBILE HERO SLIDER FIX ===== */

@media (max-width: 768px) {

.promotion-banner.banner-1 {
    height: 360px !important;
}

.promotion-banner .slick-list,
.promotion-banner .slick-track,
.promotion-banner .slick-slide,
.promotion-banner .banner-slide {
    height: 100% !important;
    margin-bottom: 0 !important;
}

.banner-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

#section-1,
#section-1 .section-inner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

}

/* ===== MOBILE PORTRAIT SLIDER GAP FIX (FINAL) ===== */

@media (max-width: 768px) and (orientation: portrait) {

html, body {
    overflow-x: hidden;
}

/* Lock hero container */

.promotion-banner.banner-1 {
    height: 380px !important;
    min-height: unset !important;
    max-height: unset !important;
}

/* Force slick wrapper */

.promotion-banner .slick-list,
.promotion-banner .slick-track {
    height: 380px !important;
}

/* Kill slide spacing bug */

.promotion-banner .slick-slide {
    height: 380px !important;
    margin-bottom: 0 !important;
}

/* Banner slide */

.promotion-banner .banner-slide {
    height: 380px !important;
    margin: 0 !important;
}

/* Image fix */

.promotion-banner .banner-slide img {
    height: 380px !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Remove next section margin */

#section-1,
#section-1 .section-inner,
.main-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Bootstrap row collapse fix */

.row {
    margin-bottom: 0 !important;
}

}
/* ===== iOS Chrome viewport bug fix ===== */

@supports (-webkit-touch-callout: none) {

@media (max-width: 768px) {

.promotion-banner.banner-1 {
    height: 380px !important;
}

/* Fix Chrome bottom gap */

.promotion-banner .slick-track {
    transform: translate3d(0,0,0) !important;
}

.promotion-banner .banner-slide img {
    min-height: 100% !important;
}

/* Kill phantom spacing */

#section-1 {
    margin-bottom: -4px !important;
}

}

}
