@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("responsive.css");
@import url("owl.carousel.css");
@import url("jquery.fancybox.min.css");
:root {
    --font1: "DM Sans", sans-serif;
    --font2 : "Jost", sans-serif;
    --primary-color: #f7630d;
    --secondary-color: #19578b;
}

body {
    font-family: var(--font1);
    font-size: 16px;
    letter-spacing: .5px;
}

p {
    letter-spacing: .25px;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

::-moz-selection {
    text-shadow: none;
    background: #ffc600;
    color: #000;
}

::selection {
    text-shadow: none;
    background: #ffc600;
    color: #000;
}
*{
    margin:0;
    padding: 0;
}
h1,h2,h3,h4,h5{
     font-family: var(--font2);
}

/*#region Header */

.top-area{
    text-align: center;
    padding: 8px 10px;
    color: #000000;
    font-size: 16px;
}
.top-area a{
    color: #000;
    text-decoration: underline;
}
.top-area i{  padding-right: 5px; color: #daa14c;}

.left-side{
    margin-bottom: 0;
}
.right_nav{
    margin-bottom: 0;   
}

.header{
    display: flex;
    justify-content: space-between;
}

.header ul li {
    display: inline-block;
    float: none;
    margin: 0px;
}

.header li a {
    padding: 15px 17px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: .3s linear;
    font-weight: 500;
    border-radius: 0px;
    text-transform: uppercase;
}

.header li a:hover {
    color: #ff8a00;
}

.header li a i {
    font-size: 18px;
    padding-right: 7px;
	
}

.hide {
    display: none;
}

.header ul ul {
    position: absolute;
    display: none;
    animation: fadeInLeft .5s forwards;
    z-index: 9999;
    padding-left: 0;

}

    
.dropdoqwn{ position:relative;}
.dropdoqwn i{position: absolute;right: 0px;}
.dropdoqwn li {
    display: block !important;
    float: none;
}

.dropdoqwn2 {
    left: 100%;
    margin-left: 0px;
    margin-right: .1rem;
    margin-top: -32px;
    min-width: 160px;
}

.dropdoqwn li a {
    display: block !important;
    background-color: #1d1e0d;
    font-size: 14px;
    border-bottom: 1px solid #313319;
    padding: 5px 15px;
    min-width: 240px;
    font-weight: 400;
    text-align: left;
    border-radius: 0px;
    color: #fff;
    text-transform: capitalize !important;
}

.sub:hover a span {
    color: #ff8a00;
}

.dropdoqwn li a:hover {
    background-color: #fff;
    font-size: 14px;
    color: #000;
}

.meg:hover {
    background-color: #084519;
}

.catrgory {
    background: url(../images/category.jpg);
    border-radius: 0px;
    height: 380px;
    background-size: auto;
    color: #222;
    text-align: center;
}

.myheaderlist ul {
    overflow-x: scroll;
}

.megmenupart {
    position: absolute;
    width: 100%;
    display: none;
    left: 0px;
    right: 0;
    z-index: 9999 !important;
    margin: 0px auto;
    transition: 1s ease-in-out;
    animation: fadeInDown .5s forwards;
    box-shadow: 0px 7px 15px -6px #888888;
}

.megamenu li {
    display: block;
    width: 100%;
}

.megamenu li a {
    padding: 4px 0px;
    text-transform: capitalize;
    color: #333;
}

.megamenu strong {
    width: 100%;
    display: block;
    padding-top: 30px;
    font-weight: 700;
    border-bottom: 1px solid #999;
    padding: 10px 0px;
}

.megmenupart ul {
    position: inherit !important;
    display: block !important;
}

.megamenu {
    background-color: #fff;
    color: #444;
    height: 380px;
    border-radius: 0px;
}

.hide {
    display: none;
}

.hide:checked~.dropdoqwn {
    display: block;
}

.hide:checked~.dropdoqwn2 {
    display: block;
}

.hide:checked~.megmenupart {
    display: block;
}

.outer{
     position: absolute;
    left: 0;
    right: 0;
    top: 0; 
    padding: 24px 0px;
    z-index: 9999;
}

nav {
    display: block;
    width: 100%;
    position: relative;
}

.logo1{
    position: absolute;
     top: 18px;
    left: 50%;
    transform: translate(-50%, 0);
}

.phone{
    color: #fff;
    background-color: #daa14c;
    border-radius: 100px !important;
    font-weight: 700 !important;
    line-height: 12px;
}
.phone:hover{ background:#fff; color:#daa14c;}
.arrow{
    font-size: 14px !important;
    padding-left: 5px;
}

/*#endregion Header */
.search-box {
  position: relative;
}
.searchInput {
  width: 0;
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 25px;
  padding: 8px 0;
  border: none;
  background: #fff;
  color: #000;
  outline: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#toggleSearch:checked ~ .searchInput {
  width:340px;
  opacity: 1;
  padding: 8px 15px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0; 
  background: transparent;
  cursor: default;
  z-index: 5; 
}

#toggleSearch:checked ~ .overlay {
  display: block;
}
.search-box i{ color:#fff;padding: 0px 15px;border-left: 1px solid #d9a14e;}
.indxprobox{ border:1px solid #40421f; margin-top:40px; margin-bottom:40px; padding:20px;}
.indexdivcn{ width:56%; margin:auto;}
.indexdivcn h2{ color:#40421f; font-size:50px; font-weight:700;}
.higquy{ margin-top:30px;}
.higquy img{ float:left; margin-right:20px;}
.higquy strong{ font-size:20px;}
.readmore{ margin-top:40px; text-transform:uppercase; background:#daa14c; color:#fff; padding:10px 20px; color:#fff; display:table; font-weight:500; font-size:18px;}
.readmore:hover{ background:#40421f; color:#fff;}

.indexprobg{ background:#f7f8e5; padding:50px 0px;}
.service-box{ margin-right:5px; margin-left:5px;}
.service-box img{ border:18px solid #e3e5c6;width:100%; height:250px; object-fit:cover;}
.service-box h6{ padding:20px 0px 10px; font-weight:500;color:#000; text-transform:uppercase; font-size:18px;}
.viewmorea{ border-bottom:1px solid #40421f; display:table; font-size:14px; color:#000;}
.service-box img:hover{background:#dbddba;}
.indexprobg h5{ font-size:40px; font-weight:300; margin:0px; padding:0px;}
.min-banner img{ width:100%;}

.owl-prev {
    width: 44px;
    height: 44px;
    position: absolute;
    left: -16px;
    top: 115px;
    font-size: 32px;
    color: #000;
    border-radius: 100%;
    padding: 0px 0px 0px 7px;
    background: white;
    box-shadow: 0px 0px 8px #c9c7c7;
}
.owl-next {
    width: 44px;
    height: 44px;
    position: absolute;
    right: -16px;
    top: 115px;
    font-size: 32px;
    box-shadow: 0px 0px 8px #c9c7c7;
    color: #000;
    border-radius: 100%;
    padding: 0px 0px 0px 7px;
    background: white;
}

.indexabout{ padding:50px 0px; border-bottom:1px solid #ccc;}
.indexabouttext{ margin:auto; width:56%;}
.indexabouttext h1{ color:#40421f; line-height:70px;font-size:46px; font-weight:600; text-transform:uppercase;}
.indexabouttext h1 strong{ color:#daa14c; border-bottom:2px solid #daa14c;font-weight:600;}
.indexabouttext h3{ padding:15px 0px;}

.footertopmain{ padding:50px 0px;}
.footertop{ text-align:center; font-size:18px;}
.footertop h4{ padding:20px;}

/*** FOOTER ***/
footer{ background:#20210d; color:#fff;}
.footerbox{ margin-top:80px;}
.footerbox a{ color:#fff;}
.footerbox a:hover{ color:#ffe480;}
.footerbox h5{ padding-bottom:20px; font-weight:700; color:#fff;}
.footerbox ul li{ margin-bottom:10px;}
.footerbox i{ margin-right:5px; font-size:20px;}
.footercopy{ text-align:center; color:#686a3a; margin-top:50px;}
.footercopy a{ color:#686a3a;}
.footerboxcenter{ text-align:center; padding:0px 50px;}
.footerboxcenter img{ margin-bottom:50px;}
.footerboxcenter a i{ color:#bcbe94; border:1px solid #52542a; padding:5px 8px;background:#40421f;
  	background-size: 200% 100%;
  	background-position: right bottom;
  	transition: all .5s ease-out;}
.footerboxcenter a i:hover{background: #daa14c; color:#fff;}
.footerbottom{ background:#40421f; border-top:1px solid #56582d; padding:15px 0px; margin-top:20px;     text-align: center; font-size:13px;color: #b6b98d}
.footerbottom a{color:#fff; font-size:13px;color: #b6b98d}
.whatfixed{ position:fixed; bottom:70px; right:15px; z-index:9999;}
ol, ul {
    padding-left: 0rem;
}
.indexcontent{ background:#f4f6d0; padding:50px 0px; font-size:14px;}
.bradcrumb{ background:#20210d; padding:105px 0px 0px; color:#fff;}
.bradlsitbg{background: #40421f; padding:10px 0px;}
.bradlsitbg a{ color:#fff;}
.commanpage{  background:#f4f6d0;}
.commanpagebg{ background:#fff;padding:40px;}
.accordion-button:not(.collapsed) {
    color: #20210d;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-body {
    line-height: 26px;
    display: grid;
	
}
.accordion-body a{color:#000;}
.accordion-button {
    font-weight: 500;
    font-size: 20px;
}
.prolsitbox h4{color: #daa14c;}
.enqform h4{color: #40421f;}

.enqinput{ border:2px solid #dddddd; padding:5px 10px; font-size:18px; color:#000; font-weight:600; outline:none; width:100%; border-radius:5px;}
.enqinfild{ margin-bottom:10px;}
.enqinputbutton{ background:#20210d; outline:none; border:none; color:#fff; display:block; padding:5px 10px; width:100%;border-radius:5px;}
.enqinfild i{color: #40421f;}

.darkHeader{
	    background: #24260d;
    color: #fff;
    position: fixed !important;
	animation:fadeInDown .4s;
}

.logo-m{
	text-align:center;
}
.logo-m img{
	width: 112px;
}

.logo-m a{
	padding:0px !important;
}

.contactpage{ padding:50px 0px; text-align:center;}
.contactpage i{ font-size:30px;}
.contactpage h3{ font-size:40px;color: #40421f;}
.haveany{ font-size:24px; padding:30px 0px;}
.contactpage strong{ font-size:24px;}
.contactpage h6 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
}
.gallerylist img{ width:100%; height:200px; object-fit:contain;}
.gallerylist{ border:1px solid #ddd; padding:15px; border-radius:10px; margin-bottom:20px;}

.prodetailspage img{ width:100%; margin-bottom:20px;object-fit: contain;    height: 500px;}







@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@-moz-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}


/** fadeInLeft **/

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-moz-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration: 1s;
    animation-delay: 1s;
}







