/*---- body font ----*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*---- heading font ----*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');


@charset "UTF-8";

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --bg-color: #f2f2f2;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-bg: #000000;
    --heading-font: "EB Garamond", serif;
    --transition: all 0.3s ease 0s;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body,
html {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--black-color);
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    overflow-x: hidden;
}
h1,h2,h3 {
    margin: 0;
    font-family : var(--heading-font);
}
h4,h5,h6 {
    margin: 0;
}
p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--black-color);
}
p:last-child {
    margin-bottom: 0
}
a,
button {
    cursor: pointer;
    text-decoration: none;
    color: var(--black-color);
    transition: var(--transition);
}
a, button, img, input, textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}
a:focus {
    text-decoration: none;
    outline: 0
}
a:hover {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto
}
ul {
    margin: 0;
    padding: 0
}
li {
    list-style: none;
    transition: var(--transition);
}
.form-control {
    padding: 10px 15px;
    height: 40px;
    color: #878787;
    outline: 0;
    border: 1px solid #ced4da;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .25);
}
.section-margin {
    margin: 80px 0;
}
.margin-top {
    margin-top: 80px;
}
.margin-bottom {
    margin-bottom: 80px;
}
.mar-half-top {
    margin-top: 40px;
}
.mar-half-bottom {
    padding-bottom: 40px;
}
.section-padding {
    padding: 80px 0 80px 0;
}
.pad-top {
    padding-top: 80px;
}
.pad-bottom {
    padding-bottom: 80px;
}
.pad-half-top {
    padding-top: 40px;
}
.pad-half-bottom {
    padding-bottom: 40px;
}
.section-heading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
}
.section-heading-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.section-heading {
    margin-bottom: 30px;
}
.main-head {
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    position: relative;
}
.section-heading-center .main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inline-main-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.primary-bg {
    background: var(--primary-color);
}
.secondary-bg {
    background: var(--secondary-color);
}
.main-btn {
    line-height: normal;
    height: 50px;
    padding: 10px 25px;
    border-radius: 0;
    border: 1px solid;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
}
.btn-1 {
    color: var(--white-color);
    border-color: var(--primary-color);
    background: var(--primary-color);
}
.btn-1:hover {
    color: #000000;
    border-color: var(--primary-color);
    background: transparent;
}

.btn-2 {
    color: #000000;
    border-color: var(--white-color);
    background: var(--white-color);
}
.btn-2:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.btn-3 {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}
.btn-3:hover {
    color: var(--black-color);
    border-color: var(--white-color);
    background: var(--white-color);
}

.btn-4 {
    color: var(--black-color);
    border-color: var(--black-color);
    background: var(--white-color);
}
.btn-4:hover {
    color: var(--white-color);
    border-color: var(--black-color);
    background: var(--black-color);
}

.hover-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 600;
}
.hover-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width .3s;
}
.hover-link:hover::after {
    width: 100%;
    transition: width .3s;
}

/*--------------------------------------------
           header section start
--------------------------------------------*/
.inline-menu .container, .inline-menu .container-fluid {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.menu-section {
    padding: 0;
    display: flex;
    align-items: center;
}
.logo img {
    width: 170px;
    height: auto;
}
.main-header {
    background: #fff;
}
.inline-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
header {
    position: relative;
    z-index: 99999;
    width: 100%;
    left: 0;
    background: #fff;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 1%), 0 2px 4px -2px rgb(0 0 0 / 4%);
}
.menu-setting {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hover-line:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    height: 2px;
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
}
.hover-line:hover:before {
    opacity: 1;
    visibility: visible;
}
.search-box {
    display: flex;
    align-items: center;
    width: 50%;
}
.search-box form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}
.search-box input {
    height: 50px;
    width: calc(100% - 125px);
    padding: 5px 15px;
    border: 1px solid #e3e3e3;
    background: #fdfdfd;
}
.search-box .main-btn {
    width: 125px;
}
.top-header-section {
    border-bottom: 1px solid #000;
    padding: 20px 0;
}
.top-header .main-btn span {
    padding-right: 5px;
    font-size: 20px;
}
.top-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.container-fluid {
    padding: 0 220px;
}

@media screen and (min-width: 1024px) and (max-width: 1600px) {
    .container-fluid {
        padding: 0 50px;
    }
    .inline-menu .container-fluid .container-fluid {
        padding: 0 0px !important;
    }
}

/*--------------------------------------------
           header section end
--------------------------------------------*/


/*--------------------------------------------
           banner section start
--------------------------------------------*/

.banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.top-text h2 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.banner:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000000 0%, #000000);
    width: 100%;
    height: 100%;
    opacity: 0.4;
}
.banner .image img  {
    width: 100%;
    height: 800px;
    object-fit: cover;
}
.top-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}
.top-text .main-head {
    color: var(--white-color);
    font-size: 80px;
    line-height: 80px;
}
.banner-content .container, .banner-content .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 65%;
    height: 100%;
}


/*--------------------------------------------
           banner section end
--------------------------------------------*/



/*--------------------------------------------
           Home section start
--------------------------------------------*/
.inline-heading {
    display: flex;
    justify-content: space-between;
}
.product-item h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: .95px;
    text-transform: uppercase;
    margin-top: 15px;
}
.product-item img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}
.browse-video {
    height: 370px;
    width: 100%;
    object-fit: cover;
}
.middle-banner-section {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    position: relative;
}
.left-img img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}
.right-content {
    background: var(--primary-color);
    padding-right: 100px;
    padding-left: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}
.right-content .main-head {
    color: #ffffff;
    font-size: 52px;
    line-height: 45px;
}
.right-content p {
    color: #ffffff;
}
.center-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: auto;
}
.parallax {
    background-image: url(../images/parallax-img.jpg);
    width: 100%;
    height: 800px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.parallax .main-head {
    font-size: 53px;
    line-height: 62px;
    width: 50%;
    color: #fff;
}
.parallax:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000000 0%, #000000);
    width: 100%;
    height: 100%;
    opacity: 0.2;
}
.video-bg-section {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    overflow: hidden;
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.video-wrapper .video .video-btn {
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 100px;
    background-color: #ffffff;
    color: var(--primary-color);
    display: inline-block;
    font-size: 36px;
    position: relative;
    z-index: 1;
}
.video-bg-section:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000000 0%, #000000);
    width: 100%;
    height: 100%;
    opacity: 0.2;
}
.about-grid {
    display: grid;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
    position: relative;
}
.about-item h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 16px;
    letter-spacing: .95px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 15px;
}
.bg-color {
    background: var(--bg-color);
}
.about-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.product-item:hover .browse-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.browse-img {
    position: relative;
    overflow: hidden;
}
.product-item .browse-img:before {
    content: "";
    background: rgb(0 0 0 / .5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}
.product-item:hover .browse-img:before {
    opacity: .4;
}

/*--------------------------------------------
           Home section end
--------------------------------------------*/



/*--------------------------------------------
            Footer Start
--------------------------------------------*/
footer {
    background: var(--footer-bg);
}
footer .main-head {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 40px;
}
.copyright-text {
    font-size: 10px;
    color: #fff;
}
.footer-logo {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}
.footer-logo .logo-img {
    height: 54px;
}
.form-group {
    margin-bottom: 30px;
}
.footer-title {
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #fff;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    line-height: 16px;
    letter-spacing: 1.58px;
    text-transform: uppercase;
}
.footer-widget ul li {
    margin-bottom: 12px;
}
.footer-widget a {
    color: #ffffffc9;
    width: fit-content;
    display: flex;
    align-items: center;
}
.footer-widget a:hover {
    color: #ffffff;
}
.footer-column .footer-item:first-child {
    margin-top: 0;
}
.footer-column .footer-item {
    margin-top: 40px;
}
.row-space-2 {
    padding-left: 0;
}
.footer-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}
.newsletter-box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}
.newsletter-box input {
    height: 50px;
    width: calc(100% - 125px);
    padding: 5px 15px;
    border: 0;
}
.newsletter-section h4 {
    margin-bottom: 30px;
    margin-top: 30px;
    color: #ffffff;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
}
.term-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.newsletter-box .main-btn {
    width: 125px;
}
.term-box label {
    color: #ffffff;
    margin: 0;
}
.product-heading .main-btn {
    background: none;
    border: 0;
}
.footer-social a {
    color: #ffffff;
    font-size: 32px;
}
.logo-social-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-copyright {
    color: #ffffff;
    font-size: 13px;
}
.footer-bottom-item a {
    color: #ffffff;
    font-size: 13px;
}
.footer-bottom-section {
    padding: 20px 0;
    border-top: 1px solid #fff;
    margin-top: 60px;
}
.footer-bottom-link {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}
.footer-bottom-item {
    display: flex;
    align-items: center;
    gap: 15px;
}


/*--------------------------------------------
            Footer End
--------------------------------------------*/

/*--------------------------------------------
        breadcrumb start
--------------------------------------------*/
.breadcrumb-bg {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.breadcrumb-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.breadcrumb-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #000000;
    left: 0;
    top: 0;
    opacity: 0.2;
}
.breadcrumb-content-title {
    color: var(--white-color);
    font-size: 80px;
    line-height: 80px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    position: relative;
}
.breadcrumb-content-menu-items::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background: #ffffff;
    right: 0;
    top: 4px;
    border-radius: 4px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
.breadcrumb-content-menu-items {
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    line-height: 24px;
}
.breadcrumb-content-menu-items:last-child::before {
    display: none;
}
.breadcrumb-content-menu-items:last-child {
    margin-right: 0;
    padding-right: 0;
}
/*--------------------------------------------
        breadcrumb end
--------------------------------------------*/

.inline-inner-icon p {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    margin-top: 10px;
}
.icon-item {
    text-align: center;
}
.inline-inner-icon {
    display: grid;
    width: 100%;
    row-gap: 30px;
    column-gap: 15px;
    grid-template-columns: repeat(5, minmax(0px, 1fr));
}
.collection-grid {
    display: grid;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
}
.category-content-img {
    width: 100%;
    padding: 0 50px;
}
.category-content-img img {
    width: 100%;
}
.category-content-img h4 {
    font-size: 22px;
    margin-top: 20px;
}
.category-details-owl.right-dots .owl-nav .owl-next {
    right: 0;
}
.category-details-owl.right-dots .owl-nav .owl-prev {
    left: 0;
}
.img-text-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.img-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.text-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-grid .section-heading {
    background: #ffffff;
    padding: 60px;
    margin-left: -200px;
    text-align: left;
}
.bg-color-2 {
    background: #fbfbfb;
}

.form-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.form-check label {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
}
.form-check label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #979797;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0%), inset 0 -15px 10px -12px rgb(0 0 0 / 0%);
    padding: 15px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 0;
    top: -1px;
}
.form-check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 12px;
    width: 9px;
    height: 20px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check input:checked + label:before {
    content: '';
    background-color: #000000;
    border: 1px solid #000000;
}
.form-check {
    display: block;
    min-height: 0;
    padding-left: 0;
    margin-bottom: 10px;
}
.form-check:last-child {
    margin-bottom: 0;
}
.filter-sidebar-heading {
    font-size: 20px;
    line-height: 1;
    letter-spacing: .95px;
    color: #000000;
    border-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 25px;
}
.filter-sidebar-item {
    border-top: 1px solid #979797;
    padding: 20px 0 0;
    margin-bottom: 25px;
}
.filter-sidebar .filter-sidebar-item:first-child {
    border-top: 0 solid #979797;
    padding-top: 0;
}
.browser-product-section .collection-grid {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.browser-product-section .collection-grid .product-item .product-item-content h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 5px;
}
.product-item-content p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}
/*----------- Pagination Start -----------*/
.pagination-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}
.pagination {
    margin: 0;
    padding: 0;
    text-align: center
}
.pagination li {
    display: inline
}
.pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 2px 10px;
    color: var(--primary-color);
}
.pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}
.pagination li a.active {
    background-color: var(--primary-color);
    color: #fff;
}
.pagination li a:hover:not(.active) {
    color: #fff;
    background-color: var(--primary-color);
}
/*----------- Pagination End -----------*/

/*----------- product gallery start -----------*/
.product-preview-items img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    overflow-clip-margin: unset;
    object-position: center;
}
.product__media--nav__items--img {
    width: 50px;
    height: 51px;
    object-fit: cover;
    overflow-clip-margin: unset;
    display: block;
    cursor: pointer;
    border: 2px solid #fff;
}
.video-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    background: #ffffff3b;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}
.product__media--nav__items iframe {
    width: 50px;
    height: 50px;
    object-fit: cover;
    overflow-clip-margin: unset;
    display: block;
    cursor: pointer;
    border: 2px solid #fff;
}
.product__media--nav__items .iframe-video {
    width: 50px;
    height: 50px;
    object-fit: cover;
    overflow-clip-margin: unset;
    display: block;
    cursor: pointer;
    border: 2px solid #fff;
    cursor: pointer;
}
/*.product__media--nav__items {
    border: 2px solid #ffffff;
    margin-top: 10px;
    margin-bottom: 1px;
    width: 50px;
    height: 50px;
}*/
.swiper__nav--btn {
    top: 60% !important;
    width: 2rem !important;
    height: 2rem !important;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.swiper__nav--btn:hover {
    background: var(--primary-color);
}
.swiper__nav--btn.swiper-button-prev {
    left: 0;
}
.swiper:hover .swiper__nav--btn {
    opacity: 1;
    visibility: visible;
}
.swiper__nav--btn.swiper-button-next {
    right: 0;
}
.swiper__nav--btn::after {
    content: '' !important;
    background: url(../images/icon/left-arrow-angle.png);
    width: 12px;
    height: 12px;
    font-size: 0;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
}
.swiper__nav--btn.swiper-button-next::after {
    content: '' !important;
    background: url(../images/icon/right-arrow-angle.png);
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    width: 12px;
    height: 12px;
}



.product-details-section {
    display: grid;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.product__media--nav {
    position: absolute !important;
    width: 30%;
    bottom: 30px;
    left: 30px;
}
.zoom-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: #fff;
    font-size: 40px;
}
.details-color-section .product-item img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}
.product-color-owl.right-dots .owl-nav .owl-prev {
    left: 0;
    background: #fff;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.product-color-owl.right-dots .owl-nav .owl-next {
    right: 0;
    background: #fff;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.product-color-owl.right-dots .owl-nav .owl-prev span {
    background: url(../images/icon/arrow-left-black.svg) no-repeat center;
}
.product-color-owl.right-dots .owl-nav .owl-next span {
    background: url(../images/icon/arrow-right-black.svg) no-repeat center;
}
.product-color-owl.right-dots .product-item h4 {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: capitalize;
    margin-top: 10px;
    text-align: center;
}
.color-active:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 20px;
    z-index: 11;
    color: #000000;
    background: #ffffff;
    font-weight: 400;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}
/*----------- product gallery End -----------*/

.product-heading .main-head {
    margin-bottom: 20px;
    margin-top: 15px;
}
.product-heading .main-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
}

/*----------------------- table start ---------------------*/
.table-box tr td:first-child {
    border: 0 solid #ddd;
    padding: 14px 0;
}
.table-box tr td:last-child {
    border: 0 solid #ddd;
    padding: 14px 0;
    text-align: right;
}
.table-box tr {
    border-bottom: 1px solid #808080;
}
.details-faq tr td {
    border: 1px solid #ddd;
    padding: 10px;
}
.table-box td {
    font-size: 14px;
    line-height: 14px;
}
.table-box table {
    width: 100%;
}
.table-box tr td:first-child {
    font-weight: 600;
}
/*----------------------- table end ---------------------*/
.devider {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    margin: 40px 0
}
/*--- details faq start ---*/
.details-faq .accordion {
    width: 100%;
    padding-left: 50px;
}
.details-faq .accordion-item {
    border-radius: 0;
    background: #fff;
    border: 0;
    margin-bottom: 10px;
}
.details-faq .accordion-button:not(.collapsed) {
    box-shadow: 0 0 #ffffff;
    color: #000000;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background: rgb(249 249 249);
    font-size: 18px;
    font-weight: 500;
}
.details-faq .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: 0 0 #ffffff;
}
.details-faq .accordion-body {
    border-top: 0 solid #ced1d3;
    font-size: 15px;
    line-height: 26px;
    padding: 15px 20px;
    text-align: left;
}
.details-faq .accordion-body p {
    font-size: 15px;
    line-height: 26px;
}
.details-faq .accordion {
    --bs-accordion-btn-icon-width: 18px;
    --bs-accordion-btn-icon: url(../images/icon/plus.svg);
    --bs-accordion-btn-active-icon: url(../images/icon/minus.svg);
}
.details-faq .accordion-button {
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    background: rgb(249 249 249);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.details-faq  .accordion-button::after {
    position: absolute;
    right: 20px;
    width: 18px;
    height: 18px;
}
/*--- details faq end  ---*/

.certificates-section {
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 790px;
    width: 100%;
    overflow-x: auto;
}
.certificates-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 180px;
    flex-grow: 1;
    width: 100%;
    margin-right: 20px;
}
.certificates-img {
    border: 0 solid #dee2e6;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.certificates-img img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 156px;
}
.download-item:first-child {
    margin-top: 0;
}
.download-item {
    margin-top: 20px;
}
.download-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.download-box {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e5e5;
    padding: 10px;
    min-width: 300px;
    max-width: 680px;
}
.download-box p {
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 20px !important;
    width: 90%;
}
.download-box i {
    font-size: 24px;
    color: #505050;
}
.download-box p span {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
}
.product-blog-section {
    display: grid;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.product-blog-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
    background: #f9f9f9;
}
.blog-content .main-head {
    margin-bottom: 5px;
}
.blog-content p {
    margin-bottom: 15px;
}
.about-content {
    display: grid;
    align-items: center;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 0 100px;
}
.about-multi-content {
    display: grid;
    align-items: center;
    width: 100%;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.about-multi-content-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.about-multi-content-short-text {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 150px;
    background: var(--primary-color);
}
.about-multi-content-short-text p {
    color: #fff;
}
.contact-form .form-control {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.requred {
    color: red;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: inline-block !important;
}
.contact-form .form, .contact-form .form-input {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form label {
    margin-bottom: 5px;
}
.contact-form .form-input input, .contact-form .form-input select, .contact-form .form-input textarea {
    position: relative;
    width: 100%;
    padding: 8px 15px;
    outline: transparent solid 1px;
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    background: #fcfcfc;
    color: #2c3638;
}
input[type=text], input[type=date]::placeholder {
    font-family: Montserrat, sans-serif;
}
textarea.form-control {
    min-height: 100px;
}
.contact-form-section {
    background: #f9f9f9;
    padding: 50px;
}
.address-box h6 {
    font-size: 20px;
    margin-bottom: 10px;
}
.address-box .address-item {
    position: relative;
}
.address-item i {
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 5px;
}
.address-item a {
    padding-left: 30px;
    width: 30%;
    display: block;
}
.contact-list span {
    font-weight: 600;
}
.contact-list div {
    margin-bottom: 10px;
}
.contact-section-review .main-btn {
    text-transform: capitalize;
    display: block;
    width: 40%;
    text-align: left;
    height: auto;
    padding-left: 15px;
    padding-right: 70px;
    line-height: 22px;
}
.contact-section-review .main-btn span {
    display: block;
}
.contact-section-review i {
    position: absolute;
    right: 15px;
    font-size: 30px;
    top: 14px;
}
.contact-section-review .main-head {
    font-size: 26px;
}
.main-breadcrumbs {
    padding: 8px 0;
    background: #f7f7f7;
}
.main-breadcrumbs ul li, .main-breadcrumbs ul li a {
    font-size: 14px;
}
.main-breadcrumbs ul li {
    padding: 0 10px;
    position: relative;
}
.main-breadcrumbs ul li:first-child {
    padding-left: 0;
}
.main-breadcrumbs ul li:first-child:before {
    display: none;
}
.main-breadcrumbs ul li:before {
    content: "»";
    font-size: 20px;
    left: -6px;
    top: -1px;
    position: absolute;
}

.description h2, .description h3, .description h4, .description h5, .description h6 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}
.description ul, .description ol {
    list-style-type: disc;
}
.description table tr, .description table tr td {
    border: 1px solid #333;
    padding: 10px;
}
.description ul li {
    margin-left: 20px;
    list-style-type: disc;
}
.sidebar-blog-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.sidebar-blog-img img {
    width: 100%;
    height: 95px;
    object-fit: cover;
}
.sidebar-section .devider {
    margin: 15px 0 20px 0;
}
.sidebar-blog-text p {
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.sidebar-blog-item {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.sidebar-blog-item:last-child {
    border-bottom: 0 solid #ebebeb;
    padding-bottom: 0;
    margin-bottom: 0;
}

.accessories-section {
    display: grid;
    width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(3, minmax(0px, 1fr));
}
.accessories-product-text .main-head {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
    margin-top: 15px;
}
.accessories-product-text {
    text-align: center;
}
.accessories-product-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.callbacks_tabs li a {
    display:none;
}
.callbacks_tabs li {
    width: 10px;
    height: 10px;
    background: #ffffff38;
    border: 1px solid #ffffff;
}
.callbacks_tabs li.callbacks_here {
    background: #ffffff;
}
.callbacks_tabs {
    display:none;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    z-index: 11;
    width: 100%;
    gap: 5px;
}

.icon-item img {
    height: 36px;
}

.color-tab-section .inline-heading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.color-tab-section .section-heading {
    margin-bottom: 15px;
}
.color-tab-section .tab-menu {
    max-width: 100%;
    padding: 10px 0px 10px 0px;
}

.video-bg-area {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

/*-------- distributor form start --------*/
h1.form-head {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
}
h5.form-head {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
}
.zcwf_row {
    margin-bottom: 15px;
}
.zcwf_ckbox {
    position: relative;
    top: 0;
    margin-left: 8px;
}
.required-star {
    color: #dc5757;
    font-size: 14px;
    margin-left: -2px;
    font-weight: bold;
}
.career-form label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}
option,select{
    font-family: Montserrat, sans-serif;
}
input[type=text],input[type=date]::placeholder{
    font-family: Montserrat, sans-serif;
}
.submit-btn .btn-btn{
    display: inline-block;
    background-color: #222;
    border: 2px solid #222;
    color: #ffffff;
    padding: 8px 25px;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    line-height: 20px;
    transition: all 200ms;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}
.submit-btn .reset-btn{
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #222;
    color: #222;
    padding: 8px 25px;
    margin-top: 15px;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    transition: all 200ms;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}
.count-span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: block;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 13px;
    background: #111;
}
.form-head {
    padding-left: 30px;
}
.inline-form select {
    width: 20%;
    margin-right: 5px;
}
.inline-form {
    display: flex;
    align-items: center;
}
.requred {
    color: red;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: inline-block !important;
}
.career-form option,select,input {
    height: 40px;
}
.career-form .form-group {
    margin-bottom: 2rem;
}
.form-item {
    margin-bottom: 15px;
}
.file-style input[type=file] {
    display: none;
}
.label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}
.file-style label {
    font-size: 14px;
    border-radius: 0;
    height: 40px;
    padding: 10px 15px;
    border: 1px dashed #dbdbdb;
    width: 100%;
    line-height: 1.25;
    color: #7c7c7c;
    background-color: #f9f9f9;
    text-align: center;
}
.button-inline button{
    display: inline-block;
    background-color: #222;
    border: 2px solid #222;
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 25px;
    margin-top: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 200ms;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}
.button-inline button:hover{
    background-color: transparent;
    border: 2px solid #222;
    color: #222;
}
.button-inline .cancel{
    background: #ffffff;
    color: #222;
    margin-right: 10px;
}
.button-inline .cancel:hover{
    background: #222;
    color: #ffffff;
}
label {
    margin-bottom: 5px;
}
/*-------- distributor form end --------*/

.product-preview-items iframe {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    overflow-clip-margin: unset;
    object-position: center;
}



/*----------------------- table start ---------------------*/
.compare-table table {
    border: 1px solid #000000;
    text-align: center;
    width: 100%;
}
.table-head-text {
    border: 1px solid #000000;
    padding: 15px;
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
}
.table-body-td {
    border: 1px solid #000000;
    padding: 15px;
    font-size: 14px;
    line-height: 20px;
}
.tbody-row:nth-child(odd) {
    background-color: rgb(170 170 170 / .09);
}
.tbody-row:nth-child(even) {
    background-color: #ffffff;
}
@media only screen and (max-width: 1099px) {
    .compare-table {
        overflow-x: auto;
    }
}
/*----------------------- table end ---------------------*/

.waranty-content {
    display: grid;
    align-items: center;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
}
.waranty-img {
    text-align: center;
}
.waranty-img img {
    padding: 0 100px;
}
@media only screen and (max-width:991px) {
    .waranty-img img {
        padding: 0px;
    }
    .waranty-content {
        grid-template-columns: repeat(1, minmax(0px, 1fr));
    }

}
.fancybox-container {
    z-index: 99999 !important;
}
.product-box-grid {
    display: none;
}

/*----------------------- language start ---------------------*/
.vodiapicker {
    display:none;
}

.flag-a {
	padding-left: 0;
	margin-bottom: 0
}
.flag-a img,
.btn-select img {
	width: 30px
}
.flag-a li {
	list-style: none;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 4px;
	padding-right: 4px;
	font-size: 15px;
	font-weight: 300;
	border-bottom: 1px solid #e2e2e2
}
.flag-a li:last-child {
	border-bottom: 0 solid #eee
}

.flag-a li:hover {
	background-color: #efefef;
	color: #111;
	cursor: pointer
}
.flag-a li span,
.btn-select li span {
	margin-left: 0;
	top: 2px;
	position: relative;
	display: inline-block
}
.b {
    display: none;
    width: 38px;
    border: 0 solid rgba(0, 0, 0, .15);
    border-radius: 0;
    background: #e9e9e9;
    z-index: 999;
    position: absolute;
    text-align: left;
    left: 0;
    top: 45px;
}
.btn-select {
	margin-top: 11px;
	width: 50px;
	height: 30px;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	border: 0 solid #111
}
.btn-select li {
	list-style: none;
	float: right;
	color: #111;
	font-size: 16px;
	font-weight: 300;
	cursor: pointer
}
.btn-select:hover li {
	margin-left: 0
}
.btn-select:focus {
	outline: 0
}
.language-select {
	position: relative;
	z-index: 9999;
	right: 0;
    margin-left: 15px;
	top: 0;
}
.lang-select i {
	top: 35%;
	position: absolute;
	right: 7%;
	color: #111;
	font-size: 20px
}
.btn-select li>span::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 5px;
	margin-top: -5px;
	vertical-align: middle;
	border-top: 6px solid #ffffff;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent
}

@media only screen and (max-width:991px) {
	.language-select {
		position: relative;
		z-index: 9999;
		left: 0;
		top: 0
	}

	.btn-select {
		margin-top: 10px;
		height: 25px
	}

	.flag-a img,
	.btn-select img {
		width: 30px
	}

	.lang-select {
		text-align: end
	}
}

/*----------------------- language end ---------------------*/

.product-item p {
    margin-top: 5px;
    font-size: 14px;
}
.stock-text {
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
    background: #009432;
    width: fit-content;
    padding: 10px 15px;
}
.out-of-stock {
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
    background: #F44336;
    width: fit-content;
    padding: 10px 15px;
}

.pro-stock {
    color: #000000;
}
.pro-out-of-stock {
    color: #F44336;
}








