@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --primary-color: #981a36;
    --secondary-color: #98592b;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: #eee;
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.mainheading {
    margin: 20px 0 40px;
    text-align: center;
}

.mainheading h2 {
    font-size: 26px;
    color: #000;
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}

.mainheading h2:before {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    right: 10px;
    bottom: 5px;
}

.mainheading h2:after {
    content: "";
    display: inline-block;
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    position: relative;
    left: 10px;
    bottom: 5px;
}

.mainheading a {
    background: #055fb229;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 16px;
    text-decoration: underline;
}

/* social icons section style start */

.social-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list li {}

.social-list li a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    color: #fff;
}

.social-list li a.facebook {
    background: #0866ff;
}

.social-list li a.instagram {
    background: #fe0b84;
}

.social-list li a.twitter {
    background: #000000;
}

.social-list li a.linkedin {
    background: #0077b5;
}

.social-list li a.youtube {
    background: #ff0000;
}

.social-list li a i {}

.social-list li a:hover {
    transform: translateY(-5px);
}

/* social icons section style start */

/* header section style start */

.header-section {}

.header-section .topheader {
    background: var(--primary-color);
}

.header-section .topheader .topheadersection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.header-section .topheader .topheadersection .topheaderleft {
}

.header-section .topheader .topheadersection .topheaderleft ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-section .topheader .topheadersection .topheaderleft ul li {}

.header-section .topheader .topheadersection .topheaderleft ul li a {
    color: #fff;
    font-size: 16px;
    padding: 12px 0;
    font-family: var(--secondary-font);
}

.header-section .topheader .topheadersection .topheaderleft ul li:last-child a {
    background: red;
    padding: 5px 20px;
    border-radius: 20px;
}

.header-section .topheader .topheadersection .topheaderleft ul li a i {}

.header-section .topheader .topheadersection .topheaderleft ul li a svg {
    width: 20px;
    fill: #fff;
}

.header-section .mainheader {
    box-shadow: -1px 1px 14px rgb(0 0 0 / 17%);
}

.header-section .mainheader .mainheaderbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section .mainheader .mainheaderbox .logoimg {
    width: 12%;
}

.header-section .mainheader .mainheaderbox .logoimg a {}

.header-section .mainheader .mainheaderbox .logoimg a img {
    width: 100%;
}

.header-section .mainheader .mainheaderbox .mainmenu {}

.header-section .mainheader .mainheaderbox .mainmenu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li {}

.header-section .mainheader .mainheaderbox .mainmenu ul li a {
    font-size: 18px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: #6b6f81;
    padding: 30px 12px;
    transition: all .3s ease;
}
.header-section .mainheader .mainheaderbox .mainmenu ul li a:hover {
    background: var(--primary-color);
    color: #fff;
}
.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down:hover > a {
    background: var(--primary-color);
    color: #fff;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li a i {}

.header-section .mainheader .mainheaderbox .mainmenu ul .btnlink {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down {
    position: relative;
}
.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down .dropmenubox {
    position: absolute;
    background: #fff;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #e4e4e4;
    border-top: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 9999;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: all .25s ease;
    visibility: hidden;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down:hover .dropmenubox {
    opacity: 1;
    visibility: visible;
    max-height: max-content;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down .dropmenubox .dropmenu {
    display: block;
}

.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down .dropmenubox .dropmenu li {}

.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down .dropmenubox .dropmenu li a {
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: all .3s ease;
    /* display: inline-block; */
}
.header-section .mainheader .mainheaderbox .mainmenu ul li.drop-down .dropmenubox .dropmenu li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    background: unset;
}

.mainheader .mobtoggle{
    color: #000000;
    width: 25px;
    height: 20px;
    position: relative;
    z-index: 1;
    display: none;
}
.mainheader .mobtoggle span{
    width: 25px;
    height: 2px;
    background: #000000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mainheader .mobtoggle span:nth-child(1){}
.mainheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mainheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}

.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    background: var(--primary-color);
    transition: all .3s ease;
}
.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    right: 0;
}
.mobile-menu .nav-logo a img {
    width: 80%;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 1;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.mobile-menu.show .menu-backdrop {
    opacity: 0.3;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
    background: var(--secondary-color);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--primary-color);
    padding: 0px 0px;
    z-index: 5;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}


.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    padding: 5px;
    background: #fff;
}

.mobile-menu .megamenu-item {
    margin: 0px 0px;
}

.mobile-menu .megamenu-item ul {
    border-bottom: 1px solid rgb(255 255 255 / 31%);
}

.mobile-menu .megamenu-item ul li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(255 255 255 / 36%);
}

.mobile-menu .megamenu-item ul li a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--primary-font);
}

.mobile-menu .megamenu-item ul li.drop-item .dropdown-btn {
    position: absolute;
    right: 12px;
    top: 6px;
    width: 22px;
    height: 22px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    transition: all 500ms ease;
    z-index: 5;
    align-items: center;
    display: flex;
    justify-content: center;
}

.megamenu-item ul li.drop-item .megadropmenu {
}

.mobile-menu .megamenu-item .registrationbox {
    margin: 15px auto;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}

.mobile-menu .megamenu-item .registrationbox a {
    background: #fff;
    color: var(--primary-color);
    border-radius: 5px;
    margin: 0 0px 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-family: var(--primary-font);
    width: 100%;
}

.megamenu-item ul li.drop-item .megadropmenu ul {
    background: var(--secondary-color);
}

.megamenu-item ul li.drop-item .megadropmenu ul li {
    border: none!important;
}

.megamenu-item ul li.drop-item .megadropmenu ul li a {}


/* header section style end */

/* banner section style start */

.bannersection {}

.bannersection .bannerimg {}

.bannersection .bannerimg img {
    width: 100%;
}

/* banner section style end */

/* about section style start */

.aboutus {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.aboutus .aboutusdetails {}
.aboutus .aboutusdetails .maintitle {
    text-align: left;
    margin: 0 0 10px;
}
.aboutus .aboutusdetails .maintitle h3 {
    
}
.maintitle {
    margin: 0 0 20px;
    text-align: center;
}

.maintitle h3 {
    font-size: 28px;
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
}

.maintitle p {
    font-size: 16px;
    font-family: var(--secondary-font);
    margin: 5px 0;
}

.aboutus .aboutusdetails .aboutcontent {}

.aboutus .aboutusdetails .aboutcontent p {
    font-size: 16px;
    font-family: var(--primary-font);
    margin: 0 0 10px;
    text-align: justify;
}

.buttonlink {
    padding: 10px 30px;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--primary-font);
    background: var(--secondary-color);
    width: max-content;
    border-radius: 20px;
    color: #fff;
    background: var(--primary-color);
    transition: all .3s ease;
    border: 1px solid var(--primary-color);
    margin: 15px 0 0;
}
.buttonlink:hover {
    background: #fff;
    color: var(--primary-color);
}
.aboutus .aboutusimage {}

.aboutus .aboutusimage img {
    width: 100%;
}

/* about section style end */

/* product section style start */

.productsection {
    padding: 50px 0;
}
.productsection .productouterbox {
    margin: 20px 0 0;
}

.productsection .productbox {
    margin: 0 10px 30px;
}

.productsection .productbox .productimg {}

.productsection .productbox .productimg a {
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    overflow: hidden;
    height: 300px;
    border: 5px solid var(--secondary-color);
}

.productsection .productbox .productimg a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}
.productsection .productbox .productimg a:hover img {
    scale: 1.1;
}
.productsection .productbox .productdetails {
    text-align: center;
}
.productsection .productbox .productdetails h3 {
    
}

.productsection .productbox .productdetails h3 a {
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
    font-family: var(--primary-font);
}

.productsection .productbox .productdetails p {}

.productsection .productbox .productdetails .weight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.productsection .productbox .productdetails .weight span {
    cursor: pointer;
    background: #1919191a;
    border: 1px solid #d0d0d1;
    text-transform: capitalize;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    transition: all .3s ease;
}

.productsection .productbox .productdetails .weight span.active, .productsection .productbox .productdetails .weight span:hover {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.productsection .productbox .productdetails .buttonlink {
    width: 100%;
    border-radius: 20px;
}

/* product section style end */

/* newsletter section style start */

.newslettersection {
    padding: 50px 0;
    background: var(--secondary-color);
    text-align: center;
}

.newslettersection .newsletterbox {}

.newslettersection .newsletterbox .maintitle {
    
}

.newslettersection .newsletterbox .maintitle h3 {
    color: #fff;
}

.newslettersection .newsletterbox .maintitle h5 {
    color: #ffffff;
    font-family: var(--secondary-font);
    margin: 5px 0 0;
}

.newslettersection .newsletterbox .formbox {}

.newslettersection .newsletterbox .formbox form {}

.newslettersection .newsletterbox .formbox form .formlabelbox {
    position: relative;
    width: 50%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
}

.newslettersection .newsletterbox .formbox form .formlabelbox input[type="email"] {
    padding: 5px 10px;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    outline: unset;
}

.newslettersection .newsletterbox .formbox form .formlabelbox input[type="submit"] {
    position: absolute;
    right: 0;
    padding: 5px 50px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    transition: all .3s ease;
    outline: unset;
    border: 1px solid var(--primary-color);
}
.newslettersection .newsletterbox .formbox form .formlabelbox input[type="submit"]:hover {
    background: var(--secondary-color);
    background: #fff;
    color: var(--secondary-color);
}

/* newsletter section style end */

/* testimonial section style start */

.testimonialsection {
    padding: 50px 0;
    border: 1px solid #e1e1e1;
}

.testimonialsection .testimonialsectionbox {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
}

.testimonialsection .testimonialsectionbox .testimonialbox {
    text-align: center;
    box-shadow: 8px 3px 15px rgb(0 0 0 / 8%);
    padding: 20px 20px;
    position: relative;
    margin: 30px 10px 0;
}

.testimonialsection .testimonialsectionbox .testimonialbox .rating {
    margin: 0 0 10px;
}

.testimonialsection .testimonialsectionbox .testimonialbox .rating ul {
    display: flex;
    justify-content: center;
}

.testimonialsection .testimonialsectionbox .testimonialbox .rating ul li {}

.testimonialsection .testimonialsectionbox .testimonialbox .rating ul li i {color: #ffc107;}

.testimonialsection .testimonialsectionbox .testimonialbox .text {
    margin: 0 0 20px;
}

.testimonialsection .testimonialsectionbox .testimonialbox .text p {
    font-weight: 500;
    font-size: 16px;
    font-family: var(--secondry-font);
    margin: 0 0 10px;
    color: #4d4d4d;
}

.testimonialsection .testimonialsectionbox .testimonialbox .testimonialname {}

.testimonialsection .testimonialsectionbox .testimonialbox .testimonialname h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 10px;
}

.testimonialsection .testimonialsectionbox .testimonialbox .testimonialimg {}

.testimonialsection .testimonialsectionbox .testimonialbox .testimonialimg img {margin: 0 auto 10px;}

/* testimonial section style end */

/* blogs section style start */

.blogsection {
    padding: 50px 0;
}

.blogsection .blogsectionbox {
    margin: 15px 0;
    overflow: hidden;
}
.blogsection .blogsectioninnerbox {
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 14%);
    margin: 15px 10px;
    overflow: hidden;
}

.blogsection .blogsectionbox .blogimg {}

.blogsection .blogsectionbox .blogimg a {
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.blogsection .blogsectionbox .blogimg a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all .3s ease;
}

.blogsection .blogsectionbox:hover .blogimg a img {
    transform: scale(1.1);
}

.blogsection .blogsectionbox .blogsinfobox {
    padding: 20px 20px;
}
.blogsection .blogsectionbox .blogsinfobox .shortdesc {
    min-height: 100px;
}
.blogsection .blogsectionbox .blogsinfobox p {
    font-size: 16px;
    text-align: justify;
    margin: 0 0 10px;
    color: #4e4e4e;
}

.blogsection .blogsectionbox .blogsinfobox a h2 {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 10px;
    transition: all .3s ease;
    text-overflow: ellipsis;
    text-wrap-mode: nowrap;
    overflow: hidden;
}
.blogsection .blogsectionbox .blogsinfobox a h2:hover {
    color: var(--primary-color);
}
.blogsection .blogsectionbox .blogsinfobox a.readmorebtn {
    background: var(--primary-color);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    transition: all .3s ease;
    margin: 10px 0;
}

.blogsection .blogsectionbox .blogsinfobox a.readmorebtn:hover {
    background: #000;
}

/* blogs section style end */

/* footer section style start */

.footersection {
    background: #111111;
}

.footersection .footermainsection {
    padding: 50px 0 0;
}

.footersection .footermainsection .addressdetails {
    text-align: center;
}
.footersection .footermainsection .addressdetails .logoimg {
    margin: 0 auto 20px;
    width: 20%;
}

.footersection .footermainsection .addressdetails .logoimg a {
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    justify-content: center;
}

.footersection .footermainsection .addressdetails .logoimg a img {
    width: 100%;
    background: #fff;
}

.footersection .footermainsection .addressdetails .logoimg a h3 {
    color: #fff;
    margin: 20px 0;
}
.footersection .footermainsection .addressdetails h2 {}

.footersection .footermainsection .addressdetails ul {
    display: block;
}

.footersection .footermainsection .addressdetails ul li {}

.footersection .footermainsection .addressdetails ul li a {}

.footersection .footermainsection .addressdetails ul li a i {
    padding: 0 25px 0 0;
}

.footersection .footersectionbox {
    text-align: center;
    margin: 0 0 30px;
}
.footersection .footersectionbox.menulinks {
    background: #eaeaea24;
    padding: 4px 0;
}
.footersection .footersectionbox h2 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 24px;
}

.footersection .footersectionbox ul {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.footersection .footersectionbox ul li {}

.footersection .footersectionbox ul li a {
    color: #fff;
    font-size: 16px;
    padding: 5px 0;
    display: inline-block;
}

.footersection .footersectionbox .locationmap {
    width: 300px;
    height: 200px;
    margin: 0 0 15px;
}

.footersection .footersectionbox .locationmap iframe {
    width: 100%;
    height: 100%;
}

.footersection .footersectionbox .socialmedialinks {
    gap: 10px;
}

.footersection .footersectionbox .socialmedialinks li {}

.footersection .footersectionbox .socialmedialinks li a {
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.footersection .footersectionbox .socialmedialinks li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footersection .footersectionbox .socialmedialinks li a i {}

.footerbottom {
    padding: 5px 0;
    background: var(--primary-color);
}

.footerbottom .footercopyright {}

.footerbottom .footercopyright p {
    color: #fff;
    text-align: center;
}

.footerbottom .footercopyright p a {
    display: inline-block;
    color: #fff;
}

/* footer section style end */

/* breadcrumb section style start */

.breadcrumb-page{
    background: #ffdcdd;
}
.breadcrumbbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    flex-direction: column;
    gap: 15px;
}
.breadcrumbbox h3{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--secondary-font);
    font-size: 26px;
    color: var(--primary-color);
}
.breadcrumbbox ul{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 50px;
    background: #ec1f2521;
    flex-wrap: wrap;
}
.breadcrumbbox ul li{
    font-size: 14px;
    font-weight: 400;
    display: flex;
    gap: 5px;
    align-items: center;
    color: #020202;
    letter-spacing: .5px;
    font-weight: 600;
}
.breadcrumbbox ul li:not(:last-child):after{
    content: "/";
    color: #000;
}
.breadcrumbbox ul li a{color: #020202;font-weight: 400;}

/* breadcrumb section style end */

/* contact page style start */

.contactsection {
    padding: 50px 0;
}

.contactsection .contactbox {
    padding: 0;
    display: flex;
    gap: 10px;
    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.5);
    width: 90%;
    justify-content: center;
    margin: 0 auto;
}

.contactsection .contactbox .contactleft {
    background: var(--primary-color);
    width: 40%;
    padding: 40px 20px;
    box-shadow: 1px -1px 10px 0px rgba(0, 0, 0, 0.5);
}

.contactsection .contactbox .contactleft h2 {
    color: #fff;
    margin: 0 0 20px;
    font-size: 32px;
    font-family: var(--primary-font);
}

.contactsection .contactbox .contactleft .contactinfo {}

.contactsection .contactbox .contactleft .contactinfo ul {}

.contactsection .contactbox .contactleft .contactinfo ul li {}

.contactsection .contactbox .contactleft .contactinfo ul li a {
    color: #fff;
    font-size: 16px;
    font-family: var(--primary-font);
    padding: 10px 0;
    display: inline-block;
}

.contactsection .contactbox .contactleft .contactinfo ul li a i {
    padding: 0 25px 0 0;
    font-size: 22px;
}

.contactsection .contactbox .contactright {
    padding: 40px 20px;
    width: 60%;
}

.contactsection .contactbox .contactright h2 {margin: 0 0 5px;font-size: 32px;font-family: var(--primary-font);text-transform: uppercase;}

.contactsection .contactbox .contactright p {
    font-size: 16px;
    color: #000;
    margin: 0 0 20px;
}

.contactsection .contactbox .contactright form {}

.contactsection .contactbox .contactright form input {
    width: 100%;
    padding: 10px 10px;
    margin: 0 0 20px;
    border: 1px solid #c7c7c7;
}

.contactsection .contactbox .contactright form textarea {
    width: 100%;
    padding: 10px 10px;
    margin: 0 0 20px;
    border: 1px solid #c7c7c7;
}

.contactsection .contactbox .contactright form .submitbtn {
    width: max-content;
    padding: 10px 30px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
}

.contactsection .contactbox .contactright form .submitbtn:hover {
    background: #d9191e;
}

.socialmedia {
    margin: 20px 0;
}

.socialmedia .socialmedialinks {
    gap: 15px;
    display: flex;
    align-items: center;
}

.socialmedia .socialmedialinks li {}

.socialmedia .socialmedialinks li a {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    transition: all .3s ease;
}
.socialmedia .socialmedialinks li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.contactmap {
    position: relative;
}

.contactmap .mapbox {}

.contactmap .mapbox iframe {
    height: 300px;
    display: inherit;
}

/* contact page style end */

/* gallery page style start */

.gallerysection {padding: 50px 0 50px;}

.gallerysection .gallerybox {margin: 0 0 10px;}

.gallerysection .gallerybox a {}

.gallerysection .gallerybox a figure {
    overflow: hidden;
    height: 300px;
    position: relative;
}

.gallerysection .gallerybox a figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}

.gallerysection .gallerybox a figure span {
    display: block;
    padding: 10px 5px;
    text-align: center;
    background: #d5888e;
    font-size: 16px;
    background: #372e56;
    position: absolute;
    color: #ffffff;
    right: 0;
    left: 0;
    bottom: 0;
    font-weight: 600;
}

/* gallery page style end */

/* product details section style start */

.oneproduct{
    padding: 50px 0 30px;
}
.oneproduct .main_title{}
.oneproduct .product_view{
    width: 100%;
    height: auto;
    padding: 0;
}
.oneproduct .viewproduct_details .btns{
    padding-top: 30px;
    display: none;
}

.oneproduct .viewproduct_details .enquiry{
}
.oneproduct .viewproduct_details .enquiry a{
    border: 1px solid #000;
    display: inline-block;
    padding: 15px 20px 15px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: .3s linear;
    font-weight: 500;
    background: green;
}
.oneproduct .viewproduct_details .enquiry a img{width: 25px;margin-right: 10px;}
.oneproduct .viewproduct_details .enquiry a:hover{
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.productview_img {
    position: relative;
}

.productview_img .mutliimg {
    padding: 0 7px 0 0;
    width: 17%;
    float: left;
    position: relative;
}

.productview_img .mutliimg img {
    width: 80px;
    margin-bottom: 10px;
    cursor: pointer;
    height: unset;
    border: 1px solid #eee;
}

.productview_img img {
    width: 82%;
    /* border-radius: 10px; */
    /* height: 100%; */
    object-fit: contain;
    object-position: top;
    position: relative;
}

.productview_img .extm {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 9;
    background: #fff;
}

.productview_img .extm img {
    width: 100%;
}
.productview_img .mutliimg .slick-arrow {
    bottom: 0;
    top: 105%;
    left: 0%;
    z-index: 999;
}

.productview_img .mutliimg .slick-next {
    right: 20%;
    left: unset;
}

.productview_img .mutliimg .slick-prev:before, .productview_img .mutliimg .slick-next:before {
    font-family: 'Font Awesome 7 Free';
    color: #000;
    font-weight: 700;
    background: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.product-details .product-details-box {
    padding: 10px 5px;
}
.viewproduct_details{
}
.viewproduct_details h2{
    font-size: 26px;
    margin: 0 0 10px;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
}
.ratings{}
.ratings i{
    color: #df9000;
}
.viewproduct_details .price{
    padding: 10px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.viewproduct_details .dis_with_price{
    display: block;
    font-size: 22px;
    margin: 0 0 5px;
    color: var(--primary-color);
}
.viewproduct_details .original_price{
    /* text-decoration: line-through; */
    color: #bdbdbd;
    padding-left: 0;
    display: block;
    font-size: 20px;
    margin: 0 0 5px;
}
.viewproduct_details .off_per{
    padding-left: 0;
    color: #f30505;
} 
.viewproduct_details .price + p{font-weight: 500;margin: 0 0 20px;}
.viewproduct_details .price + p span{font-weight: 700;display: block;font-size: .8em;line-height: 1;}
.viewproduct_details .btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 25px;
}
.viewproduct_details .btns a{
    background: var(--primary-bg);
    height: 35px;
    flex: 2;
    border-radius: 2px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.viewproduct_details .btns a:hover{
    background: var(--secondary-bg);
}
.viewproduct_details .btns a span{
    padding-right: 10px;
}
.viewproduct_details .btns a.whishlist{flex: 0.5;font-size: 25px;}
.viewproduct_details .btns a.buy_now{
    margin: 0 10px;
}
.viewproduct_details .btns a.addtocart{}
.viewproduct_desc{
    margin: 0 0 20px;
}
.viewproduct_desc h3{
    font-size: 18px;
    font-weight: 700;
}
.viewproduct_desc p{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    position: relative;
    padding: 0 0 10px;
    font-family: var(--primary-font);
}
.viewproduct_desc ul{
    padding: 10px 0 0;
}
.viewproduct_desc ul li{
    font-size: 16px;
    font-weight: 500;
    display: flex;
    padding: 5px 0 0 35px;
    position: relative;
}
.viewproduct_desc ul li:before{
    font-size: 12px;
    content: "âœ“";
    font-family: 'FontAwesome';
    color: #fff;
    font-weight: 600;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 0 0;
    position: absolute;
    left: 0;
}

.product_desc{
    padding: 0 0 20px;
}
.product_desc h4{
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px;
}
.product_desc .col-md-12{
    padding: 30px 0 0;
    background: #efeded6b;
}
.product_desc ul{
    list-style: disc;
    padding-left: 20px;
}

.categoriessection {}

.categoriessection .categoriesbox {
    margin: 0 0 20px;
}

.categoriessection .categoriesbox h3 {
    font-size: 22px;
    font-family: var(--primary-font);
    color: #000000;
    margin: 0 0 10px;
    font-weight: 500;
}

.categoriessection .categoriesbox ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.categoriessection .categoriesbox ul li {}

.categoriessection .categoriesbox ul li a {
    padding: 5px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
}
.categoriessection .categoriesbox ul li.active a {
    background: var(--primary-color);
    color: #fff;
}

/* product details section style end */

/* experience section style start */

.experiencesection {
    padding: 50px 0;
    background: #f2f2f2;
}

.experiencesection.productpage .titlebox {
    margin: 0 0 0px;
}

.titlebox {
    text-align: center;
    margin: 0 0 30px;
}

.titlebox h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
    font-family: var(--primary-font);
}

.titlebox p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondry-font);
}

.experiencesection .experiencesectionbox {
    margin: 20px 0 0;
}

.experiencesection .experiencesectionbox .experienceiconbox {
    text-align: center;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 5px;
    min-height: 125px;
    gap: 5px;
    margin: 0 10px;
    background: #fff;
}

.experiencesection .experiencesectionbox .experienceiconbox svg {
    width: 60px;
    text-align: center;
}

.experiencesection .experiencesectionbox .experienceiconbox svg path {}

.experiencesection .experiencesectionbox .experienceiconbox p {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--primary-font);
}

/* experience section style end */

/* blogs details section style start */

.blog-details {
    padding: 50px 0px;
}

.blog-details .blog-detailsbox {}

.blog-details .blog-detailsbox .blog-image {
    text-align: center;
    margin: 0 0 20px;
}

.blog-details .blog-detailsbox .blog-image img {
    width: 100%;
    border-radius: 15px;
    height: 500px;
    object-fit: contain;
    margin: 30px 0 20px;
}

.blog-details .blog-detailsbox .service-details-box {}
.blog-details .blog-detailsbox .service-details-box h2 {
    color: var(--secondary-color);
    font-weight: 400;
    margin: 15px 0 15px;
    text-align: justify;
    font-family: var(--primary-font);
    font-size: 28px;
}
.blog-details .blog-detailsbox .service-details-box p {
    color: #373737;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
    text-align: justify;
    font-family: var(--secondry-font);
}
.blog-details .blog-detailsbox .service-details-box p a {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
}
.blog-details .blog-detailsbox .service-details-box ul {
    margin: 0 20px;
    list-style: disc;
}
.blog-details .blog-detailsbox .service-details-box ul li {
    margin: 0 0 10px;
    color: #373737;
    font-weight: 400;
    text-align: justify;
    font-family: var(--secondry-font);
    font-size: 16px;
}
.blog-details .blog-detailsbox .service-details-box h3{
    font-size: 22px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--primary-color);
    margin: 0 0 10px;
    line-height: normal;
}
.blogs-sidebox {
    box-shadow: 0px 0px 50px 3px rgba(232,232,232,0.7);
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffebde;
}

.blogs-sidebox h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-align: center;
}

.blogs-sidebox .blogs-boxx {
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 10px;
}

.blogs-sidebox .blogs-boxx a {
    display: flex;
    gap: 0px;
    flex-direction: column;
}

.blogs-sidebox .blogs-boxx a .blogs-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs-sidebox .blogs-boxx a .blogs-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.blogs-sidebox .blogs-boxx a .blogs-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blogs-sidebox .blogs-boxx a h5 {
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    color: #fff;
}
.blogs-sidebox .blogs-boxx a:hover .blogs-info h5 {
    color: var(--primary-color);
}

.blogs-sidebox .blogs-boxx a .blogs-info p {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.blog-details .blog-detailsbox .service-details-box h1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    font-size: 1.8rem;
    display: inline-block;
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff !important;
}
.blog-details .blog-detailsbox .service-details-box h1:before {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -30px;
}
.blog-details .blog-detailsbox .service-details-box h1:after {
    content: "";
    height: 100%;
    border-left: 3px solid var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 30px;
    right: -10px;
}

/* blogs details section style end */

.celebsection {
    padding: 50px 0;
}

.celebsection .celebsectionouterbox {
}

.celebsection .celebsectionouterbox .celebsectionbox {box-shadow: 0 0 17px 0 rgb(0 0 0 / 16%);padding: 10px;margin: 10px;}

.celebsection .celebsectionouterbox .celebsectionbox .icon {
    background: #fff2f5;
    width: 70px;
    height: 70px;
    border: 1px solid #ffd9e2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.celebsection .celebsectionouterbox .celebsectionbox .icon svg {
    width: 40px;
    fill: var(--primary-color);
}

.celebsection .celebsectionouterbox .celebsectionbox .content {
    text-align: center;
    margin: 20px 0;
}

.celebsection .celebsectionouterbox .celebsectionbox .content h2 {
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 500;
    color: #000;
}

.celebsection .celebsectionouterbox .celebsectionbox .content p {
    font-size: 14px;
    font-family: var(--secondary-font);
    margin: 10px 0;
}

.celebsection .celebslider {
    margin: 20px 0;
}
