@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
a:hover{
    text-decoration: none;
}
h1,
h2{
    font-size: 48px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}
h2{
    margin-bottom: 16px;
    font-weight: 500;
}
p{
    margin-bottom: 24px;
}
p:last-child{
    margin-bottom: 0;
}
.cta-btn{
    display: inline-block;
    background: #9C1919;
    color: #fff;
    padding: 16px 40px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 500;
}
.cta-btn:hover{
    background: #CA2020;
}
.s-pt{
    margin-top: 100px;
}
.s-py{
    padding-top: 100px;
    padding-bottom: 100px;
}

.container{
    max-width: 1240px;
    width: 100%;
}
.site-wrapper{
    margin-top: 96px;
}
.whatsapp-icon{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
}
.whatsapp-icon >a{
    display: block;
}


.owl-demo .owl-nav{
    padding: 0 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.owl-demo .owl-nav .owl-prev,
.owl-demo .owl-nav .owl-next{
    width: 40px;
    height: 40px;
    margin: 0 !important;
    font-size: 30px !important;
    background: #161616 !important;
    color: #fff !important;
    border-radius: 0 !important;
}
.owl-demo .owl-nav .owl-prev{
    background: #161616 url(../images/left-arrow.svg) no-repeat center !important;
    background-size: 18px !important;
}
.owl-demo .owl-nav .owl-next{
    background: #161616 url(../images/left-arrow.svg) no-repeat center !important;
    background-size: 18px !important;
    transform: rotate(180deg);
}
.owl-demo .owl-nav .owl-prev > span,
.owl-demo .owl-nav .owl-next > span{
    font-size: 0;
}
.owl-demo .owl-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
}
#slidermodal .btn-close{
    position: absolute;
    right: 16px;
    top: 16px;
    opacity: 1;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    z-index: 3;
}
#slidermodal .modal-content{
    border-radius: 16px;
    overflow: hidden;
}
#slidermodal .homeslider{
    background: #000;
    border: #303030 solid 1px;
    border-radius: 12px;
}


/* Header Start */
header{
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2;
}
header.sticky{
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.header_logo img{
    height: 48px;
}
header .navbar{
    padding: 0;
}
header .navbar ul{
    padding: 0;
    margin: 0;
}
header .navbar ul li{
    list-style: none;
    display: inline-block;
    margin-left: 32px;
}
header .navbar ul li:first-child{
    margin-left: 0;
}
header .navbar ul li a{
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
header .navbar ul li a:after{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #b97f1f;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
header .navbar ul li a:hover:after{
    width: 100%;
    left: 0;
    right: auto;
}
header .navbar ul li a.active:after{
    width: 100%;
}
header .navbar ul li a:hover{
    color: #b97f1f;
}
header .navbar ul li a.active{
    color: #b97f1f;
    font-weight: 500;
}
header .navbar .cta-btn.call{
    margin-left: 32px;
    padding: 6px 16px;
}
/* Header End */

/* Homepage Start */
.hero-section{
    width: 100%;
    min-height: 700px;
    background-position: center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}
.hero-section .content h1{
    color: #fff;
    margin-bottom: 16px;
}
.hero-section .content p{
    max-width: 500px;
    width: 100%;
    color: #fff;
    margin-bottom: 32px;
}
.about-section .img-block{
    position: relative;
}
.about-section .img-block::after{
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    z-index: -1;
    background: #F9F9F9;
    width: 100%;
    height: 100%;
}
.about-section .content p{
    max-width: 500px;
    width: 100%;
    color: #5C5C5C;
}
.category-section{
    overflow: hidden;
    /* background: #FDF5E8; */
    /* background: linear-gradient(270deg, #fdf5e8, #efe5d6, #f3e0d5, #f1e4cb, #fff6e9);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    -moz-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite; */
}
@-webkit-keyframes gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes gradient {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
h2.title{
    margin-bottom: 0;
}
.category-section .row [class*="col"],
.new-design-section .row [class*="col"]{
    margin-top: 40px;
    position: relative;
}
.category-section .img-block,
.new-design-section .img-block{
    display: block;
    text-align: center;
}
.category-section .img-block span,
.new-design-section .img-block span{
    border-radius: 8px;
    margin-bottom: 12px;
    display: block;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(52, 1, 1, .05);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.new-design-section .img-block span{
    margin-bottom: 0;
}
.category-section .img-block:hover span,
.new-design-section .img-block:hover span{
    box-shadow: 0 8px 16px rgba(52, 1, 1, .13);
}
.category-section .img-block h3,
.new-design-section .img-block h3{
    font-size: 18px;
    color: #000;
    margin: 0 auto;
}
.new-design-section{
    position: relative;
    overflow: hidden;
}
.new-design-section .container{
    position: relative;
    z-index: 1;
}
.new-design-section .video-block{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
    /* filter: grayscale(1); */
    opacity: .5;
}
.new-design-section .video-block video{
    width: 100%;
    height: 100%;
}
.cta-section{
    background: #0f0f0f;
}
.cta-section h2{
    color: #fff;
}
.cta-section p{
    color: #7E7E7E;
}
/* Homepage End */

/* Footer Start */
footer{
    padding-top: 80px;
    background: #000 url('../images/footer-bg.jpg?id=3') no-repeat center 0px;
    background-size: cover;
    /* background-attachment: fixed; */
    font-size: 15px;
    color: rgba(255,255,255,.5);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
footer .f-block .logo{
    display: inline-block;
    margin-bottom: 16px;
}
footer .f-block .logo img{
    height: 48px;
}
footer .f-block h4{
    margin-bottom: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
footer .f-block .links li{
    margin-bottom: 8px;
}
footer .f-block .links li:last-of-type{
    margin-bottom: 0;
}
footer .f-block .links li a{
    color: #848484;
}
footer .f-block .links li a:hover,
footer .f-block .email:hover,
footer .f-block .phone:hover{
    color: #fff;
}
footer .f-block address{
    background: url(../images/location.svg) no-repeat left 3px;
    padding-left: 22px;
}
footer .f-block .email{
    background: url(../images/sms.svg) no-repeat left 3px;
    padding-left: 22px;
    color: #848484;
    margin-bottom: 16px;
    display: inline-block;
    word-break: break-all;
}
footer .f-block .phone{
    background: url(../images/call.svg) no-repeat left 3px;
    padding-left: 22px;
    color: #848484;
    display: inline-block;
}
footer .f-block .social{
    display: flex;
    flex-flow: wrap;
}
footer .f-block .social li{
    margin: 0 4px;
}
footer .f-block .social li:first-child{
    margin-left: 0;
}
footer .f-block .social li a{
    border: rgba(255, 255, 255, 0.3) solid 1px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
}
footer .f-block .social li a:hover{
    border: #fff solid 1px;
    color: #fff;
}
.copyright-text{
    margin-top: 64px;
    border-top: rgba(255,255,255,.1) solid 1px;
    padding: 40px 0;
    text-align: center;
}
/* Footer End */

/* About Page Start */
.hero-section.sub-banner{
    min-height: 300px;
}
.hero-section.sub-banner .content p{
    margin-bottom: 0;
}
.about-section .full-text p{
    max-width: 100%;
}
.our-mission-section{
    background: #FDF5E8;
}
.why-section .title-text{
    margin-bottom: 24px;
}
.why-section .list-point{
    columns:2;
    -webkit-columns:2;
    -moz-columns:2;
}
.why-section .list-point li{
    background: url(../images/tick-icon.svg) no-repeat -3px top;
    background-size: 24px;
    -webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
    margin-bottom: 8px;
    padding-left: 25px;
}
/* About Page End */

/* Product Page Start */
.category-section .img-block span{
    position: relative;
}
.category-section .img-block span .icon{
    width: 40px;
    height: 40px;
    padding: 10px;
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    background: #fff;
    color: #b97f1f;
    border: #b97f1f solid 1px;
    border-radius: 100%;
    margin-bottom: 0;
}
.category-section .buttons{
    margin-bottom: 0 !important;
    position: absolute !important;
    right: 31px;
    bottom: 54px;
    overflow: visible;
    box-shadow: none;
}
.category-section .buttons .img-btn{
    border: #000 solid 1px;
    background: none;
    color: #000;
    border-radius: 16px;
    font-size: 15px;
    padding: 4px 16px;
}
.category-section .buttons .img-btn.download{
    margin-left: 4px;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden; /* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}
/* Product Page End */

/* Contact Page Start */
.contact-box{
    background: #fdfbf7;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(52, 1, 1, .05);
    border: #e1e1e1 solid 1px;
}
.contact-box > div{
    margin-bottom: 6px;
}
.contact-box > div:last-child{
    margin-bottom: 0;
}
.contact-box span{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}
.contact-box h3{
    font-size: 18px;
    font-weight: 600;
}
.contact-box a{
    color: #b97f1f;
    display: inline-block;
}
.contact-box address{
    font-size: 14px;
}

/* ---error msg */
.error{
    color: red;
}
.address p {
    margin-bottom: 0 !important;
}

.popupbtn {
    padding: 8px 40px !important;
}

.closebtnclass {
    background:#fff !important;
    color: #6c757d !important;
    padding: 8px 40px !important;
}

/* .css-selector {
    background: linear-gradient(270deg, #fdf5e8, #efe5d6, #f1f1cb, #fdf5e8);
    background-size: 800% 800%;

    -webkit-animation: AnimationName 24s ease infinite;
    -moz-animation: AnimationName 24s ease infinite;
    animation: AnimationName 24s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
} */


/* Contact Page End */


@media(max-width: 1199px){

    h2{
        font-size: 40px;
    }
    .container{
        padding: 0 20px;
    }
    .about-section .img-block::after{
        top: -20px;
        right: -20px;
    }

}

@media(max-width: 992px){

    .site-wrapper{
        margin-top: 80px;
    }
    h1, h2{
        font-size: 32px;
    }
    .cta-btn{
        padding: 12px 32px;
    }
    .s-pt{
        margin-top: 72px;
    }
    .s-py{
        padding-top: 72px;
        padding-bottom: 72px;
    }

    header{
        padding: 16px 0;
    }
    header .navbar ul li,
    header .navbar .cta-btn.call{
        margin-left: 24px;
        font-size: 15px;
    }
    .hero-section{
        min-height: 500px;
    }
    footer{
        font-size: 14px;
        padding-top: 56px;
    }
    footer .f-block .email{
        letter-spacing: -0.02em;
    }
    footer .f-block .social li a{
        width: 32px;
        height: 32px;
        padding: 8px;
    }
    .copyright-text{
        margin-top: 40px;
        padding: 24px 0;
    }
    .hero-section.sub-banner{
        min-height: 250px;
    }


}

@media(max-width: 767px){

    .s-pt{
        margin-top: 48px;
    }
    .s-py{
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hamburger-menu {
        width: 30px;
        height: 30px;
    }
    .hamburger-menu span,
    .hamburger-menu span:before,
    .hamburger-menu span:after {
        /* background: #000; */
        background: #fff;
        width: 30px;
        height: 1.5px;
        border-radius: 2px;
        display: inline-block;
        transition: all 0.15s linear;
    }
    .hamburger-menu span:before,
    .hamburger-menu span:after {
        content: "";
        position: absolute;
    }
    .hamburger-menu span:before {
        transform: translateY(-7px);
    }
    .hamburger-menu span:after {
        transform: translateY(7px);
    }
    .hamburger-menu.open span {
        background: transparent;
    }
    .hamburger-menu.open span:before {
        transform: rotate(45deg);
    }
    .hamburger-menu.open span:after {
        transform: rotate(-45deg);
    }
    header .navbar {
        display: none;
        position: absolute;
        background: #fff;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 24px 20px;
        border-top: #ddd solid 1px;
        box-shadow: rgba(0, 0, 0, 0.06) 0 10px 30px;
    }
    header .navbar{
        text-align: center;
    }
    header .navbar ul li{
        display: block;
        margin: 0 0 12px 0;
    }
    header .navbar ul li a{
        font-size: 18px;
    }
    header .navbar .cta-btn.call{
        font-size: 18px;
        margin: 8px 0 0 0;
    }
    .about-section .content{
        margin-top: 16px;
    }
    .about-section .content p{
        max-width: 100%;
    }
    footer .row [class*="col"]:nth-child(3),
    footer .row [class*="col"]:nth-child(4){
        margin-top: 32px;
    }
    footer .f-block .social li a{
        width: 40px;
        height: 40px;
        padding: 0;
    }
    .hero-section.sub-banner{
        min-height: 230px;
    }
    footer{
        background: #000 url(../images/footer-bg.jpg) no-repeat center 0px;
    }

}

@media(max-width: 575px){

    footer .row [class*="col"]:first-child{
        margin-top: 0;
    }
    footer .row [class*="col"]{
        margin-top: 32px;
    }
    .why-section .list-point{
        columns:1;
        -webkit-columns:1;
        -moz-columns:1;
    }

    .category-section .row [class*="col"], .new-design-section .row [class*="col"]{
        margin-top: 30px;
    }

}
