/* FONT IMPORT */


/* Google Font */

@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=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Local Font */

@font-face {
    font-family: "coca-cola";
    src: url("../../front-assets/fonts/coca-cola.ttf");
}

@font-face {
    font-family: "lemon-milk";
    src: url("../../front-assets/new-font/LemonMilk.otf");
}

@font-face {
    font-family: "milestone";
    src: url("../../front-assets/new-font/MilestoneFreeVersion-Script.otf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #B23C3F;
    --secondary: #278024;
    --aqsa-font: "lemon-milk";
    --cola-font: "milestone";
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "coca-cola";
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2.1;
    color: #828282;
    font-family: "Poppins", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

.aqsa-font {
    font: inherit;
    font-family: var(--aqsa-font);
}

.cola-font {
    font: inherit;
    font-family: var(--cola-font);
}

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    z-index: 10000001;
    background-color: var(--primary);
    transition: 0.05s ease-in-out;
}

.cursor-outer {
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--white);
    mix-blend-mode: difference;
    opacity: 0.3;
    z-index: 10000001;
}


/* Cursor End */


/* PRELOADER */

body.loading {
    overflow: hidden;
    height: 100vh;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--primary);
    font-size: 15rem;
    font-weight: bold;
    position: absolute;
    bottom: 0rem;
    right: 5rem;
}

.preLoader .bar {
    height: 20%;
    width: 100vw;
    background-color: var(--white);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    padding: 0.75rem 2em;
    border-radius: 50px;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:hover,
.loginBtn:hover {
    color: var(--white);
}

.themeBtn:before,
.loginBtn:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    inset: 0;
    transition: 0.5s ease;
    transform: scale(0);
    z-index: -1;
}

.themeBtn:hover:before,
.loginBtn:hover:before {
    transform: scale(1);
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

.topBar {
    background: var(--primary);
    padding: 4px 0;
    position: relative;
}

.topWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 4rem;
}

.topWrap p {
    margin: 0;
    color: var(--white);
    font-weight: 500;
}

.topWrap a {
    color: var(--white);
    font-weight: 500;
}

.topWrap a span {
    padding-right: 0.625rem;
}

.topBar .swiper-button-next:after,
.topBar .swiper-button-prev:after {
    color: var(--white);
    font-size: 0.875rem;
}

.topBar .swiper-button-prev {
    left: auto;
}

.topBar .swiper-button-next {
    right: 13%;
}

.navbar-brand {
    padding: 0;
    background: var(--white);
    width: 285px;
    height: 285px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    margin: 0 0 -8rem 0;
    z-index: 1;
}

.navbar-brand > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 2.7rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #040504;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 3px;
    bottom: -5px;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.form-inline {
    margin-left: 2.5rem;
    gap: 1.875rem;
}

.loginBtn {
    color: #040504;
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid var(--black);
    padding: 0.6875rem 1.5em;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.loginBtn i {
    font-size: 0.875rem;
}


/* !NAV HEADER CSS */

/* Banner */
.banner {
    width: 100%;
    height: 1070px;
}

.banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Ban Css Start */

.mainSec {
    background: url(../../upload/images/banBg.png)bottom/cover;
    height: 560px;
    display: flex;
    align-items: center;
    background-position: bottom !important;
}

.mainSec__img {
    width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mainSec__img img {
    width: 100%;
    height: 100%;
}

.mainHeading {
    color: var(--white);
    font-size: 7.625rem;
    line-height: 1;
}

.mainContent span {
    color: var(--white);
    display: block;
    font-size: 1.875rem;
    margin: 0.875rem 0 1.875rem 0;
}

.bannerPath img {
    position: absolute;
}

.bannerPath img:nth-child(3) {
    filter: blur(30px);
}

.path2 {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: -1;
}

.path1 {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
}

.path3 {
    top: 3rem;
    left: 0;
}

.path4 {
    top: 0;
    right: 0;
}

.mouse {
    background: var(--primary);
    width: 50px;
    height: 72px;
    border-radius: 25px;
    display: grid;
    place-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite linear;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


/* Main Ban Css End */


/* About Sec Css Start */

.aboutSec {
    padding: 9.375rem 0 8.125rem 0;
}

.aboutImg {
    text-align: center;
    position: relative;
}

.aboutImg:before,
.aboutImg:after {
    content: "";
    position: absolute;
    width: 88%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 100%;
    z-index: -1;
}

.aboutImg:before {
    background: var(--primary);
    bottom: -1rem;
    right: 1rem;
}

.aboutImg:after {
    border: 1px dashed var(--primary);
    left: 0.75rem;
    top: -1.75rem;
}

.aboutContent {
    margin-left: 1.5rem;
}

.smallHead {
    color: var(--primary);
    font-size: 1.875rem;
    display: block;
    margin-bottom: 5px;
    position: relative;
}

.secHeading {
    color: var(--black);
    font-size: 5.625rem;
    margin: 0;
}

.aboutContent p+p {
    margin-top: 2rem;
}

.aboutContent p {
    width: 93%;
}


/* About Sec Css End */


/* Drink Sec Css Start */

.drinkSec {
    background: url(../../upload/images/drinkBg.webp)top/cover;
    padding: 13.125rem 0;
}

.colaOne {
    position: absolute;
    top: -12rem;
    right: 0;
}

.lines:before,
.lines:after {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 70px;
    height: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.lines:before {
    left: 41%;
}

.lines:after {
    right: 41%;
}

.aqsaCola {
    position: relative;
}

.aqsaCola h2 {
    color: var(--primary);
    font-size: 18rem;
    text-align: center;
    margin: 7.5rem 0 0 0;
    line-height: 1;
}

.colaTwo {
    position: absolute;
    top: -11rem;
    margin: auto;
    left: 12.5rem;
}

.drinkContent {
    margin-left: 4rem;
}


/* Drink Sec Css End */


/* Sip Sec Css Start */

.sipSec {
    background: url(../../upload/images/sipBg.png) no-repeat;
    padding: 16.25rem 0;
    margin-top: -6rem;
}


/* Sip Sec Css End */


/* Product Sec Css Start */

.productSec {
    padding: 8.75rem 0 6.875rem 0;
}

.productHeading .lines:before {
    left: 40%;
}

.productHeading .lines:after {
    right: 40%;
}

.productCard {
    text-align: center;
}

.productCard figure {
    background: #F6F6F6;
    border-radius: 5px;
    padding: 4.6875rem 0;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.productCard figure img {
    width: 200px;
    aspect-ratio: 1;
    object-fit: contain;
    transition: 0.5s ease;
}

.productCard figure:hover img {
    transform: scale(1.1);
}

.productContent h4 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 400;
    margin-top: 1rem;
}

.productContent ul {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.productContent ul li i {
    color: #FFD02A;
}

.productContent .span {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0.75rem 0 1.4rem 0;
}

.productContent span small {
    font-weight: 500;
    font-size: 1rem;
    color: #828282;
    padding-right: 1rem;
}

.productContent .themeBtn {
    width: 100%;
    text-align: center;
    background: var(--secondary);
    margin-top: 1.5rem;
}

.productContent .themeBtn:before {
    background: var(--primary);
}


/* Product Sec Css End */


/* Aqsa Sec Css Start */

.aqsaContent .lines {
    padding-left: 5rem;
}

.aqsaContent .lines:before {
    left: 0;
}

.aqsaContent .lines:after {
    left: 7rem;
}

.aqsaContent p {
    width: 89%;
    margin-bottom: 1.5625rem;
}

.aqsaImg {
    text-align: right;
}

.aqsaImg img {
    border-radius: 20px;
}


/* Aqsa Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 6.25rem 0;
}

.testimonialHeading .lines:before {
    left: 38%;
}

.testimonialHeading .lines:after {
    right: 38%;
}

.testimonialBox {
    border: 2px solid var(--black);
    border-radius: 13px;
    position: relative;
    background: transparent;
    padding: 1.875rem 1.875rem;
    transition: 0.5s ease;
}

.testimonialBox ul {
    display: flex;
    gap: 3px;
    position: absolute;
    top: -1rem;
    right: 1.5625rem;
    background: var(--white);
}

.testimonialBox ul li i {
    color: #FFD02A;
    font-size: 1.5rem;
}

.testimonialBox p {
    font-size: 1rem;
    margin-bottom: 1.375rem;
    line-height: 2.25;
}

.user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user h4 {
    font-size: 1.375rem;
    color: var(--black);
    margin: 0;
}

.user h4 span {
    font-size: 0.9375rem;
    display: block;
    color: rgb(0 0 0 / 50%);
}

.testimonialSlider {
    padding-top: 2.2rem;
}

.testimonialSlider .swiper-slide-next .testimonialBox {
    border-color: #F40000;
    background: #F6FCFF;
}


/* Testimonial Sec Css End */


/* Blog Sec Css Start */

.blogSec {
    background: url(../../upload/images/blogbg.webp)no-repeat;
    padding: 15.625rem 0 8.75rem 0;
}

.blogCard figure {
    overflow: hidden;
    border-radius: 15px;
    background: #F6F6F6;
    border-radius: 5px;
    padding: 2rem 1rem;
}

.blogCard figure img {
    transition: 0.5s ease;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: darken;
}

.blogCard figure:hover img {
    transform: scale(1.05);
}

.blogContent {
    margin-top: 2.5rem;
}

.blogContent span {
    color: var(--black);
    font-size: 1.125rem;
}

.blogContent h4 {
    color: var(--black);
    font-size: 2.5rem;
}

.blogContent p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.blogContent .themeBtn {
    background: var(--secondary);
}

.blogContent .themeBtn:before {
    background: var(--primary);
}


/* Blog Sec Css End */


/* Insta Sec Css Start */

.instaSec {
    padding: 3.75rem 0 2.5rem 0;
}

.instaHeading .lines:before {
    left: 39%;
}

.instaHeading .lines:after {
    right: 39%;
}

.instaWrap+.instaWrap {
    margin-top: 2rem;
}

.instaWrap {
    overflow: hidden;
    border-radius: 20px;
}

.instaWrap img {
    transition: 0.5s ease;
}

.instaWrap:hover img {
    transform: scale(1.1);
}


/* Insta Sec Css End */


/* Footer Css Start */

footer {
    background: url(../../upload/images/footBg.png)top no-repeat;
    position: relative;
}

.footCola {
    position: absolute;
    top: -1rem;
    left: 4rem;
}

.footLogo {
    background: var(--white);
    width: 285px;
    height: 285px;
    display: grid;
    place-items: center;
    border-radius: 100%;
    margin: 1.3rem auto 0;
}

.newsLetter h2 {
    line-height: 0.9;
    margin-top: 5.5rem;
}

.newsLetter span {
    color: var(--white);
    font-size: 1.125rem;
    text-transform: capitalize;
    display: block;
    margin-bottom: 1.25rem;
    font-family: 'Poppins';
}

.newsForm {
    background: var(--white);
    width: 100%;
    max-width: 770px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 0.75rem 0 2rem;
}

.newsForm input {
    background: unset;
    border: unset;
    outline: unset;
    box-shadow: unset;
}

.newsForm input::placeholder {
    color: #828282;
    font-family: 'Poppins';
}

.newsForm .themeBtn {
    border: unset;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3.75rem 0 6.25rem 0;
}

.links li a {
    color: var(--white);
    font-size: 1.125rem;
    display: block;
}

.links li a:hover {
    transform: translateY(-10px);
}

.links li+li {
    border-left: 1px solid var(--white);
    padding-left: 2.5rem;
}

footer h4 {
    color: var(--white);
    font-size: 2.5rem;
    text-align: center;
}

.callAct {
    text-align: center;
}

.callAct a strong {
    color: var(--white);
    font-size: 1.875rem;
    font-family: "Oswald", sans-serif;
}

.socialMedia {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    position: relative;
}

.socialMedia:before,
.socialMedia:after {
    content: "";
    position: absolute;
    background: rgb(255 255 255 / 38%);
    width: 1px;
    height: 124px;
    bottom: -2rem;
}

.socialMedia:before {
    left: 0;
}

.socialMedia:after {
    right: 0;
}

.socialMedia li a {
    background: var(--white);
    width: 55px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 1.375rem;
}

.socialMedia li a:hover {
    background: var(--primary);
    color: var(--white);
}

.callAct a span {
    color: var(--white);
    font-family: 'Poppins';
}

.copyRight {
    border-top: 1px solid rgb(223 223 224 / 50%);
    margin-top: 3.75rem;
    padding: 2rem 0;
}

.copyRight p {
    margin: 0;
    color: var(--white);
    line-height: 1.7;
}

.cart {
    display: flex;
    gap: 5px;
    justify-content: end;
}


/* Footer Css End */


/* Inner Sec Css Start */

.innerBan {
    height: 695px;
    background-position: bottom !important;
}

.aboutInner .row+.row {
    margin-top: 12.5rem;
}

.abtTwo img {
    border-radius: 50px;
}

.abtTwo:before {
    content: "";
    position: absolute;
    border: 1px dashed var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    right: -2rem;
    z-index: -1;
    top: -2rem;
}

.abtCola {
    position: absolute;
    top: 42%;
    right: 0;
}

.drinkInner {
    background: unset;
    padding: 10rem 0 5rem 0;
}

.ourDrink {
    margin: 0 0 -16rem 0;
    z-index: 1;
}

.drinkBlog {
    padding: 22rem 0 7rem 0;
}

.merchandiseInner .row,
.reviewInner .row {
    gap: 4.375rem 0;
}

.reviewInner .testimonialBox:hover {
    background: #F6FCFF;
    border-color: var(--primary);
}

.reviewInner {
    padding-top: 10rem;
}


/* Inner Sec Css End */

.contactInner {
    padding: 12.5rem 0 7.1875rem 0;
}

.contactInfo span {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.contactInfo h2 {
    margin: 0;
    line-height: 1;
}

.contactInfo ul li a div {
    background: #FAFAFA;
    width: 95px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 2rem;
    transition: 0.5s ease;
}

.contactInfo ul li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.contactInfo ul li a div i {
    transition: 0.5s ease;
}

.contactInfo ul li a:hover div {
    background: var(--primary);
}

.contactInfo ul li a:hover div i {
    color: var(--white);
}

.contactInfo ul li a span {
    display: grid;
    color: var(--black);
    text-transform: uppercase;
    margin: 0;
}

.contactInfo ul li a span small {
    font-size: 1.25rem;
    text-transform: initial;
    transition: 0.5s ease;
}

.contactInfo ul li+li {
    margin-top: 2.5rem;
}

.contactInfo ul {
    margin-top: 2rem;
}

.contactBox {
    background: #FAFAFA;
    border-radius: 30px;
    padding: 3.125rem 2.1875rem;
}

.contacForm input,
.contacForm select {
    height: 70px;
}

.contacForm .form-control,
.contacForm select {
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    outline: unset;
    box-shadow: unset;
    border: unset;
    padding-left: 1.5rem;
    color: #828282;
}

.contacForm .form-control::placeholder {
    color: #828282;
}

.contacForm textarea {
    padding-top: 1.5rem;
}

.contacForm .form-group {
    margin-bottom: 2rem;
}

.contacForm .themeBtn {
    border: unset;
}

.mapSec {
    padding-bottom: 3rem;
}

.sipCola {
    margin-top: -15rem;
    text-align: right;
}

/* Product Details */
.Proreview {
    padding: 8rem 0 5rem;
}

.Proreview h2 {
    text-align: left;
    margin: 1rem 0;
    font-size: 3rem;
    color: var(--black);
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #f7c00c;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    padding-right: 1rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #a4a4a4;
}

.Proreview h5 {
    font-size: 2.1875rem;
}

.productSlider-for,
.productSlider-nav {
    overflow: hidden;
}

.productNav {
    background-color: #192026;
    padding: 1.875rem;
    border-radius: 15px;
}

ul.stckst li {
    font-size: 1.625rem;
    color: var(--primary);
    font-weight: 600;
}

ul.stckst li span {
    color: var(--black);
}

.productSlider-for figure {
    width: 100%;
    height: 524px;
}

.productSlider-nav figure {
    width: 100%;
    height: 120px;
    margin: 2rem 0 0;
}

.productSlider-nav img {
    border: 2px solid transparent;
    transition: all 300ms ease-in-out;
}

.productSlider-nav img:hover {
    border-color: var(--primary);
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
}

.quantitySec h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.quantitySec .number {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.number {
    background: transparent;
    padding: 1rem 0;
    border-radius: 7px;
    width: 100%;
    color: #282828;
    user-select: none;
}

.number input {
    width: 50px;
    background: transparent;
    border: none;
    height: 2rem;
    color: var(--black);
    text-align: center;
    outline: none;
    user-select: none;
}

.number .minus {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    background-color: #2d363d;
    border-radius: 8px;
}

.number :is(.plus, .minus) {
    width: 40px;
    aspect-ratio: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 8px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.productNav figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    padding: 1rem;
    border: 2px solid transparent;
}

.rating-container .active {
    color: gold !important;
}


/* cart css start */

.cart-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    position: relative;
}

.cart-list ul li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-list ul li figure {
    width: 222px;
    height: 214px;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-list ul li figure img {
    width: fit-content;
    max-height: 100% !important;
}

.cart-list ul li h4 {
    color: var(--black);
    width: 180px;
    line-height: 2.3rem;
    margin: 0 0 0.8rem;
}

.cart-list ul li h5 {
    font-size: 1.5625rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.cart-list .quantitySec .number {
    background: #f7f6fb;
    border: 1px solid #cccccc;
}

.cart-list .quantitySec .number .minus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec .number .plus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec {
    padding-right: 4rem;
}

.cart-list .quantitySec h6 {
    font-size: 1.25rem;
    margin: 0 0 20px;
}

.cart-list div {
    position: relative;
}

.cart-list div button.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #1c225a;
    opacity: 1;
    text-shadow: unset;
    color: var(--white);
    font-size: 15px;
    border-radius: 5px;
}

.cart-list div + div {
    margin-top: 1.5rem;
}

.cart-total {
    border-top: 1px solid #cccccc;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
}

.cart-total h4 {
    font-size: 1.875rem;
    display: flex;
    align-items: flex-end;
    margin: 0 0 10px;
    gap: 15px;
}

.cart-total h4 small {
    font-size: 15px;
    color: #282828;
}

.cart-total p {
    font-size: 22px;
    color: #282828;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 1.5rem;
    width: 62%;
    line-height: 2.25rem;
}

.quantitySec .number {
    padding: 0;
    font-size: 1rem;
}

.quantitySec .number .minus {
    background: #f7f6fb;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
    color: #000;
}

.quantitySec .number .plus {
    background: #f7f6fb;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
    color: #000;
}

.quantitySec .number input {
    width: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #282828;
}
.number {
    background: transparent;
    padding: 1rem 0;
    border: 0;
    border-radius: 7px;
    width: 100%;
    color: #282828;
    display: flex;
    align-items: center;
}
.number input {
    background: transparent;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
    height: 39px;
}
.cart-page {
    padding: 5rem 0;
}
/* cart css end */

/* checkout css start */

.check-out-form .form-control {
    min-height: 60px;
    margin-bottom: 26px;
    border: 1px solid #707070;
    border-radius: 50px;
    background: transparent;
    width: 100%;
    font-size: 19px;
    padding: 0 1.8rem;
}
.check-out-section.chkot-pag {
    padding: 7rem 0;
    background: linear-gradient(to left, #f3f3f3 47%, #ffffff 47%);
}

.checkout-heading {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.shirt-heading ul {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shirt-heading ul li a {
    font-size: 19px;
    color: #1f2328;
    font-weight: 400;
}

.shirt-heading {
    margin: 0 0 4rem;
}

.shiping-heading {
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0 0 1rem;
}

.acount-log {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.acount-log span {
    font-size: 1rem;
    color: #828282;
}

.acount-log span a {
    color: #828282;
}
.check-out-section input[type="checkbox"] {
    display: none;
}

.check-out-section input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: #828282;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 1rem;
}

.check-out-section input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}

.check-out-section input[type="checkbox"] + label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0px;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
    bottom: 0;
    margin: auto;
}

.check-out-section input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkbox {
    padding-left: 0;
    margin-bottom: 2.5rem;
}
.check-out-form select {
    min-height: 60px;
    margin-bottom: 26px;
    border: 1px solid #707070;
    border-radius: 50px;
    background: transparent;
    width: 100%;
    font-size: 19px;
    padding: 0 1.8rem;
    color: #1f2328;
}

.check-out-form .form-control::placeholder {
    color: #000;
}

.check-out-form .themeBtn {
    border: 0;
    background: #ce1115;
    font-size: 21px;
    padding: 1rem 2em;
    margin-top: 1rem;
}
.acount-log .shiping-heading {
    margin: 0;
}
.checkbox.checkbox12 {
    margin-left: 1.1rem;
    margin-bottom: 1rem;
}

.biling-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
    padding-bottom: 2.5rem;
}

.biling-card div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.biling-card div .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.cola-shirt {
    padding-left: 6rem;
}

.biling-card div .content h5 {
    font-size: 28px;
    color: #1f2328;
    margin: 0 0 6px;
}

.biling-card div .content p {
    font-size: 1rem;
    color: #828282;
    margin: 0;
}

.biling-card div span {
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
}

.biling-card div figure {
    width: 120px;
    height: 120px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.biling-card div figure img {
    width: 65px;
}
.discount span {
    background: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 0.5rem 2rem;
}

.discount span label {
    font-size: 19px;
    color: #1f2328;
    font-weight: 500;
    margin: 0;
}

.discount span .themeBtn {
    margin: 0;
    background: #a11115;
    font-size: 1.125rem;
    padding: 0.8rem 1.8em;
}

.discount {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
}

.subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
    padding: 1.5rem 0;
}

.subtotal h4 {
    font-size: 1.25rem;
    color: #1f2328;
    font-weight: 400;
    width: 60px;
    line-height: 1.5;
    margin: 0;
}

.subtotal div {
    text-align: right;
}

.subtotal div span {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
}

.subtotal div h6 {
    color: #828282;
    margin: 6px 0 0;
}
ul.total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 0;
}

ul.total li {
    font-size: 1.25rem;
    color: #1f2328;
    font-weight: 400;
}
/* checkout css end */

/* login css start */

body.login-page header {
    display: none;
}

body.login-page footer {
    display: none;
}

body.login-page .instaSec {
    display: none;
}

.login-main {
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to left, #ffffff 47%, rgb(230 243 255 / 75%) 47%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-main img {
    display: table;
    margin: auto;
}

.creat-card {
    background: #fcfeff;
    border-radius: 25px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 8rem;
}
.creat-card h4 {
    font-size: 26px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 3rem;
}

.creat-card form label {
    font-size: 1.25rem;
    color: #7c838a;
    font-weight: 500;
    display: block;
}

.creat-card form input {
    background: rgb(176 186 195 / 40%);
    border: 0;
    width: 100%;
    height: 65px;
    border-radius: 20px;
    font-size: 1.1rem;
    padding: 0 2.2rem;
    margin: 0 0 2.5rem;
}

.creat-card form {
    width: 100%;
}

.creat-card form .themeBtn {
    background: #ce1115;
    border-radius: 10px;
    border: 0;
    font-size: 26px;
    display: table;
    margin: 0 auto 2rem;
}

.creat-card form + label {
    width: 100%;
    font-size: 1.125rem;
    color: #7c838a;
    margin: 0 0 1rem;
    text-align: center;
}

.creat-card label a {
    color: #ce1115;
    font-weight: 500;
}

.creat-card span {
    font-size: 26px;
    color: #b0bac3;
    font-weight: 500;
    display: table;
    margin: 0 auto 1.2rem;
}

.creat-card .d-flex {
    width: 100%;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 11rem;
}

.creat-card .d-flex a {
    display: flex;
    align-items: center;
    border: 1px solid #7c838a;
    padding: 1.1rem 2rem 1.1rem 4.3rem;
    font-size: 14px;
    color: #7c838a;
    border-radius: 15px;
    position: relative;
}

.creat-card .d-flex a img {
    position: absolute;
    left: 6px;
}

.creat-card a.reserved {
    font-size: 1.25rem;
    color: #7c838a;
}
/* login css end */
.productthumb_img img {
    cursor: pointer;
}

.productSlider-nav .swiper-slide.swiper-slide-thumb-active .productthumb_img img {
    border-color: var(--primary);
}

.comingsoon {
    filter: grayscale(1);
    user-select: none;
    pointer-events: none;
}

.comingsoon .comingsoon_text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    width: 100%;
    padding: 1.5rem 1rem 0;
    display: block;
    margin: 0;
}

.instaWrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}
.aboutContent p span {
    font-size: 1.125rem !important;
    font-weight: 400;
    line-height: 2.1;
    color: #828282 !important;
    font-family: "Poppins", sans-serif !important;
}

.aboutImg img {
    width: 608px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}