/* Start Variables */
:root {
    --main-color: #331a4a;
    --secondary-color: #f27238;
    --text-color: #111;
    --main-section-padding: 3.75rem 0;
    --mobile-section-padding: 2.5rem 0;
    --main-transition: .3s;
}
/* End Variables */
/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
}
[dir="rtl"] body {
    font-family: "Noto Kufi Arabic", serif;
}
ol,
ul {
    list-style: none;
}
p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
*, ::before, ::after {
    outline: 0;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small Screens */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* Medium Screens */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* Large Screens */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* Extra Large Screens */
@media (min-width: 1500px) {
    .container {
        width: 1400px;
    }
}
@media (min-width: 1700px) {
    .container {
        width: 1600px;
    }
}
@media (min-width: 2200px) {
    .container {
        width: 2000px;
    }
}
@media (min-width:768px) {
    body,
    html {
        font-size: 14px;
    }
}
@media (min-width:1024px) {
    body,
    html {
        font-size: 15px;
    }
}
@media (min-width:1280px) {
    body,
    html {
        font-size: 16px;
    }
}
/* End Global Rules */
/* Start Components */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    cursor: pointer;
}
.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 5px;
    transition: all var(--main-transition) ease;
}
.hamburger.active .line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
@media (max-width: 767px) {
    .hamburger.active .line:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
}
.hamburger.active .line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 767px) {
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}
.dropdown-content {
    position: absolute;
    padding: 3px;
    top: 100%;
    width: 100%;
    display: none;
}
.dropdown {
    background-color: #fff;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    padding: 5px 7px 1.5px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
}
.lang-switcher:hover .dropdown-content,
.lang-switcher:hover .dropdown {
    display: block;
}
.strong-txt {
    color: var(--text-color);
    font-weight: bold;
}
.view-more {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
}
.view-more:hover {
    text-decoration: underline;
}
.view-more .arrow-right {
    display: inline-flex;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    position: relative;
    transition: var(--main-transition);
}
.view-more:hover .arrow-right {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}
.view-more .arrow-right::before {
    font-family: "Font Awesome 6 Free";
    content: '\f178';
    color: var(--text-color);
    font-weight: 600;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: var(--main-transition);
}
.view-more:hover .arrow-right::before {
    color: #fff;
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.25rem;
}
@media (max-width: 1024.98px) {
    .section-heading {
        margin-bottom: 1.5rem;
    }
}
.section-title {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 2.625rem;
}
@media (max-width: 767px) {
    .section-heading .section-title {
        font-size: 1.725rem;
        line-height: 2rem;
    }
    .section-heading .view-more {
        font-size: .75rem;
    }
}
.swiper-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    list-style: none;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.swiper-wrapper {
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    -webkit-box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
}
.swiper-slide {
    -ms-flex-negative: 0;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    position: relative;
    flex-shrink: 0;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    height: 100%;
}
.swiper-container .swiper-notification {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1000;
    pointer-events: none;
}
.p-rel-news {
    position: relative;
}
.swiper-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    margin: 0 15px;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
    transform: translateY(-50%);
}
@media (min-width: 1024.98px) {
    .swiper-btn:hover {
        border-color: var(--secondary-color);
        background: var(--secondary-color);
        color: #fff;
    }
}
@media (max-width: 767px) {
    .swiper-btn {
        display: none;
    }
}
.swiper-btn.swiper-prev {
    right: 100%;
}
.swiper-btn.swiper-next {
    left: 100%;
}
.breadcrumb-wrapper {
    margin-bottom: 10px;
}
@media (max-width: 1024.98px) {
    .breadcrumb-wrapper {
        display: none;
    }
}
.breadcrumb-wrapper .breadcrumb {
    margin-bottom: 0;
    padding: 1rem 0 .5rem;
    list-style: none;
}
.breadcrumb-wrapper .breadcrumb,
.breadcrumb-wrapper .breadcrumb li {
    padding: 0;
    display: flex;
    align-items: center;
}
.breadcrumb-wrapper .breadcrumb li a {
    color: #999;
    font-size: 12px;
    letter-spacing: .1rem;
}
.breadcrumb-wrapper .breadcrumb li+li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f105";
    font-weight: 600;
    font-size: 11px;
    margin: 0 7px;
    color: #999;
}
[dir="rtl"] .breadcrumb-wrapper .breadcrumb li+li::before {
    content: "\f104";
}
.text-wrapper {
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .2);
    padding: 3.125rem 4.6875rem;
}
@media (max-width: 1024.98px) {
    .text-wrapper {
        padding: 1.875rem;
    }
}
.text-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 2rem;
}
.text-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: .75rem;
}
.text-details .text-date {
    color: #999;
    font-size: .75rem;
    font-weight: 300;
    line-height: 2rem;
}
.text-img img {
    width: 100%;
    max-width: 100%;
}
.text-content {
    padding-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.875rem;
}
.text-content p:not(:first-of-type) {
    margin-top: 1rem;
}
@media (max-width: 767px) {
    .text-title {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }
    .text-details .text-date {
        font-size: .65rem;
        line-height: 1.8rem;
    }
    .text-content {
        font-size: .825rem;
        line-height: 1.625rem;
    }
}
.btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.40625rem;
    padding: 0 15px;
    min-width: 10rem;
    height: 2.8125rem;
    font-weight: 700;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    transition: opacity 0.5s ease-out;
}
.overlay.active {
    display: block;
}
#paint-calculator {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.5s ease-out;
}
#paint-calculator.open {
    right: 0;
}
.calculator-content {
    padding: 20px;
}
.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calculator-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--main-color);
}
#close-calculator {
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--secondary-color);
    line-height: 1;
    padding: 0;
    margin: 0;
}
#close-calculator:hover {
    color: var(--main-color);
}
.calculator-body .form-group {
    margin-bottom: 15px;
}
.calculator-body label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.calculator-body input,
.calculator-body select {
    width: 100%;
    padding: 8px;
    color: var(--text-color);
    border: 1px solid #ccc;
    border-radius: 4px;
}
.validation-error {
    color: red;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
#calculate-btn,
#clear-btn {
    width: 50%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
#calculate-btn {
    background-color: var(--secondary-color);
    color: #fff;
}
#calculate-btn:hover {
    background-color: var(--main-color);
}
#clear-btn {
    background-color: #ccc;
    color: var(--text-color);
}
#clear-btn:hover {
    background-color: #999;
}
#result,
#available-weight {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}
@media (max-width: 768px) {
    #paint-calculator {
        width: 100%;
    }
    .calculator-content {
        padding: 15px;
    }
    .calculator-header h3 {
        font-size: 1.25rem;
    }
    #close-calculator {
        font-size: 2rem;
    }
    .calculator-body input,
    .calculator-body select {
        padding: 6px;
        font-size: 0.875rem;
    }
    .validation-error {
        font-size: 0.75rem;
    }
    #calculate-btn,
    #clear-btn {
        font-size: 0.875rem;
        padding: 8px;
    }
}
#available-weight {
    line-height: 1.5;
}
.ul-padding {
    padding: 0;
}
.ul-padding li {
    margin-left: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 767px) {
    .ul-padding {
        font-size: .8125rem;
    }
    .ul-padding li {
        margin-top: .5rem;
        margin-bottom: .5rem;
        margin-left: 2rem;
    }
}
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}
.lazy-img {
    filter: blur(5px);
    transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0.8;
    background-size: cover;
    background-position: center;;
}
.lazy-img.loaded {
    filter: blur(0);
    opacity: 1;
}
.lazy-img:not(.loaded):not([src*="placeholder"]) {
    background-color: #f5f5f5;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}
@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.lazy-img.loaded {
    background: none;
    animation: none;
}
/* End Components */
/* Start Main Header */
.header {
    background-image: url(/assets/images/header/header.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80px;
    min-height: 80px;
    position: absolute;
    z-index: 910;
    contain: layout style;
    will-change: auto;
    transition: none;
}
@media (min-width: 1920px) {
    .header {
        height: 200px;
        min-height: 200px;
    }
    .header .container {
        padding-bottom: 20px;
        align-items: center;
    }
}
@media (min-width: 1600px) and (max-width: 1919px) {
    .header {
        height: 170px;
        min-height: 170px;
    }
    .header .container {
        padding-bottom: 20px;
    }
}
@media (min-width: 1200px) and (max-width: 1599px) {
    .header {
        height: 150px;
        min-height: 150px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        height: 140px;
        min-height: 140px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .header {
        height: 125px;
        min-height: 125px;
    }
}
@media (max-width: 767px) {
    .header {
        height: 80px;
        min-height: 80px;
    }
}
.p-rel-header {
    position: relative;
}
.header .container {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .header .container {
        padding-top: 12px;
    }
}
.header a .search {
    font-size: 18px;
    color: var(--main-color);
}
@media (max-width: 991px) {
    .header a .search,
    .header .hamburger {
        margin-top: 16px;
    }
}
@media (max-width: 767px) and (min-width: 551px) {
    .header a .search {
        margin-top: 0;
        font-size: 15px;
    }
    .header .hamburger {
        margin-top: 0;
    }
    .hamburger {
        width: 20px;
        height: 15px;
    }
    .hamburger .line {
        height: 2px;
    }
}
@media (max-width: 767px) and (min-width: 701px) {
    .header .container {
        justify-content: center;
    }
    .header a .search {
        position: absolute;
        right: 6%;
    }
    .header .hamburger {
        position: absolute;
        left: 6%;
    }
}
@media (max-width: 550px) {
    .header a .search {
        font-size: 15px;
        margin-top: 12px;
    }
    .header .hamburger {
        margin-top: 12px;
    }
    .hamburger {
        width: 20px;
        height: 15px;
    } 
    .hamburger .line {
        height: 2px;
    }
}
.header .logo {
    width: 180px;
    margin-top: .5rem;
}
.header .search {
    font-size: 20px;
}
@media (max-width: 767px) {
    .header .logo {
        width: 130px;
        margin-top: 0;
    }
    .header .search {
        font-size: 18px;
    }
}
@media (min-width: 1400px) {
    .header .logo {
        width: calc(12vw);
        margin-top: clamp(.5rem, 1vw, 7rem);
    }
    .header .search {
        font-size: calc(1.2vw);
    }
}
/* End Main Header */
/* Start Secondary Header */
.secondary-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.5);
    transition: top 0.3s ease-in-out;
}
.secondary-header.active {
    top: 0;
}
.secondary-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.secondary-header .mobile-header-util {
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .secondary-header .mobile-header-util {
        display: none;
    }
}
nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 991px) {
    nav {
        gap: 25px;
    }
}
@media (max-width: 767px) {
    nav {
        display: none;
    }
}
[dir="rtl"] nav {
    gap: 50px;
}
@media (max-width: 991px) {
    [dir="rtl"] nav {
        gap: 40px;
    }
}
.secondary-header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}
[dir="rtl"] .secondary-header nav ul {
    gap: 28px;
}
@media (max-width: 1199px) {
    [dir="rtl"] .secondary-header nav ul {
        gap: 25px;
    }
}
@media (max-width: 991px) {
    .secondary-header nav ul,
    [dir="rtl"] .secondary-header nav ul {
        gap: 15px;
    }
}
.secondary-header nav ul li a:hover:not(.secondary-header nav ul li.active a) {
    color: var(--secondary-color);
    text-decoration: underline;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .secondary-header nav ul li a {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .secondary-header nav ul li a {
        font-size: 13px;
    }
}
.secondary-header nav ul li.active a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}
.header-util {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
[dir="rtl"] .header-util {
    padding-left: 20px;
}
@media (max-width: 767px) {
    .header-util {
        margin-left: .7rem;
    }
    [dir="rtl"] .header-util {
        padding-left: 0;
    }
}
.header-util::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 1px;
    height: calc(100% + 50%);
    top: -25%;
    background-color: #ebebeb;
}
[dir="rtl"] .header-util::before {
    left: 0;
    right: -25px;
}
@media (max-width: 767px) {
    .header-util::before {
        display: none;
    }
}
@media (max-width: 991px) {
    [dir="rtl"] .header-util::before {
        right: -20px;
    }
    .header-util::before {
        left: -12.5px;
    }
}
.header-util a {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 1.2rem;
}
@media (max-width: 991px) {
    .header-util a {
        font-size: 16px;
        margin-right: 1rem;
    }
}
@media (max-width: 767px) {
    .header-util a {
        font-size: 15px;
        margin-right: .7rem;
    }
}
[dir="rtl"] .header-util a {
    margin-left: 1.2rem;
    margin-right: 0;
}
@media (max-width: 991px) {
    [dir="rtl"] .header-util a {
        margin-left: 1rem;
    }
}
@media (max-width: 767px) {
    [dir="rtl"] .header-util .ar-search {
        margin-left: 0;
        margin-right: .7rem;
    }
}
.header-util .lang-switcher {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.header-util .lang-switcher .flag-1 {
    margin-right: .5rem;
    width: 22px;
}
@media (max-width: 991px) {
    .header-util .lang-switcher .flag-1 {
        width: 20px;
    }
}
@media (max-width: 767px) {
    .header-util .lang-switcher .flag-1 {
        width: 18px;
        margin-right: .4rem;
    }
}
[dir="rtl"] .header-util .lang-switcher .flag-1 {
    margin-right: 0;
    margin-left: .5rem;
}
@media (max-width: 767px) {
    [dir="rtl"] .header-util .lang-switcher .flag-1 {
        margin-left: 0;
        margin-right: .4rem;
    }
}
.header-util .lang-switcher i {
    font-size: 10px;
}
.header-util .dropdown .flag-2 {
    width: 22px;
    position: relative;
}
@media (max-width: 991px) {
    .header-util .dropdown .flag-2 {
        width: 20px;
    }
}
@media (max-width: 767px) {
    .header-util .dropdown .flag-2 {
        width: 18px;
    }
}
.secondary-header .logo-s-h {
    width: 160px;
}
@media (max-width: 991px) {
    .secondary-header .logo-s-h {
        width: 140px;
    }
}
@media (max-width: 767px) {
    .secondary-header .logo-s-h {
        width: 120px;
    }
}
/* End Secondary Header */
/* Start Menu */
.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51 26 74 / 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: top 0.5s ease-in-out;
    z-index: 901;
}
@media (max-width: 767px) {
    .menu {
        align-items: center;
    }
}
.menu ul {
    padding: 0;
    margin: 0;
    width: fit-content;
}
@media (min-width: 768px) {
    .menu ul {
        margin-left: 25%;
    }
}
@media (min-width: 768px) {
    [dir="rtl"] .menu ul {
        margin-right: 25%;
    }
}
.menu ul li {
    margin: 20px 0;
    position: relative;
}
.menu ul li::before {
    font-family: 'Font Awesome 6 Free';
    content: "\f111";
    font-weight: 900;
    font-size: 7px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    position: absolute;
    transition: all .5s ease;
    opacity: 0;
}
[dir="rtl"] .menu ul li::before {
    left: 0;
    right: 10px;
}
.menu ul li:hover::before {
    opacity: 1;
    left: 2px;
}
[dir="rtl"] .menu ul li:hover::before {
    left: 0;
    right: 2px;
}
.menu ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    opacity: 1;
    transition: all 0.5s ease;
}
.menu ul li:not(:last-of-type) a {
    padding: 20px;
}
.menu ul li:last-of-type a {
    padding: 20px 20px 0 20px;
}
.menu.active {
    top: 0;
}
@media (min-width: 768px) {
    .language {
        margin-left: calc(25% + 21px);
        width: fit-content;
    }
}
@media (min-width: 768px) {
    [dir="rtl"] .language {
        margin-left: 0;
        margin-right: calc(25% + 21px);
    }
}
@media (max-width: 767px) {
    .language {
        margin-right: 145px;
    }
}
@media (max-width: 767px) {
    [dir="rtl"] .language {
        margin-right: 0;
        margin-left: 66px;
    }
}
/* End Menu */
/* Start Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    overflow: hidden;
}
#product-preloader {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 800;
}
.loader {
    width: 100px;
    height: 100px;
    background: url(/assets/images/preloader/preloader.svg) no-repeat center center;
    background-size: contain;
    animation: flip 2s ease-in-out infinite, pulse 1.5s ease-in-out infinite alternate;
}
@keyframes flip {
    0%, 100% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
    }
}
@keyframes pulse {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.6);
    }
}
/* End Preloader */
/* Start Landing */
.landing {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 750;
}
@media (max-width: 767px) {
    .landing {
        height: 166vw;
    }
}
.homepage-carousel {
    height: 100vh;
    width: 100%;
}
@media (max-width: 767px) {
    .homepage-carousel {
        height: 166vw;
    }
}
.homepage-carousel .img-fluid {
    width: 100%;
    height: auto;
}
.homepage-carousel .mob img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
@media (max-width: 767px) {
    .homepage-carousel .mob img {
        height: 166vw;
    }
}
.homepage-carousel .mob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}
@media (max-width: 767px) {
    .homepage-carousel .mob {
        height: 166vw;
    }
}
.homepage-carousel .mob .slider-obj {
    z-index: 3;
    position: absolute;
    transition: all 2s ease-in-out;
}
.homepage-carousel .mob .slider-obj.chair {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-100vw);
}
.homepage-carousel .mob .slider-obj.table {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(40vw);
}
.homepage-carousel .mob .slider-obj.room2 {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-40vw);
}
.homepage-carousel .mob .slider-obj.lamb {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateY(-30vh);
}
.homepage-carousel .mob .slider-obj.room3 {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-40vw);
}
.homepage-carousel .mob .slider-obj.chair.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .mob .slider-obj.table.active {
    transform: translateX(0);
}
.homepage-carousel .mob .slider-obj.table:not(.active) {
    transform: translateX(40vw);
}
.homepage-carousel .mob .slider-obj.room2.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .mob .slider-obj.lamb.active {
    opacity: 1;
    transform: translateY(0);
}
.homepage-carousel .mob .slider-obj.room3.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .img-wide {
    width: 150%;
}
.homepage-carousel .mob {
    display: none;
}
.homepage-carousel .desktop {
    display: block;
    position: relative;
    z-index: 1;
}
.homepage-carousel .desktop .slider-obj {
    position: absolute;
    transition: all 2s ease-in-out;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
.homepage-carousel .carousel-fade .carousel-item {
    display: block;
    position: relative;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
    width: 100%;
}
.homepage-carousel .carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
    width: 100%;
    z-index: 1;
}
.homepage-carousel .carousel-item {
    height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@media (max-width: 767px) {
    .homepage-carousel .carousel-item {
        height: 166vw;
    }
}
.homepage-carousel .carousel-item .slider-vh-left {
    top: 50%;
}
[dir="rtl"] .homepage-carousel .carousel-item .slider-vh-left {
    right: 61%;
}
@media (max-width: 767px) {
    .homepage-carousel .carousel-item .slider-vh-left {
        top: 33%;
    }
}
.homepage-carousel .carousel-item .slider-vh-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.homepage-carousel .carousel-item:nth-of-type(6) .slider-vh-left h1 {
    font-size: 2rem;
}
.homepage-carousel .carousel-item img.unscaled {
    width: 100%;
}
.homepage-carousel .carousel-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.homepage-carousel .carousel-item p.descBig {
    font-weight: 100;
    opacity: 0.9;
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.homepage-carousel .carousel-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
    position: relative;
}
.homepage-carousel .carousel-item a:hover {
    text-decoration: none;
}
.homepage-carousel .carousel-item {
    width: 100%;
}
.homepage-carousel .carousel {
    position: relative;
    top: 0;
    left: 0;
}
.homepage-carousel .carousel-control-prev {
    position: absolute;
    width: 7%;
    border-radius: 50%;
    height: 60px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}
.homepage-carousel .carousel-control-next {
    position: absolute;
    width: 7%;
    border-radius: 50%;
    height: 60px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}
.carousel-controls-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}
.carousel-controls-container button {
    background: none;
    border: none;
    cursor: pointer;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.homepage-carousel .carousel .carousel-control-prev,
.homepage-carousel .carousel .carousel-control-next {
    pointer-events: auto;
    padding: 1rem;
}
.homepage-carousel .carousel .carousel-control-prev i,
.homepage-carousel .carousel .carousel-control-next i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
@media (max-width: 767px ) {
    .homepage-carousel .carousel .carousel-control-prev i,
    .homepage-carousel .carousel .carousel-control-next i {
        font-size: 2rem;
    }
}
.homepage-carousel .carousel .carousel-control-prev:hover i,
.homepage-carousel .carousel .carousel-control-next:hover i {
    color: rgba(255, 255, 255, 0.6);
}
.slider-vh-left {
    position: absolute;
    left: 10%;
    transform: translate(0%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-item.active .slider-vh-left {
    opacity: 1;
}
.back {
    position: absolute;
    z-index: -1;
}
.slider-obj {
    position: absolute;
    width: 100%;
    height: auto;
    transition: 2s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.chair {
    opacity: 0;
    transform: translateX(-100vw);
}
.table {
    opacity: 0;
    transform: translateX(40vw);
}
.lamb {
    opacity: 0;
    transform: translateY(-30vh);
}
.room2 {
    opacity: 0;
    transform: translateX(-40vw);
}
.room3 {
    opacity: 0;
    transform: translateX(-40vw);
}
.slider-bg {
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.homepage-carousel .carousel .carousel-inner .carousel-item:first-child .slider-bg {
    width: 150%;
    transition: width 2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.homepage-carousel .carousel .carousel-inner .carousel-item:first-child.active .slider-bg,
.homepage-carousel .carousel .carousel-inner .carousel-item:first-child .slider-bg.active {
    width: 100% !important;
    transition: width 2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@media (min-width: 768px) {
    .carousel-item:first-child .slider-bg {
        width: 150%;
        transition: width 2s ease-in-out;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .carousel-item:first-child.active .slider-bg,
    .carousel-item:first-child .slider-bg.active {
        width: 100% !important;
        transition: width 2s ease-in-out;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}
.carousel-item:not(:first-child) .slider-bg {
    width: 100%;
    transition: none;
    animation: none;
}
@media (max-width: 767px) {
    .homepage-carousel .mob .slider-obj.lamb {
        width: 100%;
        max-width: 100vw;
        transform: translateX(-50px);
        left: auto;
        transform: translateY(-30vh);
        transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    }
    .homepage-carousel .mob .slider-obj.lamb.active {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes backgroundScale {
    0% {
        width: 150%;
    }
    100% {
        width: 100%;
    }
}
.active .animation {
    -webkit-transition: 2s;
    transition: 2s;
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
    -ms-animation: fadeIn ease 2s;
}
.carousel-item.active .animation {
    -webkit-transition: 2s;
    transition: 2s;
    animation: fadeIn ease 2s;
    -webkit-animation: fadeIn ease 2s;
    -moz-animation: fadeIn ease 2s;
    -o-animation: fadeIn ease 2s;
    -ms-animation: fadeIn ease 2s;
}
.active .bg-animation {
    -webkit-transition: 2s;
    transition: 2s;
    animation: scaleOut ease 2s;
    -webkit-animation: scaleOut ease 2s;
    -moz-animation: scaleOut ease 2s;
    -o-animation: scaleOut ease 2s;
    -ms-animation: scaleOut ease 2s;
}
.active .chair {
    opacity: 1;
    transform: translateX(0);
}
.active .table {
    opacity: 1;
    transform: translateX(0);
}
.active .room2 {
    opacity: 1;
    transform: translateX(0);
}
.active .room3 {
    opacity: 1;
    transform: translateX(0);
}
.active .lamb {
    opacity: 1;
    transform: translateY(0);
}
.homepage-carousel .desktop .slider-obj.chair {
    opacity: 0;
    position: absolute;
    transition: opacity 2.2s ease, transform 2.2s ease;
    transform: translateX(-100vw);
}
.homepage-carousel .desktop .slider-obj.table {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(40vw);
}
.homepage-carousel .desktop .slider-obj.room2 {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-40vw);
}
.homepage-carousel .desktop .slider-obj.lamb {
    opacity: 0;
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateY(-30vh);
}
.homepage-carousel .desktop .slider-obj.room3 {
    position: absolute;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    opacity: 0;
    transform: translateX(-40vw);
}
.homepage-carousel .desktop .slider-obj.chair.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.table.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.room2.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.lamb.active {
    opacity: 1;
    transform: translateY(0);
}
.homepage-carousel .desktop .slider-obj.room3.active {
    opacity: 1;
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.chair:not(.active) {
    opacity: 0;
    transform: translateX(-100vw);
}
.homepage-carousel .desktop .slider-obj.table:not(.active) {
    opacity: 0;
    transform: translateX(40vw);
}
.homepage-carousel .desktop .slider-obj.room2:not(.active) {
    opacity: 0;
    transform: translateX(-40vw);
}
.homepage-carousel .desktop .slider-obj.lamb:not(.active) {
    opacity: 0;
    transform: translateY(-30vh);
}
.homepage-carousel .desktop .slider-obj.room3:not(.active) {
    opacity: 0;
    transform: translateX(-40vw);
}
@media (max-width: 767px) {
    .homepage-carousel .mob .slider-obj.chair.active {
        left: 0;
        opacity: 1;
    }
    .homepage-carousel .mob .slider-obj.table.active {
        right: 0;
        opacity: 1;
    }
    .homepage-carousel .mob .slider-obj.room2.active {
        left: 0;
        opacity: 1;
    }
    .homepage-carousel .mob .slider-obj.room3.active {
        top: 42%;
        height: 60%;
        opacity: 1;
        left: 0;
    }
    .homepage-carousel .mob .slider-obj.lamb.active {
        top: 0;
        opacity: 1;
    }
    .homepage-carousel .mob .slider-obj.chair:not(.active) {
        opacity: 0;
        transform: translateX(-100vw);
    }
    .homepage-carousel .mob .slider-obj.table:not(.active) {
        opacity: 0;
        transform: translateX(40vw);
    }
    .homepage-carousel .mob .slider-obj.room2:not(.active) {
        opacity: 0;
        transform: translateX(-40vw);
    }
    .homepage-carousel .mob .slider-obj.room3:not(.active) {
        top: 42%;
        height: 60%;
        opacity: 0;
        transform: translateX(-40vw);
    }
    .homepage-carousel .mob .slider-obj.lamb:not(.active) {
        opacity: 0;
        transform: translateY(-30vh);
    }
}
@keyframes scaleOut {
    0% {
        top: -42%;
        opacity: 1;
        left: -22%;
        width: 150%;
    }
    100% {
        top: 0%;
        left: 0%;
        opacity: 1;
        width: 100%;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media (max-width: 767px) {
    .homepage-carousel .mob {
        display: block;
    }
    .homepage-carousel .desktop {
        display: none;
    }
    .homepage-carousel .carousel-item .slider-vh-left h1 {
        font-size: 1.8rem;
    }
    .homepage-carousel .carousel-item p.descBig {
        font-size: 1rem;
        line-height: 1.2rem;
    }
    .homepage-carousel .carousel-control-prev,
    .homepage-carousel .carousel-control-next {
        width: 10%;
        height: 60px;
    }
}
@media (max-width: 560px) {
    .homepage-carousel .carousel-item .slider-vh-left h1 {
        font-size: 1.5rem;
    }
    .homepage-carousel .carousel-item p.descBig {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }
    .homepage-carousel .carousel-control-prev,
    .homepage-carousel .carousel-control-next {
        width: 12%;
    }
}
.homepage-carousel .mob .slider-obj.room2,
.homepage-carousel .mob .slider-obj.room3 {
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-40vw);
}
.homepage-carousel .mob .slider-obj.room2.active,
.homepage-carousel .mob .slider-obj.room3.active {
    transform: translateX(0);
}
.homepage-carousel .mob .slider-obj.lamb {
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateY(-30vh);
}
.homepage-carousel .mob .slider-obj.lamb.active {
    transform: translateY(0);
}
.homepage-carousel .desktop .slider-obj.room2 {
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateX(-40vw);
}
.homepage-carousel .desktop .slider-obj.room2.active {
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.table {
    transition: opacity 2s ease-in-out, transform 2.2s ease-in-out;
    transform: translateX(28vw);
}
.homepage-carousel .desktop .slider-obj.table.active {
    transform: translateX(0);
}
.homepage-carousel .desktop .slider-obj.lamb {
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translateY(-30vh);
}
.homepage-carousel .desktop .slider-obj.lamb.active {
    transform: translateY(0);
}
.homepage-carousel .mob .slider-obj.room2:not(.active),
.homepage-carousel .mob .slider-obj.room3:not(.active) {
    transform: translateX(-40vw);
}
.homepage-carousel .mob .slider-obj.lamb:not(.active) {
    transform: translateY(-30vh);
}
.homepage-carousel .desktop .slider-obj.room2:not(.active) {
    transform: translateX(-40vw);
}
.homepage-carousel .desktop .slider-obj.table:not(.active) {
    transform: translateX(28vw);
}
.homepage-carousel .desktop .slider-obj.lamb:not(.active) {
    transform: translateY(-30vh);
}
/* End Landing */
/* Start About */
.about {
    background-image: url(/assets/images/about/about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80%;
    padding: var(--main-section-padding);
    position: relative;
}
@media (max-width: 767px) {
    .about {
        padding: var(--mobile-section-padding);
    }
}
.about .leading-content,
.about-info .leading {
    color: var(--text-color);
    margin: 0 0 .9375rem;
    font-size: 1.625rem;
    font-weight: 300;
    line-height: 2.5rem;
}
@media (max-width: 991px) {
    .about .leading-content,
    .about-info .leading {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }
}
@media (max-width: 767px) {
    .about .leading-content,
    .about-info .leading {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.about .full-content {
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.75rem;
    text-transform: capitalize;
}
@media (max-width: 991px) {
    .about .full-content,
    .about-info .full-content {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media (max-width: 767px) {
    .about .full-content,
    .about-info .full-content {
        font-size: .8rem;
        line-height: 1.3rem;
    }
}
.about .view-more {
    margin-top: 1.5rem;
}
/* End About */
/* Start News Event */
.news-event {
    padding: var(--main-section-padding);
    position: relative;
}
@media (max-width: 767px) {
    .news-event {
        padding: var(--mobile-section-padding);
    }
}
.news-event .news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.news-item,
.news-item .news-caption {
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.news-item .news-caption {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -ms-flex-negative: 1;
    -ms-flex-preferred-size: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    position: relative;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: space-between;
    z-index: 1;
    background: #f3f3f3;
    padding: 1.875rem 1.5625rem;
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
}
.news-item .news-caption:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--main-color);
    width: 100%;
    height: 0;
}
.news-item .news-caption:before,
.news-item .news-date {
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
}
.news-detail .news-detail-meta .news-date {
    color: #999;
    font-size: .75rem;
    font-weight: 300;
    line-height: 2rem;
}
.news-item .news-date {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.news-item .news-date {
    color: #58595b;
    font-size: .875rem;
    letter-spacing: .1rem;
    line-height: 2.5rem;
}
@media (max-width: 1024.98px) {
    .news-item .news-date {
        font-size: .6875rem;
    }
}
.news-item .news-date span {
    margin-right: .5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}
[dir="rtl"] .news-item .news-date span {
    margin-right: 0;
    margin-left: .5rem;
}
.news-item .news-desc {
    -o-text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-height: 8.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item .news-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5rem;
    text-transform: uppercase;
}
@media (max-width: 1024.98px) {
    .news-item .news-title {
        font-size: .9141rem;
    }
}
.news-item .news-brief {
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
    margin-top: 1.5rem;
    color: #58595b;
    line-height: 1.375rem;
    text-transform: capitalize;
}
@media (max-width: 1024.98px) {
    .news-item .news-brief {
        font-size: .8125rem;
    }
}
@media screen and (min-width:1024.98px) {
    .news-item:hover .news-brief,
    .news-item:hover .news-caption,
    .news-item:hover .news-date {
        color: #fff;
    }
    .news-item:hover .news-caption:before {
        height: 100%;
    }
    .news-item:hover .view-more .arrow-right {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        color: #fff;
    }
    .news-item:hover .view-more .arrow-right::before {
        color: #fff;
    }
    .news-item:hover .view-more .strong-txt {
        color: #fff;
        text-decoration: underline;
    }
}
.news-list .view-more {
    margin-top: 1.5rem;
}
@media (max-width: 1024.98px) {
    .news-list .view-more {
        font-size: .8125rem;
    }
}
.news-item .news-img {
    display: block;
    position: relative;
    padding-top: 46.15385%;
}
.news-item .news-img img {
    -o-object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End News Event */
/* Start Customer Support */
.customer-support {
    background-image: url(/assets/images/customer-support/customer-support-bg.jpg);
    background-size: cover;
    background-position: 50%;
    padding: var(--main-section-padding);
    position: relative;
}
@media (max-width: 767px) {
    .customer-support {
        padding: var(--mobile-section-padding);
    }
}
.customer-support .row {
    display: flex;
    align-items: center;
    gap: 30px;
}
.customer-support .box {
    flex: .5;
}
@media (max-width: 1024.98px) {
    .customer-support .row {
        flex-direction: column;
    }
    .customer-support .box {
        width: 100%;
    }
}
.customer-support .content-wrap {
    border: 15px solid #fff;
}
@media (max-width: 1024.98px) {
    .customer-support .content-wrap {
        border: 8px solid #fff;
    }
}
.customer-support .content-wrap .top {
    padding: 50px 25px 54px 30px;
}
@media (max-width: 1024.98px) {
    .customer-support .content-wrap .top {
        padding: 1.625rem;
    }
}
@media (max-width: 767px) {
    .customer-support .content-wrap .top {
        padding: 1.625rem;
    }
}
.customer-support .section-title {
    margin-bottom: 2.25rem;
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .customer-support .section-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
}
@media (max-width: 1024.98px) {
    .customer-support .section-title {
        margin-bottom: 1rem;
    }
}
@media (max-width: 767px) {
    .customer-support .section-title {
        font-size: 1.7rem;
    }
}
.customer-support .content-wrap .content {
    font-size: 1.3rem;
    line-height: 2.2rem;
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .customer-support .content-wrap .content {
        height: 80px;
        font-size: 1rem;
        line-height: 1.7rem;
    }
}
@media (max-width: 767px) {
    .customer-support .content-wrap .content {
        font-size: 1rem;
        line-height: 1.625rem;
    }
}
.customer-support .content-wrap .bottom {
    outline: thin solid #fff;
    background: #fff;
    padding: 40px 25px 32px 38px;
}
@media (max-width: 1024.98px) {
    .customer-support .content-wrap .bottom {
        padding: 1.875rem 1.875rem .9375rem;
    }
}
.customer-support .img-wrap {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    flex: 1;
}
.customer-support .img-wrap img {
    width: fit-content;
    max-width: 100%;
    vertical-align: middle;
}
/* End Customer Support */
/* Start Products */
.products {
    padding: var(--main-section-padding);
    position: relative;
}
@media (max-width: 767px) {
    .products {
        padding: var(--mobile-section-padding);
    }
}
@media (max-width: 1024.98px) {
    .product-home-slider {
        padding: 0 15px;
    }
}
.product-box .product-list-heading {
    justify-content: space-between;
    margin-bottom: 1.25rem;
    display: flex;
}
@media (min-width: 992px) {
    .product-box .product-list-heading {
        padding-left: 1.875rem;
    }
    [dir="rtl"] .product-box .product-list-heading {
        padding-right: 1.875rem;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .product-box .product-list-heading {
        margin-bottom: 1rem;
    }
}
.product-box .section-title {
    margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
    .product-box .section-title {
        font-size: 1.375rem;
        margin-bottom: 0;
    }
}
.product-list-heading div.hidden {
    display: none;
}
.product-list-heading div.active {
    display: flex;
    align-items: center;
}
.product-list-heading .filter-toggle button {
    border: none;
    background: none;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
}
@media (max-width: 767px) {
    .product-list-heading .filter-toggle button {
        width: 2rem;
        height: 2rem;
    }
}
.product-list-heading .filter-toggle {
    justify-content: center;
    background-color: var(--secondary-color);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 18px;
}
@media (max-width: 767px) {
    .product-list-heading .filter-toggle {
        width: 2rem;
        height: 2rem;
    }
}
.product-home-slider .product-item {
    border: 0;
}
.product-home-slider .product-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}
@media (min-width:1024.98px) {
    .product-item:hover {
        -webkit-box-shadow: 0 5px 10px 0 rgba(0, 31, 81, .06);
        box-shadow: 0 5px 10px 0 rgba(0, 31, 81, .06);
        border-color: var(--secondary-color);
    }
    .product-item:hover .product-img {
        background-color: var(--secondary-color);
    }
    .product-item:hover .product-img .img-inner::before {
        background-color: #fff;
    }
    .product-item:hover .product-title .title {
        text-decoration: underline;
    }
    .product-item:hover .product-title .pdf {
        color: var(--secondary-color);
    }
}
.product-item,
.product-item .product-img,
.product-item .product-title .pdf,
.product-item .product-img .img-inner::before {
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
}
.product-item .product-img {
    display: block;
    position: relative;
    background-color: #f6f6f6;
    padding-top: 100%;
}
.product-item .product-img .img-inner,
.product-item .product-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.product-item .product-img .img-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.product-item .product-img .img-inner::before {
    content: "";
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    bottom: 1.875rem;
    left: 1.875rem;
    z-index: 2;
}
@media (max-width: 1024.98px) {
    .product-item .product-img .img-inner img {
        max-height: 75%;
        width: 460px;
    }
}
.product-item .product-img .img-inner img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    vertical-align: middle;
    width: fit-content;
    height: auto;
    max-height: 16rem;
}
.product-item .product-caption {
    padding: 1.5rem 1.25rem;
}
.product-home-slider .product-item .product-title {
    margin-bottom: 0;
}
.product-item .product-title {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}
.product-item .product-title .title {
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    display: block;
    transition: all var(--main-transition);
    font-size: 16px;
    padding-bottom: 6px;
    font-weight: 700;
}
.product-item .product-title .pdf,
.product-detail-content-bottom .pdf {
    color: #999;
}
.product-item .product-brief {
    -o-text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    max-height: 4.5rem;
    overflow: hidden;
    color: #666;
    font-size: 12px;
    line-height: 1.5rem;
    text-overflow: ellipsis;
}
.product-home-slider-scrollbar {
    margin-top: 2.5rem;
}
.product-home-slider-scrollbar .swiper-scrollbar {
    background-color: #e1e1e1;
    height: 2px;
}
.swiper-scrollbar {
    -ms-touch-action: none;
    touch-action: none;
    position: relative;
    border-radius: 10px;
    background: rgba(0, 0, 0, .1);
}
.swiper-scrollbar-drag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
}
.product-home-slider-scrollbar .swiper-scrollbar .swiper-scrollbar-drag {
    background-color: var(--text-color);
}
/* End Products */
/* Start Footer */
.footer {
    position: relative;
}
.footer ul {
    padding: 0;
    margin: 0;
}
.footer-top {
    background-image: url(/assets/images/footer/footer-bg.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
}
@media (max-width: 767px) {
    .footer-top {
        padding: var(--mobile-section-padding);
    }
}
.footer-top .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
@media (max-width: 767px) {
    .footer-top .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
.footer-title {
    margin-bottom: 2rem;
    font-weight: 700;
}
@media (max-width: 767px) {
    .footer-title {
        margin-bottom: 1.21875rem;
        font-size: 0.8125rem;
    }
}
.contact-info .footer-info li {
    color: rgb(255 255 255 / .75);
    display: flex;
    align-items: center;
    margin-bottom: .9375rem;
}
@media (max-width: 767px) {
    .contact-info .footer-info li {
        margin-bottom: 0.7617rem;
        font-size: 0.8125rem;
    }
}
.contact-info .footer-info li .icon-bg {
    display: inline-block;
    margin-right: .625rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}
[dir="rtl"] .contact-info .footer-info li .icon-bg {
    margin-right: 0;
    margin-left: .625rem;
}
@media (max-width: 767px) {
    .contact-info .footer-info li .icon-bg {
        margin-right: 0.5078rem;
        width: 1.52375rem;
        height: 1.52375rem;
    }
    [dir="rtl"] .contact-info .footer-info li .icon-bg {
        margin-left: 0.5078rem;
    }
}
.contact-info .footer-info li:first-of-type .icon-bg::before {
    font-family: "Font Awesome 6 Free";
    content: '\f0e0';
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
}
.contact-info .footer-info li:nth-last-of-type(3) .icon-bg::before,
.contact-info .footer-info li:nth-last-of-type(2) .icon-bg::before {
    font-family: "Font Awesome 6 Free";
    content: '\f095';
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
}
[dir="rtl"] .contact-info .footer-info li:nth-last-of-type(3) .icon-bg::before,
[dir="rtl"] .contact-info .footer-info li:nth-last-of-type(2) .icon-bg::before {
    content: '\f879';
}
.contact-info .footer-info li:nth-last-of-type(1) .icon-bg::before {
    font-family: "Font Awesome 6 Free";
    content: '\f3c5';
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
}
.contact-info .footer-info li a:hover {
    text-decoration: underline;
}
.quick-links .footer-links ul {
    margin-left: 14px;
}
[dir="rtl"] .quick-links .footer-links ul {
    margin-left: 0;
    margin-right: 16px;
}
.quick-links .footer-links li {
    margin-bottom: 1.875rem;
    line-height: 1.375;
    color: rgb(255 255 255 / .75);
    list-style: initial;
}
@media (max-width: 767px) {
    .quick-links .footer-links li {
        margin-bottom: 1rem;
        font-size: 0.8125rem;
    }
}
.quick-links .footer-links li a:hover {
    text-decoration: underline;
}
.social-media .footer-social {
    display: flex;
    align-items: center;
}
.social-media .footer-social a {
    font-size: 40px;
    transition: var(--main-transition);
}
.social-media .footer-social a:not(:last-of-type) {
    margin-right: .625rem;
}
[dir="rtl"] .social-media .footer-social a:not(:last-of-type) {
    margin-right: 0;
    margin-left: .625rem;
}
@media (max-width: 767px) {
    .social-media .footer-social a {
        font-size: 33px;
    }
    .social-media .footer-social a:not(:last-of-type) {
        margin-right: .525rem;
    }
    [dir="rtl"] .social-media .footer-social a:not(:last-of-type) {
        margin-left: .525rem;
    }
}
.social-media .footer-social a:first-of-type:hover {
    color: #1877f2;
}
.social-media .footer-social a:nth-last-of-type(3):hover {
    color: #e1306c;
}
.social-media .footer-social a:nth-last-of-type(2):hover {
    color: #0a66c2;
}
.social-media .footer-social a:nth-last-of-type(1):hover {
    color: #25d366;
}
@media (max-width: 767px) {
    .contact-info,
    .quick-links,
    .social-media {
        flex: 1 1 calc(50% - 15px);
        margin-bottom: 15px;
    }
    .contact-info {
        flex-basis: 100%;
    }
    .quick-links,
    .social-media {
        flex-basis: calc(50% - 15px);
    }
    .social-media {
        margin-left: auto;
    }
}
.footer-bottom {
    background-color: var(--secondary-color);
    padding: 1.5rem 0;
    font-size: 12px;
    color: #fff;
    line-height: 1.5;
    position: relative;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}
.footer-bottom .policy a:last-of-type {
    margin-left: 6px;
    border-left: 1px solid rgb(255 255 255 / .5);
    padding-left: 6px;
}
[dir="rtl"] .footer-bottom .policy a:last-of-type {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    margin-right: 6px;
    border-right: 1px solid rgb(255 255 255 / .5);
    padding-right: 6px;
}
.footer-bottom .policy a:hover {
    text-decoration: underline;
}
.footer-bottom .policy .scroll {
    color: #fff;
    background: none;
    border: none;
    margin-left: 6px;
    border-left: 1px solid rgb(255 255 255 / .5);
    padding: 0 0 0 6px;
    height: 14.5px;
    cursor: pointer;
}
[dir="rtl"] .footer-bottom .policy .scroll {
    margin-left: 0;
    border-left: none;
    margin-right: 6px;
    border-right: 1px solid rgb(255 255 255 / .5);
    height: 23px;
    padding:  0 6px 0 0;
}
.footer-bottom .policy .scroll:hover {
    text-decoration: underline;
}
/* End Footer */
/* Start About Page */
.tagline-img img {
    width: 100%;
    vertical-align: middle;
    max-width: 100%;
}
@media (max-width: 767px) {
    .tagline-img img {
        padding-top: 40px;
    }
}
.about-info {
    background-image: url(/assets/images/about/about.jpg);
    background-position: 80%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .about-info {
        padding: var(--mobile-section-padding);
    }
}
.about-info .breadcrumb-wrapper {
    position: relative;
    top: -20px;
}
.about-info .content-wrap {
    max-height: 335px;
    overflow: auto;
}
@media (max-width: 767px) {
    .about-info .content-wrap {
        max-height: 290px;
    }
}
.simplebar-scrollbar::before {
    background-color: var(--secondary-color);
    opacity: 1 !important;
}
.simplebar-track.simplebar-vertical {
    width: 11px;
    background-color: transparent;
}
[dir="rtl"] .simplebar-track.simplebar-vertical {
    right: 99%;
}
@media (max-width: 767px) {
    .simplebar-track.simplebar-vertical {
        width: 8px;
    }
}
.about-info .content-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: -1.875rem;
    margin-left: -1.875rem;
    padding: 0 3rem 1.875rem 1.875rem;
    width: 100%;
}
[dir="rtl"] .about-info .content-wrap {
    padding: 0 .875rem 1.875rem 3rem;
}
@media (max-width: 767px) {
    .about-info .content-wrap {
        padding-right: 1rem;
    }
}
@media (max-width: 767px) {
    [dir="rtl"] .about-info .content-wrap {
        padding-left: 1rem;
    }
}
.about-info .full-content {
    line-height: 1.75rem;
}
.about-2 .overview-wrap {
    padding-top: 3.75rem;
    padding-bottom: 1.75rem;
}
@media (max-width: 767px) {
    .about-2 .overview-wrap {
        padding-top: 1.5rem;
        padding-bottom: .75rem;
    }
}
.title-small {
    margin-bottom: .5rem;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .title-small {
        font-size: 1.52375rem;
    }
}
@media (max-width: 1024.98px) {
    .about-2 .title-small {
        margin-bottom: 1.25rem;
    }
}
.about-2 .content-wrap {
    display: flex;
}
@media (max-width: 767px) {
    .about-2 .content-wrap {
        flex-direction: column;
    }
}
.about-2 .company-brief {
    align-self: stretch;
    padding: 0;
    width: 100%;
}
.about-2 .company-brief .brief-content {
    background-color: #f2733880;
    padding: 3.125rem 4.6875rem;
    height: 100%;
}
@media (max-width: 1024.98px) {
    .about-2 .company-brief .brief-content {
        padding: 1.875rem;
    }
}
.company-brief .brief-content .brief {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
@media (max-width: 767px) {
    .company-brief .brief-content .brief {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.about-2 .business-wrap {
    padding-bottom: 3.75rem;
}
@media (max-width: 1024.98px) {
    .about-2 .business-wrap {
        padding-bottom: 1.875rem;
    }
}
.business-wrap .title-small {
    margin-bottom: 2.25rem;
}
@media (max-width: 1024.98px) {
    .business-wrap .title-small {
        margin-bottom: 1.25rem;
    }
}
.business-wrap .content-wrap {
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .15);
}
.business-wrap .business-lines {
    align-self: stretch;
    padding: 0;
}
@media (min-width: 1024.98px) {
    .business-wrap .business-lines {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.business-wrap .business-lines-info {
    background-color: #f6f6f6;
    padding: 3.125rem 4.6875rem;
    height: 100%;
}
@media (max-width: 1024.98px) {
    .business-wrap .business-lines-info {
        padding: 1.875rem;
    }
}
.business-lines-info .title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: .25rem;
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .business-lines-info .title {
        font-size: .925rem;
    }
}
.business-lines-info .title::before,
.product-detail-name::before {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: var(--secondary-color);
    width: 3.125rem;
    height: 3px;
}
[dir="ltr"] .business-lines-info .title::before,
[dir="ltr"] .product-detail-name::before {
    left: 0;
}
[dir="rtl"] .business-lines-info .title::before,
[dir="rtl"] .product-detail-name::before {
    right: 0;
}
.business-lines-info .content {
    color: #333;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .business-lines-info .content {
        font-size: .8rem;
    }
}
.business-lines-info .content p {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.business-lines-info .content p+p {
    margin-top: 2rem;
}
.business-wrap .business-img {
    align-self: stretch;
    padding: 0;
    width: 100%;
}
.business-img .image {
    height: 100%;
}
.business-img .image img {
    -o-object-fit: cover;
    max-width: 100%;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover;
}
/* End About Page */
/* Start News-Event Page */
.news-section {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .news-section {
        padding: var(--mobile-section-padding);
    }
}
.news-section .news-other {
    margin-top: 5rem;
}
@media (max-width: 1024.98px) {
    .news-section .news-other {
        margin-top: 2.5rem;
    }
}
.news-other .news-other-title {
    margin-bottom: 3.75rem;
    border-left: 5px solid var(--secondary-color);
    padding-left: .9375rem;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 2.5rem;
}
@media (max-width: 1024.98px) {
    .news-other .news-other-title {
        margin-bottom: 1.5rem;
        font-size: 1.725rem;
        line-height: 2rem;
    }
}
.news-other .swiper-slide .view-more {
    margin-top: 1.5rem;
}
/* End News-Event Page */
/* Start Products */
.products-section .products-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991px) {
    .products-section .products-wrapper {
        flex-direction: column;
    }
}
.products-section .sidenav-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
@media (max-width: 991px) {
    .products-section .sidenav-col {
        padding-bottom: 1.52344rem;
        max-width: 100%;
    }
}
.sidenav-col .hamburger .line {
    background-color: #fff;
}
.sidenav-item-title {
    margin-bottom: 1.5rem;
    padding: 0 1.875rem .625rem;
    color: var(--secondary-color);
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.sidenav-item-title::before {
    content: "";
    position: absolute;
    bottom: .3125rem;
    left: 1.875rem;
    background-color: var(--secondary-color);
    width: 1.875rem;
    height: .3125rem;
}
[dir="rtl"] .sidenav-item-title::before {
    left: 0;
    right: 1.875rem;
}
.sidenav-item {
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .05);
    padding: 1.875rem 0;
}
@media (min-width: 992px) {
    .sidenav-category-item .sidenav-item-title .icon-hidden {
        display: none;
    }
}
@media (max-width: 991px) {
    .sidenav-category-item {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
    }
    .sidenav-category-item .sidenav-item-title,
    .sidenav-category-item .sidenav-item-title .icon {
        -webkit-box-align: center;
        -ms-flex-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        color: #fff;
    }
    .sidenav-category-item .sidenav-item-title {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 0;
        background-color: var(--secondary-color);
        padding: 8px 15px;
    }
    .sidenav-category-item .sidenav-item-title .icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
    }
    .sidenav-category-item .sidenav-body {
        max-height: 0;
    }
}
.sidenav-category-item .sidenav-body {
    overflow: hidden;
    transition: max-height .5s ease-out;
}
.sidenav-category-item .sidenav-body.visible {
    max-height: 500px;
}
.sidenav-category-list > ul {
    padding: 0;
    margin: 0;
}
.sidenav-category-list > ul li .zone-child-1 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 1.875rem;
    padding: .9375rem 0;
    color: #999;
}
@media (max-width: 991px) {
    .sidenav-category-list > ul li .zone-child-1 {
        margin: 0 1.52344rem;
        padding: .765rem 0;
    }
}
@media (max-width: 991px) {
    .zone-child-1 a {
        font-size: .8125rem;
    }
}
.zone-child-1 a:hover {
    text-decoration: underline;
}
.sidenav-category-list a.active {
    color: var(--secondary-color);
    text-decoration: underline;
}
.sidenav-category-list > ul li:not(:last-child) .zone-child-1 {
    border-bottom: 1px solid #cdcdcd;
}
@media (min-width: 1024.98px) {
    .prodcut-box {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}
.product-box-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: -1.875rem;
    margin-left: -1.875rem;
    opacity: 1;
    transition: opacity var(--main-transition) ease;
}
@media (min-width: 992px) {
    .product-box-wrapper {
        padding: 0 0 1.875rem 1.875rem;
    }
    [dir="rtl"] .product-box-wrapper {
        padding: 0 1.875rem 1.875rem 0;
    }
}
@media (min-width: 577px) and (max-width: 991px) {
    .product-box-wrapper {
        justify-content: center;
    }
}
.product-box-wrapper {
    margin-bottom: -1.875rem;
    margin-left: -1.875rem;
}
[dir="rtl"] .product-box-wrapper {
    margin-left: 0;
    margin-right: -1.875rem;
}
.product-box-wrapper .product {
    padding: 0 0 1.875rem 1.875rem;
}
[dir="rtl"] .product-box-wrapper .product {
    padding: 0 1.875rem 1.875rem 0;
}
@media (min-width: 768px) {
    .product-box-wrapper .product {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
        align-self: stretch;
        padding: 0 0 1.875rem 1.875rem;
    }
}
@media (max-width: 767px) {
    .product-box-wrapper .product {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 0 1.875rem 1.875rem;
    }
}
@media (max-width: 576px) {
    .product-box-wrapper .product {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0 1.875rem 1.875rem;
    }
}
.product-box-wrapper .product-item,
.product-other .product-item {
    border: 1px solid #f6f6f6;
}
@media (min-width: 1024.98px) {
    .product-box-wrapper .product-item:hover,
    .product-other .product-item:hover {
        -webkit-box-shadow: 0 5px 10px 0 rgba(0, 31, 81, .06);
        box-shadow: 0 5px 10px 0 rgba(0, 31, 81, .06);
        border-color: var(--secondary-color);
    }
}
.product-box {
    width: 100%;
}
/* End Products */
/* Start Product Page */
.product-section .product-detail-top {
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .15);
    background-color: #f6f6f6;
}
.product-section .product-detail-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
}
.product-section .product-image-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
@media (max-width: 1024.98px) {
    .product-section .product-image-wrapper {
        max-width: 100%;
    }
}
.product-section .product-images {
    background: #fff;
    padding: 0 3.75rem 1.875rem;
}
@media (max-width: 1024.98px) {
    .product-section .product-images {
        padding: 1.875rem;
    }
}
.product-section .product-images-slide .img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1024.98px) {
    .product-section .product-images-slide .img {
        height: 400px;
    }
}
@media (min-width: 1025px) and (max-width: 1199px) {
    .product-section .product-images-slide .img {
        height: 350px;
    }
}
.product-section .product-images-slide .img img {
    max-height: 300px;
    vertical-align: middle;
    max-width: 100%;
    width: fit-content;
}
.product-section .product-thumb-slide {
    position: relative;
}
.product-section .product-thumb-slide .swiper-wrapper {
    justify-content: center;
}
.product-section .product-detail-attr .tabs-nav li a,
.product-section .product-thumb-slide .img {
    -webkit-transition: all var(--main-transition);
    -o-transition: var(--main-transition) all;
    transition: all var(--main-transition);
    border: 1px solid #cdcdcd;
}
.product-section .product-thumb-slide .img {
    position: relative;
    cursor: pointer;
    padding-top: 90%;
}
.product-section .product-thumb-slide .img img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90%;
    max-width: 100%;
    vertical-align: middle;
    width: fit-content;
}
.product-section .product-thumb-slide .swiper-slide-thumb-active .img {
    border-color: var(--secondary-color);
}
.product-section .product-thumb-slide .swiper-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
}
@media (max-width: 1024.98px) {
    .product-section .product-thumb-slide  .swiper-btn.swiper-prev {
        right: 96.5%;
    }
    .product-section .product-thumb-slide  .swiper-btn.swiper-next {
        left: 96.5%;
    }
}
@media (max-width: 991px) {
    .product-section .product-thumb-slide  .swiper-btn.swiper-prev {
        right: 95.4%;
    }
    .product-section .product-thumb-slide  .swiper-btn.swiper-next {
        left: 95.4%;
    }
}
@media (max-width: 767px) {
    .product-section .product-thumb-slide .swiper-btn {
        display: none;
    }
}
@media (max-width: 1024.98px) {
    .ruby-txt {
        margin-top: 50px;
    }
}
@media (max-width: 767px) {
    .ruby-txt {
        margin-top: 30px;
    }
}
.product-section .product-content {
    width: 100%;
}
@media (min-width: 1024.98px) {
    .product-section .product-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
}
.product-section .product-detail-content {
    padding: 1.875rem;
}
@media (min-width: 1024.98px) {
    .product-detail-content {
        padding: 6.875rem 3.75rem;
    }
}
.product-detail-name {
    position: relative;
    margin-bottom: 1.875rem;
    margin-top: 0;
    padding-bottom: .9375rem;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.375;
}
.product-detail-brief {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: .75rem;
    color: #333;
    line-height: 2.1875rem;
}
@media (max-width: 767px) {
    .product-detail-name {
        font-size: 1.4218901rem;
        padding-bottom: 0.7617rem;
        margin-bottom: 1.5234rem;
        line-height: 1.2;
    }
    .product-detail-brief {
        font-size: 0.8125rem;
        padding-bottom: 0.6094rem;
        margin-bottom: 2.03125rem;
        line-height: 1.825rem;
    }
}
.product-detail-brief span {
    display: block;
    font-weight: bold;
}
.product-detail-attr .tabs-nav,
.product-detail-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.btn.background-main {
    color: #fff;
    transition: var(--main-transition);
}
.btn-contact:hover {
    background-color: var(--main-color);
}
.background-main {
    background-color: var(--secondary-color);
}
@media (max-width: 767px) {
    .product-detail-content-bottom .btn {
        font-size: 0.8125rem;
        height: 2.28125rem;
        min-width: 8.125rem;
    }
}
.product-detail-content-bottom .product-calc {
    margin-left: 1.875rem;
}
[dir="rtl"] .product-detail-content-bottom .product-calc {
    margin-left: 0;
    margin-right: 1.875rem;
}
.product-detail-content-bottom button {
    border: 0;
    background: #fff;
    width: 2.8125rem;
    height: 2.8125rem;
    color: #999;
    font-size: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--main-transition);
}
.product-detail-content-bottom button:hover {
    color: var(--secondary-color);
}
.product-detail-content-bottom .pdf:hover span {
    color: var(--secondary-color);
}
.product-detail-content-bottom .pdf {
    position: relative;
    display: flex;
    align-items: center;
}
[dir="rtl"] .product-detail-content-bottom .pdf {
    margin-right: 1.875rem;
}
[lang="en"] .product-detail-content-bottom .pdf {
    margin-left: 1.875rem;
}
.product-detail-content-bottom .pdf::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
@media (max-width: 767px) {
    .product-detail-content-bottom .pdf::before {
        width: 2.28125rem;
        height: 2.28125rem;
    }
}
.product-detail-content-bottom .pdf span {
    z-index: 2;
    transition: var(--main-transition);
}
@media (max-width: 767px) {
    .product-detail-content-bottom .pdf span {
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) {
    .product-detail-content-bottom button {
        width: 2.28125rem;
        height: 2.28125rem;
    }
    .product-detail-content-bottom button span i {
        font-size: 1.2rem;
    }
}
.product-section .product-detail-attr {
    margin-top: 3.75rem;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
    .product-section .product-detail-attr {
        margin-top: 2.5rem;
        padding-bottom: 1.9rem;
    }
}
.product-detail-attr .tabs-nav {
    border-bottom: 1px solid var(--secondary-color);
    overflow-x: auto;
    padding: 0;
    margin: 0;
}
.product-detail-attr .tabs-nav li {
    display: inline-block;
}
.product-detail-attr .tabs-nav li.active a {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
}
.product-detail-attr .tabs-nav li a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    padding: 0 .9375rem;
    min-width: 20.625rem;
    height: 3.125rem;
    color: #666;
    font-size: 1.5rem;
    font-weight: 800;
}
@media (max-width: 767px) {
    .product-detail-attr .tabs-nav li a {
        padding: 0 1.5234rem;
        min-width: auto;
        font-size: 1.0156rem;
        text-align: center;
        white-space: nowrap;
        height: 40px;
    }
}
.product-detail-attr .tab-content {
    background-color: #f6f6f6;
    padding: 3.125rem 4.6875rem;
}
@media (max-width: 1024.98px) {
    .product-detail-attr .tab-content {
        padding: 1.875rem;
    }
}
@media (max-width: 767px) {
    .product-detail-attr .tab-content {
        padding: 1.5234rem;
    }
}
.product-detail-attr .tab-content .expand-content {
    max-height: 480px;
}
.expand-content {
    overflow: auto;
}
.article-content {
    line-height: 1.5;
}
@media (max-width: 767px) {
    .product-detail-attr .article-content {
        overflow-x: auto;
    }
}
.article-content ul {
    list-style: disc;
    margin: 0;
}
.article-content > ul {
    padding-left: 1.25rem;
}
@media (max-width: 767px) {
    .article-content ul li,
    .article-content p {
        font-size: 0.8125rem;
    }
}
.article-content>*+* {
    margin-top: 1rem;
}
.article-content .tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.article-content .tools span:first-of-type {
    margin-left: .5rem;
}
[dir="rtl"] .article-content .tools span:first-of-type {
    margin-left: 0;
    margin-right: 1.3rem;
}
.article-content .tools span:not(:last-of-type) {
    margin-right: 1.3rem;
}
[dir="rtl"] .article-content .tools span:nth-of-type(2) {
    margin-right: 0;
}
[dir="rtl"] .article-content .tools span:not(:last-of-type) {
    margin-left: 1.3rem;
}
.article-content .tools span {
    font-size: 1.4rem;
    color: var(--secondary-color);
}
@media (max-width: 767px) {
    .article-content .tools span {
        font-size: 1.2rem;
    }
    .article-content .tools span:not(:last-of-type) {
        margin-right: 1rem;
    }
    [dir="rtl"] .article-content .tools span:not(:last-of-type) {
        margin-left: 1rem;
    }
    [dir="rtl"] .article-content .tools span:first-of-type {
        margin-right: 1.3rem;
    }
}
.article-content .tools .sponage img,
.article-content .tools .spray-gun img,
.article-content .tools .putty-knife img,
.article-content .tools .trowel img {
    height: 22px;
}
.article-content .tools .sponage {
    display: flex;
    align-items: center;
}
.article-content .tools .trowel {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .article-content .tools .sponage img {
        width: 1.2rem;
    }
    .article-content .tools .trowel img {
        width: 1.55rem;
    }
}
.product-section .product-other {
    margin-top: 3.75rem;
}
@media (max-width: 1024.98px) {
    .product-section .product-other {
        margin-top: 3.75rem;
    }
}
.product-other .title-small {
    margin-bottom: 2rem;
}
/* End Product Page */
/* Start Customer Support */
.subnav {
    border-bottom: 1px solid #e1e1e1;
}
.subnav ul {
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}
.subnav ul li {
    display: inline-block;
}
.subnav ul li.active a,
.subnav ul li:hover a {
    color: var(--secondary-color);
}
.subnav ul li+li {
    margin-left: 1.875rem;
}
[dir="rtl"] .subnav ul li+li {
    margin-left: 0;
    margin-right: 1.875rem;
}
@media (max-width: 767px) {
    .subnav ul li+li {
        margin-left: 1.3rem;
    }
    [dir="rtl"] .subnav ul li+li {
        margin-left: 0;
        margin-right: 1.3rem;
    }
}
.subnav ul li a {
    align-items: center;
    color: #666;
    font-weight: 500;
    line-height: 1.5rem;
}
@media (max-width: 767px) {
    .subnav ul li a {
        font-size: .8125rem;
    }
}
.customer-support-sec .customer-support-m {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .customer-support-sec .customer-support-m {
        padding: var(--mobile-section-padding);
    }
}
.customer-support-m .policy-content {
    background-color: #f6f6f6;
    padding: 1.875rem;
    color: #333;
}
.customer-support-m .section-title {
    margin-bottom: 2.25rem;
}
@media (max-width: 767px) {
    .customer-support-m .section-title {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-bottom: 1.3rem;
    }
}
/* Start Inquiry Form */
.inquiry-form-sec {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .inquiry-form-sec {
        padding: var(--mobile-section-padding);
    }
}
.inquiry-form-sec .justify-center {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
}
@media (min-width: 1024.98px) {
    .inquiry-form-sec .justify-center .flex-form {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
}
.inquiry-form-sec .section-title {
    margin-bottom: 2.25rem;
}
@media (max-width: 767px) {
    .inquiry-form-sec .section-title {
        font-size: 1.725rem;
        line-height: 2rem;
        margin-bottom: 1.3rem;
    }
}
.inquiry-form-sec .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.25rem;
}
.inquiry-form-sec .form-group label {
    margin-bottom: .75rem;
    width: 100%;
    color: #333;
    font-size: 1.125rem;
    font-weight: 500;
}
@media (max-width: 1024.98px) {
    .inquiry-form-sec .form-group label {
        font-size: .9125rem;
    }
}
.inquiry-form-sec .form-group input[type=text],
.inquiry-form-sec .form-group textarea {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #cdcdcd;
    padding: 0 1.25rem;
    height: 3.5rem;
    font-size: .875rem;
    line-height: 1.5;
}
@media (max-width: 1024.98px) {
    .inquiry-form-sec .form-group input[type=text],
    .inquiry-form-sec .form-group textarea {
        font-size: .8125rem;
        height: 2.85rem;
    }
}
.inquiry-form-sec .fa-exclamation-triangle {
    width: 100%;
}
.inquiry-form-sec .form-group textarea {
    padding: .625rem 1.25rem;
    height: 15.3125rem;
    resize: none;
}
.inquiry-form-sec .frm-btnwrap label {
    display: none;
}
.inquiry-form-sec .frm-btnwrap input[type=submit] {
    cursor: pointer;
    border: 0;
    background-color: var(--secondary-color);
    width: 13.75rem;
    height: 3.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 1024.98px) {
    .inquiry-form-sec .frm-btnwrap input[type=submit] {
        width: 11rem;
        height: 2.5rem;
        font-size: .8125rem;
    }
}
.frm-btn-reset {
    display: none;
}
/* End Inquiry Form */
/* Start Color Search */
.color-search {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .color-search {
        padding: var(--mobile-section-padding);
    }
}
.color-search-flex {
    display: flex;
    flex-flow: row wrap;
}
.color-search-flex .flex-left {
    align-self: stretch;
    width: 100%;
}
@media (min-width: 1024.98px) {
    .color-search-flex .flex-left {
    flex: 0 0 25%;
    max-width: 25%;
    height: 100%;
    }
}
.selected-color-list-wrap {
    height: 100%;
}
@media (max-width: 1024.98px) {
    .selected-color-list-wrap {
        -webkit-transition: all .3s;
        -o-transition: .3s all;
        position: fixed;
        top: 0;
        left: -320px;
        z-index: 9999;
        transition: all .3s;
        background: #fff;
        padding: 15px;
        width: 280px;
        pointer-events: none;
    }
}
@media (min-width: 1024.98px) {
    .hidden-desktop {
        display: none;
    }
}
@media (max-width: 1024.98px) {
    .selected-color-list-wrap .close {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 0;
        left: 100%;
        align-items: center;
        justify-content: center;
        background: #999;
        width: 40px;
        height: 40px;
        color: #fff;
        font-size: 2rem;
    }
}
@media (max-width: 1024.98px) {
    .selected-color-list-wrap.open {
        left: 0;
        pointer-events: auto;
    }
}
.selected-color-list {
    padding-right: 15px;
    height: 46.875rem;
    overflow-y: auto;
}
[dir="rtl"] .selected-color-list {
    padding-right: 0;
    padding-left: 15px;
}
.selected-color-list::-webkit-scrollbar {
    border-radius: 2.5px;
    background: #e1e1e1;
    width: 5px
}
.selected-color-list::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background: #999
}
@media (max-width: 1024.98px) {
    .selected-color-list {
        height: auto;
    }
}
.selected-color-item .color-pallete {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 15px 15px 0;
    height: 11.25rem;
}
.selected-color-item .color-popBtn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-transition: all .3s;
    -o-transition: .3s all;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    margin-left: 10px;
    border-radius: 50%;
    background: #fff;
    width: 32px;
    height: 32px;
}
.selected-color-item .color-popBtn.color-copy::before {
    content: "\ECD5";
}
@media (min-width: 1024.98px) {
    .selected-color-item .color-popBtn {
        opacity: 0;
    }
}
@media (min-width: 1024.98px) {
    .selected-color-item:hover .color-popBtn {
        opacity: 1;
    }
}
.selected-color-item .color-popBtn::before {
    font-family: remixicon;
    font-size: 16px;
}
.selected-color-item .color-popBtn.color-fullscreen::before {
    content: "\ED9C";
}
.selected-color-item .color-info {
    padding: 10px 16px;
}
.selected-color-item .color-info strong {
    display: block;
    font-size: 1.5rem;
    line-height: 2rem;
}
.selected-color-item .color-info span {
    display: block;
}
.color-search-flex .flex-right {
    width: 100%;
    align-self: stretch;
}
@media (min-width: 1024.98px) {
    .color-search-flex .flex-right {
        flex: 0 0 75%;
        width: 100%;
        max-width: 75%;
        align-self: stretch;
        padding: 0 0 1.875rem 1.875rem;
        height: 100%;
    }
    [dir="rtl"] .color-search-flex .flex-right {
        padding: 0 1.875rem 1.875rem 0;
    }
}
@media (max-width: 1024.98px) {
    .color-search-flex .flex-right p {
        font-size: .8125rem;
    }
}
.search-color-contain {
    height: 100%;
}
@media (min-width: 1024.98px) {
    .search-color-contain {
        padding-left: 2.8125rem;
    }
}
.para span {
    font-size: 48px;
}
@media (max-width: 1024.98px) {
    .para span {
        font-size: 26px;
    }
}
.paro span {
    font-size: 18px;
}
@media (max-width: 1024.98px) {
    .paro span {
        font-size: 12.4px;
    }
}
.paragraph i {
    font-size: 20px;
    color: var(--secondary-color);
}
.search-color-input {
    position: relative;
}
.search-color-input input {
    border: 0;
    border-bottom: 1px solid #f6f6f6;
    padding-left: 40px;
    width: 100%;
    height: 40px;
    font-size: 16px;
}
@media (max-width: 1024.98px) {
    .search-color-input input {
        font-size: .8125rem;
    }
}
.search-color-catalogues .tabs-nav {
    display: flex;
    margin-bottom: 1.625rem;
    padding: 0;
    margin-top: 0;
}
@media (max-width: 1024.98px) {
    .search-color-catalogues .tabs-nav {
        margin-bottom: 1.3125rem;
        justify-content: center;
    }
}
.search-color-catalogues .tabs-nav li a {
    color: #999;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 1024.98px) {
    .search-color-catalogues .tabs-nav li a {
        font-size: .8125rem;
    }
}
.search-color-catalogues .tabs-nav li.active a {
    color: var(--text-color);
}
.search-color-catalogues .tabs-nav li+li {
    margin-left: 1.875rem;
}
[dir="rtl"] .search-color-catalogues .tabs-nav li+li {
    margin-left: 0;
    margin-right: 1.875rem;
}
@media (max-width: 1024.98px) {
    .search-color-catalogues .tabs-nav li+li {
        margin-left: 1.5234375rem;
    }
    [dir="rtl"] .search-color-catalogues .tabs-nav li+li {
    margin-left: 0;
    margin-right: 1.5234375rem;
    }
}
.search-color-catalogues .tabs-nav li+li::before {
    padding-right: 1.875rem;
    color: #999;
    content: "|";
}
[dir="rtl"] .search-color-catalogues .tabs-nav li+li::before {
    padding-right: 0;
    padding-left: 1.875rem;
}
@media (max-width: 1024.98px) {
    .search-color-catalogues .tabs-nav li+li::before {
        padding-right: 1.5234375rem;
    }
    [dir="rtl"] .search-color-catalogues .tabs-nav li+li::before {
    padding-right: 0;
    padding-left: 1.5234375rem;
}
}
.popup-color {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.popup-color .popup-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.popup-color .btn-close {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
}
.popup-color .color-screen {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.popup-color .color-info,
.popup-color .color-popBtn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.popup-color .color-info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 0 1.875rem;
    min-height: 60px;
}
@media (max-width: 1024.98px) {
    .popup-color .color-info {
        padding: 0 15px;
    }
}
.popup-color .color-title strong {
    margin-right: 1.25rem;
    font-size: 1.5rem;
    line-height: 2rem;
}
@media (max-width: 1024.98px) {
    .popup-color .color-title>* {
        display: block;
    }
}
.popup-color .color-title span {
    font-size: 1.125rem;
    font-weight: 500;
}
@media (max-width: 576px) {
    .popup-color .color-popBtn {
        font-size: 0;
    }
}
.popup-color .color-popBtn span {
    margin-right: .625rem;
    font-size: 1.5rem;
}
.color-list-wrap {
    padding-top: 4px;
    padding-right: 3rem;
    padding-left: 4px;
    min-height: 7.4375rem;
    max-height: 28.125rem;
    overflow-y: auto;
}
[dir="rtl"] .color-list-wrap {
    padding-left: 3rem;
    padding-right: 4px;
}
.color-list-wrap::-webkit-scrollbar {
    border-radius: 2.5px;
    background: #e1e1e1;
    width: 5px
}
.color-list-wrap::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background: #999
}
@media (max-width: 768.98px) {
    .color-list-wrap {
        padding-right: .9375rem;
    }
    [dir="rtl"] .color-list-wrap {
    padding-left: .9375rem;
    }
}
.color-list {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -16px;
    margin-left: -16px;
}
.color-item-wrap {
    padding-bottom: 16px;
    padding-left: 16px;
    width: 14.28571%;
}
@media (max-width: 768.98px) {
    .color-item-wrap {
        width: 25%;
    }
}
.color-select {
    -webkit-transition: all .3s;
    -o-transition: .3s all;
    display: block;
    position: relative;
    transition: all .3s;
    padding-top: 100%;
}
.color-select:hover {
    -webkit-box-shadow: rgba(102, 102, 102, .5) 0 1px 4px, rgba(102, 102, 102, .5) 0 0 0 2px;
    box-shadow: 0 1px 4px rgba(102, 102, 102, .5), 0 0 0 2px rgba(102, 102, 102, .5);
}
.color-select::before {
    -webkit-box-shadow: -1px 2px 1px rgba(212, 212, 212, .4);
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    -webkit-transition-property: width, height;
    -o-transition-property: width, height;
    position: absolute;
    top: 0;
    right: 0;
    transition-duration: .3s;
    transition-property: width, height;
    box-shadow: -1px 2px 1px rgba(212, 212, 212, .4);
    background: #fff;
    background: -o-linear-gradient(225deg, #e4e4e3 45%, #e3e3e3 50%, #fff 56%, #fff 80%);
    background: linear-gradient(225deg, #e4e4e3 45%, #e3e3e3 50%, #fff 56%, #fff 80%);
    width: 0;
    height: 0;
    pointer-events: none;
    content: "";
}
.color-select.selected::before {
    width: 25px;
    height: 25px;
}
/* End Color Search */
/* End Customer Support */
/* Start Terms */
.terms-of-use {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .terms-of-use {
        padding: var(--mobile-section-padding);
    }
}
/* End Terms */
/* Start Privacy */
.privacy-policy {
    padding: var(--main-section-padding);
}
@media (max-width: 767px) {
    .privacy-policy {
        padding: var(--mobile-section-padding);
    }
}
.privacy-policy .text-content li {
    list-style: initial;
}
.privacy-policy .text-content li:not(:first-of-type) {
    margin-top: 1rem;
}
/* End Privacy */
/* Start Contact */
.contact-info-sec {
    padding-bottom: 3.75rem;
}
.contact-wrap {
    padding-top: 1.875rem;
}
.contact-wrap .section-title {
    text-align: center;
    margin-bottom: 2.25rem;
    line-height: 2.625rem;
}
@media (max-width: 767px) {
    .contact-wrap .section-title {
        font-size: 1.725rem;
        line-height: 2rem;
    }
}
.contact-container {
    display: flex;
    border: 1px solid #e1e1e1;
}
@media (max-width: 1024.98px) {
    .contact-container {
        flex-direction: column;
    }
}
.contact-container .contact-m {
    flex: .3;
}
@media (min-width: 768px) {
    .contact-container .contact-m {
        padding: 1.875rem;
    }
}
@media (max-width: 767px) {
    .contact-container .contact-m {
        padding: 1.3rem;
    }
}
.contact-container .list {
    max-height: 25.6875rem;
    overflow-y: auto;
}
@media (min-width: 768px) {
    .contact-container .list {
        padding-right: 1.875rem;
    }
    [dir="rtl"] .contact-container .list {
        padding-right: 0;
        padding-left: 1.875rem;
    }
}
@media (max-width: 767px) {
    .contact-container .list {
        padding-right: 1.3rem;
    }
}
.contact-container .list::-webkit-scrollbar {
    border-radius: 2.5px;
    background: #e1e1e1;
    width: 5px
}
.contact-container .list::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background: var(--secondary-color);
}
.contact-container .single-ele {
    display: flex;
    align-items: center;
}
.contact-container .single-ele .icon-bg {
    display: inline-block;
    margin-right: .625rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    flex-shrink: 0;
    position: relative;
}
[dir="rtl"] .contact-container .single-ele .icon-bg {
    margin-right: 0;
    margin-left: .625rem;
}
@media (max-width: 767px) {
    .contact-container .single-ele .icon-bg {
        margin-right: 0.5078rem;
        width: 1.52375rem;
        height: 1.52375rem;
    }
    [dir="rtl"] .contact-container .single-ele .icon-bg {
        margin-left: 0.5078rem;
    }
}
.contact-container .single-ele .email::before {
    font-family: "Font Awesome 6 Free";
    content: '\f0e0';
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.contact-container .single-ele .phone::before {
    font-family: "Font Awesome 6 Free";
    content: '\f095';
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
[dir="rtl"] .contact-container .single-ele .phone::before {
    content: '\f879';
}
.contact-container .single-ele .location::before {
    font-family: "Font Awesome 6 Free";
    content: '\f3c5';
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.contact-container .single-ele .map::before {
    font-family: "Font Awesome 6 Free";
    content: '\f279';
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.contact-container .first-info,
.contact-container .second-info {
    cursor: pointer;
    padding: 1.875rem;
    line-height: 1.5;
}
.contact-container .first-info {
    background-color: #f3f3f3;
}
.contact-container p {
    font-size: 14px;
}
@media (max-width: 767px) {
    .contact-container p {
        font-size: .8125rem;
    }
}
.contact-container strong {
    font-weight: 500;
}
@media (max-width: 767px) {
    .contact-container strong {
        font-size: .9141rem;
    }
}
.contact-container .space {
    margin: 1.875rem 0 0;
}
.contact-container .second-info {
    margin-top: 1.875rem;
    border-top: 1px solid #f3f3f3;
}
.contact-container .contact-map {
    flex: .7;
}
.contact-container .contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}
.contact-form {
    background: #f3f3f3;
    padding: 3.75rem 4.6875rem;
    margin-top: 1.875rem;
}
@media (max-width: 1024.98px) {
    .contact-form {
        padding: 1.875rem;
    }
}
.contact-form .contact-form-wrap {
    display: flex;
    flex-flow: row wrap;
}
.contact-form .contact-form-wrap .form-group {
    padding: 0 0 1.875rem 1.875rem;
    width: 100%;
}
@media (max-width: 1024.98px) {
    .contact-form .contact-form-wrap .form-group {
        padding: 0 0 1.875rem 0;
    }
}
.contact-form .contact-form-wrap label {
    display: none;
}
@media (min-width: 1024.98px) {
    .contact-form .contact-form-wrap .flex-m {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.contact-form .contact-form-wrap .flex-s {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact-form .contact-form-wrap input[type=text],
.contact-form .contact-form-wrap textarea {
    border: 1px solid #cdcdcd;
    width: 100%;
    font-size: .875rem;
    line-height: 1.5;
}
.contact-form .contact-form-wrap input[type=text] {
    padding: 0 1.25rem;
    height: 3.5rem;
}
@media (max-width: 1024.98px) {
    .contact-form .contact-form-wrap input[type=text] {
        height: 2.85rem;
        font-size: .8125rem;
    }
}
.contact-form .contact-form-wrap .ct-button {
    width: 15.3125rem;
}
@media (max-width: 1024.98px) {
    .contact-form .contact-form-wrap .ct-button {
        padding: 0;
    }
}
.fa {
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
}
.fa-exclamation-triangle {
    color: var(--secondary-color);
    font-family: Montserrat, sans-serif !important;
    font-size: 12px !important;
    line-height: 2.5 !important;
}
.fa-exclamation-triangle::before {
    margin-right: 5px;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
}
[dir="rtl"] .fa-exclamation-triangle::before {
    margin-right: 0;
    margin-left: 5px;
}
.contact-form .fa-exclamation-triangle::after {
    margin-left: 5px;
    content: attr(title);
}
[dir="rtl"] .contact-form .fa-exclamation-triangle::after {
    margin-left: 0;
    margin-right: 5px;
}
.fa-exclamation-triangle[style="display: inline;"] {
    display: block !important;
}
.contact-form .contact-form-wrap textarea {
    padding: .625rem 1.25rem;
    height: 11.25rem;
    resize: none;
}
@media (max-width: 1024.98px) {
    .contact-form .contact-form-wrap textarea {
        font-size: .8125rem;
    }
}
.contact-form .frm-btnwrap input[type=submit] {
    cursor: pointer;
    border: 0;
    background-color: var(--secondary-color);
    width: 15.3125rem;
    height: 3.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 15px;
    min-width: 10rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024.98px) {
    .contact-form .frm-btnwrap input[type=submit] {
        width: 11rem;
        height: 2.5rem;
        font-size: .8125rem;
    }
}
/* End Contact */
/* Start Search */
@media (min-width: 1025px) {
    .search-page {
        padding: 60px 0 130px 0;
    }
}
@media (max-width: 1024.98px) {
    .search-page {
        padding: 150px 0 60px 0;
    }
}
@media (max-width: 767px) {
    .search-page {
        padding: 60px 0 85px;
    }
}
.search-page h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
}
@media (max-width: 991px) {
    .search-page h1 {
        font-size: 24px;
        line-height: 30px;
    }
}
.search-page .form-inline {
    position: relative;
}
.search-page .form-inline::before {
    font-family: "Font Awesome 6 Free";
    content: "\f002";
    position: absolute;
    top: 55%;
    transform: translateY(-30%);
    justify-content: center;
    z-index: 1;
    width: 44px;
    height: 44px;
    pointer-events: none;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}
[dir="ltr"] .search-page .form-inline::before {
    right: 0;
}
[dir="rtl"] .search-page .form-inline::before {
    left: 0;
}
.search-page input[type=text] {
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0 0 0 0 transparent;
    -webkit-transition: .25s cubic-bezier(.4, 0, .2, 1);
    -o-transition: .25s cubic-bezier(.4, 0, .2, 1);
    transition: .25s cubic-bezier(.4, 0, .2, 1);
    outline: 0;
    box-shadow: 0 0 0 0 transparent;
    border: 1px solid #dfe1e5;
    border-radius: 22px;
    background-color: #fff;
    padding-right: 54px;
    padding-left: 20px;
    width: 100%;
    height: 44px;
    color: #333;
    font-size: .875rem;
    font-weight: 400;
}
[dir="rtl"] .search-page input[type=text] {
    padding-right: 20px;
    padding-left: 54px;
}
.search-page input[type=text]:focus {
    -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
    border-color: transparent;
    outline: none;
}
.search-page .search-btn {
    position: absolute;
    top: 0;
    z-index: 2;
    background-color: transparent;
}
[dir="ltr"] .search-page .search-btn {
    right: 10px;
}
[dir="rtl"] .search-page .search-btn {
    left: 10px;
}
.search-page input[type=submit] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-box-shadow: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    box-shadow: none;
    border: 0;
    border-radius: 50%;
    background-color: transparent;
    width: 44px;
    height: 44px;
    font-size: 0;
    user-select: none;
    text-align: center;
}
.flex-htm,
.flex-body {
    height: 100%;
}
.flex-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.flex-content .footer {
    flex-shrink: 0;
}
.search-page .search-results {
    margin-top: 30px;
}
.search-results-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}
.search-results-header h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}
.search-results-header .results-count {
    color: #666;
    font-size: 16px;
    margin: 0;
}
.search-category {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-left: 4px solid var(--category-color, #3498db);
}
[dir="rtl"] .search-category {
    border-left: none;
    border-right: 4px solid var(--category-color, #3498db);
}
.category-header {
    background: linear-gradient(135deg, var(--category-color, #3498db), rgba(52, 152, 219, 0.8));
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.category-header i {
    font-size: 24px;
    opacity: 0.9;
}
.category-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    flex: 1;
}
.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.category-items {
    padding: 0;
}
.search-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.search-item:last-child {
    border-bottom: none;
}
.search-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}
[dir="rtl"] .search-item:hover {
    transform: translateX(-5px);
}
.item-content {
    padding: 25px;
}
.item-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.item-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}
.item-title a:hover {
    color: var(--category-color, #3498db);
}
.item-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}
.item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #888;
}
.item-category {
    background: var(--category-color, #3498db);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 12px;
}
.item-url {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.no-results-icon {
    margin-bottom: 25px;
}
.no-results-icon i {
    font-size: 64px;
    color: #bdc3c7;
}
.no-results h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.no-results p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.search-suggestions {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
[dir="rtl"] .search-suggestions {
    text-align: right;
}
.search-suggestions h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.search-suggestions li {
    color: #666;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}
[dir="rtl"] .search-suggestions li {
    padding-left: 0;
    padding-right: 20px;
}
.search-suggestions li:before {
    content: "•";
    color: var(--category-color, #3498db);
    font-weight: bold;
    position: absolute;
    left: 0;
}
[dir="rtl"] .search-suggestions li:before {
    left: auto;
    right: 0;
}
.search-suggestions li:last-child {
    border-bottom: none;
}
@media (max-width: 767px) {
    .search-results-header h2 {
        font-size: 24px;
    }
    .category-header {
        padding: 15px 20px;
    }
    .category-header h3 {
        font-size: 18px;
    }
    .item-content {
        padding: 20px;
    }
    .item-title {
        font-size: 18px;
    }
    .item-description {
        font-size: 15px;
    }
    .item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .no-results {
        padding: 40px 15px;
    }
    .no-results-icon i {
        font-size: 48px;
    }
    .no-results h3 {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .search-category {
        border-radius: 8px;
    }
    .category-header {
        padding: 12px 15px;
        gap: 10px;
    }
    .category-header i {
        font-size: 20px;
    }
    .category-header h3 {
        font-size: 16px;
    }
    .item-content {
        padding: 15px;
    }
    .item-title {
        font-size: 16px;
    }
    .item-description {
        font-size: 14px;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.search-category {
    animation: fadeInUp 0.6s ease-out;
}
.search-category:nth-child(2) {
    animation-delay: 0.1s;
}
.search-category:nth-child(3) {
    animation-delay: 0.2s;
}
.search-category:nth-child(4) {
    animation-delay: 0.3s;
}
.search-page .modulepager:first-child {
    display: none;
}
.modulepager .pagination {
    display: flex;
    margin-top: 30px;
    padding: 0;
}
/* End Search */