/*
Author       	:	Nilesh Ribbon Industries
Design by		:	Sushan Jariwala (https://sushan.io/)
Template Name	:	Manufacturer of Ribbons and Laces
Version      	:	1.0
*/


/* Font Included */

@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;600;700&display=swap");
@import url("global.css");

/* || General styles */

* {
    outline: none;
    border: none;
    font-family: var(--font-family);
}

body {
    box-sizing: border-box;
    background: var(--bg-light);
    margin: 0;
    padding: var(--p0);
    position: relative;
    height: 100%;
    box-sizing: border-box;
}


/* || Links / Buttons */


/* Anchore tag */

a {
    color: var(--dark);
    text-decoration: none;
    opacity: 1;
    font-size: var(--fs16);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: none;
    color: var(--dark);
}

.hpyerlink {
    color: var(--secondary);
    font-size: var(--fs-16);
    font-weight: var(--fw-4x);
    display: inline-block;
}

.link {
    color: var(--dark);
    font-size: var(--fs18);
    font-weight: var(--fw-6x);
    display: inline-block;
}

.link:after {
    content: "";
    border-bottom: 1px solid var(--bord-primary);
    position: relative;
    width: 30px;
    height: 1px;
    display: flex;
}

.link:hover {
    color: var(--red);
}

.link:hover:after {
    width: 100%;
}

.w100 {
    width: 100%;
}


/* Buttons */

button:hover,
button:focus {
    border: none;
    box-shadow: none;
    outline: none;
}


/* Primary Button */

.button-primary {
    background: var(--bg-secondary);
    color: var(--light);
    box-shadow: 1px 1px 2px #000000 !important;
    border-radius: 5px;
    display: inline-block;
}

.button-primary:hover {
    background: var(--bg-tertiary);
    color: var(--dark);
}

.button-primary.bord {
    background: var(--bg-transparent);
    border: 1px solid var(--bord-primary);
}

.button-primary.bord:hover {
    border: 1px solid var(--bord-light);
    background: var(--bg-light);
    color: var(--dark);
}

.button-primary.round {
    border-radius: 5px;
}


/* Secondary Button */

.button-secondary {
    background: var(--bg-tertiary);
    color: var(--dark);
    box-shadow: 1px 1px 2px #000000 !important;
    border-radius: 5px;
    display: inline-block;
}

.button-secondary:hover {
    background: var(--bg-secondary);
    color: var(--light);
}

.button-secondary.bord {
    border: 1px solid var(--bord-primary);
}

.button-secondary.bord:hover {
    border: 1px solid var(--bord-primary);
    background: var(--bg-light);
    color: var(--dark);
}

.button-secondary.round {
    border-radius: 5px;
}


/* Button Sizes */

.button-lg {
    padding: 10px 30px;
    font-size: var(--fs-lg);
    font-weight: var(--fw-7x);
}

.button-md {
    padding: 7px 20px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-7x);
}

.button-sm {
    padding: 5px 15px;
    font-size: var(--fs-xsm);
    font-weight: var(--fw-7x);
}

.button-lg span,
.button-sm span {
    float: left;
    padding-left: 10px;
}

.button-lg i,
.button-sm i {
    float: left;
}


/* Icons */

.ic {
    width: 20px;
    height: 20px;
    float: left;
}

.ic.enquiry-icon {
    background: url(../images/icons/enquiry-icon.png) no-repeat;
    margin-top: 2px;
}

.ic.amazon-icon {
    background: url(../images/icons/amazon-badge.png) no-repeat;
    margin-top: 2px;
    width: 35px;
    height: 35px;
}

.ic.facebook-icon {
    background: url(../images/icons/socials-icon.png) no-repeat;
    margin-top: 2px;
    width: 35px;
    height: 35px;
}

.ic.instagram-icon {
    background: url(../images/icons/socials-icon.png) -52px 0 no-repeat;
    margin-top: 2px;
    width: 35px;
    height: 35px;
}

.ic.youtube-icon {
    background: url(../images/icons/socials-icon.png) -104px 0 no-repeat;
    margin-top: 2px;
    width: 35px;
    height: 35px;
}

.ic.whatsapp-icon {
    background: url(../images/icons/socials-icon.png) -156px 0 no-repeat;
    margin-top: 2px;
    width: 35px;
    height: 35px;
}


/* Margins */


/* margin 15 */

.mt-15 {
    margin-top: var(--m15);
}

.mb-15 {
    margin-bottom: var(--m15);
}

.ml-15 {
    margin-left: var(--m15);
}

.mr-15 {
    margin-right: var(--m15);
}


/* margin 30 */

.mt-30 {
    margin-top: var(--m30);
}

.mb-30 {
    margin-bottom: var(--m30);
}

.ml-30 {
    margin-left: var(--m30);
}

.mr-30 {
    margin-right: var(--m30);
}


/* margin 50 */

.mt-50 {
    margin-top: var(--m50);
}

.mb-50 {
    margin-bottom: var(--m50);
}

.ml-50 {
    margin-left: var(--m50);
}

.mr-50 {
    margin-right: var(--m50);
}


/* Paddings */


/* padding 15 */

.pt-15 {
    padding-top: var(--m15);
}

.pb-15 {
    padding-bottom: var(--m15);
}

.pl-15 {
    padding-left: var(--m15);
}

.pr-15 {
    padding-right: var(--m15);
}


/* padding 30 */

.pt-30 {
    padding-top: var(--m30);
}

.pb-30 {
    padding-bottom: var(--m30);
}

.pl-30 {
    padding-left: var(--m30);
}

.pr-30 {
    padding-right: var(--m30);
}


/* padding 50 */

.pt-50 {
    padding-top: var(--m50);
}

.pb-50 {
    padding-bottom: var(--m50);
}

.pl-50 {
    padding-left: var(--m50);
}

.pr-50 {
    padding-right: var(--m50);
}


/* || Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}


/* Titles (Small/ Medium/ Large) */

.title-small {
    color: var(--dark);
    font-size: var(--fs-md);
    margin-bottom: var(--m15);
}

.title-medium {
    color: var(--dark);
    font-size: var(--fs-xlg);
    margin-bottom: var(--m30);
}

.title-large {
    color: var(--dark);
    font-size: var(--fs-xxlg);
    margin-bottom: var(--m30);
}


/* Text Transform - Capitalize/ Uppercase/ Lowercase */

.capitalize {
    text-transform: var(--t-capitalize);
}

.uppercase {
    text-transform: var(--t-uppercase);
}

.lowercase {
    text-transform: var(--t-lowercase);
}


/* Text Align - Center/ Left / Right */

.text-center {
    text-align: var(--t-center);
}

.text-left {
    text-align: var(--t-left);
}

.text-right {
    text-align: var(--t-right);
}


/* Text Colors - Dark / Light / Primary / Secondary / Tertiary */

.text-dark {
    color: var(--dark) !important;
}

.text-light {
    color: var(--light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-tertiary {
    color: var(--tertiary) !important;
}


/* Font Sizes (Extra small, Small, Large, Medium, Extra large, Extra large plus) */

.x-small {
    font-size: var(--fs-xsm);
}

.small {
    font-size: var(--fs-sm);
}

.medium {
    font-size: var(--fs-md);
}

.large {
    font-size: var(--fs-lg);
}

.x-large {
    font-size: var(--fs-xlg);
}

.xx-large {
    font-size: var(--fs-xxlg);
}


/* Font Weights (Thin, Light, Regular, Medium, Bold, Black) */

.font-thin {
    font-weight: var(--fw-1x);
}

.font-light {
    font-weight: var(--fw-3x);
}

.font-regular {
    font-weight: var(--fw-4x);
}

.font-medium {
    font-weight: var(--fw-5x);
}

.font-bold {
    font-weight: var(--fw-7x);
}

.font-black {
    font-weight: var(--fw-9x);
}


/* Font Italic */

.font-italic {
    font-style: var(--fs-i);
}


/* Font Strike */

.font-italic {
    font-style: var(--fs-s);
}


/* Pre */

pre {
    font-size: var(--fs-xsm);
}


/* Blockquote */

blockquote {
    padding: var(--p30);
    border-bottom: 2px solid var(--tertiary);
}


/* Paragraph */

p {
    font-size: var(--fs-sm);
    font-weight: var(--fw-4x);
    padding: var(--p0);
    margin: var(--m0);
}


/* Bold Text */

b {
    font-weight: var(--fw-7x);
}


/* Italic Text */

i {
    font-style: var(--fs-i);
}


/* Strike Text */

s {
    text-decoration: var(--fs-s);
}


/* List Inline */

ul.list-inline {
    margin: var(--m0);
    padding: var(--p0);
}

ul.list-inline li {
    display: inline-block;
    padding-right: var(--p10);
    list-style: none;
}

ul.list-inline li:last-child {
    display: inline-block;
}


/* List Inline Block */

ul.list-inline-block {
    margin: 0;
    padding: 0;
}

ul.list-inline-block li {
    width: 100%;
    display: inline-block;
    padding: var(--p0);
    list-style: none;
}

ul.list-inline-block li a {
    display: block;
    line-height: 24px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-5x);
}


/* Custom Grids */

.custom-col {
    float: left;
    padding: var(--p15);
}

.one-col {
    width: 100%;
}

.two-col {
    width: 50%;
}

.three-col {
    width: 33.33333333333333%;
}

.four-col {
    width: 25%;
}

.five-col {
    width: 20%;
}

.six-col {
    width: 16.66666666666667%;
}

.seven-col {
    width: 14.28571428571429%;
}

.eight-col {
    width: 12.5%;
}

.nine-col {
    width: 11.11111111111111%;
}

.ten-col {
    width: 10%;
}

.eleven-col {
    width: 9.090909090909091%;
}

.twelve-col {
    width: 8.333333333333333%;
}


/* Parallax Scroll */

.parallax-scrolling {
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Logo */

.brand {
    height: 110px;
    float: left;
}

.readmore-link {
    color: var(--dark);
    font-weight: var(--fw-7x);
    font-size: var(--fs-md);
    text-transform: var(--t-uppercase);
    text-decoration: none;
    display: inline-block;
}

.readmore-link:after {
    content: "";
    border-bottom: 2px solid var(--tertiary);
    position: relative;
    width: 30%;
    bottom: 0;
    left: 0;
    display: flex;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.readmore-link:hover:after {
    width: 100%;
}


/* || HTML Predefined Tags */


/* Main Header */

header {
    position: absolute;
    z-index: 2;
    width: 100%;
}


/* Nav */

nav {
    background: var(--bg-transparent);
}


/* Section */

section {
    padding: var(--p0);
    float: var(--fl-l);
    width: 100%;
    background: #ffffff;
    z-index: 2;
    padding: 75px 0;
    padding-bottom: 0;
}


/* Article */

article {
    padding: 0 var(--p30);
    margin-top: var(--m15);
    float: left;
}


/* Figure */

figure {
    width: 100%;
}

figure img {
    width: 100%;
}

figure figcaption {
    font-size: var(--fs-20);
}

.section {
    padding: 0 90px;
    z-index: 2;
    width: 100%;
    display: flex;
    margin-left: 0 !important;
}

.section .title {
    float: left;
    width: 100%;
}


/* Home */

section header {
    padding: 0 90px;
    z-index: 2;
    position: absolute;
    width: 100%;
}

#home {
    position: relative;
    background-color: black;
    height: 940px;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
    padding: 0 !important;
}

#home .overlay {
    background: var(--bg-dark);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.6;
    z-index: 1;
}

#home video {
    /*position: fixed;*/
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#home .video-sound-control {
    z-index: 9999;
    position: absolute;
    color: #fff;
    left: 10px;		
    top: 10px;
    cursor: pointer;
}

.video-sound-control .mute-sound {
    background: url(../images/icons/mute-sound.png);
    width: 20px;
    height: 17px;
    background-size: cover;
    position: relative;
    display: block;
}

.video-sound-control .unmute-sound {
    background: url(../images/icons/unmute-sound.png);
    width: 20px;
    height: 17px;
    background-size: cover;
    position: relative;
    display: none;
}

header .enquiry-button {
    float: left;
}

header .social-link {
    margin: 0;
    padding: 0;
    float: left;
    margin-right: var(--m15);
    float: left;
}


/* Pages */

section#pages {
    position: relative;
    background: url(../images/page-title-bg.jpg);
    width: 100%;
    overflow: hidden;
    padding: 0 !important;
}

#pages .overlay {
    background: var(--bg-dark);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
}

.page-title-breadcrumb {
    width: 100%;
    text-align: center;
    display: grid;
}

.page-title-breadcrumb .page-title {
    width: 100%;
    line-height: 100px;
    display: inline-grid;
    text-align: center;
}

.page-title-breadcrumb .page-title h3 {
    font-size: var(--fs-xlg);
    font-weight: var(--fw-7x);
    color: var(--light);
}

.page-title-breadcrumb .breadcrumb {
    width: auto;
    float: left;
    text-align: left;
    margin: 0 auto;
    display: inline-grid;
    background: var(--bg-transparent);
    color: var(--light);
}

.page-title-breadcrumb .breadcrumb ul {
    float: left;
    margin: 0;
    padding: 0;
}

.page-title-breadcrumb .breadcrumb ul li {
    float: left;
    list-style: none;
}

.page-title-breadcrumb .breadcrumb ul li span {
    opacity: 0.5;
}

.page-title-breadcrumb .breadcrumb ul li:first-child span {
    font-weight: var(--fw-7x);
    opacity: 1;
    padding: 0 var(--p10) 0 0;
}

.page-title-breadcrumb .breadcrumb ul li a {
    color: var(--tertiary);
    padding-right: var(--p10);
}

section#pages header {
    position: relative !important;
    padding-bottom: 50px;
}

.typography .area {
    margin: var(--m50) -15px 0 -15px;
    display: inline-flex;
    /*width: 100%;*/
}

.typography .area:last-child {
    margin-bottom: var(--m0);
}

.typography .area img {
    width: 100%;
    border-radius: 10px;
}

.typography .area p {
    margin-top: var(--m15);
}

.typography h3.title {
    background: var(--bg-secondary);
    padding: var(--p15) var(--p10);
    font-size: var(--fs-md);
    color: var(--light);
    font-weight: var(--fw-7x);
    border-radius: 10px 10px 0 0;
}

.typography .fancy {
    background: #2c2a7d;
    width: 100%;
    float: left;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
}

.typography .fancy li {
    margin: var(--m0) !important;
    padding: var(--p10) !important;
    width: 100%;
    line-height: normal;
    border-bottom: 1px solid #3d3b99;
}

.typography .fancy li:last-child {
    border: none;
}

.typography .fancy li h3 {
    margin: var(--m0);
}

.typography .fancy li a {
    text-decoration: none;
    width: 100%;
    color: var(--light);
    padding: 5px;
}

.typography .fancy li a:hover {
    opacity: 1;
    background: var(--bg-tertiary);
    color: var(--dark);
    border-radius: 12px;
}

.typography .form-group {
    display: inline-flex;
}

.typography .form-group label {
    line-height: 48px;
    font-weight: var(--fw-7x);
}

.typography .filter {
    float: left;
    width: 100%;
    display: inline;
}

.typography .filter ul {
    display: block;
    margin: 0 15px;
    padding: 0;
    float: left;
}

.typography .filter ul:last-child {
    float: right;
}

.typography .filter ul li {
    float: left;
    display: -webkit-box;
    padding-right: var(--p15);
}

.typography .filter ul li span {
    float: left;
    position: relative;
    line-height: 40px;
    font-weight: var(--fw-7x);
    margin-right: var(--m15);
}

.typography .filter ul li .form-control {
    display: inline;
}

.typography .pagination li {
    margin: 0;
    padding: 0 !important;
}

.typography .pagination li .page-link {
    color: #040404;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    font-size: var(--fs-sm);
    font-weight: var(--fw-6x);
}

.typography .pagination li .page-link:active,
.typography .pagination li .page-link:focus,
.typography .pagination li .page-link:hover,
.typography .pagination li .page-link.active {
    background: var(--bg-tertiary);
    color: var(--dark);
    box-shadow: none;
}

.typography .pagination .page-item.disabled .page-link {
    color: #6c757d !important;
    pointer-events: none;
    cursor: auto;
    background-color: #e8e8e8 !important;
}

.typography .area.product-list {
    padding: 0px;
    padding-top: 0px;
}

.typography .area .table {
    color: var(--primary);
    border: none;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin: var(--m30) 0;
}

.typography .area .table td {
    border: none;
}

.typography .area .nav-pills {
    float: left;
}

.typography .area .nav-pills .nav-link {
    font-size: var(--fs-sm);
}

.typography .area .nav-pills .nav-link.active {
    color: var(--dark);
    background-color: #f1b300;
    font-weight: var(--fw-7x);
}

.typography .area .tab-content .table {
    margin-top: 0 !important;
}

.mobile-category {
    background: #f1b300;
    border-radius: 10px;
    padding: 5px;
    color: var(--dark);
    float: right;
    position: fixed;
    right: -25px;
    margin-top: 0;
    padding-right: 30px;
    z-index: 9;
    font-weight: var(--fw-7x);
    top: 127px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.close-mobile-category {
    background: url(../images/icons/menu-close-icon.png);
    font-size: var(--fs-sm);
    color: var(--light);
    position: absolute;
    right: 30px;
    top: 8px;
    z-index: 10;
    width: 12px;
    height: 12px;
    background-size: cover;
    display: none;
}

.filter-button {
    background: #ffffff;
    border-radius: 10px;
    padding: 5px;
    color: var(--dark);
    float: right;
    position: fixed;
    left: -25px;
    margin-top: 0;
    padding-left: 30px;
    z-index: 9;
    font-weight: var(--fw-7x);
    top: 200px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.close-filter-button {
    background: url(../images/icons/menu-close-icon-dark.png);
    font-size: var(--fs-sm);
    color: var(--light);
    position: absolute;
    right: 30px;
    top: 13px;
    z-index: 10;
    width: 12px;
    height: 12px;
    background-size: cover;
    display: none;
}


/* News Block */

#news-block {
    background: #eaeaea;
    margin-top: 50px;
    float: left;
    border-radius: 0 0 10px 10px;
    padding-bottom: var(--p30);
}

#news-block article {
    border-bottom: 1px solid #dae2e6;
    padding-bottom: var(--p15);
}

#news-block article:last-child {
    border-bottom: none;
    padding-bottom: var(--p0);
}

#news-block article a {
    color: var(--primary);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: var(--fw-6x);
    line-height: 24px;
    margin-bottom: var(--m10);
    float: left;
    width: 100%;
}

#news-block article a:hover {
    text-decoration: underline;
}


/*.typography img, p, h1,h2,h3,h4,h5,h6{ float:left;  margin:0;  border-bottom:2px solid var(--tertiary);}
.typography img, p{ float:left; width:100%; margin:0; margin-top:15px;}*/


/* Scroll Down to About */

.scroll-to-about {
    left: 0;
    right: 0;
    bottom: 50px;
    margin: auto;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    position: absolute;
    text-align: center;
    width: 50px;
}

.scroll-to-about span {
    color: var(--light);
    letter-spacing: 2px;
    font-size: var(--fs-16);
    text-indent: -2px;
    direction: rtl;
    display: grid;
}

.scroll-to-about .img {
    border-radius: 50px;
    border: 1px solid var(--light);
    display: inline-grid;
    width: 35px;
    height: 35px;
    align-items: center;
    margin: 0 auto;
}

.scroll-to-about .img img {
    width: 15px;
    height: 15px;
    margin: 0 auto;
}

.scroll-to-about:hover>.img img {
    -webkit-animation: scrollArrow 1s infinite;
    animation: scrollArrow 1s infinite;
}

@keyframes scrollArrow {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}


/* Scroll to Top */

.scroll-to-top {
    right: 15px;
    bottom: 50px;
    margin: auto;
    text-align: center;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    display: none;
}

.scroll-to-top span {
    color: var(--dark);
    letter-spacing: 2px;
    font-size: var(--fs-16);
    text-indent: -2px;
    direction: rtl;
    display: grid;
}

.scroll-to-top .img {
    border-radius: 50px;
    border: none;
    display: inline-grid;
    width: 35px;
    height: 35px;
    align-items: center;
    margin: 0 auto;
    background: var(--bg-secondary);
    transform: rotate(180deg);
}

.scroll-to-top .img img {
    width: 15px;
    height: 15px;
    margin: 0 auto;
}

.scroll-to-top:hover>.img img {
    -webkit-animation: scrollArrow 1s infinite;
    animation: scrollArrow 1s infinite;
}

@keyframes scrollArrow {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}


/* Side Menu */

.side-menu-open {
    background: url(../images/icons/menu-icon.png) no-repeat;
    width: 30px;
    height: 15px;
    display: inline-block;
    margin-left: var(--m30);
    margin-top: var(--m10);
}

.side-menu-close {
    background: url(../images/icons/menu-close-icon-dark.png) no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 50px;
    background-size: contain;
    right: 0px;
    position: absolute;
    margin-top: 30px;
    z-index: 2;
}

#side-menu {
    width: 100%;
    height: 100%;
    background: transparent;
    position: fixed;
    z-index: 9;
    top: 0;
    display: none;
    right: -100%;
}

#side-menu .bg-overlay {
    display: none;
    opacity: 0.9;
    background: var(--bg-dark);
    width: 100%;
    height: 100%;
    right: -100%;
}

#side-menu .section {
    background: #ffffff;
    position: fixed;
    width: 30%;
    height: 100%;
    z-index: 2;
    top: 0;
    padding: 0;
    right: -100%;
}

#side-menu .section:after {
    content: "";
    background: url(../images/page-top.png) top left no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    background-size: contain;
    top: 0;
}

#side-menu .section:before {
    content: "";
    background: url(../images/page-bottom.png) bottom right no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    background-size: contain;
    bottom: 0;
}

#side-menu .section ul {
    margin: 0;
    padding: 0;
    margin-top: 110px;
    width: 100%;
    padding: 15px;
    z-index: 2;
}

#side-menu .section ul li {
    display: inline-block;
    width: 100%;
}

#side-menu .section ul li a {
    float: left;
    width: 100%;
    font-size: 18px;
    padding: 0 30px;
    /* border-bottom: 1px solid #eaeaea; */
    color: var(--dark);
    line-height: 50px;
    border-radius: 5px;
}

#side-menu .section ul li.active a {
    background: var(--bg-tertiary);
    color: #2c2a7d;
    font-weight: var(--fw-7x);
}

#side-menu .section p {
    bottom: 0;
    position: absolute;
    font-size: 13px;
}

#page-section {
    position: relative;
    float: left;
    z-index: 0;
}

#page-section .list-inline-block li {
    line-height: 36px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-5x);
    padding-right: var(--p30);
    display: flex;
}

.page-setup {
    background: #ffffff url(../images/page-top.png) top left no-repeat;
    padding-bottom: 75px;
}

.zoomContainer {
    z-index: 2;
}


/* About */

#about {
    background: #ffffff url(../images/page-top.png) top left no-repeat;
    padding-bottom: 75px;
}

.about1 {
    width: 50%;
    float: left;
    position: relative;
    z-index: 1;
}

.about1 img {
    width: 100%;
    object-fit: contain;
}

.about1:after {
    content: "";
    width: 70px;
    height: 100%;
    position: absolute;
    background: url(../images/about-pattern.jpg);
    right: -80px;
    z-index: -1;
}

.about2 {
    width: 60%;
    float: left;
    position: relative;
    left: 326px;
    top: -123px;
    z-index: 1;
}

.about2 img {
    width: 100%;
    object-fit: contain;
    z-index: 2;
    border: none;
    border-top: 10px solid #ffffff;
    border-left: 10px solid #ffffff;
}

.about2:before {
    content: "";
    width: 70px;
    height: calc(100% - 107px);
    position: absolute;
    background: url(../images/about-pattern.jpg);
    left: -80px;
    z-index: -99;
    top: 107px;
}


/* New Product */

#new-arrivals {
    padding: var(--p0);
    padding-bottom: 75px;
}

#new-arrivals .button-primary {
    margin-top: var(--m30);
}

.row.product-list {
    padding: 0 90px;
    padding-top: 50px;
}

.product-list .card {
    margin-right: 30px;
    border-radius: 20px;
    box-shadow: 0 1px 5px #eaeaea;
    cursor: pointer;
    border: none;
    float: left;
    margin-bottom: var(--m50);
    width: var(--w100);
    border: 2px solid #ffcf1e;
    padding: 10px;
    background: transparent;
}

.product-list .card:hover {
    margin-right: 30px;
    float: left;
    box-shadow: 20px 30px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px solid var(--primary);
}

.product-list .card:last-child {
    float: left;
    margin-right: 0px;
}

.product-list .card img {
    border-radius: 10px;
    width: 100%;
}

.product-list .card .content {
    padding: 0;
    text-align: var(--t-center);
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
}

.product-list .card .content .overlay {
    background: transparent;
    opacity: .4;
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    z-index: 1;
    border-radius: 10px;
}

.product-list .card .content:hover .overlay {
    opacity: .8;
}

.product-list .card .content .title-small {
    position: relative;
    margin: auto;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: var(--dark);
    bottom: 0;
    float: left;
    text-align: center;
    margin-top: var(--m15);
    text-align: center;
    width: 100%;
}

.product-list .card .content .hover-data {
    display: none;
    display: none;
    position: relative;
    float: left;
    width: var(--w100);
    margin-bottom: var(--pM30);
    bottom: 0;
    background: transparent;
}

.product-list .card .content .hover-data .button-primary {
    margin-bottom: 70px;
}

.product-list .card:hover>.content .hover-data {
    display: block;
    background: transparent;
    padding: 0;
    left: 0;
    box-shadow: none;
    z-index: 9;
    border-radius: 0 0 10px 10px;
    width: calc(100% - 10px);
    position: absolute;
}


/* Best Selling Product */

#best-sellinig-product {
    padding: var(--p0);
    background: url(../images/showroom-bg.jpg) no-repeat;
    position: relative;
    padding-bottom: 75px;
    background-size: cover;
}

#best-sellinig-product .overlay {
    background: #2c2a7d;
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-table;
}

#best-sellinig-product .section {
    padding-top: 75px;
}

#best-sellinig-product .section .section {
    padding: 0;
}


/* Customer Speak */

#customer-speaks {
    padding: var(--p0);
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
    background: #ffffff url(../images/testimonials-bg-pattern.png) no-repeat 0 100%;
}

#customer-speaks .section .section {
    padding: 0;
}


/* Contact Us */

#contactus {
    background: #ffffff url(../images/page-bottom.png) bottom right no-repeat;
    padding-bottom: 75px;
    z-index: 3;
}

#contactus .section .section {
    padding: 0;
    margin-top: 50px;
}

#contactus .section .section iframe {
    width: 100%;
    margin-top: -20px;
    min-height: 570px;
}

#quick-contact {
    background: var(--bg-light);
    box-shadow: 10px 0px 30px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
}

#quick-contact .form-control {
    margin-bottom: var(--m30);
}

.forms {
    background: var(--bg-light);
    box-shadow: 10px 0px 30px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
}

.forms .form-control {
    margin-bottom: var(--m30);
}


/* Footer */

footer {
    position: relative;
    float: left;
    background: #fff;
    z-index: 1111;
    width: 100%;
    margin: 0;
    padding: 0;
}

footer .section {
    padding: var(--p50) 90px;
}

.footer {
    background: #eaeaea;
    width: 100%;
    float: left;
    margin: var(--m0);
    padding: var(--p0);
}

.footer .footer-section h3 {
    margin-bottom: var(--m30);
}

.footer .footer-section h5 {
    margin-bottom: var(--m0);
}

.footer .footer-section:last-child li {
    margin-bottom: var(--m30);
}

.footer .footer-section p {
    font-size: var(--fs-sm);
}

.copyrights-socials {
    width: 100%;
    background: var(--bg-primary);
    margin: var(--m0);
    color: var(--light);
    display: grid;
    padding: var(--p0);
}

.copyrights-socials .copyrights {
    position: relative;
    float: right;
    line-height: 40px;
    flex: 1;
}

.copyrights-socials .socials {
    float: right;
}


/* Forms */

.form-control {
    border: 2px solid #eeeeee;
    font-size: var(--fs-sm);
    color: var(--dark);
    font-weight: var(--fw-6x);
    border-radius: 7px;
    box-shadow: none;
    height: auto;
    line-height: normal;
    padding: 10px var(--p15);
}

.form-control:focus,
.form-control:active {
    border: 2px solid #2c2a7d;
    box-shadow: 1px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.filter select.form-control {
    padding: 2px var(--p10);
}


/* Slick Slider */

.home-slider-setup {
    z-index: 1;
    bottom: 0;
    top: 50%;
    position: relative;
}

.overview-slider {
    z-index: 1;
    bottom: 0;
}

.overview-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #ffffff;
    border-radius: 10px;
}

.overview-slider .slick-dots li.slick-active {
    width: 20px;
    background: #ed1c24;
}

.overview-slider .slick-dots {
    bottom: -50px;
}

.overview-slider .slick-slide {
    padding: 30px 15px;
    text-align: center;
    margin-right: 15px;
    border: 1px solid #ffcf1e;
    border-radius: 5px;
    max-height: 270px;
    overflow: hidden;
}

.overview-slider .slide-item img {
    margin: 0 auto;
    width: auto;
    height: 40px;
    margin-bottom: var(--m15);
}

.overview-slider .slide-item h4 {
    text-transform: uppercase;
    color: #ffcf1e;
}

.overview-slider .slide-item p {
    font-size: var(--fs-xsm);
    color: var(--light);
}

.slick-slide img {
    display: block;
    display: inli;
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Best Selling Slider */

.slick-next.slick-arrow {
    right: 0px;
}

.slick-prev.slick-arrow {
    z-index: 1;
    left: 0px;
}

.best-selling-slider {
    z-index: 1;
    bottom: 0;
    margin-top: 50px;
}

.best-selling-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #ffffff;
    border-radius: 10px;
    border: none !important;
}

.best-selling-slider .slick-dots li.slick-active {
    width: 20px;
    background: #ed1c24;
}

.best-selling-slider .slick-dots {
    bottom: -50px;
}

.best-selling-slider .slick-slide {
    padding: var(--p0);
    margin: 0 var(--m15);
    background: transparent;
    /* padding-bottom: var(--p15); */
}

.best-selling-slider .slick-slide a {
    padding: var(--p10);
    text-align: center;
    border: 2px solid var(--tertiary);
    border-radius: 10px;
    background: transparent;
    display: block;
}

.best-selling-slider .slick-slide a:hover {
    border: 2px solid var(--primary);
}

.best-selling-slider .slide-item img {
    margin: 0 auto;
    width: 100%;
    max-height: 370px;
    margin-bottom: var(--m15);
    border-radius: 10px;
}

.best-selling-slider .slide-item h4 {
    color: var(--light);
    font-weight: var(--fw-7x);
    margin: var(--m0);
}

.best-selling-slider .slide-item p {
    font-size: var(--fs-xsm);
    color: var(--dark);
}


/* Best Selling Slider */

.customer-speaks-slider {
    z-index: 1;
    bottom: 0;
    margin-top: 50px;
    padding: 0px;
}

.customer-speaks-slider .section {
    padding: 30px !important;
}

.customer-speaks-slider .section:last-child {
    padding-top: 0 !important;
}

.customer-speaks-slider .section p {
    float: left;
    width: 100%;
}

.customer-speaks-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #ffffff;
    border-radius: 10px;
}

.customer-speaks-slider .slick-dots li button:before {
    color: transparent;
}

.customer-speaks-slider .slick-dots li.slick-active {
    width: 20px;
    background: #ed1c24;
}

.customer-speaks-slider .slick-dots {
    bottom: -50px;
}

.customer-speaks-slider .slick-list {
    padding-top: 30px;
}

.customer-speaks-slider .slide-item {
    padding: var(--p0);
}

.customer-speaks-slider .slick-slide .shadow-box {
    padding: var(--p0);
    text-align: center;
    border: none;
    border-radius: 10px;
    background: var(--bg-light);
    padding-bottom: var(--p15);
    min-height: 460px;
}

.customer-speaks-slider .slick-current .shadow-box {
    margin: 0 var(--m30);
    box-shadow: 10px 0px 30px -20px rgba(0, 0, 0, 0.5);
    min-height: 460px;
}

.customer-speaks-slider .slide-item img {
    width: 110px;
    max-height: 110px;
    margin-bottom: var(--m15);
    float: left;
}

.customer-speaks-slider .slide-item h4 {
    color: var(--dark);
    font-weight: var(--fw-7x);
    margin: var(--m0);
    width: calc(100% - 140px);
    text-align: var(--t-left);
    margin-left: var(--m30);
    line-height: 110px;
}

.customer-speaks-slider .slide-item p {
    font-size: var(--fs-md);
    font-weight: var(--fw-6x);
    color: var(--dark);
}


/* Preloader */

body.preloader-site {
    overflow: hidden;
}

.preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

.preloader-wrapper .preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 120px;
}

.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    /*background: url(../images/splash-bg.jpg) 50% no-repeat;*/
    background: #f9c60a;
    z-index: 9999;
}

.loading:after {
    content: "";
    background: url(../images/page-top.png) top left no-repeat;
    width: 100%;
    height: 100%;
    z-index: 11111;
    position: fixed;
}

.loading:before {
    content: "";
    background: url(../images/page-bottom.png) bottom right no-repeat;
    width: 100%;
    height: 100%;
    z-index: 11111;
    position: fixed;
}

.loading .loader {
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 25%;
    text-align: center;
}

.logo-splash:after {
    content: 'WELCOMES YOU';
    position: relative;
    font-size: 36px;
    width: 100%;
    text-align: left;
    color: var(--primary);
    font-weight: var(--fw-7x);
    line-height: 72px;
    float: left;
    text-align: center;
}

.loading .loader img {
    width: 70px;
}

.loading .loadingtext {
    font-size: 24px;
    color: #2c2a7d;
    position: absolute;
    margin: auto;
    font-weight: bold;
    bottom: 18%;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    left: 0;
}

.logo-splash {
    z-index: 1;
    position: absolute;
    z-index: 9;
    width: 60%;
    margin: auto;
    top: 35%;
    left: 0;
    right: 0;
    bottom: 0;
    /*display: inline;*/
    text-align: center;
    max-width: 1100px;
}

.logo-splash img {
    width: auto;
    margin: 0 auto;
}

.loading-logo {
    position: fixed;
    width: 100%;
    height: 100%;
}

.loading-logo div {
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
    text-align: center;
}

#category-menu {
    display: block;
    width: 100%;
}

@keyframes loading {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(360deg);
    }
}

.mobile-pagination {
    display: none;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px !important;
    height: 5px !important;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #020202;
    border: none;
    border-radius: 15px;
}

.slick-dots li.slick-active {
    width: 20px !important;
    background: #ed1c24;
}