/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary: #B5A596;
    --secondary: #946b55;
    --light-gray: #E8E8E8;
}
html {
    scroll-behavior: smooth;
}
body {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a:hover {
    color: var(--secondary);
}
img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.page-margin {
    margin-top: 122.5px;
}
.p-section {
    padding: 60px 0;
}
.p-section-medium {
    padding: 80px 0;
}
.p-section-large {
    padding: 100px 0;
}
h1 {font-size: 32px;}
h3 {font-size: 24px;}
h4 {font-size: 20px;}
h6 {font-size: 16px;}
h1,h2,h3,h4,h5,h6 {
    margin-bottom: 1rem;
}
.p-truncate {
    display: -webkit-box;
    max-width: 100%;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.p-truncate.line-1 {-webkit-line-clamp: 1;}
.p-truncate.line-2 {-webkit-line-clamp: 2;}
.p-truncate.line-3 {-webkit-line-clamp: 3;}

.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}

/* Button */
.btn-all {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.btn-outline-black {
    color: #000;
    border: 2px solid #000;
    background-color: transparent;
    padding: 10px 50px;
}
.btn-outline-black:hover {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-underline {
    text-decoration: underline;
    font-weight: 500;
}
.btn-underline:hover {
    color: inherit;
}
.btn-text-arrow {
    font-weight: 700;
}
.btn-all:hover svg path {
    transition: all .3s ease-in-out;
}
.btn-all:hover svg#arrow-right path {
    fill: var(--secondary);
}
.btn-text-arrow.catalog svg {
    color: #000;
}
.btn-text-arrow svg#download path {
    fill: var(--secondary);
}
.btn-brown {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    border: 2px solid var(--secondary);
}
.btn-brown.addline {
    color: #fff;
    background-color: var(--secondary);
    padding: 6px 16px;
    font-weight: 600;
}
.btn-brown.email {
    color: var(--secondary);
    background-color: #fff;
    padding: 6px 24px;
    font-weight: 700;
}

.content-center {
    padding: 80px 0;
    display: inline-flex;
    justify-content: center;
}
.pl-content {
    padding-left: 46px;
}

.load-filter {
    background: #fff;
    height: 100%;
    width: -webkit-fill-available;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: .5;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 20;
    padding: 46px 0;
    background-color: #fff;
    box-shadow: 0 0.2rem 0.45rem rgb(0 0 0 / 15%), inset 0 -1px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
}
#header.header-scrolled {
    padding: 36px 0;
}
#header.header-transparent {
    background-color: transparent;
    box-shadow: none;
}
.header-transparent .menu-toggle .hamburger path,
.header-transparent .search-toggle svg path {
    fill: #fff;
}
#header.header-transparent.header-scrolled {
    background-color: #fff;
    box-shadow: 0 0.2rem 0.45rem rgb(0 0 0 / 15%), inset 0 -1px 0 rgb(0 0 0 / 10%);
}
.header-transparent.header-scrolled .menu-toggle .hamburger path,
.header-transparent.header-scrolled .search-toggle svg path {
    fill: #000;
}
#header .img-logo {
    width: 150px;
}

.menu-toggle {
    cursor: pointer;
    position: relative;
    z-index: 20;
}
.menu-toggle .hamburger {
    width: 26px;
    height: 26px;
    display: block;
}
.menu-toggle .close {
    width: 24px;
    height: 24px;
    display: none;
}
.menu-toggle.open .hamburger {
    display: none;
}
.menu-toggle.open .close {
    display: block;
}
.search-toggle svg {
    width: 24px;
    height: 24px;
}
.search-toggle svg path {
    fill: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.navbar.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar .head {
    padding: 38px 0;
}
#header.header-scrolled .navbar .head {
    padding: 28px 0 38px;
}
.navbar .dropdown.change-lang {
    position: absolute;
    right: 0;
    top: 30px;
}
#header.header-scrolled .navbar .dropdown.change-lang {
    top: 28px;
}
.allmenu {
    padding: 4% 8%;
}
.allmenu {
    height: 82vh;
    overflow-y: auto;
}
.allmenu::-webkit-scrollbar {
    width: 0;
}
ul.nav-links {
    padding-left: 0;
}
.nav-link {
    margin-bottom: 1.5rem;
    font-size: 16px;
}
.nav-link:last-child {
    margin-bottom: 0;
}
.nav-link a.sale {
    font-weight: 700;
    color: #A80000;
}
.nav-link a.sale:hover,
.nav-link.active>a.sale {
    color: #A80000;
}
.nav-link a:hover,
.nav-link.active a {
    color: #000;
    font-weight: 700;
}

.dropdown-toggle::after {
    display: none;
}
.change-lang .dropdown-menu {
    --bs-dropdown-min-width: auto;
    --bs-dropdown-spacer: 1px;
    --bs-dropdown-color: #000;
    --bs-dropdown-border-width: 0;
    --bs-dropdown-link-color: #000;
    --bs-dropdown-link-hover-color: var(--secondary);
    --bs-dropdown-link-hover-bg: transparent;
    --bs-dropdown-link-active-color: var(--secondary);
    --bs-dropdown-link-active-bg: #fff;
}
.dropdown-item {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 12px;
}
.dropdown-item:active,
.dropdown-item.active {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
.btn-custom {
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 500;
    --bs-btn-color: #000;
    --bs-btn-border-width: 0;
}
.btn-custom svg {
    width: 18px;
    height: auto;
}
.toggle-submenu {
    font-weight: 400;
}
.toggle-submenu.open {
    font-weight: 700;
}
.submenu {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-open .submenu.open {
    opacity: 1;
    visibility: visible;
}
.menu-dropdown .dropdown-menu {
    position: relative !important;
    border: 0;
}
.menu-dropdown .btn-custom {
    padding: 0;
    font-weight: 400;
}
.menu-dropdown .dropdown-item {
    font-weight: 400;
    color: #000;
    background-color: transparent;
    padding-left: 30px;
}
.menu-dropdown .dropdown-item.title {
    padding-left: 20px;
}
.menu-dropdown li {
    margin-bottom: 10px;
}
.menu-dropdown li:last-child {
    margin-bottom: 0;
}
.menu-dropdown .btn-custom.show,
.menu-dropdown .dropdown-item.active,
.menu-dropdown .btn-custom.active {
    font-weight: 700;
}
.link-sub.active {
    color: var(--secondary);
    font-weight: 700;
}
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.search-toggle {
    cursor: pointer;
}
.search-close {
    width: 24px;
    height: 24px;
}
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #fff;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.search-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}
.search-popup .search-close {
    position: absolute;
    top: 50px;
    right: 12px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.search-popup.scrolled .search-close {
    top: 40px;
}
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.search-container svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.search-popup .form-control {
    font-size: 16px;
    padding: 0;
    border-radius: 0;
    border: 0;
    color: #707070;
}
.search-popup .form-control::placeholder {
    color: #707070;
}
.search-popup .form-control:focus {
    box-shadow: none;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.container-iframe {
    width: 100%;
    height: 100%;
}
.container-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Figure
--------------------------------------------------------------*/
figure {
    overflow: hidden;
    margin: 0;
}
.on-hover-img figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out !important;
	transition: .3s ease-in-out !important;
}
.on-hover-img:hover figure img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner img {
    height: 100vh;
}
.banner .text {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}
.shadow-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.video-container .youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 180%;
    min-height: 180%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner .owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.banner .owl-carousel .owl-dots .owl-dot span {
    border: 1px solid #fff;
    background: transparent;
}
.banner .owl-carousel .owl-dots .owl-dot.active span,
.banner .owl-carousel .owl-dots .owl-dot:hover span {
    background: #fff;
}
.banner.banner-home .text {
    left: 12px;
    top: auto;
    bottom: 70px;
    transform: translate(0);
    text-align: start;
    max-width: 525px;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
    --bs-breadcrumb-margin-bottom: 0;
    --bs-breadcrumb-divider-color: #000;
    --bs-breadcrumb-item-active-color: #000;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumb.article .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    background-color: #000;
    padding: 80px 0;
    font-weight: 300;
}
#footer ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
#footer ul>li {
    margin-bottom: .5rem;
}
.footer-top {
    border-bottom: 2px solid #fff;
    padding-bottom: 80px;
}
#footer .address {
    max-width: 260px;
}
#footer .social-icon svg path {
    fill: #fff;
}
.social-icon {
    width: 20px;
    height: auto;
    margin-right: 2rem;
}
.social-icon:last-child {
    margin-right: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.8s ease;
}
.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader div {
    background-color: var(--secondary);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.fade-out {
    opacity: 0;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-control {
    font-size: 16px;
    padding: 14px 0;
    border-radius: 0;
    color: #000;
    border: 0;
    border-bottom: 1px solid #000;
}
.form-control::placeholder {
    color: #000;
}
.form-control:focus {
    color: #000;
    border-color: var(--primary);
    box-shadow: none;
}
.form-check {
    padding-left: 0;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #707070;
    background: #fff;
}
[type="checkbox"]:checked+label:after,
[type="checkbox"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary);
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
}

/*--------------------------------------------------------------
# Media Contact
--------------------------------------------------------------*/
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.media svg {
    width: 22px;
    height: auto;
    flex-shrink: 0;
}
.media svg path {
    fill: #fff;
}
.media-body {
    -ms-flex: 1;
    flex: 1;
    margin: auto;
    padding-left: 24px;
    font-weight: 400;
    color: inherit;
    line-height: 1.3;
}
.media-body a {
    color: inherit;
}
.content-center .media-body {
    font-weight: 300;
}

/*--------------------------------------------------------------
# Owl-carousel
--------------------------------------------------------------*/
.owl-carousel .owl-dots{
    text-align: center;
    margin-top: 1rem;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--secondary);
}
.cus-owl-nav {
  display: inline-flex;
}
.cus-owl-nav span {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3 ease-in-out;
  margin-left: 16px;
}
.cus-owl-nav .owl-next-button svg,
.cus-owl-nav .owl-prev-button svg {
    width: 40px;
    height: 40px;
}
.cus-owl-nav .owl-next-button svg {
    transform: rotate(180deg);
}
svg .prev-cls-1,
svg .prev-cls-2,
svg .prev-cls-3 {
    transition: .2s ease-in-out;
}
.cus-owl-nav .owl-prev-button:hover svg .prev-cls-1,
.cus-owl-nav .owl-next-button:hover svg .prev-cls-1 {
    fill: var(--secondary);
}
.cus-owl-nav .owl-prev-button:hover svg .prev-cls-3,
.cus-owl-nav .owl-next-button:hover svg .prev-cls-3 {
    fill: #fff;
}
.owl-prev-button.disabled,
.owl-next-button.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.owl-keep-right {
    width: 100%;
    margin-left: auto !important;
    padding-left: 15px;
}
/* owl-3-items */
.owl-3-items .img-main {
    height: 400px;
    transition: height 0.3s ease-in-out;
}
.owl-3-items .date {
    color: var(--secondary);
    font-weight: 500;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: initial;
    touch-action: initial;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
hr {
    opacity: 1;
}

hr.custom {
    margin: 60px 0;
}

hr.line-overlap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border-top: 3px solid var(--secondary);
    opacity: 1;
    width: 65%;
}
.img-bg-gray {
    background-color: #F7F7F7;
}
.brand-block .number {
    font-size: 40px;
    font-weight: 700;
}
.brand-block .text {
    position: absolute;
    left: 40px;
    bottom: 40px;
}
.brand-block .img-brand1 {
    height: 920px;
}
.brand-block .img-brand2 {
    height: 415px;
}
.brand-block .img-brand3 {
    height: 505px;
}
.brand-block .img-brand4 {
    height: 920px;
}
.brand-block .on-hover-img {
    position: relative;
    overflow: hidden;
}
.brand-block .hover-content {
    transition: transform 0.3s ease-in-out;
}
.brand-block .on-hover-img:hover .hover-content {
    transform: translateY(-90px);
    /* Move text up */
}
.brand-block .on-hover-img:hover .text {
    transform: translateY(-80px) !important;
    transition: .3s ease-in-out !important;
    /* Move text up */
}
.explore-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    transition: height 0.4s ease-in-out;
    border-bottom: 1px solid #000;
    overflow: hidden;
}
.on-hover-img:hover .explore-btn {
    height: 90px;
}
.home-about .number {
    position: absolute;
    left: -50px;
    bottom: -140px;
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary);
    opacity: .5 !important;
}
.home-about .content-bottom {
    padding-top: 150px;
}
.customer-logo {
    padding: 80px 20px;
}
.customer-logo img {
    max-width: 150px;
    margin: auto;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about2 .shadow-img::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}
#about2 .text {
    position: absolute;
    bottom: 10%;
    z-index: 1;
    max-width: 40%;
}
#about2 img {
    min-height: 80vh;
}
#about5 .content-center .icon {
    width: 50px;
    height: 50px;
}
#about5 .svg-content p:last-child {
    margin-bottom: 0;
}
.award-detail hr {
    margin: 2rem 0;
}

/*--------------------------------------------------------------
# Articles
--------------------------------------------------------------*/
.btn-outline-black.article {
    padding: 10px 80px;
}
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.gallery-project .on-hover-img,
.gallery-project figure,
.gallery-project figure img {
    height: 100%;
}
.dropdown.page .dropdown-menu {
    --bs-dropdown-min-width: auto;
    --bs-dropdown-spacer: 1px;
    --bs-dropdown-color: #000;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-border-radius: 3px;
    --bs-dropdown-link-color: #000;
    --bs-dropdown-link-hover-color: var(--secondary);
    --bs-dropdown-link-hover-bg: transparent;
    --bs-dropdown-link-active-color: var(--secondary);
    --bs-dropdown-link-active-bg: #fff;
    height: 300px;
    overflow-y: scroll;
}
.dropdown.page .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.dropdown.page .dropdown-menu::-webkit-scrollbar-track {
    background-color: var(--primary);
    -webkit-border-radius: 8px;
    border-radius: 8px;
}
.dropdown.page .dropdown-menu::-webkit-scrollbar-thumb {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: var(--secondary);
}
.dropdown.page .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    padding: 0 16px;
}
.dropdown.page .btn-custom {
    --bs-btn-padding-x: 16px;
    --bs-btn-padding-y: 2px;
    --bs-btn-font-size: 16px;
    --bs-btn-font-weight: 400;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: #000;
    --bs-btn-border-radius: 3px;
    --bs-btn-hover-border-color: #000;
}
.dropdown.page .btn-custom svg {
    width: 8px;
}
/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.pagination a {
    color: #000;
    background-color: #fff;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 12px;
    text-decoration: none;
}
.pagination a:last-child {
    margin-right: 0;
}
.pagination a:hover {
    color: var(--secondary);
}
.pagination a.active {
    color: #000;
    background-color: #E8E8E8;
}
.pagination .page-btn.disabled {
    opacity: .5;
    pointer-events: none;
}
.pagination a.dot {
    pointer-events: none;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#product-detail .img-material {
    border-radius: 50%;
    /* width: 34px; */
}
.owl-gallery .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.owl-gallery .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid #fff;
}
.owl-gallery .owl-dots .owl-dot.active span {
    background: #fff;
}
.numsale {
    color: #FF0000;
}
.numold {
    text-decoration: line-through;
}
/* Custom Select */
.form-select.custom-select {
    padding: 2px 0;
}
.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}
.select {
    font-size: 16px;
    cursor: pointer;
    position: relative;
}
.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #000 !important;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.styledSelect:after {
    content: "";
    width: 0;
    height: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    position: absolute;
    top: 8px;
    right: 0;
    width: 12px;
    height: 12px;
}
.options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    background-color: var(--secondary);
}
.options li {
    padding: 5px 10px;
    list-style: none !important;
    border-bottom: 1px solid #ffff;
    color: #fff;
    transition: .3s;
}
.options li:last-child {
    border-bottom: 0px solid #ffff;
}
.options li:hover {
    color: #000;
}
.product-material .accordion {
    --bs-accordion-color: var(--black);
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 5px;
    --bs-accordion-btn-color: var(--black);
    --bs-accordion-btn-icon: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 version%3D%221.1%22 viewBox%3D%220 0 50 50%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%231a1818%3B%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cg id%3D%22Layer_1%22%3E%3Cg id%3D%22Group_4173%22%3E%3Cpath class%3D%22cls-1%22 d%3D%22M36%2C26H14c-.6%2C0-1-.4-1-1s.4-1%2C1-1h22c.6%2C0%2C1%2C.4%2C1%2C1s-.4%2C1-1%2C1Z%22/%3E%3Cpath class%3D%22cls-1%22 d%3D%22M25%2C37c-.6%2C0-1-.4-1-1V14c0-.6.4-1%2C1-1s1%2C.4%2C1%2C1v22c0%2C.6-.4%2C1-1%2C1Z%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    --bs-accordion-btn-icon-width: 1.5rem;
    --bs-accordion-btn-icon-transform: none;
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2216%22 height%3D%2216%22 fill%3D%22%23198754%22 class%3D%22bi bi-check-square-fill%22 viewBox%3D%220 0 16 16%22%3E%3Cpath d%3D%22M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm10.03 4.97a.75.75 0 0 1 .011 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.75.75 0 0 1 1.08-.022z%22/%3E%3C/svg%3E');
    --bs-accordion-btn-focus-border-color: #fff;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 14px;
    --bs-accordion-active-color: var(--black);
    --bs-accordion-active-bg: #fff;
}
.product-material .accordion-item:first-child .accordion-button {
    padding-top: 0;
}
.product-material .accordion-item {
    border-bottom: 1px solid #707070 !important;
}
.product-material .accordion-button {
    font-size: 16px;
}

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/
.gallery-slide {
    min-height: 450px;
}
#brand-owl.owl-3-items .img-main {
    height: 450px;
    transition: height 0.3s ease-in-out;
}
#brand1 .custom-nav {
    position: absolute;
    left: 40%;
    bottom: 0;
    width: 60%;
    height: 130px;
    background: #fff;
    z-index: 15;
}
#brand1 .line-custom {
    width: 100%;
}
#brand1 hr.custom {
    margin: 0;
}
#brand1 hr.line-overlap {
    top: 55%;
    width: 50%;
}
#brand3 ul,
#brand3 ol {
    padding-left: 1.3rem;
}

/*--------------------------------------------------------------
# Materials
--------------------------------------------------------------*/
.material-block .img1 {
    height: 300px;
}

/*--------------------------------------------------------------
# Mobella's World
--------------------------------------------------------------*/
.article-slide {
    height: 720px;
}

/*--------------------------------------------------------------
# Q&A
--------------------------------------------------------------*/
.faq .accordion {
    --bs-accordion-color: #000;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-focus-border-color: none;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-color: #000;
    --bs-accordion-active-color: #000;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-body-padding-x: 1.9rem;
    --bs-accordion-body-padding-y: 1.5rem;
    --bs-accordion-btn-icon: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 version%3D%221.1%22 viewBox%3D%220 0 50 50%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%231a1818%3B%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cg id%3D%22Layer_1%22%3E%3Cg id%3D%22Group_4173%22%3E%3Cpath class%3D%22cls-1%22 d%3D%22M36%2C26H14c-.6%2C0-1-.4-1-1s.4-1%2C1-1h22c.6%2C0%2C1%2C.4%2C1%2C1s-.4%2C1-1%2C1Z%22/%3E%3Cpath class%3D%22cls-1%22 d%3D%22M25%2C37c-.6%2C0-1-.4-1-1V14c0-.6.4-1%2C1-1s1%2C.4%2C1%2C1v22c0%2C.6-.4%2C1-1%2C1Z%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    --bs-accordion-btn-icon-width: 2rem;
    --bs-accordion-btn-icon-transform: none;
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 version%3D%221.1%22 viewBox%3D%220 0 50 50%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%231a1818%3B%7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cg id%3D%22Layer_1%22%3E%3Cg id%3D%22Group_4165%22%3E%3Cpath class%3D%22cls-1%22 d%3D%22M36.5%2C24H14.5c-.6%2C0-1-.4-1-1s.4-1%2C1-1h22c.6%2C0%2C1%2C.4%2C1%2C1s-.4%2C1-1%2C1Z%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}
.faq .accordion-button {
    font-size: 18px;
    font-weight: 500;
    padding: 1rem 0.8rem 1rem 0;
}
.faq .accordion-item {
    border-bottom: 1px solid #0000006b !important;
}
.faq .accordion-body {
    font-size: 16px;
    margin-bottom: 1.3rem;
    background-color: var(--light-gray);
}
.faq .accordion-body p:last-child {
    margin-bottom: 0;
}

.no-result {
    padding-bottom: 30vh;
}
.no-result.product {
    padding-bottom: 50vh;
}
.no-result .icon {
    width: 35px;
}
.no-image {
    height: 60vh;
}
/*--------------------------------------------------------------
# All Responsive
--------------------------------------------------------------*/
@media only screen and (device-width: 1024px) and (device-height: 1366px){
    .banner img {
        height: 59.6vh;
    }
    .video-container {
        height: 59.6vh;
    }
}
@media (max-width: 1599px) {
    .brand-block .img-brand1 {
        height: 773px;
    }
    .brand-block .img-brand2 {
        height: 348px;
    }
    .brand-block .img-brand3 {
        height: 425px;
    }
    .brand-block .img-brand4 {
        height: 773px;
    }
    .link-block {
        height: 119px;
    }
}
@media (max-width: 1399px) {
    .brand-block .img-brand1 {
        height: 666px;
    }
    .brand-block .img-brand2 {
        height: 300px;
    }
    .brand-block .img-brand3 {
        height: 366px;
    }
    .brand-block .img-brand4 {
        height: 666px;
    }
    .material-block .img1 {
        height: 257px;
    }
}
@media (max-width: 1199px) {
    .home-about .number {
        left: -44px;
        bottom: -98px;
        font-size: 150px;
    }
    .home-about .content-bottom {
        padding-top: 130px;
    }
    .brand-block .img-brand1 {
        height: 560px;
    }
    .brand-block .img-brand2 {
        height: 252px;
    }
    .brand-block .img-brand3 {
        height: 308px;
    }
    .brand-block .img-brand4 {
        height: 560px;
    }
    .material-block .img1 {
        height: 214px;
    }
}
@media (max-width: 991px) {
    body {font-size: 14px;}
    h1 {font-size: 28px;}
    h4 {font-size: 18px;}
    #footer .address {
        max-width: 100%;
    }
    .footer-top {
        padding-bottom: 40px;
    }
    .home-about .number {
        left: -32px;
        bottom: -72px;
        font-size: 110px;
    }
    .home-about .content-bottom {
        padding-top: 90px;
    }
    .brand-block .img-brand1 {
        height: 472px;
    }
    .brand-block .img-brand2 {
        height: 212px;
    }
    .brand-block .img-brand3 {
        height: 260px;
    }
    .brand-block .img-brand4 {
        height: 472px;
    }
    .brand-block .text {
        left: 20px;
        bottom: 20px;
    }
    .brand-block .number {
        font-size: 30px;
    }
    #about2 .text {
        max-width: 50%;
    }
    #about2 img {
        min-height: 60vh;
    }
    .material-block .img1 {
        height: 154px;
    }
    .explore-btn {
        padding: 0 2rem;
    }
    .article-slide {
        height: 648px;
    }
}
@media (max-width:834px) {
    .banner img {
        height: 75vh;
    }
    .video-container {
        height: 75vh;
    }
}
@media (max-width: 767px) {
    #header {
        padding: 30px 0;
    }
    #header.header-scrolled {
        padding: 20px 0;
    }
    #header .img-logo {
        width: 120px;
    }
    .navbar .head {
        padding: 26px 0;
    }
    #header.header-scrolled .navbar .head {
        padding: 11px 0 26px;
    }
    .navbar .dropdown.change-lang {
        top: 20px;
    }
    #header.header-scrolled .navbar .dropdown.change-lang {
        top: 8px;
    }
    .search-popup .search-close {
        top: 30px;
    }
    .search-popup.scrolled .search-close {
        top: 20px;
    }
    .page-margin {
        margin-top: 86px;
    }
    .container-iframe {
        height: 400px;
    }
    .home-about .number {
        left: -10px;
    }
    .brand-block .img-brand1 {
        height: auto;
    }
    .brand-block .img-brand2 {
        height: auto;
    }
    .brand-block .img-brand3 {
        height: auto;
    }
    .brand-block .img-brand4 {
        height: auto;
    }
    #about2 .text {
        left: 12px;
        right: 12px;
        max-width: 100%;
    }
    .banner .text {
        width: 80%;
    }
    #brand1 .owl-keep-right {
        padding-left: 12px;
        padding-right: 12px;
    }
    .material-block .img1 {
        height: 160px;
    }
    .material-block .img2 {
        height: 160px;
    }
    .material-block h4 {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    h1 {font-size: 26px;}
    .menu-toggle .hamburger {
        width: 22px;
        height: 22px;
    }
    .menu-toggle .close {
        width: 20px;
        height: 20px;
    }
    .search-toggle svg {
        width: 20px;
        height: 20px;
    }
    .search-close {
        width: 20px;
        height: 20px;
    }
    .page-margin {
        margin-top: 84px;
    }
    .owl-3-items .img-main {
        height: 400px;
    }
    .home-about .number {
        bottom: -58px;
        font-size: 90px;
    }
    .home-about .content-bottom {
        padding-top: 72px;
    }
    .link-block {
        padding: 20px 0;
    }
    #about2 .text {
        bottom: 5%;
    }
    .banner img {
        height: 40vh;
    }
    .pt-mobile-0 {
        padding-top: 0;
    }
    .content-center {
        padding: 50px 0;
    }
    #brand1 .custom-nav {
        left: 68%;
        width: 34%;
    }
    .material-block .img1 {
        height: auto;
    }
    .material-block .img2 {
        height: auto;
    }
    .p-section {
        padding: 40px 0;
    }
    .p-section-medium {
        padding: 50px 0;
    }
    .p-section-large {
        padding: 60px 0;
    }
    .customer-logo {
        padding: 20px;
    }
    .pt-mobile-0 {
        padding-top: 0;
    }
    .pb-mobile-0 {
        padding-bottom: 0;
    }
    .article-slide {
        height: 540px;
    }
}
@media (max-width: 540px) {
    .banner img {
        height: 50vh;
    }
    .video-container {
        height: 50vh;
    }
}
@media (max-width: 480px) {
    h1,h2,h3,h4,h5,h6,p {
        margin-bottom: .8rem;
    }
    #header .img-logo {
        width: 100px;
    }
    .page-margin {
        margin-top: 82px;
    }
    .owl-3-items .img-main {
        height: 340px;
    }
    #about2 img {
        min-height: 50vh;
        height: 400px;
    }
    .gallery-slide {
        min-height: 400px;
    }
    #brand1 .custom-nav {
        position: relative;
        height: 80px;
    }
    .pagination a {
        font-size: 14px;
        padding: 3px 10px;
    }
    #article .owl-keep-right {
        padding-left: 12px;
        padding-right: 12px;
    }
    .banner.banner-home .text {
        bottom: 40px;
        max-width: 100%;
        width: 95%;
    }
    .banner .owl-dots {
        bottom: 10px;
    }
    .no-image {
        height: 40vh;
    }
}
@media (max-width:430px) {
    .banner img {
        height: 35vh;
    }
    .video-container {
        height: 35vh;
    }
}
