/*!
Theme Name: leathersoft
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: leathersoft
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

leathersoft is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("css/common.css");
@import url("css/animate.min.css");
@import url("fonts/fonts.css");
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

body {
    font-family: 'Teko', sans-serif;
    background: #1a1a1a;
    overflow-x:hidden;
}

/* The outermost element*/

.p0 {
    padding-left: 0;
    padding-right: 0;
}

.header-wrapper {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    text-align: center;
    position: relative;
}

.zoominheader {
    width: 100vw;
    height: 100vh;
    text-align: center;

    background: url(assets/img/slider.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
    background-position: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-animation: zoomin 15s linear forwards;
    animation: zoomin 15s linear forwards;
    transition: all .15s ease-in-out;
    overflow: hidden;
    transform-origin: 100% 100%;
}



@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }
}

.intro-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-wrapper {

    margin-bottom: 60px;

}

.logo-wrapper img {
    width: 300px;
}


.intro-text {
    margin-bottom: 40px;
}

.intro-text span {
    color: transparent;

    line-height: 120px;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 120px;
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;
}

intro-text span:nth-child(1) {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
}

intro-text span:nth-child(2) {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

intro-text span:nth-child(3) {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

intro-text span:nth-child(4) {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

intro-text span:nth-child(5) {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

intro-text span:nth-child(6) {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

intro-text span:nth-child(7) {
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}

@keyframes blur {
    0% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }

    5% {
        text-shadow: 0 0 90px #fff;
    }

    15% {
        opacity: 1;
    }

    20% {
        text-shadow: 0 0 0px #fff;
    }

    80% {
        text-shadow: 0 0 0px #fff;
    }

    85% {
        opacity: 1;
    }

    95% {
        text-shadow: 0 0 90px #fff;
    }

    100% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
}

@-webkit-keyframes blur {
    0% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }

    5% {
        text-shadow: 0 0 90px #fff;
    }

    15% {
        opacity: 1;
    }

    20% {
        text-shadow: 0 0 0px #fff;
    }

    80% {
        text-shadow: 0 0 0px #fff;
    }

    85% {
        opacity: 1;
    }

    95% {
        text-shadow: 0 0 90px #fff;
    }

    100% {
        text-shadow: 0 0 100px #fff;
        opacity: 0;
    }
}

.enter-btn {}

.enter-btn a {
    text-decoration: none;
    background-color: rgb(232, 25, 56);
    line-height: 64px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 20px;
    color: rgb(255, 255, 255);
    display: inline-block;
    padding-left: 60px;
    padding-right: 60px;
    transition: all 0.6s;
    border-radius: 4px;
}

.enter-btn a:hover {
    background: #FFFFFF;
    color: #333;
}

/* Entery page css end*/

/*====================================================================
 1. Top-bar
 ====================================================================*/
.top-wrapper {
    background-color: #1d1d1d;
    padding: 0 50px;
    justify-content: center;
    display: flex;
    height: 50px;

    flex-direction: column;
}

.top-link {
    float: left;
}

.top-link ul {
    margin: 0;
    padding: 0;
}

.top-link ul li {
    list-style: none;
    font-size: 14px;
    color: #8e8e8e;
    font-weight: 400;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0 30px 0 0;
    position: relative;
    transition: all 0.6s;
}

.top-link ul li:hover {
    color: #e81938;
    cursor: pointer;

}

.top-link ul li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: #e81938;
    right: -18px;
    top: 9px;
}

.top-link ul li:last-child {
    margin: 0;
}

.socail-media {
    margin: 3px 0 0 40px;
    float: left;
}

.socail-media ul {
    margin: 0;
    padding: 0;
}

.socail-media ul li {
    list-style: none;
    display: inline-block;
    transition: all 0.6s;
}

.socail-media ul li a {
    color: #777;
    font-size: 14px;
    margin: 0 25px 0 0;
}

.socail-media ul li a:hover {
    color: #fff ;

}

.socail-media ul li:last-child a {

    margin: 0;
}


.search-btn {
    float: right;
    cursor: pointer;

}

.search-btn span i {
    color: #fff;
    font-size: 16px;
}

/*====================================================================
	 Search Popup
 ====================================================================*/



.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    transform: scale(1, 0);
    transform-origin: bottom center;
    transition: transform 0.7s ease;
}

.search-popup.active {
    transform-origin: top center;
    transform: scale(1, 1);
}

.search-popup__overlay {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0.7;
}

.search-popup__inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-popup__form {
    position: relative;
    z-index: 9991;
    width: 100%;
    padding: 15px;
    max-width: 600px;
    position: relative;
}

.search-popup__form input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    line-height: 30px;
    padding: 15px 30px;
    color: #272727;
    font-size: 14px;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    padding-left: 30px;
}

.search-popup__form button[type="submit"] {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background-color: #e81938;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    font-size: 18px;
}

.search-popup__form button[type="submit"]:hover {
    background-color: #222429;
    color: #ffffff;
}

.cursor {
    position: absolute;
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 999999;
    transform: scale(1);
    visibility: hidden;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 9999;
}

.close-cursor {
    position: relative;
    background: #e81938;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-cursor:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 2px;
    background: #fff;
    left: 48%;
    top: 12px;
    transform: rotate(-45deg);
    display: inline-block;
}

.close-cursor:after {
    position: absolute;
    content: "";
    height: 20px;
    width: 2px;
    background: #fff;
    right: 48%;
    top: 12px;
    transform: rotate(45deg);
}

/*====================================================================
 2. main-header
 ====================================================================*/

.main-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0 50px;
    height: 130px;
    display: flex;
    align-items: center;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: rgba(255, 255, 255, .2);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    transition: all 0.6s;
}

.menu-button {
    display: none;
    text-align: right;
    width: 100%;
    cursor: pointer;
}

.overlay-wrap.active {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 55;
    display: none;
}

.menu-button i {
    color: #fff;
    font-size: 25px;
}

.sticky.main-header {
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-animation: stickyHeader 0.5s ease-out;
    animation: stickyHeader 0.5s ease-out;
    height: 80px;
    background: rgb(2 2 2 / 78%);
}


@-webkit-keyframes stickyHeader {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes stickyHeader {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.site-logo {
    width: 300px;
}

.primary-menu {
    width: calc(100% - 200px);

    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.6s;
}

.primary-menu ul {
    margin: 0;
    padding: 0;
}

.primary-menu ul li {
    transition: all 0.6s;

}

.primary-menu ul.nav-ul li.nav-li>a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e81938;
    display: inline-block;
    margin: 0 0 0 11px;
}

.primary-menu ul.nav-ul li.nav-li {
    float: left;
    position: relative;

}

.primary-menu ul.nav-ul li.nav-li:last-child>a {
    margin: 0;
    background: #EE191C;
    color: #FFFFFF;
    padding: 13px 30px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 0 0 17px;
}

.primary-menu ul.nav-ul li.nav-li:last-child>a:after {
    background: none;
    margin: 0;
}

.primary-menu ul.nav-ul li.nav-li>a {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-transform: capitalize;
    margin: 0px 40px 0 0;
    transition: all 0.6s;
}

.checkout {
    margin-top: 51px;
    background: #fff;
}



.primary-menu ul.nav-ul li.nav-li>a:hover {}

.sticky .primary-menu ul.nav-ul li.nav-li>a:hover {
    transition: all 0.6s;
}

.menu-logo {
    display: none;
}

.primary-menu ul li ul.dropdown-content {
    background: #fff;
    top: 50px;
    width: 250px;
    text-align: left;
    position: absolute;
    visibility: hiddcen;
    display: block;
    opacity: 1;
    line-height: 14px;
    margin: 0;
    list-style: none;
    left: 0;
    border-radius: 0px;
    z-index: 99;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    background-clip: padding-box;
    transition: all .5s ease;

    -webkit-transition: all 0.2s ease-out;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -webkit-box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 4px 1px rgb(0 0 0 / 20%);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    box-shadow: 0 3px 25px 0px rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
}

.primary-menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}


.primary-menu ul li ul.dropdown-content li {
    padding: 0 15px;
    position: relative;
}

.primary-menu ul li ul.dropdown-content li a:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    bottom: -1px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    margin-top: -1px;
    background-color: #fcff00;
}


.primary-menu ul li ul.dropdown-content li:last-child>a:hover:before {
    content: unset;
}


.primary-menu ul li ul.dropdown-content li a {
    font-family: 'Noto Sans JP', sans-serif;

    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    color: #555c63 !important;
    margin: 0;
    display: block;
    padding: 16px 5px 16px 5px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-bottom: 1px solid rgb(0, 0, 0, .09);
    padding: 16px 5px 16px 5px;
    position: relative;

}

.primary-menu ul li ul.dropdown-content li:last-child a {
    border: none !important;

}

.primary-menu ul li ul.dropdown-content li a:hover {
    color: #fcff00 !important;
    transition: all 0.6s;
}

.primary-menu ul li ul.dropdown-content li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
    -webkit-transition: .5s all ease;
    -khtml-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}


/*====================================================================
 3. Banner wrapper
 ====================================================================*/
.banner-wrapper {}

.banner-wrapper .carousel-caption {
    text-align: left;
    left: 13%;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner-wrapper .carousel-caption p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    /*animation: blurAnimation 2s ease  alternate;*/
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;
}

.banner-wrapper .carousel-caption h2 {
    margin: 0;
    font-size: 120px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 100px;
    margin-bottom: 25px;
    text-align: left;
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;

}

@keyframes blurAnimation {
    from {
        filter: blur(0);
    }

    to {
        filter: blur(8px);
    }
}


.carousel-inner>.active img {
    transform: scale(1.2);
}

.carousel-indicators .active {}

.carousel-indicators li {}

.carousel-control {}

.carousel-control:focus,
.carousel-control:hover {}

.carousel {
    clear: both;
    overflow: hidden;
}

.carousel .item {}

.carousel .item img {
    display: block;
    width: 100%;
    -webkit-transition: all 9s ease;
    -moz-transition: all 9s ease;
    -o-transition: all 9s ease;
    transition: all 9s ease;
}

.carousel .item:hover img {}

.slider-wrapper .carousel-caption {
    top: 50%;
    text-align: inherit;
    bottom: auto;
    display: flex;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.btn-fill {
    background-color: rgb(195, 0, 47);
    padding: 18px 32px;
    line-height: 25px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: all 0.6s;
    text-transform: uppercase;
    /*	animation: blurAnimation 2s ease  ;
 */
    animation: blur 10s ease-out infinite;
    -webkit-animation: blur 10s ease-out infinite;
}

.btn-primry {
    background-color: rgb(195, 0, 47);
    padding: 18px 32px;
    line-height: 25px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: all 0.6s;
}


.btn-primry:hover {
    background: #FFFFFF;
}

/*====================================================================
 3. event-wrapper
 ====================================================================*/

.event-wrapper {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1d+50,ffffff+50 */
    background: #1d1d1d;
    /* Old browsers */
    background: -moz-linear-gradient(left, #1d1d1d 50%, #ffffff 50%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #1d1d1d 50%, #ffffff 50%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #1d1d1d 50%, #ffffff 50%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d1d1d', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */


    padding: 0 130px;
}


.event-tittle {
    float: left;
    width: 100%;
    padding: 60px 0;
    padding: 77px 0;
}




.event-tittle .left {
    width: 300px;
    float: left;
    margin: 12px 0 0 0;
}

.event-tittle .left h2 {
    margin: 0;
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 40px;
}

.event-tittle .left p {
    margin: 0;
    font-size: 18px;
    color: #e81938;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;

}

.event-tittle .right {
    width: calc(100% - 300px);
    float: right;
}


.countdown {}

.countdown ul {
    margin: 0;
    padding: 0;

}

.countdown ul li {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a2a2a;
    font-size: 40px;
    float: left;
    margin: 0 10px 0 0;
    flex-direction: column;
    color: #fff;

}

.countdown ul li span {
    font-size: 35px;
}

.countdown ul li span+span {
    color: #8e8e8e;
    text-transform: uppercase;
    font-size: 18px;
}


.video-wrapper {
    background: #FFFFFF;
    position: relative;
    float: left;
    width: 100%;
    padding: 40px;
}

/*.video-wrapper:before{
	 content: " ";
	 background: #FFFFFF;
	 bottom: 0;
	 position: absolute;
	 top: 0;
	 right: auto;
	 left: 100%;
	 display: block;
	 width: 100vw;
 }*/

.video-wrapper:after {
    content: "";
    position: absolute;
    background: #000000;
}





.video-wrapper .left {
    float: left;
    width: 220px;
    position: relative;
}

.video-wrapper .left .play-icon {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.video-wrapper .left .play-icon a i {
    font-size: 40px;
    color: #fff;
    transition: all 0.6s;
}

.video-wrapper .left .play-icon a i:hover {
    color: #e81938;
}

.video-wrapper .right {
    float: right;
    width: calc(100% - 250px);

}

.video-wrapper .right h3 {
    margin: 0;
    font-size: 40px;
    color: #131313;
    line-height: 40px;
    font-weight: 500;
}

.video-wrapper .right a {
    text-decoration: none;
    color: #e81938;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
}

.video-modal .close {
    float: right;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-shadow: none;
    filter: none;
    opacity: 1;
    background: red;
    border-radius: 4px;
    /* padding: 0px; */
    width: 30px;
    height: 30px;
    line-height: 34px;
}

.video-modal .modal-content {
    background: none;
    box-shadow: none;
    border: none;
}

.video-modal .modal-header {
    border: none;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}


/*====================================================================
 5. About wrapper
 ====================================================================*/


.about-wrapper {
    padding: 125px 130px;
}


.about-tittle {}


.about-tittle h2 {
    margin: 0;
    font-size: 60px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 60px;
    margin-bottom: 40px;
}

.about-tittle h2>span {
    color: #e81938;
}

.about-tittle p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #8e8e8e;
    line-height: 30px;
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 40px;
}

.about-logo {
    text-align: center;
}


.counter-box {}

.counter-box span {
    font-size: 80px;
    color: #e81938;
    border-bottom: 3px solid;
    display: block;
    margin-bottom: 30px;
}

.counter-box p {
    font-size: 18px;
    color: #fff;

}

/*====================================================================
 5. produtcs-wrapper
 ====================================================================*/

.produtcs-wrapper {
    padding: 0 130px;
}

.produtcs-tittle {
    text-align: center;
    margin-bottom: 50px;
}

.produtcs-tittle span {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 2px;
}

.produtcs-tittle h2 {
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 80px;
    color: #fff;
}


.item-wrap {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;



}

.item-thumb {
    background: #FFFFFF;
    position: relative;
}

.item-thumb a {
    text-decoration: none;
    display: block;
}

.item-thumb a img {
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.item-thumb a img.hover-img {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


.item-wrap:hover .item-thumb img.hover-img {
    opacity: 1;
}

.item-wrap:hover .item-thumb .default-img {
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.produtcs-wrapper.produtcs-page {
    margin-top: 30px;
}

.item-meta {
    text-align: center;
    margin-top: 15px;
}


.item-meta a {
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.item-meta span {
    font-size: 18px;
    color: #e81938;
    display: block;
}

.item-wrap .item-thumb .cart-icon {
    position: absolute;
    right: 0;
    left: 0;
    top: -50%;
    transform: translateY(-50%);

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.item-wrap .item-thumb .cart-icon a {
    color: #000000;
    background: #EE191C;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}

.item-wrap .item-thumb .cart-icon a:hover {
    box-shadow: 0 0 0 0.3rem rgb(228 79 82 / 68%);
}

.item-wrap .item-thumb .cart-icon a i {
    color: #FFFFFF;
    font-size: 20px;

}

.item-wrap:hover .cart-icon {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/*====================================================================
 5. produtcs-wrapper
 ====================================================================*/

.categories-wrapper {
    margin-top: 80px;
    padding: 0 144px;
}

.cat-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.cat-wrapper:before {
    content: '';
    position: absolute;
    height: 100%;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background-image: -moz-linear-gradient(90deg, #000 0%, rgba(232, 178, 117, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, #000 0%, rgba(232, 178, 117, 0) 100%);
    background-image: -ms-linear-gradient(90deg, #000 0%, rgba(232, 178, 117, 0) 100%);
}

.cat-wrapper .cat-img {}

.cat-wrapper .cat-img img {
    width: 100%;
}

.cat-wrapper .cat-tittle {
    position: absolute;
    bottom: 70px;
    left: 50px;
    z-index: 9;
    overflow: hidden;
    transform: translateY(70px);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.cat-wrapper .cat-tittle h2 {
    margin: 0;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 20px;

}

.cat-wrapper .cat-tittle a {
    border: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 400;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.cat-wrapper .cat-tittle a:hover {
    background: #e81938;
    color: #FFFFFF;
    border: 1px solid #e81938;
}

.cat-wrapper:hover .cat-tittle {
    transform: translateY(-10px);
}

.cat-wrapper:hover .cat-tittle a {
    opacity: 1;
}


/*====================================================================
 5. news-wrapper
 ====================================================================*/



.news-wrapper {

    background: url(assets/img/bg.jpg);
    height: 600px;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elementor-background-overlay {

    background-color: transparent;
    background-image: linear-gradient(180deg, #1a1a1a 6%, rgba(26, 26, 26, .52) 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;

}

.newsletter-wrapper {
    position: relative;
    text-align: center;
}


.newsletter-wrapper h2 {
    margin: 0;
    color: #fff;
    font-size: 80px;
    text-transform: uppercase;
}


.newsletter-wrapper p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.input-group {
    display: flex;
    max-width: 770px;
    margin: 60px auto 0;

}

.input-group .form-control {
    height: 70px;
    margin-right: 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.search_btn {
    border-radius: 4px;
    font-size: 20px;
    font-weight: 400;
    box-shadow: 0 10px 20px 0 rgb(12 118 142 / 10%);
    background: #EE191C;
    color: #fff;
    padding: 5px 42px;
    height: 70px;
    border: none;
    outline: none;

}



/*====================================================================
 6. footer
 ====================================================================*/

.footer-wrapper {
    background-color: #1a1a1a;
    padding: 100px 130px;
}

.footer-wrapper .footer-info {}

.footer-wrapper .footer-info h2 {
    margin: 0;
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    line-height: 60px;
    margin-bottom: 30px;
}

.footer-wrapper .footer-info h2 span {
    color: #e81938;
}



.footer-wrapper .footer-info ul {
    margin: 0;
    padding: 0;
}

.footer-wrapper .footer-info ul li {

    list-style: none;
    color: #fff;
    display: inline-block;
    font-size: 32px;
    font-weight: 500;
    margin: 0 25px 0 0;
}

.footer-wrapper .footer-info ul li i {
    font-size: 24px;
    margin: 0 10px 0 0;
    color: #EE191C;
}

.footer-wrapper .footer-info ul li:last-child {
    margin: 0;
}

.footer-link {}

.footer-link h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 15px;
}

.footer-link ul {
    margin: 0;
    padding: 0;
}

.footer-link ul li {
    color: #8e8e8e;
    line-height: 30px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-link ul li a {
    color: #8e8e8e;
    text-decoration: none;
    transition: all 0.6s;
}

.footer-link ul li a:hover {
    color: #EE191C;
}


.footer-copyright {
    background-color: #131313;
    padding: 20px 130px;


}



.footer-copyright .copyright-tittle {
    margin: 10px 0 0 0;
}

.footer-copyright .copyright-tittle h2 {
    margin: 0;
    color: #8e8e8e;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
}

.footer-copyright .footer-logo {
    text-align: center;
}

.footer-copyright .footer-logo img {
    width: 220px;
}


.footer-copyright .social-media {
    float: right;
}

.footer-copyright .social-media ul {}

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

.footer-copyright .social-media ul li a {
    width: 35px;
    height: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.6s;
    margin: 0 15px 0 0;
    transition: all 0.6s;
    background-color: #000;
}

.footer-copyright .social-media ul li a:hover {
    background: #000 !important;
    color: #fff;
}

.footer-copyright .social-media ul li a i {
    color: #fff;
    font-size: 14px;
}



/*====================================================================
 Next pages       inner banner
 ====================================================================*/


.next-banner {

    background: url(assets/img/slider.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-banner .page-title {
    text-align: center;
}

.next-banner .page-title h2 {
    margin: 0;
    font-size: 65px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.next-banner .page-title ul {
    padding: 0;
    margin: 0;
}

.next-banner .page-title ul li {
    list-style: none;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.next-banner .page-title ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
}

.next-banner .page-title ul li+li::before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
    transform: rotate(-17deg);
    display: inline-block;
}


/*====================================================================
 Next pages       About us
 ====================================================================*/
.about-content {
    padding: 120px 130px;
}

.about-content .about-intro {
    text-align: center;
    cursor: pointer;
}

.about-content .about-intro .intro-icon {
    background-color: #ca2e3e;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-bottom: 47px;
    display: inline-flex;
    transition: all 0.6s;
}

.about-content .about-intro .intro-icon i {
    font-size: 30px;
    color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.about-intro .about-intro-tittle {}

.about-intro .about-intro-tittle h2 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-intro .about-intro-tittle p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Noto Sans JP', sans-serif;
}

.about-intro:hover .intro-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border-radius: 4px;

}

.about-intro:hover .intro-icon i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}


.about-bg {

    background: url(assets/img/about-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;

}

.about-text {}

.about-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #8e8e8e;

    font-family: 'Noto Sans', sans-serif;
    line-height: 35px;
}


/*====================================================================
 Next pages       Produts page
 ====================================================================*/

.produts-bar {
    padding: 0 130px;
    margin: 50px 0px 50px 0;

}

.produts-header {
    background: #333;
    border-radius: 4px;
    min-height: 60px;
    display: flex;
    align-items: center;

}

.filter-control {
    display: flex;
    align-items: center;
    margin: 0 0 0 10px;
    flex: 1;
}

.filter-control label {
    color: #fff;
    margin: 0 10px;
    font-family: 'Noto Sans JP', sans-serif;

}

.filter-control .form-control {
    width: auto;
    min-width: 120px;
    height: 36px;
    color: #333;
    border-radius: 3px;
}

.menu-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-left: 1px solid #545454;
    transition: all 0.6s;

}

.menu-icon i {
    color: #fff;
    font-size: 25px;
}

.menu-icon:hover {
    background: #EE191C;
}

.produts-text {
    margin: 0 10px 0 0px;
}

.produts-text p {
    margin: 0;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;

}

/* ----------------------------- --------------
 left-sidebar                col-lg-3
 ------------------------------------------- */

.content-wrapper {
    margin-top: 40px;
}

.nav-wrapper {
    max-height: 750px;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
}


.content-wrapper .left-sidebar {
    background: #353535;
    box-shadow: 0 0 10px rgb(3 27 78 / 10%);
    transition: all 0.6s;
    top: 0 !important;
    position: fixed !important;
    top: 0 !important;
    width: 320px !important;
    left: -400px !important;
    height: 100vh;
    z-index: 99 !important;
}

.content-wrapper .left-sidebar .left-menu-logo {
    padding: 20px 0;
    text-align: center;
    display: none;
}

.content-wrapper .left-sidebar .close-menu {
    position: absolute;
    top: 0;
    right: -35px;
    background: #ee191d;
    height: 35px;
    width: 35px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.content-wrapper .left-sidebar ul.menu-ul>li {
    /* margin: 0 0 25px; */
    overflow: hidden;
    border-bottom: 1px solid #2d2d2d;
}

.content-wrapper .left-sidebar ul.menu-ul>li:last-child {
    border: none;
}

.content-wrapper .left-sidebar ul.menu-ul li a {
    font-size: 16px;
    /* line-height: 25px; */
    font-weight: 500;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 16px 20px;
    transition: all 0.6s;

}

.content-wrapper .left-sidebar ul.menu-ul li>a:hover {
    background: #ee191d;
    color: #fff !important;
}


.content-wrapper .left-sidebar .metismenu .has-arrow:after {
    right: 22px;
    top: 48%;
}

.content-wrapper .left-sidebar .metismenu .has-arrow:after {
    -webkit-transform: rotate(135deg) translateY(-50%);
    transform: rotate(135deg) translateY(-50%);
}

.content-wrapper .left-sidebar .metismenu .has-arrow[aria-expanded=true]:after,
.content-wrapper .left-sidebar .metismenu .mm-active>.has-arrow:after {
    -webkit-transform: rotate(225deg) translateY(-50%);
    transform: rotate(225deg) translateY(-50%);
}

.content-wrapper .left-sidebar .metismenu .mm-active>a {
    background: #ee191d;
    border-radius: 0;
    color: #fff;
}

.content-wrapper .left-sidebar .metismenu .mm-active:hover>a {
    color: #fff;
}


.content-wrapper .left-sidebar ul.menu-ul>li>ul li {

    overflow: hidden;
}

.content-wrapper .left-sidebar ul.menu-ul>li>ul li a {
    font-size: 18px;
    padding: 8px 20px;
    color: #fff;
    transition: all 0.6s;
}



.content-wrapper .left-sidebar ul.menu-ul>li>ul li:hover a {
    color: #f1603c;
}

.content-wrapper .left-sidebar ul.menu-ul>li>ul {
    padding: 8px 0 8px 0;
}

.content-wrapper .left-sidebar ul.menu-ul>li>ul li a i {
    font-size: 11px;
    padding-right: 10px;
}

.left-sidebar ul.menu-ul>li>ul li a.has-arrow:after {
    right: auto;
    left: 0px;
}

body.open-menu .left-sidebar {
    left: 0px !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body.open-menu {
    overflow: hidden !important;
}

/* -------------------------------------------
 overlay-wrap
 ------------------------------------------- */
.overlay-wrap.active {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 55;
    display: none;
}


/* -------------------------------------------
 Event Page
 ------------------------------------------- */

.event-page {}

.single-post {
    margin-top: 80px;
    float: left;
    width: 100%;
}

.events-tittle {
    position: relative;
    margin-bottom: 50px;
}

.events-tittle:after {
    content: "";
    border-bottom: 1px solid #323232;
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}


.events-tittle h2 {
    margin: 0;
    color: #e81938;
    font-size: 60px;
}



.events-tittle h2 span {
    background-color: #1a1a1a;
    padding: 0 20px 0 0;
    flex: 1 0 auto;
}

.event-content {}

.event-content h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    color: #e81938;
    margin-bottom: 15px;

}

.event-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #8e8e8e;
    font-family: 'Noto Sans', sans-serif;
    line-height: 30px;
    margin-bottom: 26px;

}

.event-content p:last-child {
    margin-bottom: 0;
}


.event-post img {
    width: 100%;
}


/* -------------------------------------------
 Certification-wrapper Page
 ------------------------------------------- */

.Certification-wrapper {
    margin: 50px 0;
}

.Certification-box {
    min-height: 500px;
    background: #fff;
    border-radius: 4px;
    border: 2px solid #292929;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.Certification-box .Certification-img {}

.Certification-box .Certification-img img {
    width: 220px;
    height: 220px
}


.Certification-box .Certification-tittle {
    background: #FF0004;
    border: 2px solid #fff;
    border-radius: 4px;

    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s;
}

.Certification-box .Certification-tittle h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

.Certification-box:hover .Certification-tittle {
    opacity: 1;
}

/* -------------------------------------------
 factory-view-wrapper Page
 ------------------------------------------- */

.Factory-view-wrapper {
    margin: 50px 0;
}


.Factory-box {
    margin-bottom: 30px;
    height: 300px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.Factory-box img {
    border-radius: 4px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;


}


/* -------------------------------------------
 Contact us Page
 ------------------------------------------- */

.contact-wrap {
    margin: 80px 0;
}


.contact-wrap .contact-tittle h2 {
    margin: 0;
    font-size: 35px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-wrap .contact-tittle h4 {
    margin: 0;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.contact-wrap .contact-tittle p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #8e8e8e;
    max-width: 80%;
    line-height: 27px;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-wrap .contact-form {
    margin-top: 30px;
}

.contact-wrap .contact-form .form-group {
    margin-bottom: 20px !important;
}

.contact-wrap .contact-form .form-control {
    height: 50px;
    background-color: transparent;
    font-size: 16px;
    color: #8e8e8e;
    border-radius: 4px;
    border: 1px solid #323232;
    box-shadow: none;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-wrap .contact-form textarea.form-control {
    min-height: 160px;
    resize: none;
}

.submit-btn {
    background-color: #e81938;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 16px 35px;
    transition: all 06.s;
}

.submit-btn:hover {
    color: #fff;
}

.submit-btn:focus {
    color: #fff;
}

.contact-details {
    background: #131313;
    padding: 30px;
    border-radius: 15px;
    float: left;
    width: 100%;
}

.contact-details .details-tittle {
    border-bottom: 1px solid #323232;
    padding: 0 0 20px 0;
}

.contact-details .details-tittle h2 {
    color: #fff;
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-details .details-tittle p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    font-family: 'Noto Sans JP', sans-serif;
}

.contact-details .contact-info {
    margin-top: 30px;
}

.contact-details .contact-info ul {}

.contact-details .contact-info ul li {
    margin: 0 0 35px 0;
    float: left;
    width: 100%;
}

.contact-details .contact-info ul li:last-child {
    margin: 0;
}

.contact-details .contact-info ul li .contact-link {}

.contact-details .contact-info ul li .contact-link .left {
    width: 55px;
    float: left;
}

.contact-details .contact-info ul li .contact-link .left .contact-icon {
    background: #323232;
    width: 53px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.contact-details .contact-info ul li .contact-link .left .contact-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-details .contact-info ul li .contact-link .right {
    width: calc(100% - 72px);
    float: right;
}


.contact-details .contact-info ul li .contact-link .right .contact-text {}

.contact-details .contact-info ul li .contact-link .right .contact-text h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.contact-details .contact-info ul li .contact-link .right .contact-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 21px;
    font-family: 'Noto Sans JP', sans-serif;
}


.contact-details .social-media {
    padding: 30px 0 0 0;
    float: left;
    width: 100%;
    display: none;
}

.contact-details .social-media h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.contact-details .social-media ul {}

.contact-details .social-media ul li {
    list-style: none;
    display: inline-block;
    margin: 0 10px 0 0;
}

.contact-details .social-media ul li:last-child {
    margin: 0;
}

.contact-details .social-media ul li a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #27282f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.6s;
}





.section-copyright {
    margin-top: 120px;
    border-top: 1px solid #dedfe1;
    padding: 12px 0;
}

.section-copyright .copyright-text {
    margin: 8px 0 0 0;
}

.section-copyright .copyright-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #27282f;
}


.section-copyright .social-media {
    float: right;
}

.section-copyright .social-media ul {}

.section-copyright .social-media ul li {
    list-style: none;
    display: inline-block;
    margin: 0 10px 0 0;
}

.section-copyright .social-media ul li:last-child {
    margin: 0;
}

.section-copyright .social-media ul li a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    background: #fff;
    color: #27282f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.6s;
}

.section-copyright .social-media ul li a:hover {
    background: #f16542;
    color: #fff;
}

/* -------------------------------------------
 large vioew-wrapper Page
 ------------------------------------------- */

.products-view-wrapper {
    margin: 100px 0 40px;
}

.product-view {
    height: 585px;
    background: #FEFEFE;
    display: flex;
    justify-content: center;
    align-items: center;
}


.products-view-tittle {}


.products-view-tittle h2 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
}

.products-view-tittle h5 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    border-bottom: 1px solid #292929;
    padding: 0 0 25px 0;
}

.products-view-tittle h6 {
    font-family: 'Noto Sans JP', sans-serif;

    margin: 0;
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #292929;
    padding: 20px 0;
}


.products-view-tittle p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #8e8e8e;
    font-family: 'Noto Sans', sans-serif;
    line-height: 30px;
    padding: 20px 0;

}


.product-control {}

.product-control label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: #fff;
}

.product-control .form-control {
    height: 40px;
    background-color: transparent;
    color: #8e8e8e;
    border-radius: 4px;
    border: 1px solid #323232;
    margin-bottom: 15px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;

}

/*==============================
	 QTY Group Code
 ===============================*/
.qty-group {
    width: 100%;
    height: 40px;
    float: left;
    border: 1px solid #323232;
    border-radius: 3px;
}

.qty-group .qty-minus,
.qty-group .qty-plus {
    font-size: 13px;
    width: 35px;
    height: 38px;
    float: left;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #fff;
}

.qty-group input {
    width: calc(100% - 70px);
    font-family: 'Noto Sans', sans-serif;

    height: 38px;
    font-size: 14px;
    color: #fff;
    background: transparent;
    text-align: center !important;
    outline: none;
    border: none;
    float: left;
    vertical-align: middle;
    user-select: none;
}

.qty-group .qty-minus {

    border-right: 1px solid #323232;
}

.qty-group .qty-plus {

    border-left: 1px solid #323232;
}

.enquiry-btn {}

.enquiry-btn a {
    background: #EE191C;
    color: #fff;
    display: inline-block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    padding: 12px 30px;
    margin: 15px 0 0 0;
}






.product-tabs {
    background-color: #131313;
    margin: 70px 0 40px;
    float: left;
    width: 100%;
}

.product-tabs .nav-tabs {
    border: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid #EE191C;
}

.product-tabs .nav-tabs>li>a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: transparent !important;
    border: none !important;
    text-transform: uppercase;
    padding: 14px 15px;
    margin: 0 10px 0 0;
}

.product-tabs .nav-tabs>li>a:hover,
.product-tabs .nav-tabs>li.active>a,
.product-tabs .nav-tabs>li.active>a:focus,
.product-tabs .nav-tabs>li.active>a:hover {
    color: #EE191C;
    cursor: pointer;
}

.product-tabs .tab-content {
    width: 100%;
    float: left;
    padding: 25px;
    border-radius: 0px;
}

.product-tabs h1,
.product-tabs h2,
.product-tabs h3,
.product-tabs h4,
.product-tabs h5,
.product-tabs h6 {
    margin: 0 0 12px;
    font-family: 'Noto Sans', sans-serif;

    color: #fff;
}

.product-tabs h4 {
    font-size: 16px;
    color: #fff;
    font-family: 'Noto Sans', sans-serif;


}

.product-tabs p {
    color: #fff;
    line-height: 24px;
    margin: 0 0 12px;
    font-family: 'Noto Sans', sans-serif;

}

.product-tabs ol,
.product-tabs ul {
    color: #fff;
    padding: 0 15px;
    margin: 0 0 15px;
}

.product-tabs ul {
    list-style-type: disc;
}

.product-tabs ol li,
.product-tabs ul li {
    line-height: 26px;
    font-family: 'Noto Sans', sans-serif;

}

.product-tabs .tab-content a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
}

.product-tabs .table {
    margin: 0;
}

.product-tabs .table-bordered>tbody>tr>td,
.product-tabs .table-bordered>tbody>tr>th,
.product-tabs .table-bordered>tfoot>tr>td,
.product-tabs .table-bordered>tfoot>tr>th,
.product-tabs .table-bordered>thead>tr>td,
.product-tabs .table-bordered>thead>tr>th {
    border-color: #ebebeb;
}

.product-tabs .table tr td {
    padding: 13px 10px 11px;
    color: #fff;
    vertical-align: middle;
    font-family: 'Noto Sans', sans-serif;

}

.product-tabs .table tr td:first-child {
    font-weight: 500;
    font-family: 'Noto Sans', sans-serif;

    color: #fff;
}


/*==============================
	 Quick View popup Code
 ===============================*/
.quick-view-modal .modal-body {
    overflow: hidden;
    padding: 15px 0;
}

.quickview-wrapper {
    padding: 0 15px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.quick-view-modal.custom-modal .modal-body>i {
    font-size: 24px;
    padding: 5px;
    top: 10px;
    right: 5px;
    background: #FFF;
    color: #999;
}

.quickview-wrapper .product-slider .lSSlideWrapper,
.quickview-wrapper .product-slider ul.lightSlider>li {
    min-height: 330px;
    height: 330px !important;
}

.quickview-wrapper .product-slider .lSSlideOuter .lSPager.lSGallery li {
    height: 75px;
}

.quick-view-modal .product-meta .product-title {
    padding: 0 35px 0 0;
    margin: 0 0 15px;
}

.quick-view-modal .product-meta ul.meta-ul>li:last-child {
    border: none;
}

.custom-modal .modal-title {
    width: calc(100% - 25px);
    float: left;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;

    color: #fff;

}

.custom-modal .modal-header {
    border-radius: 6px 6px 0 0;
    float: left;
    width: 100%;
    background: #EE191C;
}


.custom-modal .modal-body {
    clear: both;
}

.custom-modal .modal-header i {
    font-size: 18px;
    color: #fff;
    float: right;
    margin: 0;
    opacity: 1;
    cursor: pointer;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transition: all 0.5s ease-in-out 0ms;
    -webkit-transition: all 0.5s ease-in-out 0ms;
    -moz-transition: all 0.5s ease-in-out 0ms;
    -o-transition: all 0.5s ease-in-out 0ms;
    -ms-transition: all 0.5s ease-in-out 0ms;
}

.custom-modal .form-group label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    color: #333;

}

.custom-modal .form-control {
    height: 50px;
    background-color: #fff;
    font-size: 13px;
    color: #8e8e8e;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Noto Sans', sans-serif;

}


.custom-modal textarea.form-control {
    min-height: 120px;
    resize: none;
}

.custom-modal .sub-btn {
    text-align: center;
}

.custom-modal .sub-btn a {
    background: #EE191C;
    color: #fff;
    display: inline-block;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    border-radius: 4px;
    padding: 12px 30px;
    margin: 15px 0 0 0;
}

img.custom-logo {
    max-width: 200px;
    height: auto;
    width: auto;
}

.cat-img img {
    min-height: 340px !important;
    object-fit: cover;
}


.woocommerce-message {
    position: absolute;
    width: 100%;
    z-index: 99999 !important;
}

.woocommerce-cart .woocommerce {
    background: #fff;
    margin-top: 130px;
    padding: 40px 0px;
}

.woocommerce-cart td.product-thumbnail img {
    min-height: 150px !important;
    min-width: 150px !important;
}


.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #EE191C !important;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.bg-white {
    background: #fff;
    margin-top: 79px;
}


span.woocommerce-input-wrapper input {
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-family: 'Noto Sans JP' !important;
}

div#customer_details label {
    font-size: 20px !important;
    font-weight: normal;
    font-family: 'Noto Sans JP' !important;
}

div#customer_details textarea {
    border: 1px solid #c1c1c1;
    font-family: 'Noto Sans JP' !important;
}

.select2-selection__rendered {
    font-family: 'Noto Sans JP' !important;
}

td.product-name {
    font-size: 20px;
    font-family: 'Noto Sans JP';
}

th.product-name {
    font-size: 20px;
    font-family: 'Noto Sans JP';
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {}

section.woocommerce-customer-details {
    display: none;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    display: none;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 32px;
}

th.woocommerce-table__product-table.product-total {
    display: none;
}

.woocommerce-order {
    padding: 40px 0px;
}



table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot {
    display: none;
}

td.woocommerce-table__product-total.product-total {
    display: none;
}

.topup {
    margin-top: 130px;
}

.categories-wrapper .cat-wrapper {
    max-height: 663px;
    min-height: 663px;
}

.col-lg-4.col-md-4.col-sm-4.p0 .cat-wrapper {
    max-height: 408px;
    min-height: 408px;
}

.col-lg-6.col-md-6.col-sm-6.p0 {}

.categories-wrapper .col-lg-6.col-md-6.col-sm-6.p0 .cat-wrapper img {
    min-height: 663px !important;
    object-fit: cover;
}

.col-lg-4.col-md-4.col-sm-4.p0 .cat-wrapper img {
    min-height: 408px !important;
    object-fit: cover;
}

.wpcf7-submit {
    background-color: #e81938;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 16px 35px;
    transition: all 06.s;
    border: 0px;
}

p.cart-empty.woocommerce-info {
    font-family: 'Noto Sans JP';
}

a.button.wc-backward {
    font-family: 'Noto Sans JP';
    margin-left: 20px;
    background: #EE191C;
    color: #FFFFFF;
    padding: 13px 30px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 0 0 17px;
}

.not-found {
    padding: 40px 0px;
    font-family: 'Noto Sans JP';
}

input.search-field {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 46px;
    line-height: 30px;
    padding: 15px 30px;
    color: #272727;
    font-size: 14px;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    padding-left: 30px;
    border: 1px solid #e1e1e1;
    padding-top: 0px;
    padding-bottom: 0px;
}

input.search-submit {
    background: #EE191C;
    color: #FFFFFF;
    padding: 13px 30px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 0 0 17px;
    border: 0px;
}

form.search-form label {
    width: 300px;
}

.mt-0{
    margin-top:0px !important;
}

.search header.page-header  {
    display: none;
}

.woocommerce-message {
    font-family: 'Noto Sans JP';
}