
@import url('https://fonts.googleapis.com/css2?family=Patua+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


:root{
    --head-font:"Patua One", serif;
    --body-font:"Rubik", sans-serif;
    --main-color:#db3241;
    /* --secondary-color:#fbc5b9; */
    --highlight-color:#121212;
    --back-color:#161616;
    --white:#ededed;
}
*{
    transition: all 0.4s ease;
}
body{
    overflow-x: hidden;
    font-family: var(--body-font);
}
#cookiePopup button{
    padding: 8px 20px;
    height: 100% !important;
    background-color: var(--back-color) !important;
}
#cookiePopup button:hover{
    background-color: #fff !important;
    color: #161616 !important;
}
#cookiePopup button:last-child{
    padding: 8px 20px;
    height: 100% !important;
    background-color: red !important;
}
#cookiePopup button:last-child:hover{
    background-color: #161616 !important;
    color: #fff !important;
}
#cookiePopup{
    padding: 40px !important;
    z-index: 99999 !important;
    background-color: var(--main-color) !important;
    width: 70% !important;
    /* clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0 30%); */
    margin: auto;
    left: 0 !important;
    right: 0 !important;
}
#cookiePopup p{
    padding: 0 3rem;
    color: #fff;
}
#cookiePopup a{
    color: #ffcdd2;
}
#cookiePopup h4{
    color: #fff;
}
a{
    text-decoration: none;
}
.navbar{
    background: var(--back-color);
    position: absolute !important;
    width: 100%;
    z-index: 10;
}
.navbar-expand-lg .navbar-nav .nav-link{
    font-size: 18px;
    font-weight: 500;
    opacity: 1;
    transition: all 0.4s ease;
    color: var(--white);
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
    color: var(--main-color);
}
.navbar-light .navbar-nav .nav-link:focus{
    color: #fcfcfc;
}
.navbar-nav {
    gap: 30px;
}
.ban-sec{
    background: url(../images/banner.jpg);
    background-size: cover;
    height: 700px;
    background-position: bottom;
    background-repeat: no-repeat;
}
.ban-dark-overlay{
    backdrop-filter: brightness(0.1);
    width: 100%;
    height: 100%;
}
.banner-side-img{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
}
.ban-bottom-img{
        width: 500px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.ban-top-side-img{
    width: 70px;
    position: absolute;
    top: 140px;
    left: 0;
}
.ban-top-dots{
    width: 75px;
    position: absolute;
    top: 154px;
    left: 20px;
}
.ban-bottom-dots{
    width: 95px;
    position: absolute;
    bottom: 39px;
    right: 149px;
    transform: rotate(63deg);
}
.ban-top-flower{
    width: 150px;
    position: absolute;
    top: 40px;
    right: 45%;
}
.ban-cont{
    text-align: left;
}
.ban-cont h2{
    font-family: var(--body-font);
    color: var(--main-color);
    font-size: 24px;
    font-weight: 400;
}
.ban-cont h3{
    font-family: var(--head-font);
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
}
.ban-cont p{
    color: var(--white);
}
@keyframes fade-in{
    0%{
        opacity: 0;
        /* transform: scale(0); */
    }
    100%{
        opacity: 1;
        /* transform: scale(1); */
    }
}
.ban-img{
    animation: bounce 5s ease infinite;
}
.ban-img-1{
    width: 100%;
    position: absolute;
    top: -60px;
    left: 0;
    /* animation: bounce 5s cubic-bezier(.5, 0.05, 1, .5) infinite; */
}
.ban-img-2{
    width: 100%;
    position: absolute;
    top: -4px;
    left: 0;
    animation: rotate 3s linear infinite;
}
.ban-img-3{
    width: 100%;
    position: absolute;
    top: -60px;
    left: 65px;
    opacity: 1;
    transition: opacity 0.5s ease;
    /* animation: bounce 5s cubic-bezier(.5, 0.05, 1, .5) infinite; */
}
.ban-img:hover .ban-img-3, .ban-img:hover .ban-img-4{
    opacity: 0;
}
.ban-img-4{
    width: 100%;
    position: absolute;
    top: -60px;
    right: 65px;
    opacity: 1;
    transition: opacity 0.5s ease;
    /* animation: bounce 5s cubic-bezier(.5, 0.05, 1, .5) infinite; */
}
.ban-back-text{
        font-size: 10rem;
    position: absolute;
    text-shadow: -1px -1px 0 var(--white), 1px -1px 0 var(--white), -1px 1px 0 var(--white), 1px 1px 0 var(--white);
    color: var(--back-color);
    font-family: var(--head-font);
    top: 6rem;
    right: 4%;
    opacity: 0.3;
}
.ex-btn{
		position: relative;
		letter-spacing: 0.25em;
		margin: 0 auto;
		padding: 1rem 1.5rem;
		background: transparent;
		outline: none;
		font-size: 18px;
		color: #333;
        font-weight: 500;
        /* transform: scale(0.7); */
        border: none;
}
.ex-btn::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    transform: skewX(30deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -2;
}
		.ex-btn::after {
			background-color: #fff;
            top: 0rem;
			left: 0rem;
		}
		 
.ex-btn:hover::after {
				top: 0;
				transform: skewx(0deg);
			}
			.ex-btn:hover::after {
				left: 0rem;
			}
.ex-btn2{
    color: #fff;
    z-index: 1;
}
		.ex-btn2::after {
			background-color: #333;
            position: absolute;
			top: 0rem;
			left: 0rem;
            z-index: -1;
		}
.my-btn{
    font-family: var(--head-font);
    color: var(--white);
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    box-shadow: none;
    font-size: 18px;
    line-height: 1.3em;
    background-color: var(--main-color);
    padding: 18px 39px 15px;
    border: 2px solid var(--main-color);
    /* clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); */
}
.my-btn:hover{
        color: #fff;
    background-color: transparent;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 100% 100%, 0 100%, 0 20px);
}
.my-btn2:hover{
    color: var(--highlight-color) !important; 
}
/* .my-btn::after{
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:transparent;
    border: 2px solid var(--main-color);
    border-radius: 50px;
    transition: all 0.4s ease;
}
.my-btn:hover::after{
    top: 0;
    left: 0;
} */
/* .btn-span{
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.8, 1);
}
.my-btn:hover .btn-span{
    transform: translateX(-10px);
    display: block;
} */
.small-square{
    position: absolute;
    bottom: 20px;
    z-index: 2;
    right: 300px;
    animation: slide-up 7s infinite linear;
}
.small-square2{
    position: absolute;
    bottom: 80px;
    z-index: 2;
    right: 232px;
    animation: slide-up2 9s infinite linear;
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes slide-up{
    0% {bottom: 0px;} 
25% {bottom: 20px; -webkit-transform:rotate(0deg)} 
50% {bottom: 20px; -webkit-transform:rotate(180deg)}
75% {bottom: 20px; -webkit-transform:rotate(360deg)}
100% {bottom: 0px}
}
@keyframes slide-up2{
    0% {bottom: 0px;} 
25% {bottom: 80px; -webkit-transform:rotate(0deg)} 
50% {bottom: 80px; -webkit-transform:rotate(180deg)}
75% {bottom: 80px; -webkit-transform:rotate(360deg)}
100% {bottom: 0px}
}
.bene-sec{
    position: relative;
    z-index: 1;
    background: var(--highlight-color);
    padding: 3rem 0;
    /* text-align: center; */
    margin-top: -80px;
}
.bene-sec img{
    width: 80px;
}
.bene-sec h3{
    font-size: 1.5rem;
    font-family: var(--head-font);
    color: var(--white);
}
.bene-sec hr{
    background: var(--main-color);
    /* border: 1px solid var(--main-color); */
    width: 80%;
    height: 2px;
    /* margin: 1.5rem auto; */
    opacity: 1;
}
.ab-sec{
    padding: 120px 0px 60px;
    position: relative;
    /* background: var(--back-color); */
    overflow: hidden;
}
/* .ab-img img{
    position: absolute;
    top: -260px;
    left: 0;
} */
.benefit-main-sec{
    position: relative;
    padding: 100px 0px 40px;
    /* background: var(--back-color); */
}
/* .benefit-main-sec .card img{
    height: 450px;
    object-fit: cover;
    object-position: center;
} */
@keyframes fadeup{
    0%{
        height: 0;
        opacity: 0;
    }
    100%{
        height: 100%;
        opacity: 1;
    }
}
/* .benefit-main-sec .card-body{
    bottom: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0%) 0%, #351A07 100%);
    height: 0%;
    width: 100%;
    right: 0;
    align-content: end;
    padding: 2rem;
    opacity: 0;
}
.benefit-main-sec .card:hover .card-body{
    animation: fadeup 2s ease forwards;
} */
/* .benefit-main-sec .card{
    transform: scale(0.9);
    transition: transform 2s ease;
}
.benefit-main-sec .card:hover{
    transform: scale(1);
} */
.benefit-main-sec h4{
    font-family: var(--head-font);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--highlight-color);
    width: 30%;
}
.benefit-main-sec .card{
    /* border-radius: 5rem 5rem 5rem 2rem; */
    background: var(--main-color);
    
     /* clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); */
     position: relative;
}
.benefit-main-sec .card-body{
    padding: 1rem 1rem;
}
/* .benefit-main-sec .card::after{
    content: '';
    background: #ededed;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
} */
.benefit-main-sec .card-title{
    font-family: var(--head-font);
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
}
.benefit-main-sec .card-text{
    font-family: var(--body-font);
    color: #fff;
    font-size: 15px;
}
/* @keyframes bounce{
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
} */
@keyframes bounce{
    0%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(1rem);
    }
    100%{
        transform: translateY(0rem);
    }
}
@keyframes fade-exit{
    0%{
        transform: translateY(0rem);
        opacity: 1;
    }
     100%{
        transform: translateY(-20rem);
        opacity: 0;
    }
}
@keyframes fade-entry{
    0%{
        opacity: 0;
        transform: translateX(-20rem);
    }
    100%{
        opacity: 1;
        transform: translateX(0rem);
    }
}
.bene-main{
    z-index: 3;
}
.bene-main:hover{
    transform: scale(1.1);
}
.bene-main:hover .small-car{
    animation: fade-entry 2s ease forwards;
}
.bene-main:hover .ben-card-btm hr{
    opacity: 1;
}
.small-car{
    width: 150px;
    position: relative;
    z-index: 3;
    opacity: 0;
}
.ben-card-btm{
    position: absolute;
    width: 90%;
    margin-top: 1rem;
}
.ben-card-btm hr{
    width: 100%;
    background: white;
    opacity: 1;
    position: absolute;
    height: 1px;
    z-index: 1;
    margin: 0;
    opacity: 0;
}
.bene-card-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    animation:bounce 2s ease infinite;
}

.benefit-main-sec .card:hover .bene-card-icon{
    animation: fade-exit 1.5s ease forwards;
}

.bene-back-img-1{
    position: absolute;
    left: -114px;
    bottom: -66px;
    width: 120%;
    z-index: 1;
}
.bene-back-img-2{
    position: absolute;
    right: -73px;
    bottom: -133px;
    width: 120%;
    z-index: 3;
}
.bene-main:hover .bene-back-img-2{
    transform: rotate(20deg);
    transform-origin: bottom;
}
.bene-main:hover .bene-back-img-1{
    transform: rotate(-20deg);
    transform-origin: bottom;
}
.lotus-small{
    position: absolute;
    width: 450px;
    bottom: 0;
    left: 0;
}
.about-inner{
    background: rgba(0,0,0,0.9);
    padding: 100px 0px;
    height: 100%;
    width: 300px;
    margin-left: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.heading-div{
    position: relative;
}
.heading-div h2{
    font-family: var(--head-font);
    font-weight: 700;
    font-size: 5.5rem;
    color: var(--back-color);
    opacity: 0.8;
    text-shadow: -1px -1px 0 var(--secondary-color), 1px -1px 0 var(--secondary-color), -1px 1px 0 var(--secondary-color), 1px 1px 0 var(--secondary-color);
}
.heading-div h3{
    font-family: var(--body-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 5px;
}
.ab-cont{
    /* margin-top: -165px; */
}
.ab-cont h4{
    font-family: var(--head-font);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--highlight-color);
}
.benefit-sec{
    background: #f9ebe8;
    background-size: cover;
    height: fit-content;
}
.benefit-sec .ban-dark-overlay{
    padding: 80px 0px;
}
.benefit-heading h4{
    font-family: var(--head-font);
    font-weight: 700;
    font-size: 5.5rem;
    color: #fff;
    opacity: 0.1;
}
.benefit-heading{
    position: relative;
}
.benefit-heading h3{
    font-family: var(--body-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 5px;
}
.benefit-inner h2{
    font-family: var(--head-font);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--white);
}
.benefit-inner h5{
    font-family: var(--head-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}
.benefit-inner p{
    color: var(--white);
    font-size: 15px;
    font-family: var(--body-font);
}
.benefit-card{
    position: relative;
}
.benefit-icon li{
    background-color: #d4995e;
    width: 70px;
    height: 70px;
    align-items: center;
    border-radius: 50%;
    color: #000;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--head-font);
    font-weight: 600;
    left: 0;
    right: 0;
    margin: auto;
}
.benefit-card-line{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.bene-side{
    position: absolute;
    bottom: -189px;
    right: 0px;
    width: 120%;
    opacity: 0.5;
}
.benefit-card-cont{
    height: 280px;
    width: 80%;
    align-content: center;
    background-color: #fff;
}
.benefit-card-cont h2{
    font-size: 2rem;
    font-family: var(--head-font);
    color: #333333;
}
.benefit-card-cont p{
    font-size: 15px;
    font-family: var(--body-font);
}
.bene-main2{
    margin-top: -100px;
}
.bene-main3{
    margin-top: -200px;
}
.right-content{
    margin-right: 0;
    margin-left: auto;
    padding-left: 30px;
}
.prod-sec{
    padding: 150px 0px 80px;
    text-align: center;
    /* background: var(--back-color); */
}
.prod-sec .card{
    padding:20px;
    flex-direction: row !important;
    align-items: center;
    min-height: 285px;
}
.prod-sec h1{
    font-family: var(--head-font);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--highlight-color);
}
.prod-sec .my-btn{
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    overflow: visible;
    z-index: 1;
}
.prod-sec .my-btn:hover{
    overflow: visible;
}
.prod-sec .my-btn::after{
    background: var(--main-color);
    transform: skew(30deg);
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease;
}
.prod-sec .my-btn:hover::after{
    transform: skew(0deg);
}
.prod-sec .btn-span{
    /* padding: 1rem 0.5rem; */
    font-size: 15px;
}
.prod-sec .ex-btn{
    letter-spacing: normal;
    padding: 1rem;
}
.prod-sec .ex-btn::after{
    background-color: var(--main-color)!important;
}
.prod-div .card{
    transition: all 0.4s ease;
}
.prod-div .card:hover{
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.prod-back{
    background: url(../images/prod-back.png);
    background-size: cover;
}
.footer{
    background: var(--main-color);
    padding: 60px 0px 0px;
}
.inner-quickview figure .btn-quickview{
    background-color: var(--main-color);
}
.small-square-all{
    position: absolute;
    animation: rotate 10s infinite linear;
    z-index: 10;
}
.badge-circle{
    background: var(--main-color);
}
footer a:hover, footer a:focus{
    margin-left: 10px;
    color: #f9ebe8;
}
.footer-cont{
    list-style: none;
}
.footer-cont h1{
    font-size: 1.5rem;
    color: var(--white);
}
.footer-cont h2{
    font-size: 18px;
    color: var(--white);
}
.footer-cont p{
    font-size: 15px;
    color: var(--white);
}
.footer-cont a{
    color: var(--white);
    font-size: 15px;
}
.footer-copyright{
    color: #e1e1e1;
    width: fit-content;
    margin: auto;
    display: block;
    font-size: 13px;
    padding: 20px 0px;
}
.prod-main-img{
    width:80%;
    /* clip-path: polygon(10% 0, 100% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 100%, 0 10%); */
    position: relative;
}
.other-ban{
    background: url(../images/other-ban.png);
    background-size: cover;
    padding: 140px 0px 80px;
    text-align: center;
}
.other-header{
    background: #fff;
    height: 90px;
}
.other-ban .breadcrumb-item{
    color:var(--white);
}
.other-ban .breadcrumb-item a{
    color: #f9ebe8;
}
.other-ban .breadcrumb-item a:hover{
    color: var(--main-color);
}
.other-ban h1{
    color: var(--white);
    font-family: var(--head-font);
}
.contact-sec{
    padding: 1rem 0 3rem;
    color: #000;
}
.contact-sec svg{
    margin: auto;
}
.contact-sec h3{
    padding: 3rem 0px;
}
.contact-sec .card{
    border: none;
    text-align: center;
    background: transparent;
}
.prod-single{
    margin-top: -280px;
}
.contact-icon{
    width: 60px;
    height: 60px;
    margin: auto;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--main-color);
}
.contact-icon img{
    width: 30px;
    height: 30px;
}
.prod-details h1{
    font-size: 2.5rem;
    color: #333333;
    font-weight: 600;
    font-family: var(--head-font);
}
.prod-details h2{
    font-size: 2rem;
    color: var(--main-color);
    font-family: var(--head-font);
    margin: 15px 0px;
}
.prod-description h3{
    font-size: 24px;
    font-weight: 600;
    font-family: var(--body-font);
    color: #333333;
}
.prod-description ul{
    list-style-type: disc;
}
.prod-description li{
    margin: 10px 0px;
    color: #000;
}
.cart-details h6{
    font-size: 15px;
    margin: 0 5px;
}
.cart-table tr, .cart-table th{
    text-align: center;
    vertical-align: middle;
}
.cart-table button{
    border: none;
    background: transparent;
}
.cart-table select{
    padding: 5px;
}
.cart-table i{
    color: red;
}
.cart-table i:hover{
    color: #fff;
}
.cart-side-div{
    padding: 0rem 2rem 2rem;
    background: #fff;
    height: fit-content;
    border-radius: 5px;
        clip-path: polygon(10% 0, 100% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 100%, 0 10%);
}
.table-hover>tbody>tr:hover {
    color: var(--main-color);
}
.checkout-btn{
    width: fit-content;
    margin: auto;
    margin-top: 2rem;
}
.checkout-form{
    padding: 80px 0px;
    color: #000;
}
.checkout-form input, .checkout-form select{
    padding: 1rem;
    margin: 15px 0px;
}
.checkout-details{
        padding: 24px;
        background: #fff;
        margin-bottom: 3rem;
        border-radius: 5px;
    }
.form-control:focus{
    border-color:var(--main-color) ;
    box-shadow: 0 0 0 .25rem #d4995eab;
}
.checkout-form input[type="radio"]{
    accent-color: #b38024;
}
.c_terms h1{
    font-size: 2rem;
}
.prod-ingred{
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 0px #e1e1e1;
    margin-top: 3rem;
    background: #fff;
}
.bene-cont-mob{
    text-align: left;
}
.prod-btn{
    transform:scale(1.2);
    margin-top:4rem;
    margin-bottom:-2rem;
}
.ft-cont-mob{
    padding: 0rem;
}
@media (max-width:768px){
    #cookiePopup{
        padding: 40px !important;
        width: 90% !important;
        clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0%);
        flex-direction: column;
    }
    #cookiePopup p{
        padding: 0 ;
        text-align: center;
    }
    .ban-sec{
        text-align: center;
        height: 550px;
        overflow: hidden;
    }
    .bene-cont-mob{
        text-align: center;
    }
    .ben-card-btm{
        display: none;
    }
    .ban-cont h3{
        font-size: 3.5rem;
    }
    .ban-cont{
        margin-top: 70px;
    }
    .ab-cont{
        text-align: center;
        margin-top: 0;
    }
    .ab-sec{
        overflow: hidden;
        padding: 0px;
    }
    .ab-cont .heading-div{
        height: 40px;
    }
    .heading-div h3, .benefit-heading h3 {
        left: 0;
        right: 0;
        margin: auto;
    }
    .heading-div h2{
        font-size: 4.5rem;
    }
    .benefit-sec{
        text-align: center;
    }
    .right-content {
        margin: 0;
        padding-left: 1rem;
    }
    .benefit-card-cont{
        width: 100%;
    }
    .benefit-card{
        text-align: center;
    }
    .benefit-main-sec h4{
        width: 100%;
    }
    .bene-main2{
        margin-top: 2rem;
    }
    .bene-main3{
        margin-top: 2rem;
    }
    .navbar-toggler {
        background-color: var(--main-color);
    }
    .navbar-collapse {
        background: var(--main-color);
        text-align: center;
    }
    .contact-sec{
        text-align: center;
    }
    .prod-details{
        text-align: center;
        margin-top: 3rem;
    }
    .prod-details ul{
        list-style: none;
        padding: 0;
    }
    .cart-table{
        padding: 0px 10px;
    }
	.ab-img{
        width: 100%;
        padding-top: 70px;
    }
    .ab-img img{
        top: -50px;
    }
    .prod-single{
    margin-top: -225px;
    }
    .cart-side-div{
        width: 90%;
        margin: 3rem auto 0;
    }
    .prod-sec .card{
        flex-direction: column !important;
        min-height: 433px;
    }
    .prod-btn{
        transform:scale(1);
        margin-left: 1rem;
    }
    .ft-cont-mob{
        padding: 2rem;
    }
}
@media (min-width:768px) and (max-width:1200px){
    .prod-sec .card{
        flex-direction: column !important;
        min-height: 433px;
    }
}