body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
*{
    box-sizing: border-box;
}
:root{
	--primary:#B68948;
	--secondary:#FFB05A;
    --light: #FDF2EC;
    --text: #4E4E4E;
	--white:#ffff;
    --dark: #181003;
}
ul{
    margin: 0 !important;
    padding: 0 !important;
}
li{
    list-style: none;
}
a{
    text-decoration: none !important;
    transition: all 0.4s !important;
}
h1,
h2{
    font-family: 'Abril Fatface', cursive;
}
h3,
h4,
h5{
    font-family: 'Poppins', sans-serif;
}
section{
    padding: 80px 0;
    position: relative;
}
p{
    color: var(--dark);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
}
a {
    color: var(--primary);
    text-decoration: none !important;
    transition: all 0.4s;
}
a:hover {
    color: var(--dark);
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    color: var(--darklight);
    font-size: 16px;
    font-family: var(--font1);
    line-height: 150%;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}
html .container {
    max-width: 1324px;
    margin: 0 auto;
}
.title{
    margin-bottom:30px;
}
.title h2{
    color: var(--dark);
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0;
}
.title h6 {
    color: var(--primary);
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

html .btn {
    background: var(--primary);
    border-radius:50px;
    padding: 0 30px;
    line-height: 42px;
    border: 1px solid transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    transition: all 0.4s;
    text-transform: uppercase;
}
html .btn:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

/* header-css */

.header-main-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky .header-bottom {
    padding: 5px 0px;
}
.sticky .header-main-bar {
    align-items: center;
}
.header-bottom {
    padding: 8px 0;
    transition: all 0.4s;
}
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s;
    background-image: url(../images/header-bg-shap.png);
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-position: right top;
}
.sticky header {
    box-shadow: 0 6px 15px 0 rgb(0 0 0 / 4%);
    background-color:#FDF2EC;
    padding-top: 0;
    padding-bottom: 0;
}
.sticky header nav > ul > li:hover > a {
    color: var(--primary) !important;
}
header nav > ul > li.active > a{
    color: var(--primary);
}
header nav > ul > li.menu-parent.active > a{
    color: var(--primary);
}
.sticky header nav > ul > li.menu-parent > a:hover:after {
    border-color: var(--dark);
}
.sticky header nav > ul > li:hover > a:after {
    opacity: 1;
    border-color: var(--primary);
}
.sticky .contact_us_btn:hover a {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.sticky header nav > ul > li:hover  > a{
    opacity: 1 !important;
    color: var(--primary);
}
.header-logo a {
    display: block;
    max-width: 100px;
}
.header-logo img {
    display: block;
}
header nav > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
header nav > ul > li {
    position: relative;
}
header nav > ul > li + li {
    margin-left: 45px;
}
header nav > ul > li > a {
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.5s !important;
}
header nav > ul > li:hover  > a{
    color: var(--primary);
}
header nav > ul > li.menu-parent > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin: 18px 0 0 8px;
    transition: all 0.4s;
}
header nav > ul > li:hover > a:after {
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}
.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--white);
    left: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translatey(20px);
    visibility: hidden;
    transition: all 0.4s;
}
li:hover > .sub-menu {
    opacity: 1;
    transform: translatey(0);
    visibility: visible;
}
.sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}
.sub-menu ul li {
    margin-bottom: 5px;
}
.sub-menu ul li:last-child {
    margin-bottom: 0;
}
.sub-menu ul li a {
    color: var(--dark);
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    line-height: 120%;
    position: relative;
}
.sub-menu ul li.active a {
    color: var(--primary);
}
.sub-menu ul li a:hover {
    color: var(--primary);
    background: #f5f5f5;
}
.sub-menu ul li.active {
    color: var(--primary);
    background: #FDF2EC;
}
.sub-menu .sub-menu{
    left: 100%;
    top: 0;
}
.sub-menu > ul > li.list-item-parent{
    position: relative;
}
.sub-menu ul > li > a:hover, .sub-menu ul > li:hover > a {
    background-color: #FDF2EC;
    color: var(--primary);
}
.sub-menu ul > li:hover > a:after{
    border-color: var(--primary);
}
.header-navbar {
    margin-left: auto;
    margin-right: 30px;
}
.main {
    position: relative;
}
.sub-menu.sub-menu-inner li.menu-parent > a:after {
    border-right-color: #000;
    border-bottom-color: #000;
    margin: 3px 0 0 8px;
    transition: all 0.4s;
    float: right;
    transform: rotate(-45deg);
}
.sub-menu.sub-menu-inner li.menu-parent{
    position: relative;
}
.sub-menu.sub-menu-inner li.menu-parent > a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    transition: all 0.4s;
}

.scrollToTop {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 110px;
    border-radius: 55px;
    right: 30px;
    line-height: 40px;
    color: var(--white);
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    background: var(--dark);
    z-index: 9;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky .scrollToTop {
    animation-name: bounceInUp;
    opacity: 1;
}
.scrollToTop:hover {
    color: var(--white);
    background-color: var(--primary);
}


/* banner_section */
.banner_img {
    min-height: 604px;
}
.banner_section {
    background-color: #FDF2EC;
    padding: 130px 0 0;
}
.banner_title h1 {
    color: var(--dark);
    font-size: 100px;
    font-weight: 400;
    line-height: 100%;
    margin: 32px 0 50px;
}
.border_paragraph p {
    color: #555;
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
}
.border_paragraph p:before {
    content: "";
    border-left: 2px solid #B68948;
    display: inline-block;
    height: 72px;
    position: absolute;
    left: 0;
}
.btn svg {
    margin-left: 10px;
}
.banner_img a {
    height: 604px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_img:before {
    content: "";
    background-image: url(../images/banner-shape.png);
    height: 604px;
    width: 459px;
    position: absolute;
    z-index: 0;
    right: 0px;
    top: 0px;
    z-index: -1;
}
.banner_section .btn {
    line-height: 48px;
    padding: 0 30px;
    font-weight: 600;
    margin-bottom: 40px;
}
.banner_arrow {
    position: absolute;
    left: 40%;
    top: 20px;
}
.banner-carousel.owl-carousel .owl-nav button {
    height: 50px;
    width: 50px;
    background: var(--dark) !important;
    border-radius: 50px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="16" viewBox="0 0 10 16" fill="none"><path d="M1.5 1L8.5 8L1.5 15" stroke="white" stroke-width="2"/></svg>') !important;  
    background-repeat: no-repeat !important;
    background-position: center center !important;
    margin-right: 15px;
    transition: all 0.4s;
}
.banner-carousel.owl-carousel .owl-nav button:hover{
    background-color: var(--primary) !important;
}
.banner-carousel.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
}
.banner-carousel button.owl-prev span,
.banner-carousel button.owl-next span {
    font-size: 0;
}
.banner-carousel .owl-dots {
    display: flex;
    vertical-align: top;
    margin: -40px 0 0 140px;
    position: relative;
    z-index: 99;
}
.banner-carousel .owl-dots .owl-dot span {
    background-color: var(--dark) !important;
    opacity: 0.1;
    position: relative;
    z-index: 9;
}
.banner-carousel .owl-dots .owl-dot.active span{
    background-color: var(--dark) !important;
    height: 14px;
    width: 14px;
    opacity: 1;
}

.banner-carousel .owl-nav {
    margin-top: -90px !important;
    display: flex;
    position: relative;
    z-index: 8;
}
/* about_section */

.about_section {
    background-image: url("../images/about-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -80px;
    overflow: hidden;
    padding: 160px 0 100px;
}
.years_counter {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0 20px 20px;
}
.years_counter h3 {
    color: var(--dark);
    font-size: 80px;
    font-weight: 700;
    margin-right: 12px;
    z-index: 1;
}
.years_counter h5 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 500; 
}
.years_counter h3:before {
    content: "";
    position: absolute;
    border: 3px solid var(--primary);
    left: 0;
    bottom: 0px;
    top: 0;
    z-index: -1;
    width: 143px;
}

/* product_section */

.prodduct_section{
    padding: 125px 0 175px;
}
.products_box {
    display: flex;
    align-items: center;
    border-radius: 20px;
    border: 2px solid #EDDDC6;
    background: #FFF;
    box-shadow: 0px 10px 44px 0px rgba(0, 0, 0, 0.08);
    padding: 15px;
}
.products_box  .img a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.products_box .img a {
    height: 340px;
    width: 340px;
    display: flex;
    background-color: #FBF2EB;
    padding: 55px;
    border-radius: 10px;
    transition: all 0.4s;
}
.products_box .img a img:hover{
    transform: scale(1.1);
}
.products_box .img a img{
    transition: all 0.4s;
}
.products_box .text {
    padding-left: 34px;
}
.products_box .text h3 {
    color: var(--dark);
    font-family: Abril Fatface;
    font-size: 40px;
    font-weight: 400;
}
.products_box .text p{
    color: #555;
}
.product_img_1 {
    position: absolute;
    left: -80px;
    bottom:0;
}
.stickycol{
    position: sticky;
    top:100px;
}
.product_box_wrap:before {
    content: "";
    background-image: url("../images/shape1.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 870px;
    width: 517px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 110px;
    margin: auto;
    z-index: -1;
}
.product_box_wrap{
    position: relative;
}

/*  benifits_section */

.benifits_section p{
    color: #555;
}
.benifits_box{
    padding: 50px 35px;
    border: 1px solid var(--primary);
    transition: all 0.4s;
    background-image: url(../images/benifits-img.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.benifits_box:hover:before{
    background-color: var(--dark);
    opacity: 0.9;
    transition: all 0.4s;
}
.benifits_box:hover h4{
    color: var(--white);
}
.benifits_box:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left:0;
    margin: auto;
    background-color: var(--white);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: all 0.4s;
}
.benifits_box_wrap .col-md-3 {
    padding: 0;
}
.benifits_box:hover .text h4{
    color: #FFF;
}
.benifits_box .text h4 {
    color: var(--dark);
    font-size: 26px;
    font-weight: 400;
    transition: all 0.4s;
}


/* footer */

footer {
    padding-top: 200px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    background-color: var(--primary);
    color: var(--white);
}
.footer-logo {
    margin-bottom: 25px;
}
.footer-middle p {
    font-size: 16px;
    margin-bottom: 21px;
}
ul.social-icon {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
footer ul.social-icon a {
    width: 34px;
    height: 34px;
    background-color: var(--white);
    margin: 0 8px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
ul.social-icon li a svg, ul.social-icon li a svg path {
    fill: var(--primary);
}
footer ul.social-icon a:hover {
    background-color: var(--dark);
}
footer ul.social-icon a:hover svg{
    filter: brightness(0) invert(1);
}
footer ul  {
    margin: 0;
    padding: 0;
    list-style: none;
}
.links-text ul li {
    margin-bottom: 10px;
}
.links-text ul li:last-child {
    margin-bottom: 0px;
}
.links-text ul li a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
    transition: all 0.5s;
    font-weight: 500;
}
.links-text ul li a:hover {
    color: var(--dark);
}
.contact-information {
    display: flex;
    margin-bottom: 15px;
}
.contact-information .icon a{
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50px;
    text-align: center;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-information .text h5 {
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--font1);
}
.footer-links {
    display: flex;
    justify-content: space-between;
}
.contact-information .text h5 a {
    color: var(--white);
    font-weight: 500;
    font-family: var(--font1);
    transition: all 0.5s;
}
.contact-information .text h5 a:hover {
    color: var(--dark);
    transition: all 0.5s;
}
footer h4 {
    font-weight: 500;
    font-size: 21px;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font2);
}
footer p{
    font-size: 14px;
}

.institute-copy-right {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding: 20px 0;
    margin-top: 25px;
}
.institute-copy-right a{
    color: var(--white);
}
.institute-copy-right a:hover{
    color: var(--dark);
}
.institute-copy-right p {
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}
.laxraj-love svg, .laxraj-love .fa {
    color: var(--dark);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}

@keyframes pound {
    to {
        transform: scale(1.1)
    }
}

.laxraj-love a {
    text-decoration: none;
    color: var(--white);
    position: relative;
}
p.laxraj-love {
    color: var(--white);
}

.laxraj-love a:hover {
    color: var(--dark);
}
.laxraj-love a:hover:before {
    width: 100%;
}

.footer-logo a {
    display: block;
    max-width: 100px;
}
.footer-logo a img {
    width: 100%;
    transition: all 0.4s;
}
.footer_text_wrap p {
    padding-right: 10px;
}


/* our_partners */

section.our_partners {
    padding: 70px 0px 70px 0px;
    color: var(--white);
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
    background-color: var(--dark);
}
section.our_partners:before{
    content: "";
    display: block;
    right:-50px;
    position: absolute;
    left: -1500px;
    top: 0;
    bottom: 0;
    background-color: var(--dark);
    z-index: -1;
}

section.our_partners h3 {
    color: var(--white);
    font-size: 45px;
    line-height: 120%;
    margin-bottom: 15px;
}
section.our_partners .partners_img {
    display: flex;
    justify-content: center;
    height: 100px;
    align-items: center;
    width: 100%;
}
section.our_partners .partners_img img {
    width: auto !important;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.5s;
	filter: sepia(100%);
}
section.our_partners .partners_img img:hover {
    opacity: 1;
    transition: all 0.5s;
}


/* section.inner_banner */

section.inner_banner {
    padding: 150px 0 40px 0;
    background-color: #FDF2EC;
    position: relative;
    z-index: 1;
}
section.inner_banner:before {
    content: "";
    display: block;
    width: 320px;
    height: 200px;
    background-image: url(../images/inner_banner_bg-shap.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    position: absolute;
    left: 50%;
    z-index: -1;
    bottom: 0;
    margin-left: 270px;
}
section.inner_banner ol.breadcrumb li a {
    color: var(--text);
}
section.inner_banner ol.breadcrumb li.active{
    color: var(--primary);
}
section.inner_banner ol.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    float: none;
}
section.inner_banner ol.breadcrumb{
    margin-bottom: 10px;
}
section.inner_banner h1{
    color: var(--dark);
    font-size: 60px;
    margin-bottom: 0;
    line-height: 120%;
}

.social_links ul.social-icon a {
    width: 34px;
    height: 34px;
    background-color: var(--white);
    margin: 0 8px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.social_links ul.social-icon a:hover {
    background-color: var(--dark);
    color:#fff;
}
.social_links .social-icon svg {
  fill: var(--primary);
}
.social_links .social-icon svg path{
  fill: var(--primary);
}
/* bg_img_section */

section.bg_img_section {
    background-image: url(../images/bg_img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: cover;
    background-size: cover;
    padding: 0 0 50px 0;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
section.bg_img_section:before{
    content: "";
    display: block;
    background-color: var(--dark);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
    width: 100%;
}
.btn_box {
    padding: 0 20px 20px 20px;
    background-color: #FDF2EC;
}
.btn_box a.btn {
    display: flex;
    border-radius: 0;
    width: 385px;
    line-height: 66px;
    font-size: 17px;
    align-items: center;
    justify-content: space-between;
}
.btn_box a.btn.inquiry_btn {
    margin-bottom: 20px;
    background-color: var(--dark);
}
.btn_box a.btn.inquiry_btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn_box a.btn span{
    margin-left: 10px;
}
.btn_box a.btn span svg{
    margin-left:0;
}


/* product_detail-info */


section.product_detail-info{
    position: relative;
    z-index: 1;
    padding-top: 50px;
}
.product-detail table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}
.product-detail table th, .product-detail table td {
    width: 50%;
    border: 1px solid #EAEAEA;
    background-color: #FFF;
    padding: 12px 15px;
    text-transform: capitalize;
    font-size: 15px;
}

.product-detail ul {
    margin: 0;
    padding: 0;
}
.product-detail ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}
.product-detail ul li:last-child {
    margin-bottom: 0;
}
.product-detail ul li:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--primary);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 0;
    margin: 0 auto;
    margin-right: 10px;
}


.product-gallery {
    position: sticky;
    top: 150px;
    margin-top: -230px;
}
.product-gallery .product_g_big {
    margin-bottom: 50px;
}
.product_g_big .item {
    height: 460px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.product_g_big .item:before {
    content: "";
    display: inline-flex;
    background-image: url(../images/product-gallery-bg-shap.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    left: 0;
    background-size: contain;
    margin: auto;
    z-index: -1;
}
.product_g_big .item a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #FDF2EC;
    background-color: #FFF;
    border-radius: 10px;
}
.product_g_big .item img {
    width:100% !important;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.4s;
}
.product_g_big .item img:hover {
    transform: scale(1.1);
}
.product-gallery .owl-nav button{
    border-radius: 40px !important;
}
.product_g_thumbs .item {
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(24, 16, 3, 0.10);
}
.product_g_thumbs .item:hover {
    border-color: var(--primary);
}
.product_g_thumbs .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s;
}
.product_g_thumbs .item img:hover {
    transform: scale(1.2);
}
.product-gallery .product_g_big {
    margin-bottom: 20px;
}
/* owl-carousel button*/

.product-gallery .owl-nav {
    display: flex;
    align-items: center;
}
.product-gallery .owl-nav button i {
    display: none;
}
.product-gallery .owl-nav button {
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    background-color: var(--white) !important;
    border-radius: 50px;
    background-repeat: no-repeat !important;
    background-image: url('data:image/svg+xml,<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 4.35C0.641015 4.35 0.35 4.64101 0.35 5C0.35 5.35899 0.641015 5.65 1 5.65L1 4.35ZM17.4596 5.45962C17.7135 5.20578 17.7135 4.79422 17.4596 4.54038L13.323 0.403807C13.0692 0.149966 12.6576 0.149966 12.4038 0.403807C12.15 0.657648 12.15 1.06921 12.4038 1.32305L16.0808 5L12.4038 8.67696C12.15 8.9308 12.15 9.34235 12.4038 9.59619C12.6576 9.85004 13.0692 9.85004 13.323 9.59619L17.4596 5.45962ZM1 5.65L17 5.65L17 4.35L1 4.35L1 5.65Z" fill="%23032E47"/></svg>') !important;
    background-position: center center !important;
    margin-right: 15px;
    border: 1px solid rgba(24, 16, 3, 0.10) !important;
    transition: all 0.4s;
}
.product-gallery .owl-nav button.owl-next {
    right: 0;
    position: absolute;
    left: auto;
}
.product-gallery .owl-nav button.owl-prev {
    transform: rotate(180deg);
}
.product-gallery .owl-nav button:hover {
    opacity: 1;
    background-color: var(--dark) !important;
    background-image: url('data:image/svg+xml,<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 4.35C0.641015 4.35 0.35 4.64101 0.35 5C0.35 5.35899 0.641015 5.65 1 5.65L1 4.35ZM17.4596 5.45962C17.7135 5.20578 17.7135 4.79422 17.4596 4.54038L13.323 0.403807C13.0692 0.149966 12.6576 0.149966 12.4038 0.403807C12.15 0.657648 12.15 1.06921 12.4038 1.32305L16.0808 5L12.4038 8.67696C12.15 8.9308 12.15 9.34235 12.4038 9.59619C12.6576 9.85004 13.0692 9.85004 13.323 9.59619L17.4596 5.45962ZM1 5.65L17 5.65L17 4.35L1 4.35L1 5.65Z" fill="white"/></svg>')!important;
}
.btn_box a.btn.inquiry_btn {
    margin-bottom: 10px;
}


.inquery-modal .modal-content {
    padding: 30px;
    position: relative;
    border-radius: 0;
    border: 0;
    background-color: var(--white);
    box-shadow: 10px 15px 44px 0px rgba(0, 0, 0, 0.10);
}

.inquery-modal .modal-content .btn-close {
    width: 40px;
    height: 40px;
    opacity: 1;
    z-index: 99;
    padding: 0;
    transition: all 0.4s;
}
.inquery-modal .modal-content form {
    z-index: 1;
}
.inquery-modal .modal-content form .form-control {
    padding: 0 15px;
    height: 44px;
    transition: all 0.4s;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background-color: var(--white);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.04) !important;
}
.inquery-modal .modal-content form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}
.inquery-modal .modal-content form textarea.form-control {
    padding: 15px;
    height: 120px;
    resize: none;
    border-radius: 6px;
}
.inquery-modal .modal-content .inquiry_heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inquery-modal .form-feild {
    margin-bottom: 20px;
}





/* section.bg_img_section.bg_image_spacing  */

section.bg_img_section.bg_image_spacing {
    padding-bottom: 200px;
}
.btn_box a.btn.contact_btn:hover span {
    transform: rotate(-45deg);
    transition: all 0.5s;
}
.btn_box a.btn.contact_btn span{
    transition: all 0.5s;
}


/* contact_us */



section.contact_us .contact-form{
    background-color: #FDF2EC;
    padding: 45px;
}
section.contact_us .contact-form form label {
    color: var(--dark);
    font-size: 16px;
}
section.contact_us .contact-form form {
    margin-bottom: 0;
}
section.contact_us .contact-form form .form-control {
    height: 50px;
    font-size: 15px;
    color: #ABABAB;
    border: 0;
    border-radius: 6px;
    background-color: var(--white);
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.02);
}
section.contact_us .contact-form form .form-control:focus {
    border: 1px solid var(--primary);
}
html section.contact_us .contact-form form textarea {
    resize: none;
    min-height: 150px;
    padding: 15px;
}
section.contact_us .contact-form form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}
html section.contact_us .contact-form form .form-field{
    margin-bottom: 20px;
}
section.contact_us .contact-form form label em {
    color: #F00;
}



.contact_box {
    padding: 40px;
    background-color: var(--primary);
}
.contact_box h4 {
    color: var(--white);
    font-size: 35px;
    text-transform: capitalize;
    margin-bottom: 35px;
}
.contact_box .contact-information {
    margin-bottom: 25px;
}
.contact_box .contact-information .icon a {
    background-color: var(--white);
}
.contact_box .contact-information .text h5 {
    color: var(--white);
}
.contact_box .contact-information .text h5 a{
    color: var(--white);
	text-transform: lowercase;
}
.contact_box .contact-information .text h5 a:hover{
    color: var(--dark);
}

.contact_box h5 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.social_links {
    margin-top: 40px;
}

/* our_products */

.product-box .image {
    margin-bottom: 30px;
    transition: all 0.5s;
}
.product-box .image > a {
    display: flex;
    height: 280px;
    padding: 20px 0;
    background-color: #FDF2EC;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
}
.product-box .image > a img {
    max-height: 100%;
    width: auto;
    transition: all 0.4s;
}
.product-box:hover .image > a img {
    transform: scale(1.1);
}
.product-box {
    border-radius: 20px;
    padding: 15px 15px 30px 15px;
    border: 2px solid var(--primary);
    background-color: #FFF;
    margin-bottom: 30px;
    box-shadow: 0px 10px 44px 0px rgba(0, 0, 0, 0.08);
}
.product-box .text {
    text-align: center;
}
.product-box h3 {
    color: var(--dark);
    font-size: 38px;
    font-style: normal;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Abril Fatface', cursive;
}
.product-box p {
    text-align: center;
    color: var(--text);
    margin-bottom: 20px;
}
.product-box a.btn span{
    margin-left: 10px;
}
.banner-carousel.owl-carousel .owl-item h1, 
.banner-carousel.owl-carousel .owl-item p,
.banner-carousel.owl-carousel .owl-item .btn {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.9s;
    transition-delay: 0.2s;
}
.banner-carousel.owl-carousel .owl-item.active h1, 
.banner-carousel.owl-carousel .owl-item.active p,
.banner-carousel.owl-carousel .owl-item.active .btn {
    transform: translateY(0);
    opacity: 1;
}
.banner-carousel.owl-carousel .owl-item.active p{
    transition-delay: 0.4s;
}
.banner-carousel.owl-carousel .owl-item.active .btn{
    transition-delay: 0.8s;
}
.banner-carousel.owl-carousel .banner_img img{
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s;
    display: block;
}
.banner-carousel.owl-carousel .owl-item.active .banner_img img{
    transform: scale(1);
    opacity: 1;
}
.fancybox__thumbs {
    display: none !important;
}
.aboutimgcon{
    position: absolute;
    left:0;
    bottom:-320px;
    animation-name: aboutimgcon;
    animation-iteration-count: infinite;
    animation-duration: 5s;
}
@keyframes aboutimgcon {
    0%{
        transform: translateY(5%);
    }
    50%{
        transform: translateY(-5%);
    }
    100%{
        transform: translateY(5%);
    }
}
