/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Italic;
    src: url('../fonts/montserrat/Montserrat-Italic.ttf');
}

@font-face {
    font-family: Montserrat-Black;
    src: url('../fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
    font-family: Linearicons;
    src: url('../fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Black;
    src: url('../fonts/poppins/Poppins-Black.ttf');
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



.wave {
    background: url(../images/wave.svg) repeat-x;
    top: -218px;
    width: 6400px;
    height: 198px;
    -webkit-animation: wave 28s cubic-bezier(.36,.45,.63,.53) infinite;
    animation: wave 28s cubic-bezier(.36,.45,.63,.53) infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
} 




.wave2 {
    background: url(../images/wave2.png) repeat-x;
    top: -218px;
    width: 6400px;
    height: 198px;
    -webkit-animation: wave2 28s cubic-bezier(.36,.45,.63,.53) infinite;
    animation: wave2 28s cubic-bezier(.36,.45,.63,.53) infinite;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}



.wave:nth-of-type(2) {
    top: -175px;
    -webkit-animation: wave 28s cubic-bezier(.36,.45,.63,.53) -125ms infinite,swell 7s ease -1.25s infinite;
    animation: wave 28s cubic-bezier(.36,.45,.63,.53) -125ms infinite,swell 7s ease -1.25s infinite;
    opacity: 1;
}

.wave:nth-of-type(3) {
    top: -155px;
    -webkit-animation: wave 16s cubic-bezier(.36,.45,.63,.53) -.55s infinite,swell 7s ease -1.45s infinite;
    animation: wave 16s cubic-bezier(.36,.45,.63,.53) -.55s infinite,swell 7s ease -1.45s infinite;
    /* opacity: .21; */
}

@-webkit-keyframes wave {
    0% {
        margin-left: 0;
    }

    to {
        margin-left: -1600px;
    }
}

@keyframes wave {
    0% {
        margin-left: 0;
    }

    to {
        margin-left: -1600px;
    }
}

@-webkit-keyframes swell {
    0%,to {
        -webkit-transform: translate3d(0,-25px,0);
        transform: translate3d(0,-25px,0);
    }

    50% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0);
    }
}

@keyframes swell {
    0%,to {
        -webkit-transform: translate3d(0,-25px,0);
        transform: translate3d(0,-25px,0);
    }

    50% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0);
    }
}













body, html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* ------------------------------------ */
a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

    a:focus {
        outline: none !important;
    }

    a:hover {
        text-decoration: none;
        color: #e65540;
    }

/* ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-family: Montserrat-Regular;
    font-size: 15px;
    line-height: 1.7;
    color: #888888;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/* ------------------------------------ */
input {
    outline: none;
    border: none !important;
}

textarea {
    outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
    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%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: black;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

    .select2-container .select2-selection--single {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        background-color: transparent;
        border: none;
        height: 20px;
        outline: none;
        position: relative;
    }

        /* in select */
        .select2-container .select2-selection--single .select2-selection__rendered {
            font-size: 13px;
            font-family: Montserrat-Regular;
            line-height: 20px;
            color: #888888;
            padding-left: 0px;
            background-color: transparent;
        }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: transparent;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    color: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 2px;
    margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
    z-index: 1251;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 5px;
    padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: #e65540;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #e65540;
    color: white;
}

.select2-results__options {
    font-size: 13px;
    font-family: Montserrat-Regular;
    color: #888888;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
    margin-left: 26px;
}

    .rs1-select2 .select2-container .select2-selection--single {
        height: 20px;
        ;
    }

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
    background-color: white;
    height: 50px;
}

    .rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 20px;
        color: #555555;
        padding-left: 22px;
    }

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

#dropDownSelect2 .select2-results__options {
    color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
    color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
    height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
    display: block;
}

.rs3-select2 .select2-selection__arrow:after {
    display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
    height: 40px;
}

    .rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15px;
    }

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
    /* height: 121px; */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    /* background: #d8ecf600; */
}

.fixed-header {
    height: 110px;
}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/



/*[ Top bar ]
===========================================================*/
.topbar {
    height: 75px;
    background-color: #d8ecf600;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ------------------------------------ */

.topbar-social {
    position: absolute;
    height: 100%;
    top: 0;
    right: 26em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-left: 36px;
}

.topbar-social-item {
    font-size: 18px;
    color: #fff;
    padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #fff;
    line-height: 1.7;
}

/* ------------------------------------ */
.topbar-child2 {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 38px;
}


/*[ Menu ]
===========================================================*/
.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 91%;
    height: 65px;
    /* background-color: #fddf3c; */
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 auto;
    background: #0a55a5;
    border-radius: 5px;
}

.fixed-header .wrap_header {
    height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/


.logo img {
    max-height: 150px;
    position: relative;
    top: 9px;
}


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .main_menu > li {
        display: block;
        position: relative;
        padding-top: 3px;
        padding-bottom: 6px;
        padding-left: 15px;
        padding-right: 15px;
    }

        .main_menu > li > a {
            font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
            font-size: 16px;
            color: #f4f8fb;
            padding: 0;
            border-bottom: 1px solid transparent;
        }

li.sale-noti > a {
    color: #e65540;
}

.main_menu > li:hover > a {
    text-decoration: none;
    border-bottom: 1px solid #333333;
}

.main_menu li {
    position: relative;
}

.main_menu > li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu {
    list-style-type: none;
    position: absolute;
    z-index: 1100;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: #222222;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.sub_menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu li {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
    padding: 10px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
}

.sub_menu > li:hover > a {
    color: #e65540;
    text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    right: 52px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
    height: 27px;
    position: relative;
}

    .header-wrapicon1 img,
    .header-wrapicon2 img {
        height: 100%;
    }

.header-icon1:hover,
.header-icon2:hover {
    cursor: pointer;
}

.header-icons-noti {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #111111;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 23px;
    margin-right: 23px;
    margin-top: 5px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
    position: absolute;
    z-index: 1100;
    width: 339px;
    top: 190%;
    right: -10px;
    padding: 20px;
    border-top: 3px solid #e6e6e6;
    background-color: white;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.show-header-dropdown {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.fixed-header .header-cart {
    top: 160%;
}

.header-cart-wrapitem {
    max-height: 270px;
    overflow: auto;
}

.header-cart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 5px;
    padding-top: 5px;
}

/* ------------------------------------ */
.header-cart-item-img {
    width: 80px;
    position: relative;
    margin-right: 20px;
}

    .header-cart-item-img img {
        width: 100%;
    }

    .header-cart-item-img::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .header-cart-item-img:hover:after {
        cursor: pointer;
        opacity: 1;
    }

/* ------------------------------------ */
.header-cart-item-txt {
    width: calc(100% - 100px);
}

.header-cart-item-name {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    margin-bottom: 12px;
}

.header-cart-item-info {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

.header-cart-total {
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 25px;
    padding-right: 3px;
}
/* ------------------------------------ */
.header-cart-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-cart-wrapbtn {
    width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
    display: block;
}

    .logo-mobile img {
        max-height: 68px;
    }

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.hamburger {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.linedivide2 {
    display: block;
    height: 20px;
    width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.header-icons-mobile .header-cart {
    width: 300px;
    top: 190%;
    right: -80px;
    z-index: 1100;
    transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
    width: 100%;
    background-color: white;
    display: none;
    border-top: 1px solid #ececec;
}

.side-menu {
    width: 100%;
}

    .side-menu li {
        list-style-type: none;
    }

    .side-menu .main-menu {
        margin-bottom: 0;
    }

.item-menu-mobile {
    background-color: #e65540;
}

.side-menu .main-menu > li > a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.side-menu .main-menu > li {
    color: white;
    position: relative;
}


.side-menu .main-menu .arrow-main-menu {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 5px;
    padding: 10px;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

    .side-menu .main-menu .arrow-main-menu:hover {
        cursor: pointer;
    }

.turn-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-menu .sub-menu a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu > li {
    padding-left: 12px;
    padding-top:;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #e65540 !important;
}

.side-menu .sub-menu {
    background-color: white;
    display: none;
}

@media (min-width: 992px) {
    .wrap-side-menu {
        display: none;
    }
}

/* ------------------------------------ */
.item-topbar-mobile {
    border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-social-moblie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------------------ */
.logo2 {
    display: block;
}

    .logo2 img {
        max-height: 27px;
    }

.fixed-header2 {
    z-index: 1300;
    position: fixed;
    height: 65px;
    left: 0;
    top: -70px;
    visibility: hidden;
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
}

    .fixed-header2 .header-cart {
        top: 160%;
    }

.show-fixed-header2 {
    visibility: visible;
    top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 320px;
    height: 100vh;
    border-right: 1px solid #e5e5e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    /*[ Menu ]
===========================================================*/
    .container-menu-header-v3 .wrap_header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        background-color: white;
    }


    /*[ Logo ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .logo3 {
        display: block;
    }

        .container-menu-header-v3 .logo3 img {
            max-width: 120px;
        }

    /*[ Header Icon ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .header-icons3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        position: unset;
    }

    /*[ Header cart ]
-----------------------------------------------------------
*/
    .container-menu-header-v3 .header-cart {
        left: -10px;
        transform-origin: top left;
    }

    /*[ Menu ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .main_menu {
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
    }

        .container-menu-header-v3 .main_menu > li {
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 0px;
            padding-right: 0px;
            text-align: center;
        }

    .container-menu-header-v3 .sub_menu {
        top: 0;
        left: 100%;
    }

    .container-menu-header-v3 .main_menu > li > .sub_menu {
        top: 10px;
        left: 95%;
    }

    .container-menu-header-v3 .sub_menu li {
        text-align: left;
    }

    .container-menu-header-v3 .topbar-social-item {
        padding: 10px 8px;
    }


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
    margin-left: 320px;
}

@media (max-width: 992px) {
    .wrap_header_mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex !important;
    }

    .wrap_header {
        display: none;
    }

    .container-menu-header-v3,
    .container-menu-header-v2,
    .container-menu-header {
        display: none;
    }

    .top-bar {
        display: none;
    }

    header {
        height: auto !important;
    }

    .container1-page {
        margin-left: 0px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 610px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.arrow-slick1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
    opacity: 0.5;
}

.arrow-slick1:hover {
    background-color: #e65540;
}

.next-slick1 {
    right: 50px;
    left: auto;
}

.prev-slick1 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 50px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 470px;
    }

    li.hassubs {
        background-color: #714402;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 40px;
    }

    li.hassubs {
        background-color: #714402;
    }


    .w-size1 {
        display: none;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .size24 {
        padding-top: 0 !important;
    }

    .item-slick1 {
        height: 370px;
    }


    .sizefull {
        width: 100%;
        height: 50%;
    }

    .fotter_botttom {
        padding-top: 0;
    }

    .contact-block ul li {
        text-align: left;
        width: 100% !important;
        margin-bottom: 12px;
    }

    section.about_aaya.p-t-40.p-b-40 {
        padding-top: 10px !important;
        margin-bottom: 1px !important;
    }

    .title_head {
        padding-bottom: 10px !important;
    }

    .title_head {
        font-size: 23px !important;
        margin-bottom: 0 !important;
    }

    .contact-block span {
        font-size: 14px !important;
        font-size: 16px !important;
        /* display: contents; */
        display: inline-flex;
        width: 71%;
    }

    .column li .fa {
        text-align: center;
        margin: 7px;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}




/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
    position: absolute;
    z-index: 100;
    top: calc((100% - 70px) / 2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 39px;
    color: #cccccc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .arrow-slick2:hover {
        color: #666666;
    }

.next-slick2 {
    right: -30px;
}

.prev-slick2 {
    left: -30px;
}

@media (max-width: 1280px) {
    .next-slick2 {
        right: 0px;
    }

    .prev-slick2 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick2 .next-slick2 {
        right: 0px;
    }

    .rs1-slick2 .prev-slick2 {
        left: 0px;
    }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .swal-button:hover {
        background-color: #333333;
    }

    .swal-button:active {
        background-color: #e65540;
    }

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale::before {
    background-color: #e65540;
    content: 'Sale';
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'New';
}

/* ------------------------------------ */
.block2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
    display: block;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 20px;
    color: white;
    line-height: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

    .block2-btn-addwishlist:hover {
        color: white;
    }

    .block2-btn-addwishlist .icon-wishlist,
    .block2-btn-towishlist .icon-wishlist {
        line-height: 0;
    }

    .block2-btn-addwishlist:hover .icon_heart_alt {
        display: none;
    }

    .block2-btn-addwishlist:hover .icon_heart {
        display: block;
    }

    /* ------------------------------------ */
    .block2-btn-towishlist .icon_heart_alt {
        display: none;
    }

    .block2-btn-towishlist .icon_heart {
        display: block;
        color: #e65540;
    }

/* ------------------------------------ */
.block2-overlay:hover {
    opacity: 1;
}

    .block2-overlay:hover .block2-btn-addcart {
        bottom: 20px;
    }

    .block2-overlay:hover .block2-btn-addwishlist,
    .block2-overlay:hover .block2-btn-towishlist {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5);
}

@media (max-width: 1360px) {
    .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1200px) {
    .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
    .rs1-block4 .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1380px) {
    .rs1-block4 .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 1200px) {
    .rs1-block4 .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .rs1-block4 .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
.block4-overlay {
    display: block;
    background-color: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}

    .block4-overlay:hover {
        color: unset;
    }

/* ------------------------------------ */
.block4-overlay-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
    transform-origin: top left;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
    visibility: visible;
    opacity: 1;
}

.block4:hover .block4-overlay-txt {
    bottom: 0;
}

.block4:hover .block4-overlay-heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 239px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

@media (max-width: 576px) {
    .bg-title-page .l-text2 {
        font-size: 35px;
    }

    .bg-title-page .m-text13 {
        font-size: 16px;
    }
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
    margin-right: 6px;
    margin-left: 6px;
    height: 4px;
    border: none;
    background-color: #e1e1e1;
}

    .leftbar #filter-bar .noUi-connect {
        background-color: #c5c5c5;
        border: none;
        box-shadow: none;
    }

    .leftbar #filter-bar .noUi-handle {
        width: 13px;
        height: 13px;
        left: -6px;
        top: -5px;
        border: none;
        border-radius: 50%;
        background: #999999;
        cursor: pointer;
        box-shadow: none;
        outline: none;
    }

        .leftbar #filter-bar .noUi-handle:before {
            display: none;
        }

        .leftbar #filter-bar .noUi-handle:after {
            display: none;
        }

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {
    background-color: #00bbec;
}

.color-filter2 {
    background-color: #2c6ed5;
}

.color-filter3 {
    background-color: #ffa037;
}

.color-filter4 {
    background-color: #ff5337;
}

.color-filter5 {
    background-color: #a88c77;
}

.color-filter6 {
    background-color: #393939;
}

.color-filter7 {
    background-color: #cccccc;
}

.checkbox-color-filter {
    display: none;
}

.color-filter {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
    box-shadow: 0 0 0px 2px black;
    -moz-box-shadow: 0 0 0px 2px black;
    -webkit-box-shadow: 0 0 0px 2px black;
    -o-box-shadow: 0 0 0px 2px black;
    -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
    margin-right: -6px;
    margin-left: -6px;
}

.item-pagination {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    margin: 6px;
}

    .item-pagination:hover {
        background-color: #222222;
        color: white;
    }

.active-pagination {
    background-color: #222222;
    color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
    width: 14.5%;
}

.slick3 {
    width: 80.64%;
}

.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

    .slick3-dots li img {
        width: 100%;
    }

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 3px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .slick3-dot-overlay:hover {
        border: 3px solid #888888;
    }

.slick3-dots .slick-active .slick3-dot-overlay {
    border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
    display: block;
}

.show-dropdown-content .up-mark {
    display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
    overflow: auto;
}

.container-table-cart::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    left: 0;
}

.container-table-cart::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    right: 0;
}

.table-shopping-cart {
    border-collapse: collapse;
    width: 100%;
    min-width: 992px;
}

    .table-shopping-cart .table-row {
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }

    .table-shopping-cart .column-1 {
        width: 225px;
        padding-left: 50px;
    }

    .table-shopping-cart .column-2 {
        width: 330px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-3 {
        width: 133px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-4 {
        width: 355px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-5 {
        padding-right: 30px;
    }

    .table-shopping-cart .table-head th {
        font-family: Montserrat-Bold;
        font-size: 13px;
        color: #555555;
        line-height: 1.5;
        text-transform: uppercase;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .table-shopping-cart td {
        font-family: Montserrat-Regular;
        font-size: 16px;
        color: #555555;
        line-height: 1.5;
        padding-top: 37px;
        padding-bottom: 30px;
    }

    .table-shopping-cart .table-row .column-2 {
        font-size: 15px;
    }


/* ------------------------------------ */
.cart-img-product {
    width: 90px;
    position: relative;
}

    .cart-img-product img {
        width: 100%;
    }

    .cart-img-product::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .cart-img-product:hover:after {
        cursor: pointer;
        opacity: 1;
    }


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    padding: 5px 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: 3px;
}

    .tag-item:hover {
        border: 1px solid #e65540;
    }


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: none;
    margin-right: -15px;
    margin-left: -15px;
}

    .tab01 .nav-tabs .nav-item {
        padding: 8px 16px;
    }

.tab01 .nav-link {
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #888888;
    line-height: 1.1;
}

    .tab01 .nav-link.active {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

    .tab01 .nav-link:hover {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

@media (max-width: 480px) {
    .tab01 .nav-tabs .nav-item {
        padding: 8px 6px;
    }

    .tab01 .nav-tabs {
        margin-right: -6px;
        margin-left: -6px;
    }
}


/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {
    padding-right: 0px !important;
}

.modal {
    padding: 0px !important;
    z-index: 1360;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.modal-open {
    overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
    background-color: transparent;
}

#modal-video-01 {
    background-color: rgba(0,0,0,0.8);
    z-index: 1350;
}

    #modal-video-01 .modal-dialog {
        max-width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.wrap-video-mo-01 {
    width: 854px;
    height: auto;
    position: relative;
    margin: 15px;
}

.video-mo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}

    .video-mo-01 iframe {
        width: 100%;
        height: 100%;
    }

.close-mo-video-01 {
    font-size: 50px;
    color: white;
    opacity: 0.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1250;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

    .close-mo-video-01:hover {
        cursor: pointer;
        opacity: 1;
    }


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

    input.num-product::-webkit-outer-spin-button,
    input.num-product::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Italic;
    src: url('../fonts/montserrat/Montserrat-Italic.ttf');
}

@font-face {
    font-family: Montserrat-Black;
    src: url('../fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
    font-family: Linearicons;
    src: url('../fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Black;
    src: url('../fonts/poppins/Poppins-Black.ttf');
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    /* background: linear-gradient(45deg, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); */
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Lato', sans-serif !important;
}

/* ------------------------------------ */
a {
    font-family: 'Lato', sans-serif !important;
    /*'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif*/
    font-weight: 400;
    font-size: 17px;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    color: #bb8d31;
    font-weight: 500;
}

p.widget__title {
    font-size: 16px;
    text-transform: uppercase;
    color: rgb(195, 160, 29);
    font-weight: 400;
    border-bottom: 1px solid #b47703;
    position: relative;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #e65540;
}

/* ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    /* font-family: 'Lato', sans-serif !important; */
}

.item_caption.inverted > div > h2 {
    color: #c5911d;
    font-family: 'Lato', sans-serif !important;
}

.item_caption.inverted > div > h6 {
    color: #130d01;
}

.banner_titlle {
    text-align: center;
}


.tmall-cat-description p {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
}

p {
    /* font-family: 'Fira Sans', sans-serif; */
    line-height: 1.7;
    color: #22283c !important;
    margin: 0px;
    /* font-family: 'Philosopher', sans-serif; */
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    text-align: justify;
}

.banner_titlle p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 200;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}

.banner_titlle h1 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 50px;
}

.blurb-image P {
    FONT-WEIGHT: 300;
}

a.button.primary.red.large {
    background: linear-gradient(to right,#9e7d17,#ffb600);
    background-color: #d54e0c !important;
    color: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    padding: 11px 37px;
    box-shadow: 0px 3px 1px #4a3409;
}

a.button.primary.orange.large {
    background: linear-gradient(to right, #d9c419 0%, #7dc744 100%);
    border-radius: 5px;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    font-size: 20px;
    font-weight: 400;
    padding: 11px 37px;
}
/* ------------------------------------ */
input {
    outline: none;
    border: none !important;
}

textarea {
    outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
    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%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    /* background-color: black; */
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

    .select2-container .select2-selection--single {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        background-color: transparent;
        border: none;
        height: 20px;
        outline: none;
        position: relative;
    }

        /* in select */
        .select2-container .select2-selection--single .select2-selection__rendered {
            font-size: 13px;
            font-family: Montserrat-Regular;
            line-height: 20px;
            color: #888888;
            padding-left: 0px;
            background-color: transparent;
        }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: transparent;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    color: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 2px;
    margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
    z-index: 1251;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 5px;
    padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: #e65540;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #e65540;
    color: white;
}

.select2-results__options {
    font-size: 13px;
    font-family: Montserrat-Regular;
    color: #888888;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
    margin-left: 26px;
}

    .rs1-select2 .select2-container .select2-selection--single {
        height: 20px;
        ;
    }

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
    background-color: white;
    height: 50px;
}

    .rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 20px;
        color: #555555;
        padding-left: 22px;
    }

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

#dropDownSelect2 .select2-results__options {
    color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
    color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
    height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
    display: block;
}

.rs3-select2 .select2-selection__arrow:after {
    display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
    height: 40px;
}

    .rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15px;
    }

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    /* background: #ffffff; */
    /* background-image: url(../images/hexagonal-pattern.jpg); */
    background-repeat: round;
}

.fixed-header {
    height: 110px;
}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
    width: 100%;
    /*box-shadow: 1px 1px 1px rgba(1, 3, 2, 0.6);*/
    top: 0;
    left: 0;
    /* position: relative; */
    z-index: 0;
    /* box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); */
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    /* -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); */
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    background: rgb(255, 239, 188);
    background: #046fde;
    /* border-bottom: 1px solid rgb(29, 29, 29); */
}

/*[ Top bar ]
===========================================================*/
.topbar {
    /* height: 62px; */
    /* background-color: #d8ecf600; */
    /* position: relative; */
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}


/* ------------------------------------ */

.topbar-social {
    /* position: absolute; */
    /* height: 100%; */
    /* top: 0; */
    /* right: 18px; */
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* align-items: center; */
    /* padding-left: 40px; */
}

.topbar-social-item {
    font-size: 16px;
    color: #f7f7f7;
    padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    color: #332723;
    line-height: 1.7;
    padding: 3px 10px;
    FONT-WEIGHT: 400;
}

/* ------------------------------------ */
.topbar-child2 {
    position: absolute;
    height: auto;
    top: 7px;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 0;
}


/*[ Menu ]


===========================================================*/

.top_bar1 {
    position: relative;
    z-index: 9999;
    HEIGHT: 40px;
    background: #020202;
    display: none;
}


button.CLOSEBTN {
    position: relative;
    top: 1px;
    font-weight: bold;
    font-size: 25px;
    color: #567b0a;
}



.text_titttle {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    height: 436px;
}

.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
    background-color: #bf4313;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fixed-header .wrap_header {
    height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/
.logo {
    display: block;
    position: absolute;
    left: 46px;
    top: 53%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .logo img {
        max-height: 122px;
        position: relative;
        top: 19px;
        left: 0;
    }


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .main_menu > li {
        display: block;
        position: relative;
        /* padding-top: 3px; */
        padding-bottom: 6px;
        padding-left: 0;
        padding-right: 0;
        padding: 0px 21px;
        /* border-left: 0px solid rgb(8, 16, 12); */
    }

        .main_menu > li > a {
            font-family: 'Lato', sans-serif !important;
            font-size: 16px;
            color: #ffffff;
            /* padding: 3px 11px; */
            font-weight: 600;
            text-transform: uppercase;
        }

li.sale-noti > a {
    color: #e65540;
}

.main_menu > li:hover > a {
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.main_menu li {
    position: relative;
}

.main_menu > li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu {
    list-style-type: none;
    position: absolute;
    z-index: 1100;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: #222222;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.sub_menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu li {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
    padding: 10px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
}

.sub_menu > li:hover > a {
    color: #e65540;
    text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    right: 52px;
    top: 41%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
    height: 33px;
    position: relative;
}

    .header-wrapicon1 img,
    .header-wrapicon2 img {
        height: 100%;
        margin: 5px 0px;
    }

.header-icon1:hover,
.header-icon2:hover {
    cursor: pointer;
}

.header-icons-noti {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #111111;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 9px;
    margin-right: 11px;
    margin-top: 3px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
    position: absolute;
    z-index: 1100;
    width: 339px;
    top: 190%;
    right: -10px;
    padding: 20px;
    border-top: 3px solid #e6e6e6;
    background-color: white;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.show-header-dropdown {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.fixed-header .header-cart {
    top: 160%;
}

.header-cart-wrapitem {
    max-height: 270px;
    overflow: auto;
}

.header-cart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0;
    padding-top: 0;
}

/* ------------------------------------ */
.header-cart-item-img {
    width: 80px;
    position: relative;
    margin-right: 20px;
}

    .header-cart-item-img img {
        width: 100%;
    }

    .header-cart-item-img::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .header-cart-item-img:hover:after {
        cursor: pointer;
        opacity: 1;
    }

/* ------------------------------------ */
.header-cart-item-txt {
    width: calc(100% - 100px);
}

.header-cart-item-name {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    margin-bottom: 12px;
}

.header-cart-item-info {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

.header-cart-total {
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 25px;
    padding-right: 3px;
}
/* ------------------------------------ */
.header-cart-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-cart-wrapbtn {
    width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
    display: block;
}



/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.hamburger {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.linedivide2 {
    display: block;
    height: 20px;
    width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.header-icons-mobile .header-cart {
    width: 300px;
    top: 190%;
    right: -80px;
    z-index: 1100;
    transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
    width: 100%;
    background-color: white;
    display: none;
    border-top: 1px solid #ececec;
}

.side-menu {
    width: 100%;
}

    .side-menu li {
        list-style-type: none;
    }

    .side-menu .main-menu {
        margin-bottom: 0;
    }

.item-menu-mobile {
    background-color: #714402;
}

.side-menu .main-menu > li > a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.side-menu .main-menu > li {
    color: white;
    position: relative;
}


.side-menu .main-menu .arrow-main-menu {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 5px;
    padding: 10px;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

    .side-menu .main-menu .arrow-main-menu:hover {
        cursor: pointer;
    }

.turn-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-menu .sub-menu a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu > li {
    padding-left: 12px;
    padding-top:;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #e65540 !important;
}

.side-menu .sub-menu {
    background-color: white;
    display: none;
}

@media (min-width: 992px) {
    .wrap-side-menu {
        display: none;
    }
}

/* ------------------------------------ */
.item-topbar-mobile {
    border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-social-moblie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------------------ */
.logo2 {
    display: block;
}

    .logo2 img {
        max-height: 27px;
    }

.fixed-header2 {
    z-index: 1300;
    position: fixed;
    height: 65px;
    left: 0;
    top: -70px;
    visibility: hidden;
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
}

    .fixed-header2 .header-cart {
        top: 160%;
    }

.show-fixed-header2 {
    visibility: visible;
    top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 320px;
    height: 100vh;
    border-right: 1px solid #e5e5e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    /*[ Menu ]
===========================================================*/
    .container-menu-header-v3 .wrap_header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        background-color: white;
    }


    /*[ Logo ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .logo3 {
        display: block;
    }

        .container-menu-header-v3 .logo3 img {
            max-width: 120px;
        }

    /*[ Header Icon ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .header-icons3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        position: unset;
    }

    /*[ Header cart ]
-----------------------------------------------------------
*/
    .container-menu-header-v3 .header-cart {
        left: -10px;
        transform-origin: top left;
    }

    /*[ Menu ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .main_menu {
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
    }

        .container-menu-header-v3 .main_menu > li {
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 0px;
            padding-right: 0px;
            text-align: center;
        }

    .container-menu-header-v3 .sub_menu {
        top: 0;
        left: 100%;
    }

    .container-menu-header-v3 .main_menu > li > .sub_menu {
        top: 10px;
        left: 95%;
    }

    .container-menu-header-v3 .sub_menu li {
        text-align: left;
    }

    .container-menu-header-v3 .topbar-social-item {
        padding: 10px 8px;
    }


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
    margin-left: 320px;
}

@media (max-width: 992px) {
    .wrap_header_mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        background: black;
        display: flex !important;
    }

    .wrap_header {
        display: none;
    }

    .container-menu-header-v3,
    .container-menu-header-v2,
    .container-menu-header {
        display: none;
    }

    .top-bar {
        display: none;
    }

    header {
        height: auto !important;
    }

    .container1-page {
        margin-left: 0px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 430px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.arrow-slick1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
    opacity: 0.5;
}

.arrow-slick1:hover {
    background-color: #e65540;
}

.next-slick1 {
    right: 50px;
    left: auto;
}

.prev-slick1 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }

    .fotter_botttom {
        background: #000 !important;
    }
}

@media (max-width: 768px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 50px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 470px;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .slick3 {
        width: 100% !important;
        margin: 0 auto;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 17px;
        line-height: 8px;
    }

    .item-slick1 {
        height: 162px;
    }

    .contact-block ul li {
        width: 100%;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}


@media (max-width: 360px) {

    .sizefull {
        width: 100%;
        height: 50%;
    }

    .fotter_botttom {
        padding-top: 0;
    }

    .contact-block ul li {
        text-align: left;
        width: 100% !important;
        margin-bottom: 12px;
    }

    .contact-block span {
        font-size: 14px !important;
    }

    .column li .fa {
        text-align: center;
        margin: 7px;
    }
}

/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
    position: absolute;
    z-index: 100;
    top: calc((100% - 71px) / 0px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 39px;
    color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px #ffffff solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: #e0b86d;
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #6dcbf3;
    /* -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3; */
    /* box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3; */
    padding: 0px 11px;
}

    .arrow-slick2:hover {
        color: #666666;
    }

.next-slick2 {
    right: -30px;
}

.prev-slick2 {
    left: -50px;
}

@media (max-width: 1280px) {
    .next-slick2 {
        right: 0px;
    }

    .prev-slick2 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick2 .next-slick2 {
        right: 0px;
    }

    .rs1-slick2 .prev-slick2 {
        left: 0px;
    }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .swal-button:hover {
        background-color: #333333;
    }

    .swal-button:active {
        background-color: #e65540;
    }

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale::before {
    background-color: #e65540;
    content: 'Sale';
    display: none;
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'New';
    display: none;
}

/* ------------------------------------ */
.block2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.52);
    opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
    display: block;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 20px;
    color: white;
    line-height: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

    .block2-btn-addwishlist:hover {
        color: white;
    }

    .block2-btn-addwishlist .icon-wishlist,
    .block2-btn-towishlist .icon-wishlist {
        line-height: 0;
    }

    .block2-btn-addwishlist:hover .icon_heart_alt {
        display: none;
    }

    .block2-btn-addwishlist:hover .icon_heart {
        display: block;
    }

    /* ------------------------------------ */
    .block2-btn-towishlist .icon_heart_alt {
        display: none;
    }

    .block2-btn-towishlist .icon_heart {
        display: block;
        color: #e65540;
    }

/* ------------------------------------ */
.block2-overlay:hover {
    opacity: 1;
}

    .block2-overlay:hover .block2-btn-addcart {
        bottom: 40%;
    }

    .block2-overlay:hover .block2-btn-addwishlist,
    .block2-overlay:hover .block2-btn-towishlist {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5);
}

@media (max-width: 1360px) {
    .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1200px) {
    .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
    .rs1-block4 .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1380px) {
    .rs1-block4 .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 1200px) {
    .rs1-block4 .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .rs1-block4 .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
.block4-overlay {
    display: block;
    background-color: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}

    .block4-overlay:hover {
        color: unset;
    }

/* ------------------------------------ */
.block4-overlay-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
    transform-origin: top left;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
    visibility: visible;
    opacity: 1;
}

.block4:hover .block4-overlay-txt {
    bottom: 0;
}

.block4:hover .block4-overlay-heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 400px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    background-position: 0em -4em;
    position: relative;
}

@media (max-width: 576px) {
    .bg-title-page .l-text2 {
        font-size: 35px;
        padding-top: 0;
    }

    .bg-title-page .m-text13 {
        font-size: 16px;
    }

    .bg-title-page {
        min-height: 100px;
    }
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
    margin-right: 6px;
    margin-left: 6px;
    height: 4px;
    border: none;
    background-color: #e1e1e1;
}

    .leftbar #filter-bar .noUi-connect {
        background-color: #c5c5c5;
        border: none;
        box-shadow: none;
    }

    .leftbar #filter-bar .noUi-handle {
        width: 13px;
        height: 13px;
        left: -6px;
        top: -5px;
        border: none;
        border-radius: 50%;
        background: #999999;
        cursor: pointer;
        box-shadow: none;
        outline: none;
    }

        .leftbar #filter-bar .noUi-handle:before {
            display: none;
        }

        .leftbar #filter-bar .noUi-handle:after {
            display: none;
        }

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {
    background-color: #00bbec;
}

.color-filter2 {
    background-color: #2c6ed5;
}

.color-filter3 {
    background-color: #ffa037;
}

.color-filter4 {
    background-color: #ff5337;
}

.color-filter5 {
    background-color: #a88c77;
}

.color-filter6 {
    background-color: #393939;
}

.color-filter7 {
    background-color: #cccccc;
}

.checkbox-color-filter {
    display: none;
}

.color-filter {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
    box-shadow: 0 0 0px 2px black;
    -moz-box-shadow: 0 0 0px 2px black;
    -webkit-box-shadow: 0 0 0px 2px black;
    -o-box-shadow: 0 0 0px 2px black;
    -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
    margin-right: -6px;
    margin-left: -6px;
}

.item-pagination {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    margin: 6px;
}

    .item-pagination:hover {
        background-color: #222222;
        color: white;
    }

.active-pagination {
    background-color: #222222;
    color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
    width: 14.5%;
}

.slick3 {
    width: 80.64%;
    margin: 0 auto;
}

.testi-img img {
    width: auto;
    margin: 0 auto;
}


.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

    .slick3-dots li img {
        width: 100%;
    }

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 3px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .slick3-dot-overlay:hover {
        border: 3px solid #888888;
    }

.slick3-dots .slick-active .slick3-dot-overlay {
    border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
    display: block;
}

.show-dropdown-content .up-mark {
    display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
    overflow: auto;
}

.container-table-cart::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    left: 0;
}

.container-table-cart::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    right: 0;
}

.table-shopping-cart {
    border-collapse: collapse;
    width: 100%;
    min-width: 992px;
}

    .table-shopping-cart .table-row {
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }

    .table-shopping-cart .column-1 {
        width: 225px;
        padding-left: 50px;
    }

    .table-shopping-cart .column-2 {
        width: 330px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-3 {
        width: 133px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-4 {
        width: 355px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-5 {
        padding-right: 30px;
    }

    .table-shopping-cart .table-head th {
        font-family: Montserrat-Bold;
        font-size: 13px;
        color: #555555;
        line-height: 1.5;
        text-transform: uppercase;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .table-shopping-cart td {
        font-family: Montserrat-Regular;
        font-size: 16px;
        color: #555555;
        line-height: 1.5;
        padding-top: 37px;
        padding-bottom: 30px;
    }

    .table-shopping-cart .table-row .column-2 {
        font-size: 15px;
    }


/* ------------------------------------ */
.cart-img-product {
    width: 90px;
    position: relative;
}

    .cart-img-product img {
        width: 100%;
    }

    .cart-img-product::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .cart-img-product:hover:after {
        cursor: pointer;
        opacity: 1;
    }


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    padding: 5px 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: 3px;
}

    .tag-item:hover {
        border: 1px solid #e65540;
    }


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: none;
    margin-right: -15px;
    margin-left: -15px;
}

    .tab01 .nav-tabs .nav-item {
        padding: 8px 16px;
    }

.tab01 .nav-link {
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #888888;
    line-height: 1.1;
}

    .tab01 .nav-link.active {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

    .tab01 .nav-link:hover {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

@media (max-width: 480px) {
    .tab01 .nav-tabs .nav-item {
        padding: 8px 6px;
    }

    .tab01 .nav-tabs {
        margin-right: -6px;
        margin-left: -6px;
    }

    .FOTTER_IMGE {
        DISPLAY: NONE;
    }

    .personalcarre h3 {
        position: relative;
        bottom: 42px;
        left: 0em;
        color: #fff;
        font-size: 21px;
        text-align: center;
    }
}

@media (max-width: 412px) {
    .personalcarre h3 {
        position: relative;
        bottom: 42px !important;
        left: 0em;
        color: #fff;
        font-size: 21px !important;
        text-align: center;
    }
}

/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {
    padding-right: 0px !important;
}

.modal {
    padding: 0px !important;
    z-index: 1360;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.modal-open {
    overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
    background-color: transparent;
}

#modal-video-01 {
    background-color: rgba(0,0,0,0.8);
    z-index: 1350;
}

    #modal-video-01 .modal-dialog {
        max-width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.wrap-video-mo-01 {
    width: 854px;
    height: auto;
    position: relative;
    margin: 15px;
}

.video-mo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}

    .video-mo-01 iframe {
        width: 100%;
        height: 100%;
    }

.close-mo-video-01 {
    font-size: 50px;
    color: white;
    opacity: 0.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1250;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

    .close-mo-video-01:hover {
        cursor: pointer;
        opacity: 1;
    }


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

    input.num-product::-webkit-outer-spin-button,
    input.num-product::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }




ul.header-cart-wrapitems li a {
    font-family: 'Khand', sans-serif;
    background: linear-gradient(45deg, rgb(100, 168, 234) 0%, rgba(32,124,229,1) 100%);
    color: #fff;
    padding: 4px 16px;
    line-height: -3;
    border-radius: 5px;
    box-shadow: 0px 4px 0px #000000;
    /* border: 1px solid #4998f1; */
    font-size: 18px;
    font-weight: 500;
    text-shadow: 1px 1px #00000045;
}

ul.header-cart-wrapitems li {
    display: inline-block;
}

.reg a {
    background: linear-gradient(45deg, rgb(135, 199, 7) 0%, rgb(156, 228, 10) 100%) !important;
    box-shadow: 0px 14px 8px -10px #192f48;
}

.main_menu .subtitle {
    color: #e0e0e0;
    margin-top: 0;
    display: block;
    font-weight: 300;
    font-size: 8px;
    line-height: 10px;
    text-align: left;
}

.topbar-title span {
    font-size: 14px;
    padding: 18px 6px;
    position: relative;
    z-index: 1;
}

.topbar-title {
    background: #9ad620;
    color: #fff;
    position: absolute;
    left: 20em;
    padding: 7px 7px;
    box-shadow: 0px 1px #7aa523;
}

    .topbar-title:before {
        width: 0;
        height: 0;
        border-left: 75px solid #85bb15;
        border-right: 60px solid transparent;
        border-bottom: 39px solid transparent;
        position: absolute;
        content: "";
        left: 0;
        top: 0px;
    }

    .topbar-title:after {
        width: 0;
        height: 0;
        border-left: 75px solid rgba(133, 181, 33, 0);
        border-right: 0px solid transparent;
        border-bottom: 39px solid rgb(12, 109, 217);
        position: absolute;
        content: "";
        right: 0;
        top: -1px;
    }


.add_banner img {
    width: 100%;
}

.subhead {
    color: #94ce22;
    font-size: 35px;
    font-weight: 800;
}

.sec-children {
    width: 100%;
    float: left;
    background: url(../images/children.png) no-repeat center center;
    background-size: 100%;
}

ul#benefit li {
    font-size: 14px;
    color: rgb(123, 126, 130);
    line-height: 31px;
}

a.btn.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    border: 1px #0088f1 solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: linear-gradient(to bottom,#00a9f0 0%,#027bc7 100%);
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #6dcbf3;
    -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3;
    box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3;
}
/*.fotter_botttom:before {

content: " ";

width: 100%;

height: 100%;

position: absolute;

left: 0;

top: 0;

background-image: url(../images/fotter.jpg);

background-size: cover;

background-repeat: no-repeat;

pointer-events: none;

opacity: 0.2;

background-position: 0;
}*/

.fotter_botttom {
    background-color: #000000;
    z-index: 1;
}

.sppb-addon-single-image-container img {
    width: 100%;
}

p.t-center.bottomtittle {
    font-weight: 300;
    font-size: 17px;
    color: #000000;
}

a.reason h3 {
    color: #bb8d31;
}

.why-chose:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: #000;
}

.imageabout {
    position: absolute;
    right: 7em;
    top: 180px;
}

.detail_bg {
    position: relative;
    background-repeat: no-repeat;
}

.why-chose {
    position: relative;
    background-image: url('../images/sliders.jpg');
    background-repeat: no-repeat;
}

span.sppb-blocknumber-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgba(32, 139, 243, 1);
    color: #ffffff;
    border-radius: 50px;
}

.why-choses {
    position: relative;
    background-image: url('../images/render-diamond1.jpg');
    background-repeat: no-repeat;
    /* background-position: 0em -85em; */
    background-position: 0;
    background-size: cover;
}

.sppb-media, .sppb-media-body {
    overflow: hidden;
    zoom: 1;
}

    .sppb-media-body.sppb-text-left {
        font-size: 13px;
    }

span.sppb-blocknumber-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgba(32, 139, 243, 1);
    color: #ffffff;
    border-radius: 50px;
    float: left;
    text-align: center;
    margin-right: 9px;
}

.h3, h3 {
    font-size: 18px;
    color: #52595e;
    font-weight: 400;
}

a.reason {
    text-align: center;
}



    a.reason ul li {
        font-weight: 300;
        color: rgb(142, 129, 81);
    }

.sppb-media {
    margin: 20px 0px 0px 0px;
}

.sppb-media-body.sppb-text-right {
    font-size: 13px;
}

.blog_latest {
    background: #0f66c5;
    position: absolute;
    content: "";
    height: 98%;
    top: 12em;
    width: 100%;
    border-radius: 24%;
    overflow: hidden;
}

.block3 {
    overflow: hidden;
    text-align: center;
    position: relative;
}

.respon6 {
    background: #95db0c;
    border-radius: 5px;
}

ul.bottom_menu li a {
    font-size: 17px;
}

ul.bottom_menu li {
    display: inline-block;
    /* border-right: 2px solid #fff; */
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.ct-footer-pre .form-group input {
    border: 1px solid #feef30;
    background-color: #333;
    color: #fff;
    height: 50px;
    padding: 0 30px;
    margin: 0 5px;
    border-radius: 0 !important;
}

button.btn.btn-motive {
    height: 50px;
    position: relative;
    width: 80px;
    padding: 0;
    color: #fff;
}

.btn.btn-motive {
    color: #fff;
    border: 1px #7cc01a solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: linear-gradient(to right, #bed02c 0%, #63bb12 100%);
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #7cc01a;
    -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #7cc01a;
    box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #7cc01a;
}

.inner span {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Khand', sans-serif;
    color: rgb(218, 232, 247);
}

a.reason img {
    margin-bottom: 12px;
    /* display: block; */
}

a.reason {
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

input#email-footer {
    border: 1px solid #feef30;
    background-color: #000000;
    color: #fff;
    height: 50px;
    padding: 0 30px;
    margin: 0 5px;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.3686274509803922) !important;
}

ul.bottom_menu {
    margin-left: -19px;
    padding-left: -4px;
}

    ul.bottom_menu li a {
        color: #dae8f7;
        font-size: 19px;
        padding: 2px 20px;
        border-right: 2px dashed #498ad6;
        font-weight: 600;
    }

.adtree A {
    color: #d2e7ff;
}

.FOTTER_IMGE {
    POSITION: ABSOLUTE;
    TOP: -4EM;
    RIGHT: 0px;
}

h2.big-title {
    color: #145cab;
    font-size: 23px;
}

.contact-datails p {
    line-height: 45px;
}

    .contact-datails p i {
        padding-right: 11px;
        COLOR: yellowgreen;
        FONT-SIZE: 18PX;
    }

.contact-datails p {
    line-height: 45px;
    font-weight: 600;
}

span.adds {
    margin-left: 35px !important;
}

.personalcarre img {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.10196078431372549);
    padding: 12px;
}

.personalcarre h3 {
    position: relative;
    bottom: 60px;
    left: 0em;
    color: #fff;
    font-size: 27px;
    text-align: center;
}



.block2-txt {
    font-family: 'Fira Sans', sans-serif;
}

    .block2-txt p {
        font-family: 'Fira Sans', sans-serif;
    }

.block2-txt {
    padding-top: 3em;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    text-align: center;
}

    .block2-txt p {
        font-family: 'Fira Sans', sans-serif;
        font-weight: 300;
        font-size: 15px;
        font-style: italic;
    }

a.free span {
    display: block;
    font-size: 12px;
}

.sign-up a {
    display: inline-block;
    color: #fff;
}

a.premium span {
    display: block;
    font-size: 12px;
    color: #fff;
}

.sign-up a {
    display: inline-block;
    margin: 12px 5px;
    background: linear-gradient(to right,#e0a305,#ffb600);
    padding: 4px 20px 7px 22px;
    border-radius: 2px;
    min-width: 230px;
    cursor: pointer;
    min-width: 230px;
    cursor: pointer;
    height: 64px;
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    border-radius: 3px;
}

a.premium {
    BACKGROUND: linear-gradient(to right, #f56906 0%, #eaa50a 100%);
}

.client-image img {
    border: 1px solid #e0dfdf;
    border-radius: 50%;
    padding: 4px;
    display: inline-block;
}

.star {
    display: inline;
}

    .star img {
        width: 9%;
        border: 0;
        padding: 0;
    }

.rating {
    position: absolute;
    right: 7em;
    top: 6em;
    min-width: 69px;
    height: 66px;
    background: url(../img/sprite.png) 0 -67px no-repeat;
}

img.logo-fotteer {
    width: 43%;
}


p.tex-bottom {
    color: #c3c3c3 !important;
    font-weight: 100;
    font-size: 17px;
    text-align: center;
}


.page-footer .widget.widget_sg_social_widget a i {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
}

li#sg_social_widget-2 a {
    display: inline-flex;
    line-height: 40px;
}

ul#menu-company li {
    line-height: 33px;
}

li#sg_social_widget-2 i {
    padding-right: 12px;
    line-height: 33px;
    position: relative;
}




.widget.widget_sg_social_widget a i {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    justify-content: end;
    -ms-flex-align: center;
    align-items: center;
}


.subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget.widget_sg_social_widget a i:before {
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -6px;
    top: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
}

h4.social_head {
    color: #b1afaf;
    font-size: 18px;
    margin: 0 19px;
}

#menu-copyright li a {
    padding: 13px;
}

#menu-copyright li {
    display: inline-block;
}

ul#menu-copyright {
    text-align: right;
}

.page-footer__copyright-container {
    margin-top: 1em;
    border-top: 1px solid rgba(255,255,255,0.2);
}

section.gradient {
    background: #93c52d;
}

.bottom-0.login_btn0 {
    position: relative;
}

.social_detail0 {
    background: #0c0d12;
    padding: 4em 2em;
    background-image: url(../images/bg01.jpg);
    background-repeat: no-repeat;
    margin-top: 20px;
    background-size: cover;
    background-position: 0em -17em;
    text-align: center;
}

span.companyname {
    font-size: 41px;
    font-weight: 700 !important;
    color: #e0ac37 !important;
    letter-spacing: 15px;
    /* text-shadow: 0px 2px rgb(115, 90, 35); */
    font-family: 'Playfair Display', serif;
}

.head_about {
    position: relative;
    z-index: 1;
}

.sign-up {
    position: relative;
}

.why-choses:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.87);
}

span.companyname {
    font-size: 43px;
    color: #deab4b;
    font-weight: 400;
    /* display: block; */
    /* letter-spacing: 0; */
    /* border-bottom: 2px solid #deab29; */
    /* padding-bottom: 0; */
    padding-top: -10px;
    /* margin-bottom: 18px; */
    font-style: italic;
    padding-left: 15px;
}

.social_detail0 p {
    font-size: 36px !important;
    color: #fff !important;
    text-align: center;
}

.w3btn {
    width: 100%;
}

span.linee {
    color: rgba(38, 41, 17, 0.3411764705882353);
}

.blurb-image {
    text-align: center;
    /* margin-bottom: 80px; */
}




    /*bul*/




    .blurb-image > div {
        font-size: 50px;
        margin-bottom: 12px;
        color: #27241e;
    }

        .blurb-image > div:after {
            content: "";
            position: absolute;
            right: -25px;
            bottom: -11px;
            z-index: -1;
            width: 59px;
            height: 60px;
            background: url(../images/icon-bg.png) no-repeat center;
            background-size: cover;
        }

    .blurb-image > div {
        position: relative;
        z-index: 1;
        line-height: 1.15;
    }

h6.title {
    margin-bottom: 12px;
    margin-top: 15px;
}

a.reason i {
    font-size: 43px;
    margin-bottom: 14px;
    color: #bb8d31;
    /* background: #000000; */
    width: 62px;
    height: 62px;
    line-height: 64px;
    border-radius: 50%;
}

.menu-resources-container ul li span {
    color: #000;
    padding: 0;
    font-family: 'Encode Sans Expanded', sans-serif !important;
    PADDING-LEFT: 9PX;
}

.text-centerss {
    width: 100%;
    font-size: 19px;
    color: #000;
}

h3.text-center {
    text-align: center;
    font-size: 34px;
    margin-top: 12px;
    color: #000;
}

.aaya-quickContact {
    width: auto;
    float: right;
    padding: 0px 9px;
    margin-top: 9px;
}

.innerContainer_hedrer {
    float: left;
    width: 100%;
    background-color: #dec4a9;
    /* background-image: url(../images/header.jpg); */
    background-position: bottom;
    position: relative;
    padding: 0;
    height: 2em;
    justify-content: center;
    align-items: center;
    display: flex;
}

a.logo_top {
    max-width: 100%;
}

.aaya-quickContact span {
    padding: 6px;
    color: #f7c84f;
}




a.login_btn2 {
    border: 0px solid #010204;
    padding: 4px 11px;
    margin: 2px;
    border-radius: 3px;
    /* background: #0783f300; */
    margin: 0;
    border-radius: 3px;
    background: #ffffff !important;
    border: 0px solid #d8d8d894;
    box-shadow: 0px 4px #bdc3c7;
}

a.login_btn {
    padding: 4px 11px;
    margin: 0;
    border-radius: 3px;
    background: #ffffff00;
    border: 0px solid #d8d8d894;
    font-size: 39px;
    /* box-shadow: 0px 4px #591e08; */
}

.logo_top img {
    width: 199px;
    float: none;
    text-align: center;
    clear: both;
    -webkit-transition: width .5s;
    transition: width .5s;
    -webkit-transform-origin: left;
    transform-origin: left;
    padding: 0;
}

.aaya-quickContact a {
    padding: 0px 7px;
    color: #ffc68a;
}

    .aaya-quickContact a:nth-child(2n+1) {
        /* border-right: 0px solid rgb(1, 3, 2); */
    }

.aaya-eoptions {
    width: auto;
    float: right;
    margin-top: 32px;
}

    .aaya-eoptions > ul > li {
        display: inline-block;
        padding: 2px 10px;
    }

        .aaya-eoptions > ul > li a.location {
            background-image: url('../images/map.png');
        }



        .aaya-eoptions > ul > li a.location {
            padding-left: 4em;
            background-repeat: no-repeat;
            display: inline-block;
            background-size: 42px;
        }

        .aaya-eoptions > ul > li a.account {
            background-image: url('../images/user.png');
            fill: #b9c9d4;
        }



        .aaya-eoptions > ul > li a.account {
            padding-left: 4em;
            background-repeat: no-repeat;
            display: inline-block;
            background-size: 36px;
        }

    .aaya-eoptions ul li a {
        color: #f5d482;
    }

    .aaya-eoptions > ul > li a.search {
        background-image: url('../images/search.png');
        fill: #f5d482;
    }



    .aaya-eoptions > ul > li a.search1 {
        padding-left: 4em;
        background-repeat: no-repeat;
        display: inline-block;
        background-size: 36px;
    }

    .aaya-eoptions > ul > li a.search1 {
        background-image: url('../images/lock.png');
        fill: #f5d482;
    }















.aaya-quickContact A {
    COLOR: #ffffff;
    FONT-SIZE: 18PX;
    padding: 10px 29px;
    /* text-transform: uppercase; */
    font-weight: 600;
    /* border-radius: 0; */
    background: #5a1e08;
}

.aaya-eoptions > ul > li a.search {
    padding-left: 3em;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 36px;
}

.item_caption h4 {
    font-size: 30px;
    color: #fff;
    font-style: italic;
}

h4.newcol {
    color: #f9f3f6 !important;
}

.about_aaya {
    background-image: url('../images/bg-Pattern.png');
}

.item_caption h3 {
    font-weight: 700;
    font-style: normal;
    font-family: 'Philosopher', sans-serif;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.moto-text_system_14 {
    font-weight: 700;
    font-style: normal;
    font-family: 'Playfair Display', serif;
    color: #333333;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.banner_item.col-sm-6 {
    position: relative;
}

.moto-text_system_13 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Playfair Display', serif;
    color: #333333;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 0px;
}

.moto-color4_4 {
    color: #949494;
}

.moto-color5_5 {
    color: #ffffff;
}

.item_caption_text h6 {
    color: #e8c37a;
    font-weight: 400;
}

a.btn.btn_inverted.banner_btn {
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #e8c37a;
    background-color: transparent;
    border-color: #e0ac37;
    padding: 9px 17px;
    font-size: 16px;
    border-width: 3px;
    margin-top: 11px;
    margin-bottom: 1em;
    text-transform: uppercase;
}


    a.btn.btn_inverted.banner_btn:hover {
        background-color: #e0ac37;
        border-color: #e0ac37;
        color: #fff;
    }





.col-sm-3 .img_placeholder__wrap {
    padding: 96.943% 0 0 0;
}

h3.grey_code {
    color: #333;
}

.col-sm-3 .item_caption {
    align-items: flex-end;
}

.col-sm-6 .img_placeholder__wrap {
    padding: 24.23%;
}

.img_placeholder__wrap {
    background-size: cover;
}

.img_placeholder__wrap {
    overflow: hidden;
    background: #fff;
    position: relative;
    background-position: top;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
}

.item_caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 45px;
}


    .item_caption inverted .new {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 45px;
    }


.banner_item.col-sm-3 {
    padding: 0px;
}





.banner_item.col-sm-6 {
    padding: 0px;
}

.img_placeholder__wrap {
    background-size: cover;
    BACKGROUND-POSITION: center;
}

a.banner_link {
    font-weight: 200;
    font-style: normal;
    color: #e8c37a;
    background-color: transparent;
    border-color: #d19e66;
    /* padding: 9px 17px; */
    font-size: 16px;
    border-width: 3px;
    margin-top: 11px;
    margin-bottom: 1em;
    text-transform: uppercase;
    /* border: 1PX SOLID #d19e66; */
    /* PADDING: 5PX 9PX; */
    /* MARGIN: 12PX; */
}

h1.title_head span {
    color: #e09c52;
}

.product_imgg {
    background: linear-gradient(45deg, rgb(255, 244, 221) 0%, rgb(255, 246, 228) 100%);
}

.block2-txt.p-t-20 a {
    font-size: 18px;
    color: #000;
    margin-bottom: 6px;
    font-weight: 500;
    text-align: center;
}

.title_head {
    color: #000;
    color: #131313;
    font-size: 40px;
    font-weight: 600;
    /*font-family: 'Playfair Display', serif;*/
    width: 100%;
    text-align: center;
    /* margin-bottom: 0em; */
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    margin-bottom: 11px;
}


.section_homepage.section_showcase {
    float: left;
    width: 100%;
}

.section_showcase .showcase_3 .img_placeholder__wrap {
    padding: 100% 0 0 0;
}

.showcase_item {
    padding: 0;
}

.section_showcase .item_caption div {
    width: 100%;
    text-align: right;
    /* align-items: baseline!important; */
}

.showcase_item.showcase_item_2.showcase_3.col-sm-4 {
    text-align: left !important;
}

.section_showcase .showcase_item_2 h2 {
    FONT-SIZE: 47PX;
    COLOR: #352626 !important;
    FONT-WEIGHT: 700;
}

.section_showcase .showcase_item_2 h5 {
    font-size: 23px;
    text-transform: uppercase;
    color: #130d01;
    font-weight: 100;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section_showcase .item_caption {
    padding: 30px;
    align-items: start;
    /* justify-content: left; */
    /* display: flex; */ font-family: 'Philosopher', sans-serif;
}

.section_showcase .img_placeholder__wrap {
    background-size: cover;
}

.item_caption > div {
    text-align: left;
    align-items: baseline !important;
}


.section_showcase .showcase_item_2 h3 {
    FONT-SIZE: 32PX;
}

.section_showcase .showcase_item_2 .item_caption div {
    text-align: left;
    TEXT-ALIGN: RIGHT;
}

.section_showcase .showcase_item_2 h4 {
    font-size: 16px;
    font-style: italic;
    font-family: Lato;
    color: #999;
    letter-spacing: 0.04em;
    margin-top: 5px;
}


.section_showcase .item_caption inverted {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
}


.showcase_item_2 .item_caption {
    align-items: flex-end;
    TEXT-ALIGN: RIGHT;
}

.section_showcase .showcase_item_3 .item_caption {
    align-items: flex-end;
}

.item_caption > div > h4 {
    color: black;
}

.fotter_botttom {
    background-color: #000;
    /*background: url(../images/footer-bg.png) 0 0 no-repeat transparent;*/
    position: relative;
    float: left;
    width: 100%;
    background-size: 100%;
}

p.widget__title:before {
    background: #d6a824;
    position: absolute;
    content: "";
    height: 3px;
    bottom: -2px;
    width: 39px;
}





.cat-button {
    padding: 10px 46px;
    margin-top: 13px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    border: none;
}

a.btn.cat-button {
    background: linear-gradient(45deg, rgb(165, 101, 4) 0%, rgb(225, 185, 66) 100%);
    color: #fff;
}

.tmall-cat-title {
    color: #e09c1a;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
}







@media (max-width: 1800px) {
    .section_banners .col-sm-6 .item_caption h4 {
        font-size: 26px;
        margin-bottom: 0;
    }
}

footer h5 {
    font: 500 20px/26px "Raleway",sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px 0;
    cursor: pointer;
    letter-spacing: .9px;
    display: none;
}

.contact-block {
    text-align: center;
}

    .contact-block span {
        font-weight: normal;
        line-height: 28px;
        color: #fff;
        letter-spacing: 0.8px;
        font-size: 18px;
        text-transform: capitalize;
        font-family: "PT Sans",sans-serif !important;
        font-weight: 700;
    }

    .contact-block ul li {
        float: left;
        display: inline-block;
        width: 33%;
    }

    .contact-block ul {
        list-style: none;
        padding: 0;
        position: relative;
        z-index: 1;
        margin: 0;
    }

.column li .fa {
    color: #ffffff;
    height: 25px;
    margin-right: 15px;
    width: 25px;
    font-size: 22px;
    float: none;
    clear: both;
    background: #ca991e;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-shadow: 1px 2px rgb(154, 118, 28);
}

.wrap-slick3 {
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.block2 p {
    display: block;
    color: #b1afaf;
    line-height: 28px;
    text-transform: capitalize;
    padding-top: 20px;
    width: 82%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 15px;
    font-size: 15px;
}

.footertop {
    padding: 39px 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 19px;
}

ul#menu-company li a {
    font-weight: normal;
    line-height: 27px;
    color: #b1afaf;
}

span.title {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #d2a33d;
    line-height: 30px;
    vertical-align: middle;
    font-weight: 600;
}

.direct {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    vertical-align: middle;
}

ul.tmediasocial_inner li a {
    text-align: center;
    border: medium none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 3px 4px;
    position: relative;
    height: 32px;
    width: 43px;
    vertical-align: top;
}

ul.tmediasocial_inner li a {
    font-weight: normal;
    line-height: 30px;
    color: #808080;
    text-transform: uppercase;
}

.tmediasocial_inner li a {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    line-height: 20px;
    text-indent: 0;
}

.nesw {
    text-align: center;
    color: #deb131;
    font-size: 28px;
    font-family: 'Philosopher', sans-serif;
}

ul.tmediasocial_inner li {
    display: inline-block;
    padding: 32px 6px;
    /* margin-top: 50%; */
}

    ul.tmediasocial_inner li a {
        font-size: 25px;
    }

.fooblockcolumn {
    padding: 40px 0;
}

.feature-text.left-icon .feature-icon {
    position: absolute;
    left: 0;
}

.feature-text.left-icon .feature-info {
    text-align: left;
    /* padding-left: 60px; */
}

.feature-info h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 12px;
}

.feature-text .feature-icon span, .feature-text .feature-icon i {
    font-size: 40px;
    margin-bottom: 30px;
    display: inline-block;
    color: #e09c1a;
    padding-left: 15px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
}


section.bg-title-page.bg-overlay-black-60:before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

a.login_btn2 {
    color: #0a1d42;
}

.title_heading {
    position: relative;
    z-index: 1;
}

.size24:before {
    position: absolute;
    background: rgba(93, 29, 5, 0.47);
    content: "";
    height: 100%;
    width: 100%;
    transform: rotate(49deg);
    z-index: -5;
    left: -22em;
    top: 0em;
    border: 0px solid #fff;
}

h3.text-_one {
    color: #fff;
    /* font-weight: lighter; */
    /* font-family: 'Lato', sans-serif!important; */
    line-height: 29px;
    /* text-shadow: 0px 2px 6px rgba(7, 23, 37, 0.5686274509803921); */
    /* text-shadow: 0px 4px 4px #07172591; */
}

h2.text-_one {
    font-size: 35px;
    color: #ffffff;
    /* -webkit-text-stroke: 0px #ffffff; */
    /* -webkit-text-fill-color: white; */
    /* -webkit-animation: fill 0.5s infinite alternate; */
    font-weight: 600;
    text-shadow: 0px 4px 4px #07172591;
}

.cta-btn-group {
    display: flex;
    justify-content: initial;
    align-items: end;
    width: 100%;
}

.cta-btn-group1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .cta-btn-group1 a {
        background: linear-gradient(red, #670505);
        padding: 12px 36px;
        font-size: 18px;
        color: #fff;
        text-align: center;
        text-transform: unset;
        font-weight: 900;
        border-radius: 5px;
        box-shadow: 0px 3px #040300;
        border: 1px 3px #000;
        padding: 12px 36px;
        font-size: 18px;
        text-align: center;
        text-transform: unset;
        font-weight: 900;
        border-radius: 5px;
        box-shadow: 0px 3px #040300;
        border: 1px 3px #000;
        padding: 9px 28px;
        font-size: 18px;
        text-align: center;
        text-transform: unset;
        font-weight: 600;
        border-radius: 5px;
        box-shadow: 0px 3px #040300;
        border: 1px 3px #000;
    }

.cta-btn-group a {
    background: #000000;
    padding: 12px 36px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-transform: unset;
    font-weight: 700;
    border-radius: 5px;
}

.wt-box img {
    width: 100%;
}

span.wt-title-subline.font-16.text-gray-dark.m-b15 {
    font-size: 44px;
    color: #1b2e50;
    /* font-weight: 100; */
}
/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Italic;
    src: url('../fonts/montserrat/Montserrat-Italic.ttf');
}

@font-face {
    font-family: Montserrat-Black;
    src: url('../fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
    font-family: Linearicons;
    src: url('../fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Black;
    src: url('../fonts/poppins/Poppins-Black.ttf');
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Muli', sans-serif;
    font-weight: 400;
}

/* ------------------------------------ */
a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

    a:focus {
        outline: none !important;
    }

    a:hover {
        text-decoration: none;
        color: #e65540;
    }

/* ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    font-family: Montserrat-Regular;
    font-size: 15px;
    line-height: 1.7;
    color: #888888;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/* ------------------------------------ */
input {
    outline: none;
    border: none !important;
}

textarea {
    outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
    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%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: black;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

    .select2-container .select2-selection--single {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        background-color: transparent;
        border: none;
        height: 20px;
        outline: none;
        position: relative;
    }

        /* in select */
        .select2-container .select2-selection--single .select2-selection__rendered {
            font-size: 13px;
            font-family: Montserrat-Regular;
            line-height: 20px;
            color: #888888;
            padding-left: 0px;
            background-color: transparent;
        }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: transparent;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    color: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 2px;
    margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
    z-index: 1251;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 5px;
    padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: #e65540;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #e65540;
    color: white;
}

.select2-results__options {
    font-size: 13px;
    font-family: Montserrat-Regular;
    color: #888888;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
    margin-left: 26px;
}

    .rs1-select2 .select2-container .select2-selection--single {
        height: 20px;
        ;
    }

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
    background-color: white;
    height: 50px;
}

    .rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 20px;
        color: #555555;
        padding-left: 22px;
    }

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

#dropDownSelect2 .select2-results__options {
    color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
    color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
    height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
    display: block;
}

.rs3-select2 .select2-selection__arrow:after {
    display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
    height: 40px;
}

    .rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15px;
    }

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
    /* height: 121px; */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    /* background: #d8ecf600; */
}

.fixed-header {
    height: 110px;
}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/



/*[ Top bar ]
===========================================================*/
.topbar {
    height: 75px;
    background-color: #d8ecf600;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ------------------------------------ */

.topbar-social {
    position: absolute;
    height: 100%;
    top: 0;
    right: 26em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-left: 36px;
}

.topbar-social-item {
    font-size: 18px;
    color: #fff;
    padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #fff;
    line-height: 1.7;
}

/* ------------------------------------ */
.topbar-child2 {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 38px;
}


/*[ Menu ]
===========================================================*/
.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 91%;
    height: 65px;
    /* background-color: #fddf3c; */
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 auto;
    background: #0a55a5;
    border-radius: 5px;
}

.fixed-header .wrap_header {
    height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/
.logo {
    display: block;
    position: absolute;
    left: 0;
    top: 17px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    /* transform: translateY(-50%); */
}

    .logo img {
        max-height: 150px;
        position: relative;
        top: 9px;
    }


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    .main_menu > li {
        display: block;
        position: relative;
        padding-top: 3px;
        padding-bottom: 6px;
        padding-left: 15px;
        padding-right: 15px;
    }

        .main_menu > li > a {
            font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
            font-size: 16px;
            color: #f4f8fb;
            padding: 0;
            border-bottom: 1px solid transparent;
        }

li.sale-noti > a {
    color: #e65540;
}

.main_menu > li:hover > a {
    text-decoration: none;
    border-bottom: 1px solid #f7921e;
}

.main_menu li {
    position: relative;
}

.main_menu > li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu {
    list-style-type: none;
    position: absolute;
    z-index: 1100;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: #222222;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.sub_menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu li {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
    padding: 10px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
}

.sub_menu > li:hover > a {
    color: #e65540;
    text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    right: 52px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
    height: 27px;
    position: relative;
}

    .header-wrapicon1 img,
    .header-wrapicon2 img {
        height: 100%;
    }

.header-icon1:hover,
.header-icon2:hover {
    cursor: pointer;
}

.header-icons-noti {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #111111;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 23px;
    margin-right: 23px;
    margin-top: 5px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
    position: absolute;
    z-index: 1100;
    width: 339px;
    top: 190%;
    right: -10px;
    padding: 20px;
    border-top: 3px solid #e6e6e6;
    background-color: white;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.show-header-dropdown {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.fixed-header .header-cart {
    top: 160%;
}

.header-cart-wrapitem {
    max-height: 270px;
    overflow: auto;
}

.header-cart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 5px;
    padding-top: 5px;
}

/* ------------------------------------ */
.header-cart-item-img {
    width: 80px;
    position: relative;
    margin-right: 20px;
}

    .header-cart-item-img img {
        width: 100%;
    }

    .header-cart-item-img::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .header-cart-item-img:hover:after {
        cursor: pointer;
        opacity: 1;
    }

/* ------------------------------------ */
.header-cart-item-txt {
    width: calc(100% - 100px);
}

.header-cart-item-name {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    margin-bottom: 12px;
}

.header-cart-item-info {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

.header-cart-total {
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 25px;
    padding-right: 3px;
}
/* ------------------------------------ */
.header-cart-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-cart-wrapbtn {
    width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
    display: block;
}

    .logo-mobile img {
        max-height: 68px;
    }

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.hamburger {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.linedivide2 {
    display: block;
    height: 20px;
    width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.header-icons-mobile .header-cart {
    width: 300px;
    top: 190%;
    right: -80px;
    z-index: 1100;
    transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
    width: 100%;
    background-color: white;
    display: none;
    border-top: 1px solid #ececec;
}

.side-menu {
    width: 100%;
}

    .side-menu li {
        list-style-type: none;
    }

    .side-menu .main-menu {
        margin-bottom: 0;
    }

.item-menu-mobile {
    background-color: #e65540;
}

.side-menu .main-menu > li > a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.side-menu .main-menu > li {
    color: white;
    position: relative;
}


.side-menu .main-menu .arrow-main-menu {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 5px;
    padding: 10px;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

    .side-menu .main-menu .arrow-main-menu:hover {
        cursor: pointer;
    }

.turn-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-menu .sub-menu a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu > li {
    padding-left: 12px;
    padding-top:;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #e65540 !important;
}

.side-menu .sub-menu {
    background-color: white;
    display: none;
}

@media (min-width: 992px) {
    .wrap-side-menu {
        display: none;
    }
}

/* ------------------------------------ */
.item-topbar-mobile {
    border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-social-moblie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------------------ */
.logo2 {
    display: block;
}

    .logo2 img {
        max-height: 27px;
    }

.fixed-header2 {
    z-index: 1300;
    position: fixed;
    height: 65px;
    left: 0;
    top: -70px;
    visibility: hidden;
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
}

    .fixed-header2 .header-cart {
        top: 160%;
    }

.show-fixed-header2 {
    visibility: visible;
    top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 320px;
    height: 100vh;
    border-right: 1px solid #e5e5e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    /*[ Menu ]
===========================================================*/
    .container-menu-header-v3 .wrap_header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        background-color: white;
    }


    /*[ Logo ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .logo3 {
        display: block;
    }

        .container-menu-header-v3 .logo3 img {
            max-width: 120px;
        }

    /*[ Header Icon ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .header-icons3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        position: unset;
    }

    /*[ Header cart ]
-----------------------------------------------------------
*/
    .container-menu-header-v3 .header-cart {
        left: -10px;
        transform-origin: top left;
    }

    /*[ Menu ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .main_menu {
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
    }

        .container-menu-header-v3 .main_menu > li {
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 0px;
            padding-right: 0px;
            text-align: center;
        }

    .container-menu-header-v3 .sub_menu {
        top: 0;
        left: 100%;
    }

    .container-menu-header-v3 .main_menu > li > .sub_menu {
        top: 10px;
        left: 95%;
    }

    .container-menu-header-v3 .sub_menu li {
        text-align: left;
    }

    .container-menu-header-v3 .topbar-social-item {
        padding: 10px 8px;
    }


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
    margin-left: 320px;
}

@media (max-width: 992px) {
    .wrap_header_mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex !important;
    }

    .wrap_header {
        display: none;
    }

    .container-menu-header-v3,
    .container-menu-header-v2,
    .container-menu-header {
        display: none;
    }

    .top-bar {
        display: none;
    }

    header {
        height: auto !important;
    }

    .container1-page {
        margin-left: 0px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 610px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.arrow-slick1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
    opacity: 0.5;
}

.arrow-slick1:hover {
    background-color: #e65540;
}

.next-slick1 {
    right: 50px;
    left: auto;
}

.prev-slick1 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 50px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 470px;
    }

    li.hassubs {
        background-color: #714402;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 40px;
    }

    li.hassubs {
        background-color: #714402;
    }


    .w-size1 {
        display: none;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .size24 {
        padding-top: 0 !important;
    }

    .item-slick1 {
        height: 370px;
    }


    .sizefull {
        width: 100%;
        height: 50%;
    }

    .fotter_botttom {
        padding-top: 0;
    }

    .contact-block ul li {
        text-align: left;
        width: 100% !important;
        margin-bottom: 12px;
    }

    section.about_aaya.p-t-40.p-b-40 {
        padding-top: 10px !important;
        margin-bottom: 1px !important;
    }

    .title_head {
        padding-bottom: 10px !important;
    }

    .title_head {
        font-size: 23px !important;
        margin-bottom: 0 !important;
    }

    .contact-block span {
        font-size: 14px !important;
        font-size: 16px !important;
        /* display: contents; */
        display: inline-flex;
        width: 71%;
    }

    .column li .fa {
        text-align: center;
        margin: 7px;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}




/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
    position: absolute;
    z-index: 100;
    top: calc((100% - 70px) / 2);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 39px;
    color: #cccccc;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .arrow-slick2:hover {
        color: #666666;
    }

.next-slick2 {
    right: -30px;
}

.prev-slick2 {
    left: -30px;
}

@media (max-width: 1280px) {
    .next-slick2 {
        right: 0px;
    }

    .prev-slick2 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick2 .next-slick2 {
        right: 0px;
    }

    .rs1-slick2 .prev-slick2 {
        left: 0px;
    }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .swal-button:hover {
        background-color: #333333;
    }

    .swal-button:active {
        background-color: #e65540;
    }

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale::before {
    background-color: #e65540;
    content: 'Sale';
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'New';
}

/* ------------------------------------ */
.block2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
    display: block;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 20px;
    color: white;
    line-height: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

    .block2-btn-addwishlist:hover {
        color: white;
    }

    .block2-btn-addwishlist .icon-wishlist,
    .block2-btn-towishlist .icon-wishlist {
        line-height: 0;
    }

    .block2-btn-addwishlist:hover .icon_heart_alt {
        display: none;
    }

    .block2-btn-addwishlist:hover .icon_heart {
        display: block;
    }

    /* ------------------------------------ */
    .block2-btn-towishlist .icon_heart_alt {
        display: none;
    }

    .block2-btn-towishlist .icon_heart {
        display: block;
        color: #e65540;
    }

/* ------------------------------------ */
.block2-overlay:hover {
    opacity: 1;
}

    .block2-overlay:hover .block2-btn-addcart {
        bottom: 20px;
    }

    .block2-overlay:hover .block2-btn-addwishlist,
    .block2-overlay:hover .block2-btn-towishlist {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5);
}

@media (max-width: 1360px) {
    .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1200px) {
    .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
    .rs1-block4 .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1380px) {
    .rs1-block4 .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 1200px) {
    .rs1-block4 .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .rs1-block4 .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
.block4-overlay {
    display: block;
    background-color: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}

    .block4-overlay:hover {
        color: unset;
    }

/* ------------------------------------ */
.block4-overlay-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
    transform-origin: top left;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
    visibility: visible;
    opacity: 1;
}

.block4:hover .block4-overlay-txt {
    bottom: 0;
}

.block4:hover .block4-overlay-heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 239px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

@media (max-width: 576px) {
    .bg-title-page .l-text2 {
        font-size: 35px;
    }

    .bg-title-page .m-text13 {
        font-size: 16px;
    }
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
    margin-right: 6px;
    margin-left: 6px;
    height: 4px;
    border: none;
    background-color: #e1e1e1;
}

    .leftbar #filter-bar .noUi-connect {
        background-color: #c5c5c5;
        border: none;
        box-shadow: none;
    }

    .leftbar #filter-bar .noUi-handle {
        width: 13px;
        height: 13px;
        left: -6px;
        top: -5px;
        border: none;
        border-radius: 50%;
        background: #999999;
        cursor: pointer;
        box-shadow: none;
        outline: none;
    }

        .leftbar #filter-bar .noUi-handle:before {
            display: none;
        }

        .leftbar #filter-bar .noUi-handle:after {
            display: none;
        }

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {
    background-color: #00bbec;
}

.color-filter2 {
    background-color: #2c6ed5;
}

.color-filter3 {
    background-color: #ffa037;
}

.color-filter4 {
    background-color: #ff5337;
}

.color-filter5 {
    background-color: #a88c77;
}

.color-filter6 {
    background-color: #393939;
}

.color-filter7 {
    background-color: #cccccc;
}

.checkbox-color-filter {
    display: none;
}

.color-filter {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
    box-shadow: 0 0 0px 2px black;
    -moz-box-shadow: 0 0 0px 2px black;
    -webkit-box-shadow: 0 0 0px 2px black;
    -o-box-shadow: 0 0 0px 2px black;
    -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
    margin-right: -6px;
    margin-left: -6px;
}

.item-pagination {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    margin: 6px;
}

    .item-pagination:hover {
        background-color: #222222;
        color: white;
    }

.active-pagination {
    background-color: #222222;
    color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
    width: 14.5%;
}

.slick3 {
    width: 80.64%;
}

.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

    .slick3-dots li img {
        width: 100%;
    }

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 3px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .slick3-dot-overlay:hover {
        border: 3px solid #888888;
    }

.slick3-dots .slick-active .slick3-dot-overlay {
    border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
    display: block;
}

.show-dropdown-content .up-mark {
    display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
    overflow: auto;
}

.container-table-cart::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    left: 0;
}

.container-table-cart::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    right: 0;
}

.table-shopping-cart {
    border-collapse: collapse;
    width: 100%;
    min-width: 992px;
}

    .table-shopping-cart .table-row {
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }

    .table-shopping-cart .column-1 {
        width: 225px;
        padding-left: 50px;
    }

    .table-shopping-cart .column-2 {
        width: 330px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-3 {
        width: 133px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-4 {
        width: 355px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-5 {
        padding-right: 30px;
    }

    .table-shopping-cart .table-head th {
        font-family: Montserrat-Bold;
        font-size: 13px;
        color: #555555;
        line-height: 1.5;
        text-transform: uppercase;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .table-shopping-cart td {
        font-family: Montserrat-Regular;
        font-size: 16px;
        color: #555555;
        line-height: 1.5;
        padding-top: 37px;
        padding-bottom: 30px;
    }

    .table-shopping-cart .table-row .column-2 {
        font-size: 15px;
    }


/* ------------------------------------ */
.cart-img-product {
    width: 90px;
    position: relative;
}

    .cart-img-product img {
        width: 100%;
    }

    .cart-img-product::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .cart-img-product:hover:after {
        cursor: pointer;
        opacity: 1;
    }


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    padding: 5px 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: 3px;
}

    .tag-item:hover {
        border: 1px solid #e65540;
    }


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: none;
    margin-right: -15px;
    margin-left: -15px;
}

    .tab01 .nav-tabs .nav-item {
        padding: 8px 16px;
    }

.tab01 .nav-link {
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #888888;
    line-height: 1.1;
}

    .tab01 .nav-link.active {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

    .tab01 .nav-link:hover {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

@media (max-width: 480px) {
    .tab01 .nav-tabs .nav-item {
        padding: 8px 6px;
    }

    .tab01 .nav-tabs {
        margin-right: -6px;
        margin-left: -6px;
    }
}


/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {
    padding-right: 0px !important;
}

.modal {
    padding: 0px !important;
    z-index: 1360;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.modal-open {
    overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
    background-color: transparent;
}

#modal-video-01 {
    background-color: rgba(0,0,0,0.8);
    z-index: 1350;
}

    #modal-video-01 .modal-dialog {
        max-width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.wrap-video-mo-01 {
    width: 854px;
    height: auto;
    position: relative;
    margin: 15px;
}

.video-mo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}

    .video-mo-01 iframe {
        width: 100%;
        height: 100%;
    }

.close-mo-video-01 {
    font-size: 50px;
    color: white;
    opacity: 0.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1250;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

    .close-mo-video-01:hover {
        cursor: pointer;
        opacity: 1;
    }


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

    input.num-product::-webkit-outer-spin-button,
    input.num-product::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/*------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/montserrat/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Italic;
    src: url('../fonts/montserrat/Montserrat-Italic.ttf');
}

@font-face {
    font-family: Montserrat-Black;
    src: url('../fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
    font-family: Linearicons;
    src: url('../fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Black;
    src: url('../fonts/poppins/Poppins-Black.ttf');
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
    /* background: linear-gradient(45deg, rgba(241,231,103,1) 0%, rgba(254,182,69,1) 100%); */
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Lato', sans-serif !important;
}

/* ------------------------------------ */
a {
    font-family: 'Lato', sans-serif !important;
    /*'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif*/
    font-weight: 400;
    font-size: 17px;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    color: #bb8d31;
    font-weight: 500;
}

p.widget__title {
    font-size: 16px;
    text-transform: uppercase;
    color: rgb(195, 160, 29);
    font-weight: 400;
    border-bottom: 1px solid #b47703;
    position: relative;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

/* ------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}

.item_caption.inverted > div > h2 {
    color: #c5911d;
    font-family: 'Lato', sans-serif !important;
}

.item_caption.inverted > div > h6 {
    color: #130d01;
}

.banner_titlle {
    text-align: center;
}


.tmall-cat-description p {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif;
}

p {
    /* font-family: 'Fira Sans', sans-serif; */
    line-height: 1.7;
    color: #0d0f17 !important;
    margin: 0px;
    /* font-family: 'Philosopher', sans-serif; */
    /* font-family: 'Roboto', sans-serif; */
    font-size: 18px;
    /* text-align: justify; */
    font-family: 'Roboto', sans-serif!important;
    /* font-weight: 400; */
    word-break: break-all;
    font-weight: 300;
}

.banner_titlle p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 200;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}

.banner_titlle h1 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 50px;
}

.blurb-image P {
    FONT-WEIGHT: 300;
}

a.button.primary.red.large {
    background: linear-gradient(to right,#9e7d17,#ffb600);
    background-color: #d54e0c !important;
    color: #fff;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif;
    padding: 11px 37px;
    box-shadow: 0px 3px 1px #4a3409;
}

a.button.primary.orange.large {
    background: linear-gradient(to right, #d9c419 0%, #7dc744 100%);
    border-radius: 5px;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    font-size: 20px;
    font-weight: 400;
    padding: 11px 37px;
}
/* ------------------------------------ */
input {
    outline: none;
    border: none !important;
}

textarea {
    outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

/* ------------------------------------ */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

iframe {
    border: none !important;
}


/* ------------------------------------ */
.container {
    max-width: 1200px;
}

.slick-slide {
    outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
    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%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #e65540;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    /* background-color: black; */
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
    font-size: 22px;
    color: white;
    line-height: 1em;
}

.btn-back-to-top:hover {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 576px) {
    .btn-back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

    .select2-container .select2-selection--single {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        background-color: transparent;
        border: none;
        height: 20px;
        outline: none;
        position: relative;
    }

        /* in select */
        .select2-container .select2-selection--single .select2-selection__rendered {
            font-size: 13px;
            font-family: Montserrat-Regular;
            line-height: 20px;
            color: #888888;
            padding-left: 0px;
            background-color: transparent;
        }

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow:after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: transparent;
    border-right: 1px solid #888888;
    border-bottom: 1px solid #888888;
    color: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 2px;
    margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
    z-index: 1251;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 5px;
    padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: #e65540;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #e65540;
    color: white;
}

.select2-results__options {
    font-size: 13px;
    font-family: Montserrat-Regular;
    color: #888888;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
    margin-left: 26px;
}

    .rs1-select2 .select2-container .select2-selection--single {
        height: 20px;
        ;
    }

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
    background-color: white;
    height: 50px;
}

    .rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 20px;
        color: #555555;
        padding-left: 22px;
    }

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

#dropDownSelect2 .select2-results__options {
    color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
    color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
    height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
    display: block;
}

.rs3-select2 .select2-selection__arrow:after {
    display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
    height: 40px;
}

    .rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 15px;
    }

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #ffffffd1;
    /* background-image: url(../images/hexagonal-pattern.jpg); */
    background-repeat: round;
    position: absolute;
    width: 100%;
    height: 134px;
    z-index: 9;
    border-bottom: 4px solid #f57e27;
}

.fixed-header {
    height: 110px;
}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
    width: 100%;
    /*box-shadow: 1px 1px 1px rgba(1, 3, 2, 0.6);*/
    top: 0;
    left: 0;
    /* position: relative; */
    z-index: 0;
    /* box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); */
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    /* -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); */
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    background: rgb(255, 239, 188);
    background: #34495e00;
    /* border-bottom: 1px solid rgb(29, 29, 29); */
    HEIGHT: 78PX;
}

/*[ Top bar ]
===========================================================*/
.topbar {
    /* height: 62px; */
    /* background-color: #d8ecf600; */
    /* position: relative; */
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}


/* ------------------------------------ */

.topbar-social {
    /* position: absolute; */
    /* height: 100%; */
    /* top: 0; */
    /* right: 18px; */
    /* display: -webkit-box; */
    /* display: -webkit-flex; */
    display: -moz-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* align-items: center; */
    /* padding-left: 40px; */
}

.topbar-social-item {
    font-size: 16p;
    x color: #f7f7f7;
    padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.7;
    /* padding:3px 110px; */
    FONT-WEIGHT: 400;
}

/* ------------------------------------ */
.topbar-child2 {
    position: absolute;
    height: auto;
    top: 7px;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 0;
}


/*[ Menu ]


===========================================================*/

.top_bar1 {
    position: relative;
    z-index: 9999;
    HEIGHT: 40px;
    background: #020202;
    display: none;
}


button.CLOSEBTN {
    position: relative;
    top: 1px;
    font-weight: bold;
    font-size: 25px;
    color: #567b0a;
}



.text_titttle {
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    height: 436px;
}

.wrap_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 131px;
    background-color: #cc144900;
    justify-content: flex-end;
    align-items: center;
    /* position: absolute; */
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
    top: 0;
    border-radius: 0;
}

.fixed-header .wrap_header {
    height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/


.logo img {
    max-height: 170px;
    position: relative;
    top: 48px;
    /* left: 0; */
    width: 113px;
}


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
    list-style-type: none;
    margin: 2px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

    .main_menu > li {
        display: block;
        position: relative;
        /* padding-top: 3px; */
        padding-bottom: 6px;
        padding-top: 8px;
        /* padding-right: 13px; */
        padding: 7px 16px;
        /* border-left: 1px solid rgb(245, 235, 230); */
        /* border-right: 1px solid #f5ebe700; */
    }

        .main_menu > li > a {
            font-family: 'Roboto', sans-serif!important;
            font-size: 20px;
            color: #241e3a;
            padding: 4px 3px;
            font-weight: 700;
            text-transform: capitalize;
            /* margin-top: 15px; */
        }

li.sale-noti > a {
    color: #e65540;
}

.main_menu > li:hover > a {
    text-decoration: none;
    font-family: 'Lato', sans-serif;
}

.main_menu li {
    position: relative;
}

.main_menu > li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu {
    list-style-type: none;
    position: absolute;
    z-index: 1100;
    top: 0;
    left: 100%;
    width: 225px;
    background-color: #222222;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
    top: 100%;
    left: 0;
    position: absolute;
}

.sub_menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
}

.sub_menu li {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
    padding: 10px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
}

.sub_menu > li:hover > a {
    color: #e65540;
    text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    right: 52px;
    top: 41%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
    height: 33px;
    position: relative;
}

    .header-wrapicon1 img,
    .header-wrapicon2 img {
        height: 100%;
        margin: 5px 0px;
    }

.header-icon1:hover,
.header-icon2:hover {
    cursor: pointer;
}

.header-icons-noti {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #111111;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 9px;
    margin-right: 11px;
    margin-top: 3px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
    position: absolute;
    z-index: 1100;
    width: 339px;
    top: 190%;
    right: -10px;
    padding: 20px;
    border-top: 3px solid #e6e6e6;
    background-color: white;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.show-header-dropdown {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.fixed-header .header-cart {
    top: 160%;
}

.header-cart-wrapitem {
    max-height: 270px;
    overflow: auto;
}

.header-cart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 0;
    padding-top: 0;
}

/* ------------------------------------ */
.header-cart-item-img {
    width: 80px;
    position: relative;
    margin-right: 20px;
}

    .header-cart-item-img img {
        width: 100%;
    }

    .header-cart-item-img::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .header-cart-item-img:hover:after {
        cursor: pointer;
        opacity: 1;
    }

/* ------------------------------------ */
.header-cart-item-txt {
    width: calc(100% - 100px);
}

.header-cart-item-name {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    margin-bottom: 12px;
}

.header-cart-item-info {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

.header-cart-total {
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    line-height: 1.3;
    text-align: right;
    padding-top: 15px;
    padding-bottom: 25px;
    padding-right: 3px;
}
/* ------------------------------------ */
.header-cart-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-cart-wrapbtn {
    width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
    display: block;
}



/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.hamburger {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin-top: 5px;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.linedivide2 {
    display: block;
    height: 20px;
    width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.header-icons-mobile .header-cart {
    width: 300px;
    top: 190%;
    right: -80px;
    z-index: 1100;
    transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
    width: 100%;
    background-color: white;
    display: none;
    border-top: 1px solid #ececec;
}

.side-menu {
    width: 100%;
}

    .side-menu li {
        list-style-type: none;
    }

    .side-menu .main-menu {
        margin-bottom: 0;
    }

.item-menu-mobile {
    background-color: #714402;
}

.side-menu .main-menu > li > a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.side-menu .main-menu > li {
    color: white;
    position: relative;
}


.side-menu .main-menu .arrow-main-menu {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 5px;
    padding: 10px;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

    .side-menu .main-menu .arrow-main-menu:hover {
        cursor: pointer;
    }

.turn-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.side-menu .sub-menu a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu > li {
    padding-left: 12px;
    padding-top:;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #e65540 !important;
}

.side-menu .sub-menu {
    background-color: white;
    display: none;
}

@media (min-width: 992px) {
    .wrap-side-menu {
        display: none;
    }
}

/* ------------------------------------ */
.item-topbar-mobile {
    border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-social-moblie {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
    background-color: #fff;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ------------------------------------ */
.logo2 {
    display: block;
}

    .logo2 img {
        max-height: 27px;
    }

.fixed-header2 {
    z-index: 1300;
    position: fixed;
    height: 65px;
    left: 0;
    top: -70px;
    visibility: hidden;
    box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
}

    .fixed-header2 .header-cart {
        top: 160%;
    }

.show-fixed-header2 {
    visibility: visible;
    top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 320px;
    height: 100vh;
    border-right: 1px solid #e5e5e7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    /*[ Menu ]
===========================================================*/
    .container-menu-header-v3 .wrap_header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        background-color: white;
    }


    /*[ Logo ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .logo3 {
        display: block;
    }

        .container-menu-header-v3 .logo3 img {
            max-width: 120px;
        }

    /*[ Header Icon ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .header-icons3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        position: unset;
    }

    /*[ Header cart ]
-----------------------------------------------------------
*/
    .container-menu-header-v3 .header-cart {
        left: -10px;
        transform-origin: top left;
    }

    /*[ Menu ]
-----------------------------------------------------------*/
    .container-menu-header-v3 .main_menu {
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
    }

        .container-menu-header-v3 .main_menu > li {
            padding-top: 3px;
            padding-bottom: 3px;
            padding-left: 0px;
            padding-right: 0px;
            text-align: center;
        }

    .container-menu-header-v3 .sub_menu {
        top: 0;
        left: 100%;
    }

    .container-menu-header-v3 .main_menu > li > .sub_menu {
        top: 10px;
        left: 95%;
    }

    .container-menu-header-v3 .sub_menu li {
        text-align: left;
    }

    .container-menu-header-v3 .topbar-social-item {
        padding: 10px 8px;
    }


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
    margin-left: 320px;
}

@media (max-width: 992px) {
    .wrap_header_mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        background: black;
        display: flex !important;
    }

    .wrap_header {
        display: none;
    }

    .container-menu-header-v3,
    .container-menu-header-v2,
    .container-menu-header {
        display: none;
    }

    .top-bar {
        display: none;
    }

    header {
        height: auto !important;
    }

    .container1-page {
        margin-left: 0px;
    }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 701px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.arrow-slick1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: white;
    position: absolute;
    background-color: black;
    opacity: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 200;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
    opacity: 0.5;
}

.arrow-slick1:hover {
    background-color: #e65540;
}

.next-slick1 {
    right: 50px;
    left: auto;
}

.prev-slick1 {
    left: 50px;
    right: auto;
}

@media (max-width: 576px) {
    .next-slick1 {
        right: 15px;
    }

    .prev-slick1 {
        left: 15px;
    }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }

    .fotter_botttom {
        background: #000 !important;
    }
}

@media (max-width: 768px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 50px;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 16px;
    }

    .item-slick1 {
        height: 470px;
    }
}

@media (max-width: 576px) {
    .wrap-content-slide1 .xl-text3,
    .wrap-content-slide1 .xl-text2,
    .wrap-content-slide1 .xl-text1 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .slick3 {
        width: 100% !important;
        margin: 0 auto;
    }

    .wrap-content-slide1 .m-text27,
    .wrap-content-slide1 .m-text1 {
        font-size: 17px;
        line-height: 8px;
    }

    .item-slick1 {
        height: 162px;
    }

    .contact-block ul li {
        width: 100%;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}


@media (max-width: 360px) {

    .sizefull {
        width: 100%;
        height: 50%;
    }

    .fotter_botttom {
        padding-top: 0;
    }

    .contact-block ul li {
        text-align: left;
        width: 100% !important;
        margin-bottom: 12px;
    }

    .contact-block span {
        font-size: 14px !important;
    }

    .column li .fa {
        text-align: center;
        margin: 7px;
    }
}

/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
    position: absolute;
    z-index: 100;
    top: calc((100% - 71px) / 0px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 39px;
    color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px #ffffff solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: #e0b86d;
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #6dcbf3;
    /* -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3; */
    /* box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3; */
    padding: 0px 11px;
}

    .arrow-slick2:hover {
        color: #666666;
    }

.next-slick2 {
    right: -30px;
}

.prev-slick2 {
    left: -50px;
}

@media (max-width: 1280px) {
    .next-slick2 {
        right: 0px;
    }

    .prev-slick2 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick2 .next-slick2 {
        right: 0px;
    }

    .rs1-slick2 .prev-slick2 {
        left: 0px;
    }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .swal-button:hover {
        background-color: #333333;
    }

    .swal-button:active {
        background-color: #e65540;
    }

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 12px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale::before {
    background-color: #e65540;
    content: 'Sale';
    display: none;
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'New';
    display: none;
}

/* ------------------------------------ */
.block2-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.52);
    opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
    display: block;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 20px;
    color: white;
    line-height: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

    .block2-btn-addwishlist:hover {
        color: white;
    }

    .block2-btn-addwishlist .icon-wishlist,
    .block2-btn-towishlist .icon-wishlist {
        line-height: 0;
    }

    .block2-btn-addwishlist:hover .icon_heart_alt {
        display: none;
    }

    .block2-btn-addwishlist:hover .icon_heart {
        display: block;
    }

    /* ------------------------------------ */
    .block2-btn-towishlist .icon_heart_alt {
        display: none;
    }

    .block2-btn-towishlist .icon_heart {
        display: block;
        color: #e65540;
    }

/* ------------------------------------ */
.block2-overlay:hover {
    opacity: 1;
}

    .block2-overlay:hover .block2-btn-addcart {
        bottom: 40%;
    }

    .block2-overlay:hover .block2-btn-addwishlist,
    .block2-overlay:hover .block2-btn-towishlist {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5);
}

@media (max-width: 1360px) {
    .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1200px) {
    .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 992px) {
    .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
    .rs1-block4 .block4 {
        width: calc(100% / 4);
    }
}

@media (max-width: 1380px) {
    .rs1-block4 .block4 {
        width: calc(100% / 3);
    }
}

@media (max-width: 1200px) {
    .rs1-block4 .block4 {
        width: calc(100% / 2);
    }
}

@media (max-width: 576px) {
    .rs1-block4 .block4 {
        width: calc(100% / 1);
    }
}

/* ------------------------------------ */
.block4-overlay {
    display: block;
    background-color: rgba(0,0,0,0.9);
    visibility: hidden;
    opacity: 0;
}

    .block4-overlay:hover {
        color: unset;
    }

/* ------------------------------------ */
.block4-overlay-txt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
    transform-origin: top left;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
    visibility: visible;
    opacity: 1;
}

.block4:hover .block4-overlay-txt {
    bottom: 0;
}

.block4:hover .block4-overlay-heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
    width: 100%;
    min-height: 400px;
    padding-left: 15px;
    padding-right: 15px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    background-position: 0em 0em;
    position: relative;
}

@media (max-width: 576px) {
    .bg-title-page .l-text2 {
        font-size: 35px;
        padding-top: 0;
    }

    .bg-title-page .m-text13 {
        font-size: 16px;
    }

    .bg-title-page {
        min-height: 100px;
    }
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
    margin-right: 6px;
    margin-left: 6px;
    height: 4px;
    border: none;
    background-color: #e1e1e1;
}

    .leftbar #filter-bar .noUi-connect {
        background-color: #c5c5c5;
        border: none;
        box-shadow: none;
    }

    .leftbar #filter-bar .noUi-handle {
        width: 13px;
        height: 13px;
        left: -6px;
        top: -5px;
        border: none;
        border-radius: 50%;
        background: #999999;
        cursor: pointer;
        box-shadow: none;
        outline: none;
    }

        .leftbar #filter-bar .noUi-handle:before {
            display: none;
        }

        .leftbar #filter-bar .noUi-handle:after {
            display: none;
        }

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {
    background-color: #00bbec;
}

.color-filter2 {
    background-color: #2c6ed5;
}

.color-filter3 {
    background-color: #ffa037;
}

.color-filter4 {
    background-color: #ff5337;
}

.color-filter5 {
    background-color: #a88c77;
}

.color-filter6 {
    background-color: #393939;
}

.color-filter7 {
    background-color: #cccccc;
}

.checkbox-color-filter {
    display: none;
}

.color-filter {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
    box-shadow: 0 0 0px 2px black;
    -moz-box-shadow: 0 0 0px 2px black;
    -webkit-box-shadow: 0 0 0px 2px black;
    -o-box-shadow: 0 0 0px 2px black;
    -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
    margin-right: -6px;
    margin-left: -6px;
}

.item-pagination {
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    margin: 6px;
}

    .item-pagination:hover {
        background-color: #222222;
        color: white;
    }

.active-pagination {
    background-color: #222222;
    color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
    width: 14.5%;
}

.slick3 {
    width: 80.64%;
    margin: 0 auto;
}

.testi-img img {
    width: 15%;
    margin: 22px auto;
}


.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

    .slick3-dots li img {
        width: 100%;
    }

.slick3-dot-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    border: 3px solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .slick3-dot-overlay:hover {
        border: 3px solid #888888;
    }

.slick3-dots .slick-active .slick3-dot-overlay {
    border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
    display: block;
}

.show-dropdown-content .up-mark {
    display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
    overflow: auto;
}

.container-table-cart::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    left: 0;
}

.container-table-cart::after {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: calc(100% - 51px);
    background-color: #e6e6e6;
    top: 51px;
    right: 0;
}

.table-shopping-cart {
    border-collapse: collapse;
    width: 100%;
    min-width: 992px;
}

    .table-shopping-cart .table-row {
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }

    .table-shopping-cart .column-1 {
        width: 225px;
        padding-left: 50px;
    }

    .table-shopping-cart .column-2 {
        width: 330px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-3 {
        width: 133px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-4 {
        width: 355px;
        padding-right: 30px;
    }

    .table-shopping-cart .column-5 {
        padding-right: 30px;
    }

    .table-shopping-cart .table-head th {
        font-family: Montserrat-Bold;
        font-size: 13px;
        color: #555555;
        line-height: 1.5;
        text-transform: uppercase;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .table-shopping-cart td {
        font-family: Montserrat-Regular;
        font-size: 16px;
        color: #555555;
        line-height: 1.5;
        padding-top: 37px;
        padding-bottom: 30px;
    }

    .table-shopping-cart .table-row .column-2 {
        font-size: 15px;
    }


/* ------------------------------------ */
.cart-img-product {
    width: 90px;
    position: relative;
}

    .cart-img-product img {
        width: 100%;
    }

    .cart-img-product::after {
        content: '\e870';
        font-family: Linearicons;
        font-size: 16px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        -moz-transition: all 0.3s;
        opacity: 0;
    }

    .cart-img-product:hover:after {
        cursor: pointer;
        opacity: 1;
    }


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
    padding: 5px 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: 3px;
}

    .tag-item:hover {
        border: 1px solid #e65540;
    }


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: none;
    margin-right: -15px;
    margin-left: -15px;
}

    .tab01 .nav-tabs .nav-item {
        padding: 8px 16px;
    }

.tab01 .nav-link {
    padding: 0;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid transparent;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #888888;
    line-height: 1.1;
}

    .tab01 .nav-link.active {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

    .tab01 .nav-link:hover {
        color: #333333;
        border-bottom: 1px solid #6a6a6a;
    }

@media (max-width: 480px) {
    .tab01 .nav-tabs .nav-item {
        padding: 8px 6px;
    }

    .tab01 .nav-tabs {
        margin-right: -6px;
        margin-left: -6px;
    }

    .FOTTER_IMGE {
        DISPLAY: NONE;
    }

    .personalcarre h3 {
        position: relative;
        bottom: 42px;
        left: 0em;
        color: #fff;
        font-size: 21px;
        text-align: center;
    }
}

@media (max-width: 412px) {
    .personalcarre h3 {
        position: relative;
        bottom: 42px !important;
        left: 0em;
        color: #fff;
        font-size: 21px !important;
        text-align: center;
    }
}

/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {
    padding-right: 0px !important;
}

.modal {
    padding: 0px !important;
    z-index: 1360;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.modal-open {
    overflow-y: scroll;
}

/* ------------------------------------ */
.modal-backdrop {
    background-color: transparent;
}

#modal-video-01 {
    background-color: rgba(0,0,0,0.8);
    z-index: 1350;
}

    #modal-video-01 .modal-dialog {
        max-width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.wrap-video-mo-01 {
    width: 854px;
    height: auto;
    position: relative;
    margin: 15px;
}

.video-mo-01 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
}

    .video-mo-01 iframe {
        width: 100%;
        height: 100%;
    }

.close-mo-video-01 {
    font-size: 50px;
    color: white;
    opacity: 0.6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1250;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

    .close-mo-video-01:hover {
        cursor: pointer;
        opacity: 1;
    }


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

    input.num-product::-webkit-outer-spin-button,
    input.num-product::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }




ul.header-cart-wrapitems li a {
    font-family: 'Khand', sans-serif;
    background: linear-gradient(45deg, rgb(100, 168, 234) 0%, rgba(32,124,229,1) 100%);
    color: #fff;
    padding: 4px 16px;
    line-height: -3;
    border-radius: 5px;
    box-shadow: 0px 4px 0px #000000;
    /* border: 1px solid #4998f1; */
    font-size: 18px;
    font-weight: 500;
    text-shadow: 1px 1px #00000045;
}

ul.header-cart-wrapitems li {
    display: inline-block;
}

.reg a {
    background: linear-gradient(45deg, rgb(135, 199, 7) 0%, rgb(156, 228, 10) 100%) !important;
    box-shadow: 0px 14px 8px -10px #192f48;
}

.main_menu .subtitle {
    color: #e0e0e0;
    margin-top: 0;
    display: block;
    font-weight: 300;
    font-size: 8px;
    line-height: 10px;
    text-align: left;
}

.topbar-title span {
    font-size: 14px;
    padding: 18px 6px;
    position: relative;
    z-index: 1;
}

.topbar-title {
    background: #9ad620;
    color: #fff;
    position: absolute;
    left: 20em;
    padding: 7px 7px;
    box-shadow: 0px 1px #7aa523;
}

    .topbar-title:before {
        width: 0;
        height: 0;
        border-left: 75px solid #85bb15;
        border-right: 60px solid transparent;
        border-bottom: 39px solid transparent;
        position: absolute;
        content: "";
        left: 0;
        top: 0px;
    }

    .topbar-title:after {
        width: 0;
        height: 0;
        border-left: 75px solid rgba(133, 181, 33, 0);
        border-right: 0px solid transparent;
        border-bottom: 39px solid rgb(12, 109, 217);
        position: absolute;
        content: "";
        right: 0;
        top: -1px;
    }


.add_banner img {
    width: 100%;
}

.subhead {
    color: #94ce22;
    font-size: 35px;
    font-weight: 800;
}

.sec-children {
    width: 100%;
    float: left;
    background: url(../images/children.png) no-repeat center center;
    background-size: 100%;
}

ul#benefit li {
    font-size: 14px;
    color: rgb(123, 126, 130);
    line-height: 31px;
}

a.btn.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    border: 1px #0088f1 solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: linear-gradient(to bottom,#00a9f0 0%,#027bc7 100%);
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #6dcbf3;
    -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3;
    box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #6dcbf3;
}
/*.fotter_botttom:before {

content: " ";

width: 100%;

height: 100%;

position: absolute;

left: 0;

top: 0;

background-image: url(../images/fotter.jpg);

background-size: cover;

background-repeat: no-repeat;

pointer-events: none;

opacity: 0.2;

background-position: 0;
}*/

.fotter_botttom {
    background-color: #0d1117;
    z-index: 1;
}

.sppb-addon-single-image-container img {
    width: 100%;
}

p.t-center.bottomtittle {
    font-weight: 300;
    font-size: 24px;
    color: #000000;
}

a.reason h3 {
    color: #bb8d31;
}

.why-chose:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: #000;
}

.imageabout {
    position: absolute;
    right: 7em;
    top: 180px;
}

.detail_bg {
    position: relative;
    background-repeat: no-repeat;
}

.why-chose {
    position: relative;
    background-image: url('../images/sliders.jpg');
    background-repeat: no-repeat;
}

span.sppb-blocknumber-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgba(32, 139, 243, 1);
    color: #ffffff;
    border-radius: 50px;
}

.why-choses {
    position: relative;
    background-image: url('../images/render-diamond1.jpg');
    background-repeat: no-repeat;
    /* background-position: 0em -85em; */
    background-position: 0;
    background-size: cover;
}

.sppb-media, .sppb-media-body {
    overflow: hidden;
    zoom: 1;
}

    .sppb-media-body.sppb-text-left {
        font-size: 13px;
    }

span.sppb-blocknumber-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-color: rgba(32, 139, 243, 1);
    color: #ffffff;
    border-radius: 50px;
    float: left;
    text-align: center;
    margin-right: 9px;
}

.h3, h3 .h2, h2 {
    font-size: 18px;
    color: #191a39;
    font-weight: 400;
}

a.reason {
    text-align: center;
}



    a.reason ul li {
        font-weight: 300;
        color: rgb(142, 129, 81);
    }

.sppb-media {
    margin: 20px 0px 0px 0px;
}

.sppb-media-body.sppb-text-right {
    font-size: 13px;
}

.blog_latest {
    background: #0f66c5;
    position: absolute;
    content: "";
    height: 98%;
    top: 12em;
    width: 100%;
    border-radius: 24%;
    overflow: hidden;
}

.block3 {
    overflow: hidden;
    text-align: center;
    position: relative;
}

.respon6 {
    background: #95db0c;
    border-radius: 5px;
}

ul.bottom_menu li a {
    font-size: 17px;
}

ul.bottom_menu li {
    display: inline-block;
    /* border-right: 2px solid #fff; */
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.ct-footer-pre .form-group input {
    border: 1px solid #feef30;
    background-color: #333;
    color: #fff;
    height: 50px;
    padding: 0 30px;
    margin: 0 5px;
    border-radius: 0 !important;
}

button.btn.btn-motive {
    height: 50px;
    position: relative;
    width: 80px;
    padding: 0;
    color: #fff;
}

.btn.btn-motive {
    color: #fff;
    border: 1px #7cc01a solid;
    background: -o-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: -ms-linear-gradient(top,#00a9f0 0%,#027bc7 100%);
    background: linear-gradient(to right, #bed02c 0%, #63bb12 100%);
    filter: none;
    -moz-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09),inset 0 1px 1px #7cc01a;
    -webkit-box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #7cc01a;
    box-shadow: inset 0 -9px 7px rgba(0,0,0,0.09), inset 0 1px 1px #7cc01a;
}

.inner span {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Khand', sans-serif;
    color: rgb(218, 232, 247);
}

a.reason img {
    margin-bottom: 12px;
    /* display: block; */
}

a.reason {
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

input#email-footer {
    border: 1px solid #feef30;
    background-color: #000000;
    color: #fff;
    height: 50px;
    padding: 0 30px;
    margin: 0 5px;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.3686274509803922) !important;
}

ul.bottom_menu {
    margin-left: -19px;
    padding-left: -4px;
}

    ul.bottom_menu li a {
        color: #dae8f7;
        font-size: 19px;
        padding: 2px 20px;
        border-right: 2px dashed #498ad6;
        font-weight: 600;
    }

.adtree A {
    color: #d2e7ff;
}

.FOTTER_IMGE {
    POSITION: ABSOLUTE;
    TOP: -4EM;
    RIGHT: 0px;
}

h2.big-title {
    color: #145cab;
    font-size: 23px;
}

.contact-datails p {
    line-height: 45px;
}

    .contact-datails p i {
        padding-right: 11px;
        COLOR: yellowgreen;
        FONT-SIZE: 18PX;
    }

.contact-datails p {
    line-height: 45px;
    font-weight: 600;
}

span.adds {
    margin-left: 35px !important;
}

.personalcarre img {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.10196078431372549);
    padding: 12px;
}

.personalcarre h3 {
    position: relative;
    bottom: 60px;
    left: 0em;
    color: #fff;
    font-size: 27px;
    text-align: center;
}



.block2-txt {
    font-family: 'Fira Sans', sans-serif;
}

    .block2-txt p {
        font-family: 'Fira Sans', sans-serif;
    }

.block2-txt {
    padding-top: 3em;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    text-align: center;
}

    .block2-txt p {
        font-family: 'Fira Sans', sans-serif;
        font-weight: 300;
        font-size: 15px;
        font-style: italic;
    }

a.free span {
    display: block;
    font-size: 12px;
}

.sign-up a {
    display: inline-block;
    color: #fff;
}

a.premium span {
    display: block;
    font-size: 12px;
    color: #fff;
}

.sign-up a {
    display: inline-block;
    margin: 12px 5px;
    background: linear-gradient(to right,#e0a305,#ffb600);
    padding: 4px 20px 7px 22px;
    border-radius: 2px;
    min-width: 230px;
    cursor: pointer;
    min-width: 230px;
    cursor: pointer;
    height: 64px;
    font-size: 20px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    border-radius: 3px;
}

a.premium {
    BACKGROUND: linear-gradient(to right, #f56906 0%, #eaa50a 100%);
}

.client-image img {
    border: 1px solid #e0dfdf;
    border-radius: 50%;
    padding: 4px;
    display: inline-block;
}

.star {
    display: inline;
}

    .star img {
        width: 9%;
        border: 0;
        padding: 0;
    }

.rating {
    position: absolute;
    right: 7em;
    top: 6em;
    min-width: 69px;
    height: 66px;
    background: url(../img/sprite.png) 0 -67px no-repeat;
}

img.logo-fotteer {
    width: 43%;
}


p.tex-bottom {
    color: #52595e !important;
    font-weight: 300;
    font-size: 17px;
    text-align: center;
}


.page-footer .widget.widget_sg_social_widget a i {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
}

li#sg_social_widget-2 a {
    display: inline-flex;
    line-height: 40px;
}

ul#menu-company li {
    line-height: 33px;
    display: inline-block;
    padding: 16px 21px;
    /* font-family: 'Muli', sans-serif !important; */
}

li#sg_social_widget-2 i {
    padding-right: 12px;
    line-height: 33px;
    position: relative;
}




.widget.widget_sg_social_widget a i {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: start;
    justify-content: end;
    -ms-flex-align: center;
    align-items: center;
}


.subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget.widget_sg_social_widget a i:before {
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -6px;
    top: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
}

h4.social_head {
    color: #b1afaf;
    font-size: 18px;
    margin: 0 19px;
}

#menu-copyright li a {
    padding: 13px;
}

#menu-copyright li {
    display: inline-block;
}

ul#menu-copyright {
    text-align: right;
}

.page-footer__copyright-container {
    margin-top: 1em;
    border-top: 1px solid rgba(255,255,255,0.2);
    background: #ffffff;
}

section.gradient {
    background: #93c52d;
}

.bottom-0.login_btn0 {
    position: relative;
}

.social_detail0 {
    background: #0c0d12;
    padding: 1em;
    background-image: url(../images/banner_top1.jpg);
    background-repeat: no-repeat;
    margin-top: 0;
    background-size: cover;
    text-align: center;
}

span.companyname {
    font-size: 41px;
    font-weight: 700 !important;
    color: #e0ac37 !important;
    letter-spacing: 15px;
    /* text-shadow: 0px 2px rgb(115, 90, 35); */
    font-family: 'Playfair Display', serif;
}

.img_destop img {
    width: 100%;
    position: relative;
    top: 3px;
}

.head_about {
    position: relative;
    z-index: 1;
}

.sign-up {
    position: relative;
}

.why-choses:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.87);
}

span.companyname {
    font-size: 43px;
    color: #deab4b;
    font-weight: 400;
    /* display: block; */
    /* letter-spacing: 0; */
    /* border-bottom: 2px solid #deab29; */
    /* padding-bottom: 0; */
    padding-top: -10px;
    /* margin-bottom: 18px; */
    font-style: italic;
    padding-left: 15px;
}

.social_detail0 p {
    font-size: 37px !important;
    color: #fff !important;
    text-align: center;
    font-weight: 400;
}

.w3btn {
    width: 100%;
}

span.linee {
    color: rgba(38, 41, 17, 0.3411764705882353);
}

.blurb-image {
    text-align: center;
    /* margin-bottom: 80px; */
}




    /*bul*/




    .blurb-image > div {
        font-size: 50px;
        margin-bottom: 12px;
        color: #27241e;
    }

        .blurb-image > div:after {
            content: "";
            position: absolute;
            right: -25px;
            bottom: -11px;
            z-index: -1;
            width: 59px;
            height: 60px;
            background: url(../images/icon-bg.png) no-repeat center;
            background-size: cover;
        }

    .blurb-image > div {
        position: relative;
        z-index: 1;
        line-height: 1.15;
    }

h6.title {
    margin-bottom: 12px;
    margin-top: 15px;
}

a.reason i {
    font-size: 43px;
    margin-bottom: 14px;
    color: #bb8d31;
    /* background: #000000; */
    width: 62px;
    height: 62px;
    line-height: 64px;
    border-radius: 50%;
}

.menu-resources-container ul li span {
    color: #000;
    padding: 0;
    font-family: 'Encode Sans Expanded', sans-serif !important;
    PADDING-LEFT: 9PX;
}

.text-centerss {
    width: 100%;
    font-size: 19px;
    color: #000;
}

h3.text-center {
    text-align: center;
    font-size: 34px;
    margin-top: 12px;
    color: #000;
}

.aaya-quickContact {
    width: auto;
    float: right;
    padding: 0px 9px;
    margin-top: 9px;
}

.innerContainer_hedrer {
    float: left;
    width: 100%;
    background-color: #f5f9ff00;
    /* background-image: url(../images/header.jpg); */
    background-position: bottom;
    position: absolute;
    padding: 0;
    height: 4em;
    justify-content: flex-end;
    align-items: safe;
    display: flex;
    top: 0;
    z-index: 9;
}

a.logo_top {
    max-width: 100%;
}

.aaya-quickContact span {
    padding: 6px;
    color: #f7c84f;
}




a.login_btn2 {
    border: 0px solid #010204;
    padding: 4px 11px;
    margin: 2px;
    border-radius: 3px;
    /* background: #0783f300; */
    margin: 0;
    border-radius: 3px;
    /* background: linear-gradient(45deg, rgb(255, 99, 7) 0%, rgb(255, 136, 34) 41%, rgb(253, 207, 171) 61%, rgb(249, 110, 2) 100%) !IMPORTANT; */
    /* border: 0px solid #d8d8d800; */
    box-shadow: 0px 4px #eae4e4;
}

a.login_btn {
    padding: 4px 11px;
    margin: 0;
    border-radius: 7px;
    background: #ffffff;
    border: 1px solid #96a4b1;
    font-size: 39px;
    box-shadow: 0px 4px #2f8c07;
}

.logo_top img {
    width: 199px;
    float: none;
    text-align: center;
    clear: both;
    -webkit-transition: width .5s;
    transition: width .5s;
    -webkit-transform-origin: left;
    transform-origin: left;
    padding: 0;
}

.aaya-quickContact a {
    padding: 0px 7px;
    color: #ffc68a;
}

    .aaya-quickContact a:nth-child(2n+1) {
        /* border-right: 0px solid rgb(1, 3, 2); */
    }

.aaya-eoptions {
    width: auto;
    float: right;
    margin-top: 32px;
}

    .aaya-eoptions > ul > li {
        display: inline-block;
        padding: 2px 10px;
    }

        .aaya-eoptions > ul > li a.location {
            background-image: url('../images/map.png');
        }



        .aaya-eoptions > ul > li a.location {
            padding-left: 4em;
            background-repeat: no-repeat;
            display: inline-block;
            background-size: 42px;
        }

        .aaya-eoptions > ul > li a.account {
            background-image: url('../images/user.png');
            fill: #b9c9d4;
        }



        .aaya-eoptions > ul > li a.account {
            padding-left: 4em;
            background-repeat: no-repeat;
            display: inline-block;
            background-size: 36px;
        }

    .aaya-eoptions ul li a {
        color: #f5d482;
    }

    .aaya-eoptions > ul > li a.search {
        background-image: url('../images/search.png');
        fill: #f5d482;
    }



    .aaya-eoptions > ul > li a.search1 {
        padding-left: 4em;
        background-repeat: no-repeat;
        display: inline-block;
        background-size: 36px;
    }

    .aaya-eoptions > ul > li a.search1 {
        background-image: url('../images/lock.png');
        fill: #f5d482;
    }















.aaya-quickContact A {
    COLOR: #f2f6fe;
    FONT-SIZE: 18PX;
    padding: 13px 24px;
    /* text-transform: uppercase; */
    font-weight: 600;
    border-radius: 2px;
    /* background: #ff4700; */
    background: #35ad00;
}

.aaya-eoptions > ul > li a.search {
    padding-left: 3em;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: 36px;
}

.item_caption h4 {
    font-size: 30px;
    color: #fff;
    font-style: italic;
}

h4.newcol {
    color: #f9f3f6 !important;
}

.about_aaya {
    background-image: url('../images/bg-Pattern.png');
}

.item_caption h3 {
    font-weight: 700;
    font-style: normal;
    font-family: 'Philosopher', sans-serif;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.moto-text_system_14 {
    font-weight: 700;
    font-style: normal;
    font-family: 'Playfair Display', serif;
    color: #333333;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.banner_item.col-sm-6 {
    position: relative;
}

.moto-text_system_13 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Playfair Display', serif;
    color: #333333;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 0px;
}

.moto-color4_4 {
    color: #949494;
}

.moto-color5_5 {
    color: #ffffff;
}

.item_caption_text h6 {
    color: #e8c37a;
    font-weight: 400;
}

a.btn.btn_inverted.banner_btn {
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    font-style: normal;
    color: #e8c37a;
    background-color: transparent;
    border-color: #e0ac37;
    padding: 9px 17px;
    font-size: 16px;
    border-width: 3px;
    margin-top: 11px;
    margin-bottom: 1em;
    text-transform: uppercase;
}


    a.btn.btn_inverted.banner_btn:hover {
        background-color: #e0ac37;
        border-color: #e0ac37;
        color: #fff;
    }





.col-sm-3 .img_placeholder__wrap {
    padding: 96.943% 0 0 0;
}

h3.grey_code {
    color: #333;
}

.col-sm-3 .item_caption {
    align-items: flex-end;
}

.col-sm-6 .img_placeholder__wrap {
    padding: 24.23%;
}

.img_placeholder__wrap {
    background-size: cover;
}

.img_placeholder__wrap {
    overflow: hidden;
    background: #fff;
    position: relative;
    background-position: top;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
}

.item_caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 45px;
}


    .item_caption inverted .new {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 45px;
    }


.banner_item.col-sm-3 {
    padding: 0px;
}





.banner_item.col-sm-6 {
    padding: 0px;
}

.img_placeholder__wrap {
    background-size: cover;
    BACKGROUND-POSITION: center;
}

a.banner_link {
    font-weight: 200;
    font-style: normal;
    color: #e8c37a;
    background-color: transparent;
    border-color: #d19e66;
    /* padding: 9px 17px; */
    font-size: 16px;
    border-width: 3px;
    margin-top: 11px;
    margin-bottom: 1em;
    text-transform: uppercase;
    /* border: 1PX SOLID #d19e66; */
    /* PADDING: 5PX 9PX; */
    /* MARGIN: 12PX; */
}

h1.title_head span {
    color: #e09c52;
}

.product_imgg {
    background: linear-gradient(45deg, rgb(255, 244, 221) 0%, rgb(255, 246, 228) 100%);
}

.block2-txt.p-t-20 a {
    font-size: 18px;
    color: #000;
    margin-bottom: 6px;
    font-weight: 500;
    text-align: center;
}

.title_head {
    color: #000;
    color: #131313;
    font-size: 40px;
    font-weight: 600;
    /*font-family: 'Playfair Display', serif;*/
    width: 100%;
    text-align: center;
    /* margin-bottom: 0em; */
    font-family: 'Philosopher', sans-serif;
    text-transform: uppercase;
    margin-bottom: 11px;
}


.section_homepage.section_showcase {
    float: left;
    width: 100%;
}

.section_showcase .showcase_3 .img_placeholder__wrap {
    padding: 100% 0 0 0;
}

.showcase_item {
    padding: 0;
}

.section_showcase .item_caption div {
    width: 100%;
    text-align: right;
    /* align-items: baseline!important; */
}

.showcase_item.showcase_item_2.showcase_3.col-sm-4 {
    text-align: left !important;
}

.section_showcase .showcase_item_2 h2 {
    FONT-SIZE: 47PX;
    COLOR: #352626 !important;
    FONT-WEIGHT: 700;
}

.section_showcase .showcase_item_2 h5 {
    font-size: 23px;
    text-transform: uppercase;
    color: #130d01;
    font-weight: 100;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section_showcase .item_caption {
    padding: 30px;
    align-items: start;
    /* justify-content: left; */
    /* display: flex; */ font-family: 'Philosopher', sans-serif;
}

.section_showcase .img_placeholder__wrap {
    background-size: cover;
}

.item_caption > div {
    text-align: left;
    align-items: baseline !important;
}


.section_showcase .showcase_item_2 h3 {
    FONT-SIZE: 32PX;
}

.section_showcase .showcase_item_2 .item_caption div {
    text-align: left;
    TEXT-ALIGN: RIGHT;
}

.section_showcase .showcase_item_2 h4 {
    font-size: 16px;
    font-style: italic;
    font-family: Lato;
    color: #999;
    letter-spacing: 0.04em;
    margin-top: 5px;
}


.section_showcase .item_caption inverted {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
}


.showcase_item_2 .item_caption {
    align-items: flex-end;
    TEXT-ALIGN: RIGHT;
}

.section_showcase .showcase_item_3 .item_caption {
    align-items: flex-end;
}

.item_caption > div > h4 {
    color: black;
}

.fotter_botttom {
    /*background: url(../images/footer-bg.png) 0 0 no-repeat transparent;*/
    position: relative;
    float: left;
    width: 100%;
    background-size: 100%;
    /* background-image: url(../images/bg01.jpg); */
}

p.widget__title:before {
    background: #d6a824;
    position: absolute;
    content: "";
    height: 3px;
    bottom: -2px;
    width: 39px;
}





.cat-button {
    padding: 10px 46px;
    margin-top: 13px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    border: none;
}

a.btn.cat-button {
    background: linear-gradient(45deg, rgb(165, 101, 4) 0%, rgb(225, 185, 66) 100%);
    color: #fff;
}

.tmall-cat-title {
    color: #e09c1a;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
}







@media (max-width: 1800px) {
    .section_banners .col-sm-6 .item_caption h4 {
        font-size: 26px;
        margin-bottom: 0;
    }
}

footer h5 {
    font: 500 20px/26px "Raleway",sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px 0;
    cursor: pointer;
    letter-spacing: .9px;
    display: none;
}

.contact-block {
    text-align: center;
}

    .contact-block span {
        font-weight: normal;
        line-height: 28px;
        color: #fff;
        letter-spacing: 0.8px;
        font-size: 18px;
        text-transform: capitalize;
        font-family: "PT Sans",sans-serif !important;
        font-weight: 700;
    }

    .contact-block ul li {
        float: left;
        display: inline-block;
        width: 33%;
    }

    .contact-block ul {
        list-style: none;
        padding: 0;
        position: relative;
        z-index: 1;
        margin: 0;
    }

.column li .fa {
    color: #ffffff;
    height: 25px;
    margin-right: 15px;
    width: 25px;
    font-size: 22px;
    float: none;
    clear: both;
    background: #ca991e;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-shadow: 1px 2px rgb(154, 118, 28);
}

.wrap-slick3 {
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.block2 p {
    display: block;
    color: #b1afaf;
    line-height: 28px;
    text-transform: capitalize;
    padding-top: 20px;
    width: 82%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 15px;
    font-size: 15px;
}

.footertop {
    padding: 39px 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 19px;
}

ul#menu-company li a {
       font-weight: normal;
    line-height: 27px;
    color: #575e68 !important;
    /* font-family: 'Roboto', sans-serif!important; */
    font-weight: 400;
    /* font-family: 'Muli', sans-serif !important; */
    font-size: 18px;
}

h3.testi {
    font-size: 24px;
    line-height: 34px;
    font-family: 'Roboto', sans-serif!important;
    font-weight: 400;
    color: #3c4655;
}

ul#menu-company li a:hover {
    color: #fff !important;
}

span.title {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #d2a33d;
    line-height: 30px;
    vertical-align: middle;
    font-weight: 600;
}

.direct {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    vertical-align: middle;
}

ul.tmediasocial_inner li a {
    text-align: center;
    border: medium none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 3px 4px;
    position: relative;
    height: 32px;
    width: 43px;
    vertical-align: top;
}

ul.tmediasocial_inner li a {
    font-weight: normal;
    line-height: 30px;
    color: #808080;
    text-transform: uppercase;
}

.tmediasocial_inner li a {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    line-height: 20px;
    text-indent: 0;
}

.nesw {
    text-align: center;
    color: #deb131;
    font-size: 28px;
    font-family: 'Philosopher', sans-serif;
}

ul.tmediasocial_inner li {
    display: inline-block;
    padding: 32px 6px;
    /* margin-top: 50%; */
}

    ul.tmediasocial_inner li a {
        font-size: 25px;
    }

.fooblockcolumn {
    padding: 40px 0;
}

.feature-text.left-icon .feature-icon {
    position: absolute;
    left: 0;
}

.feature-text.left-icon .feature-info {
    text-align: center;
    /* padding-left: 60px; */
    color: #fff;
}

.feature-info h5 {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 12px;
    margin-top: 1em;
    color: #ffffff;
    /* text-transform: uppercase; */
}

.feature-text .feature-icon span, .feature-text .feature-icon i {
    font-size: 40px;
    margin-bottom: 30px;
    display: inline-block;
    color: #e09c1a;
    padding-left: 15px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
}


section.bg-title-page.bg-overlay-black-60:before {
    /*background: rgba(239, 239, 239, 0.17);*/
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

a.login_btn2 {
    color: #0a1d42;
}

.title_heading {
    position: relative;
    z-index: 1;
}

.size24:before {
    position: absolute;
    background: rgba(93, 29, 5, 0);
    content: "";
    height: 100%;
    width: 100%;
    transform: rotate(49deg);
    z-index: -5;
    left: -22em;
    top: 0em;
    border: 0px solid #fff;
    display: none;
}

h3.text-_one {
    font-weight: 300;
    color: #ffffff;
    /* font-weight: lighter; */
    font-family: 'Lato', sans-serif !important;
    line-height: 28px;
    /* text-shadow: 0px 2px 6px rgba(7, 23, 37, 0.5686274509803921); */
    /* text-shadow: 0px 4px 4px #0717253b; */
    /* font-family: 'Muli', sans-serif !important; */
    /* background: linear-gradient(90deg, rgba(45, 39, 78, 0.93) 49%, rgba(248, 0, 0, 0) 100%); */
    border-radius: 5px;
    padding-left: 0;
    padding: 10px 0px;
    /* border-left: 6px solid #f81a00; */
}

h2.text-_one {
    font-size: 60px;
    color: #3c0d13;
    /* -webkit-text-stroke: 0px #ffffff; */
    /* -webkit-text-fill-color: white; */
    /* -webkit-animation: fill 0.5s infinite alternate; */
    font-weight: 400;
    text-shadow: 0px 4px 4px #07172500;
    line-height: 49px;
    background: linear-gradient(90deg, rgba(243, 2, 14, 0) 49%, rgba(248, 0, 0, 0) 100%);
    padding-left: 0;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 12px;
    padding-right: 0;
    letter-spacing: 1px;
    /* border-left: 6px solid #313144; */
    padding-top: 3em;
}

.cta-btn-group {
    display: flex;
    justify-content: initial;
    align-items: end;
    width: 100%;
}

    .cta-btn-group a {
        /* background: linear-gradient(45deg, rgb(248, 26, 0) 0%, rgb(255, 54, 0) 44%, rgb(248, 12, 7) 100%); */
        padding: 12px 36px;
        font-size: 18px;
        color: #f2f6fe;
        text-align: center;
        text-transform: unset;
        font-weight: 600;
        border-radius: 5px;
        box-shadow: 0px 3px #040102;
        border: 1px 3px #000;
        background-image: linear-gradient(90deg,#f03f22,#f68427,#db1f1f);
        BORDER-RADIUS: 25PX;
    }

.theme-color {
    font-size: 56px;
    color: #f2f6fe;
    margin-bottom: 21px;
    font-size: 36px;
    color: #f2f6fe;
    margin-bottom: 21px;
    background: #191a36;
    padding: 9px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px #ffffffa3;
    background: linear-gradient(45deg, rgb(60, 21, 51) 0%, rgb(220, 13, 4) 50%, rgb(205, 12, 5) 51%, rgb(205, 14, 8) 100%);
}

.wt-box img {
    width: 100%;
}

span.wt-title-subline.font-16.text-gray-dark.m-b15 {
    font-size: 40px;
    font-weight: 400;
    line-break: 62px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Lato', sans-serif !important; */
    /* font-family: 'Lato', sans-serif !important; */
}



.feature-info p {
    text-align: center;
    color: #fff !important;
}


img.market-section-two {
    height: 45px;
    max-width: 51px;
    margin-bottom: 14px;
}

h3.block-title {
    font-size: 33px;
    font-weight: normal;
    /* font-style: normal; */
    font-stretch: normal;
    line-height: 1.32;
    text-align: left;
    letter-spacing: 0.02em;
    color: #13214b;
    font-weight: 500;
}

.mrkt-curr img {
    width: 100%;
}

.forr_headi {
    font-size: 35px;
    color: #2e2c3e;
    font-weight: 700;
}

.bottom_fotter_join_fores {
       background: red;
    background-image: url(../images/6863967-orange-wallpaper.jpg);
    background-position: -6em -38em;
}

p.bottom_line {
    color: #fff !important;
    font-size: 40px;
    font-weight: 300;
    /* font-family: 'Roboto', sans-serif; */
}

p.bottom_line2 {
    color: #fff !important;
    font-size: 26px;
    font-weight: 300;
}

.about_detail {
    color: #52595e !important;
    font-weight: 400;
    font-size: 17px;
}

.right_img img {
    width: 100%;
}

.logo_clients img {
    width: 100%;
}

.header {
    position: relative;
}

.topBar {
    background: linear-gradient(90deg, #ec1202eb 40%, rgba(242, 235, 233, 0.12) 40%);
    border-top: 10px solid #2d274e;
    z-index: 99;
    position: relative;
}

    .topBar .grid-container .cell:first-child {
        padding-right: 0px;
    }

    .topBar .grid-container .cell:last-child {
        padding-left: 0px;
    }

.left-topBar {
    background-color: #ec2816;
}

.right-topBar,
.left-topBar {
    padding-top: 5px;
    padding-bottom: 5px;
}

    .left-topBar ul li i,
    .left-topBar ul li {
        font-size: 1rem;
        color: #FFFFFF;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .left-topBar ul li {
        margin-right: 28px;
    }

        .left-topBar ul li:last-child {
            margin-right: 0px;
        }

        .left-topBar ul li i {
            margin-right: 8px;
            font-size: 21px;
            vertical-align: text-top;
        }

.right-topBar {
    position: relative;
    text-align: right;
    margin-top: 11px;
    margin-bottom: 15px;
}

    .right-topBar a {
        margin-bottom: 0;
        margin-right: 3px;
        min-width: 130px;
        min-height: 30px;
    }
/*-------------------------
	Top Bar CSS Ends
-------------------------*/

/*-------------------------
	05 - navigation CSS
-------------------------*/
.header .header-Wrap {
    padding: 27.5px 0px;
    z-index: 99;
    position: relative;
    background-color: rgba(234, 232, 231, 0.9);
}

.top-bar-title {
    margin: 0;
}

.top-bar {
    padding: 0;
}

.header-Wrap .top-bar ul,
.header-Wrap .top-bar {
    background-color: transparent;
}

.top-bar .large-horizontal.dropdown .single-sub:first-child .nav-border {
    padding-left: 0;
    color: #f39f51;
}

.top-bar .large-horizontal.dropdown .single-sub .child-nav a {
    text-transform: capitalize;
    padding: 15px 15px;
    background-color: rgba(247, 247, 247, 0.9);
    border-bottom: 1px solid #e0e0e0;
    line-height: normal;
}

nav ul.menu.dropdown li:last-child a {
    padding-right: 0px;
}

.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '';
    border: 0px;
}

.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a,
.dropdown.menu li a {
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 25px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
}

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:hover,
    .dropdown.menu li a:hover {
        color: #f39f51;
    }

ul.menu li {
    display: inline-block;
    font-family: 'Muli', sans-serif !important;
    FONT-WEIGHT: 600;
}

.topBar .grid-container .cell:first-child {
    padding-right: 0px;
}

.left-topBar {
    padding-top: 22px;
    padding-bottom: 10px;
}

.button.primary {
    /* background-color: #34495e; */
    color: #fff;
    background: linear-gradient(red, #7a0a8e);
    box-shadow: 0px 3px #7d1313;
}

.button.secondary {
    /* background-color: #f80000; */
    color: #fff;
    background: linear-gradient(#03b392, #003679);
    box-shadow: 0px 3px rgb(12, 81, 132);
}

.button {
    /* background-color: #19b395; */
    color: #fafafb;
    padding: 11px 24px;
    /* margin-bottom: 0; */
    /* margin-right: 6px; */
    /* min-width: 137px; */
    min-height: 30px;
    border-radius: 5px;
    background: linear-gradient(#ff8d00, #925800);
    box-shadow: 0px 3px rgb(132, 80, 6);
}

.ro_pad {
    padding: 0px;
}

ul.main_menu li:nth-child(1) {
    border: none;
}

.wt-box h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    color: #15142c;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.welcome-img:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 100%;
    background: #fff;
    border: 10px solid #e1e1e1;
    left: 0px;
    bottom: -50px;
    content: "";
}

.welcome-img {
    text-align: right;
    position: relative;
    padding-right: 32px;
}

    .welcome-img img {
        position: relative;
        z-index: 99;
    }

.section-head {
    position: relative;
}

.one_choodse:before {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(#d20000d4, #d40300e8);
    content: "";
    top: 0px;
}


.market-curr .scs-hover .scs-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.market-curr .scs-text {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
    z-index: 1;
}

.market-curr {
    position: relative;
    margin: 0px auto 30px;
    width: 100%;
    max-width: 665px;
    overflow: hidden;
    transition: .5s ease;
    box-shadow: 1px 34px 32px -31px #bdb6b6;
    border: 6px solid #eaeaea;
    border-radius: 5px;
}




.scs-hover {
    position: absolute;
    top: 32px;
    left: -100%;
    height: calc(100% - 67px);
    width: calc(100% - 75px);
    background-color: rgba(255, 49, 0, 0.88);
    transition: .5s ease;
    overflow: hidden;
}

.market-curr:hover .scs-hover {
    left: 41px;
}


.scs-text h2 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 33px;
    font-family: 'Muli', sans-serif !important;
    font-weight: 700;
}

ul.pros li {
    color: #fff;
    line-height: 25px;
    font-weight: 500;
    text-align: center;
}

a.btn-style-b {
    background: #000;
    color: #fff;
    padding: 0px 20px;
    margin-top: 10px;
    border-radius: 5px;
}

.wt-separator-outer {
    font-size: 21px;
    color: #2e2c3e;
    font-family: 'Muli', sans-serif !important;
    font-weight: 400;
}

.left_type.income ul li {
    font-size: 22px;
    line-height: 47px;
    list-style: disc;
    font-family: 'Muli', sans-serif !important;
}

.hedi_plan {
    margin-bottom: 2em;
}

.headin_tiitle h2 {
    margin: 12px 0em;
    color: #ff2700;
    font-weight: 800;
}

.sty {
    font-size: 25px;
}

.row.onplan {
    margin-top: 4em;
}


.infoid_mail {
    position: relative;
}


.infoid {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 54px;
}

li.log a {
    background: none !important;
    border: 1px solid #0000009e;
}

.infoid ul li a {
    padding: 13px 55px;
    color: #fff;
    font-size: 19px;
    font-family: 'Lato', sans-serif !important;
    border-radius: 25px;
    background: linear-gradient(90deg,#f03f22,#f68427,#fba10b);
    margin-left: 4px;
    font-weight: 700;
}

.infoid ul li {
    display: inline-block;
    border-radius: 25px;
}

h3.text-_one2 {
    /* font-family: 'Lato', sans-serif !important; */
    color: #fff;
    font-size: 34px;
    font-weight: 200;
    padding-top: 10px;
}

h3.welcome {
    FONT-SIZE: 38px;
    FONT-WEIGHT: 300;
    COLOR: #1b2e50;
    text-transform: uppercase;
    /* font-size: 40px; */
    font-weight: 400;
    letter-spacing: 1px;
}



.one_choodse:before {
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../images/home_evergreen_fund.jpg);
    /*background:linear-gradient(90deg,#f03f22,#f68427,#f68427);*/
    content: "";
    top: 0px;
    background-size: cover;
    background-position: 0px 0em;
}
.ocean, .wave {
    position: absolute;
    display:none;
    opacity: 0.6;
}


.row.datae_inverst {
    padding-bottom: 50px;
}

.card-orange {
    font-family: 'Lato', sans-serif !important;
    border: 0;
    background-color: #00000096;
    color: #fff!important;
    box-shadow: 0 30px 20px -25px rgba(0,0,0,.1);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 265px;
    margin-bottom: 20px;
    border-radius: 38px;
}

h5.card-title.aos-init.aos-animate {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 500;
    padding-top: 14px;
    margin-bottom: 0;
}

.co-img {
    margin: 20px 0;
}


.wt-separator.text-light{
    font-weight:300;
}
.card-body:HOVER {
 BACKGROUND: #10A5E8;
 BORDER-RADIUS: 25PX;
 transition: ease-out;
 transform: scale(1.03);
 transition: .2s;
 box-shadow: 0px 48px 36px -6px rgba(0, 0, 0, 0.63);
}
.card-body.twos:HOVER {
 BACKGROUND: #8ec640;
 BORDER-RADIUS: 25PX;
 transition: ease-out;
 transform: scale(1.03);
 transition: .2s;
 box-shadow: 0px 48px 36px -6px rgba(0, 0, 0, 0.63);
}



.one_choodse.two:before {
    position: absolute;
    height: 100%;
    width: 100%;
background: url(../images/186246.jpg);
    content: "";
    top: 0px;
}

.ocean.onewave {
    opacity: .1;
}
.header-color-modal h4 {
    font-size: 20px;
}



img.img_glo {
    width: 20%;
}


#sub-process {
	margin: 0px auto; width: 1140px; height: auto; overflow: hidden;
}
.process-main {
	width: 1140px; height: auto; margin-top: 25px; margin-bottom: 25px; float: left;
}

.process-head {
	width: auto; height: auto; text-align: center;
}

.process-lorem {
	width: auto; height: auto; margin-top: 10px;
}
.process-lorem p {
	text-align: center; color: rgb(57, 75, 80); font-size: 18px;
}
.process-bg {
	width: auto; height: auto; text-align: center; margin-top: 10px;
}
.process-main-box {
	width: 1140px; height: auto; margin-top: 40px; float: left;
}
.process-box {
	width: 214px; height: auto; text-align: center; float: left;
}
.process-box:hover {
	
}
.process-box2 {
	width: 214px; height: auto; text-align: center; margin-left: -20px; float: left; position: relative;
}
.process-box3 {
	width: 214px; height: auto; text-align: center; margin-left: -20px; float: left; position: relative;
}
.process-box4 {
	width: 214px; height: auto; text-align: center; margin-left: -20px; float: left; position: relative;
}
.process-icon {
	transition:0.5s; width: auto; height: auto;
}
.process-box:hover .process-icon {
	transform: translate(-9px, 28px); -webkit-transform: translate(-9px, 28px); -moz-transform: translate(-9px, 28px); -o-transform: translate(-9px, 28px);
}
.process-box2:hover .process-icon {
	transform: translate(-9px, 28px); -webkit-transform: translate(-9px, 28px); -moz-transform: translate(-9px, 28px); -o-transform: translate(-9px, 28px);
}
.process-box3:hover .process-icon {
	transform: translate(-9px, 28px); -webkit-transform: translate(-9px, 28px); -moz-transform: translate(-9px, 28px); -o-transform: translate(-9px, 28px);
}
.process-box4:hover .process-icon {
	transform: translate(-9px, 28px); -webkit-transform: translate(-9px, 28px); -moz-transform: translate(-9px, 28px); -o-transform: translate(-9px, 28px);
}
.process-01 {
	width: auto; height: auto; margin-top: 70px;
}

.process-text {
	width: auto; height: auto; margin-top: 7px;
}
.process-text p {
	text-align: center; color: rgb(123, 123, 123); font-size: 13px;
}
.pr-round {
	width: 130px; height: auto; margin-top: -20px; margin-left: -20px; float: left; position: relative;
}
.pr-down-round {
	width: 133px; height: auto; margin-top: 40px; margin-left: -20px; float: left; position: relative;
}
#main-live {
	width: 100%; height: 466px; min-width: 1245px; background-image: url("images/live-bg.jpg"); background-repeat: no-repeat; background-size: 100% 466px;
}
#sub-live {
	margin: 0px auto; width: 1140px; height: auto; overflow: hidden;
}
.live-main {
	width: 1140px; height: auto; margin-top: 70px; margin-bottom: 30px; float: left;
}
.live-headline {
	width: auto; height: auto; text-align: center;
}
.live-headline h3 {
	color: rgb(255, 255, 255); text-transform: uppercase; font-size: 30px;
}
.live-total-box {
	width: 1140px; height: auto; margin-top: 50px; float: left;
}
.live-one-box {
	width: 175px; height: auto; margin-left: 66px; float: left;
}
:first-child.live-one-box {
	margin-left: 0px;
}
.live-one-circle {
	width: 169px; height: 169px; text-align: center; background-image: url("images/live-one-bg.png"); background-repeat: no-repeat; background-size: 169px 169px; -webkit-animation: cssAnimation 1.7895s 17 linear; -moz-animation: cssAnimation 1.7895s 17 linear; -o-animation: cssAnimation 1.7895s 17 linear;
}
.cir-text p {
	color: rgb(255, 255, 255); padding-top: 65px; font-size: 25px;
}
.main_x p {
	color: rgb(255, 255, 255); padding-top: 65px; font-size: 21px;
}
.main_x {
	width: 169px; height: 169px; text-align: center; color: rgb(255, 255, 255); margin-top: -169px; z-index: 20;
}
.running {
	width: auto; height: auto; margin-top: 10px;
}
.running p {
	text-align: center; color: rgb(255, 255, 255); font-size: 16px;
}
#main-accept {
	width: 100%; height: auto; min-width: 1245px; background-color: rgb(255, 255, 255);
}
#sub-accept {
	margin: 0px auto; width: 1140px; height: auto; overflow: hidden;
}
.accept-main {
	width: 1140px; height: auto; margin-top: 35px; margin-bottom: 35px; float: left;
}
.accept-head {
	margin: auto; width: 500px; height: auto;
}
.payment-head {
	width: auto; height: auto;
}

/**/
h4.welcome2 {
      text-align: center;
      margin: 0 0;
      color: #090909;
      FONT-WEIGHT: 300;
      font-size: 23px;
}
.process-text P {
    FONT-SIZE: 15PX;
    FONT-WEIGHT: 400;
}
li.log a {
    color: #000000 !important;
}
.TESTIMONIAL_BG {
    background: #e2f4fa;
    padding: 1em 0em;
    border-radius: 11px;
    box-shadow: 33px 33px 1px #2388f021;
    border: 1px solid #e3dede;
}

.card-green {
    background: rgba(77, 128, 30, 0.82);
}