/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Playfair+Display:wght@400..900&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #E60000;
    --secondary: #333333;

    /* Font Variable */
    --font-text: "Montserrat", sans-serif;
    --font-heading: "Playfair Display", serif;
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

section {
    position: relative;
    /* padding: 4rem 0; */
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.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;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

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

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    display: inline-block;
    padding: 0.75em 1.25em 0.75em 2.125em;
    border-radius: 2.5rem;
    line-height: normal;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}

.themeBtn input {
    background: transparent;
    border: none;
    color: var(--white);
}

.themeBtn::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border-radius: 50%;
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: 0.85s ease;
    z-index: -2;
}


.themeBtn.black::after {
    background-color: var(--black);
}

.themeBtn:hover {
    color: var(--primary);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
}

.themeBtn:hover input {
    color: var(--primary);
}

.themeBtn.black:hover {
    color: var(--black);
}

.themeBtn:hover::before {
    transform: scale(30);
}

.themeBtn:hover:after {
    background-color: var(--white);
}

.heading {
    font-size: 3.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

.text-black {
    color: var(--black) !important;
}

/* !GLOBAL CSS */

/* NAV HEADER CSS */

header {
    position: relative;
    z-index: 111;
    width: 100%;
    transition: 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* TOP  BAR */

.top-bar {
    background-color: var(--primary);
    padding: 10px 0;
    text-align: center;
}

.notificationBar .swiper-button-prev,
.notificationBar .swiper-button-next {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    margin: 0 !important;
    transform: translateY(-50%);
    transition: 0.5 ease;
}

.notificationBar .swiper-button-prev {
    left: 0;
}

.notificationBar .swiper-button-next {
    right: 0;
}

.notificationBar .swiper-button-prev::after,
.notificationBar .swiper-button-next::after {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    transition: 0.5 ease;
}

.notificationBar .swiper-button-prev:hover,
.notificationBar .swiper-button-next:hover {
    background-color: var(--white);
}

.notificationBar .swiper-button-prev:hover::after,
.notificationBar .swiper-button-next:hover::after {
    color: var(--primary);
}

.notification p {
    color: var(--white);
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
}

.notification p a {
    font-weight: 600;
    color: var(--white);
    text-decoration: underline !important;
}

/* !@TOP BAR */

/* MAIN HEADER */

.main-headerWrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 0;
}

.searchBox {
    width: 100%;
    max-width: 532px;
    display: flex;
    align-items: center;
    border: 1px solid #707070;
    border-radius: 1.75rem;
    padding: 5px;
    margin-left: auto;
}

.searchBox input {
    border: 0;
    padding: 0;
    padding-left: 1rem;
    flex: 1;
    border-radius: 2.5rem;
}

.searchBox input:focus {
    box-shadow: none;
}

.searchBox button.btn {
    background: var(--black);
    color: var(--white);
    border-radius: 2.5rem;
    padding: 8px 1.87rem;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: 0.5s ease;
}

.searchBox button.btn:hover {
    background-color: var(--secondary);
}

.quickAccountList {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.quickAccountList a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6F6F6F;
    font-size: 0.875rem;
    transition: 0.5s ease;
}

.quickAccountList a div {
    display: flex;
    flex-direction: column;
    line-height: normal;
}

.quickAccountList a div strong,
.quickAccountList a div span {
    font-weight: 500;
}

.quickAccountList a:hover div span {
    color: var(--primary);
}

.quickAccountList li+li {
    border-left: 1px solid rgb(112 112 112 / 50%);
    padding-left: 1.125rem;
}

.more-btn {
    display: flex;
}

.more-btn a {
    font-size: 1.5rem;
}

.more-btn a:hover {
    color: var(--primary);
}

/* !MAIN HEADER */

.navbar {
    width: 100%;
    border-top: 1px solid var(--black);
    padding: 1.5rem 0;
    background-color: var(--white);
    transition: 0.5s ease;
}

.navbar.fixed {
    border: 0;
    position: fixed;
    top: 0;
    padding: 0.75rem 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-toggler {
    color: var(--primary);
    opacity: 0.5;
}

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

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 0;
    max-width: 80px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--primary);
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

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

.btnMenu,
.btnClose {
    color: var(--primary);
    opacity: 0.5;
    transition: 0.5s ease;
}

.btnMenu:hover,
.btnMenu:focus,
.btnClose:hover,
.btnClose:focus {
    color: var(--primary);
    opacity: 1;
    box-shadow: none;
}

.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: var(--white);
    z-index: 112;
    transition: 0.5s ease;
}

.isopenheader .menu {
    left: 0;
}

.menu .btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.menu ul {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu ul li a {
    padding: 10px 1.5rem;
    display: block;
    color: var(--black);
    font-size: 1.25rem;
}

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

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 550px;
    background: #F3F3F3;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.main-slider .homeSlider.swiper-container .swiper-slide>img.img-fluid {
    width: 100%;
}

.homeSlider .swiper-pagination {
    bottom: 6.5rem;
    width: fit-content;
    left: 16.875rem;
    display: flex;
    gap: 10px;
}

.homeSlider .swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    display: inline-block;
    margin: 0 !important;
    opacity: 0.1;
    background: var(--primary);
    outline: 1px solid var(--primary);
    outline-offset: -1px;
    transition: 0.5s ease;
}

.homeSlider .swiper-pagination-bullet-active {
    outline-offset: 4px;
    opacity: 1;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--black);
    font-size: 4rem;
    line-height: 1.18;
    font-weight: 600;
    text-transform: capitalize;
}

.main-slider p {
    color: var(--black);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}


/* !MAIN HERO SLIDER CSS */


/* PRODUCT SECTION */

.swiper-controls-wrapper {
    position: relative;
}

.swiper-controls-wrapper .swiper-button-prev,
.swiper-controls-wrapper .swiper-button-next {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid;
    color: var(--primary);
    border-radius: 50%;
    margin: 0 !important;
    transform: translateY(-50%);
    transition: 0.5s ease;
}

.swiper-controls-wrapper .swiper-button-prev {
    left: -6.5rem;
}

.swiper-controls-wrapper .swiper-button-next {
    right: -6.5rem;
}

.swiper-controls-wrapper .swiper-button-prev::after,
.swiper-controls-wrapper .swiper-button-next::after {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    transition: 0.5s ease;
}

.swiper-controls-wrapper .swiper-button-prev:hover,
.swiper-controls-wrapper .swiper-button-next:hover {
    background-color: var(--primary);
    color: var(--white);
}

.swiper-controls-wrapper .swiper-button-prev:hover::after,
.swiper-controls-wrapper .swiper-button-next:hover::after {
    color: var(--white);
}

.product-section {
    padding: 4.125rem 0 5.625rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    user-select: none;
}

.category-item figure {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background-color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.11);
    transition: 0.5s ease;
}

.category-item figure img {
    transition: 0.5s ease;
}

.category-item p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #303030;
    transition: 0.5s ease;
}

.category-item:hover figure {
    background-color: var(--primary);
}

.category-item:hover figure img {
    filter: brightness(0) invert(1);
    transform: scale(0.9);
}

.category-item:hover p {
    color: var(--primary);
}

.product-section .row {
    margin-top: 3.25rem;
    gap: 2.25rem 0;
}

.product-card {
    user-select: none;
    position: relative;
}

.product-card .salebadge {
    background-color: var(--primary);
    display: inline-block;
    padding: 5px 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    position: absolute;
    top: 2.375rem;
    left: -0.875rem;
    z-index: 1;
}

.product-card .salebadge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 14px;
    height: 14px;
    background-color: #EC354A;
    clip-path: polygon(0 0, 100% 100%, 100% 0);

}

.product-card figure {
    border-radius: 10px;
    background-color: #FAF7F8;
    overflow: hidden;
    padding-inline: 2rem;
    margin-bottom: 1.125rem;
}

.product-card figure img {
    width: 100%;
    max-width: 250px;
    height: calc(400px - 5rem);
    margin: 2rem auto;
    object-fit: contain;
    transition: 0.5s ease;
}

.product-card:hover figure img {
    transform: scale(0.85);
}

.product-card p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: #303030;
    transition: 0.5s ease;
}

.product-card a:hover p {
    color: var(--primary);
}

.product-card .rating {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 4px;
}

.product-card .rating li {
    color: #8D8D8D;
}

.product-card .rating i {
    color: #FCDD43;
}

.product-card .price {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.product-card .price del {
    font-size: 0.875rem;
}

.product-section {
    padding: 5.375rem 0 5.625rem;
}

.productSlider {
    padding-bottom: 5rem;
}

.productSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.productSlider .swiper-pagination-bullet {
    height: 1.25rem;
    width: 1.25rem;
    display: inline-block;
    margin: 0 !important;
    opacity: 0.1;
    background: var(--primary);
    outline: 1px solid var(--primary);
    outline-offset: -1px;
    transition: 0.5s ease;
}

.productSlider .swiper-pagination-bullet-active {
    outline-offset: 4px;
    opacity: 1;
}

/* !PRODUCT SECTION */



/* CTA SECTION */

.cta-section {
    overflow: hidden;
}

.cta-section .container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.cta-section p {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.375rem;
}

.btnShop {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 1.5rem 8px 8px;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    z-index: 1;
}

.btnShop i {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary);
    display: grid;
    place-items: center;
    outline: 1px solid var(--primary);
    outline-offset: -5px;
}

.btnShop::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s ease;
}

.btnShop:hover {
    color: var(--white);
}

.btnShop:hover::before {
    transform: scale(10);
}


/* !@CTA SECTION */

/* INSTA SECTION */

.insta-section {
    padding: 3.5rem 1rem 2.5rem;
}

.insta-section .row .row {
    gap: 2.75rem 0;
}

.insta-section figure {
    border-radius: 1.25rem;
    overflow: hidden;
}

.insta-section figure a {
    display: block;
    position: relative;
}

.insta-section figure a::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1.25rem;
    transform: scale(0);
    z-index: 1;
    transition: 0.5s ease;
}

.insta-section figure a::after {
    content: '\f16d';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 3rem;
    transform: scale(2);
    opacity: 0;
    z-index: 2;
    transition: 0.5s ease;
}

.insta-section figure img {
    transition: 0.5s ease;
}

.insta-section figure:hover a::before,
.insta-section figure:hover a::after {
    transform: scale(1);
    opacity: 1;
}

.insta-section figure:hover img {
    transform: scale(1.1) !important;
}

/* !@INSTA SECTION */

/* FOOTER */
footer {
    background-color: #EEEEEE;
    padding-top: 3.875rem;
}

.footertext {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.8;
    color: var(--black);
    max-width: 365px;
}

footer h5 {
    font-size: 1.625rem;
    font-weight: 500;
    margin-bottom: 0.875rem;
}

footer h3 {
    font-size: 1.875rem;
    margin-bottom: 1.75rem;
    font-weight: 700;
}

footer .quicklist {
    display: flex;
    flex-flow: wrap column;
    max-height: 280px;
    gap: 1rem 0;
}

footer .quicklist a {
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
}

footer .quicklist a:hover {
    color: var(--primary);
}

footer .newlettertext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-break: normal;
    margin-top: -0.75rem;
}

footer .newsletter {
    display: flex;
    align-items: center;
    border: 2px solid var(--black);
    border-radius: 2rem;
    overflow: hidden;
}

footer .newsletter input {
    flex: 1;
    height: 60px;
    background-color: transparent;
    border: 0;
    padding-left: 1.5rem;
}

footer .newsletter input:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

footer .newsletter .btn {
    color: var(--primary);
    padding: 10px 0.875rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}

footer .newsletter .btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

footer .social-link {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

footer .social-link a {
    font-size: 1.75rem;
    color: var(--black);
}

.copyRight {
    padding: 1.375rem 0;
    background-color: var(--primary);
    margin-top: 2.75rem;
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
}

/* !@FOOTER */
.pagebtitle {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0 1.375rem;
}


.breadcrumb {
    align-items: center;
    gap: 1.375rem;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
}

.breadcrumb-item a i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgb(230 0 0 / 10%);
    color: #E60000;
    font-size: 1.75rem;
    transition: 0.5s ease;
}

.breadcrumb-item a:hover i {
    background-color: var(--primary);
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--black);
    margin-right: 12px;
    font-size: 1.25rem;
    padding: 0;
    line-height: normal;
}



.aboutinner {
    padding: 5rem 0;
}

.aboutinner .heading {
    font-weight: bold;
}

.aboutinner p {
    width: 86%;
    border-left: 4px solid #E60000;
    padding-left: 1rem;
    margin-bottom: 0;
}




.contactBox {
    text-align: center;
}

.contactBox figure {
    background: var(--white);
    box-shadow: 0 3px 35px rgb(0 0 0 / 30%);
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    transition: 0.5s ease-in-out;
    border: 15px solid #E60000;
}

.contactBox:hover figure {
    box-shadow: 0 3px 32px rgb(0 0 0 / 22%);
}

.contactBox:hover .contactText a {
    font-weight: 600;
}

.contactBox:hover .contactText p {
    font-weight: 400;
}

.contactText {
    padding-top: 2rem;
}

.contactText p {
    font-size: 20px;
    color: #000000;
}

.contactText a {
    font-size: 28px;
    color: var(--black);
    font-weight: 500;
}

.contactForm .form-group label {
    font-size: 1.375rem;
    color: var(--black);

}

.contactForm .form-group .form-control {
    border-radius: 6px;
    height: 65px;
    border: 1px solid #C0C0C0;
}

.contactForm .form-group textarea {
    min-height: 155px;
}

.contactForm .form-group .form-control::placeholder {
    color: #7C7C7C;
}

.contactForm .form-group textarea::placeholder {
    padding-top: 8px;
}

.contactForm .themeBtn {
    border: unset;
}

.contactText h3 {
    font-size: 28px;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.contactForm .form-group label {
    font-size: 1.375rem;
    color: var(--black);
    font-family: 'futuraMed';
}

.contactForm .form-group .form-control {
    border-radius: 6px;
    height: 66px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 1px 14px rgb(187 187 187 / 16%);
}

.contactForm .form-group textarea {
    min-height: 169px;
}

.sermonsInner.contactInner {
    padding: 5rem 0;
}

form.contactForm .form-check-label {
    font-size: 18px;
    font-weight: 500;
}

.logowrap {
    border: 1px solid #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 11%);
    margin-bottom: 2rem;
    text-align: center;
    width: 318px;
    height: 180px;
    display: block;
}

section.brandsSection {
    padding: 5rem 0;
}

.logowrap figure img {
    width: 187px;
    height: 167px;
    object-fit: contain;
}

.logowrap:hover {
    border-color: #E60000;
}

.newsForm input {
    width: 100%;
    height: 75px;
    padding-left: 0.5rem;
    border: 1px solid #707070;
    border-radius: 38px;
    font-style: italic;
}

.newsForm input::placeholder {
    color: #4E4E4E;
}

.newsForm {
    display: flex;
    align-items: center;
    position: relative;
}

.newsForm .themeBtn {
    position: absolute;
    right: 17px;
    border: unset;
    font-size: 1rem;
    border-radius: 41px;
    padding: 1rem 2.5em;
    background: #000;
    color: #fff;
    text-transform: uppercase;
}

form.newsForm a {
    position: absolute;
    color: #A2ADB2;
    left: 1.5625rem;
    font-size: 1.5rem;
}

.newsForm .themeBtn::before {
    position: unset;
}



#sidebarAccordion .card .card-header {
    background-color: white;
    padding: 0;
}

#sidebarAccordion .card .card-header .btn {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    padding: 1.25rem 1.5rem;
}

#sidebarAccordion .card .card-header .btn::after {
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    float: right;
    color: var(--primary);
}

#sidebarAccordion .card .card-body {
    padding: 0;
}

#sidebarAccordion .card .card-body .checklist {
    max-height: 335px;
    overflow-y: scroll;
    padding: 1.5rem 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#sidebarAccordion .card .card-body .checklist li label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #8D8D8D;
}


h2.titleside {
    background: var(--primary);
    width: 100%;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 22px;
    padding: 1.25rem;
    margin-bottom: 0;
}

.sorting {
    display: flex;
    align-items: center;
    justify-content: end;
}

.sorting label {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    margin-right: 1rem;
    margin-top: 1rem;
}

.sorting .form-control {
    border-color: #8D8D8D;
    border-radius: 25px;
    max-width: 259px;
    height: 49px;
}

/* Begin: 3 Steps Cart CSS */

.checkOutStyle {
    padding: 6em 0px;
    overflow-x: hidden;
}

.checkOutStyle .title h4 {
    line-height: 1.5rem;
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.checkOutStyle .title p {
    line-height: 1rem;
    font-size: 1rem;
    margin-bottom: 5px;
    margin: 0 0 2.5rem;
}

.checkOutStyle .title p a {
    color: #000000;
}

.cartItemCard h4 {
    text-transform: capitalize;
    font-size: 1.125rem;
}

.formStyle {
    border-radius: 4px;
    padding: 0 0.9375rem;
}

.formStyle label {
    font-size: 0.9375rem;
    text-transform: capitalize;
    font-weight: 500;
    color: black;
}

.formStyle .form-control {
    height: 3.125rem;
    margin-bottom: 2rem;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 0.05);
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #c7c7c7;
}

.formStyle textarea.form-control {
    height: auto;
    resize: none;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox input[type='checkbox'] {
    display: none;
}

.checkbox input[type='checkbox']+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: #000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.checkbox input[type='checkbox']+label:last-child {
    margin-bottom: 0;
}

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

.checkbox 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);
}

.order-summery hr {
    border-top: 1px solid #ebebeb;
    margin: 20px 0;
}

.order-summery .applyCoupon .form-control {
    height: 3.125rem;
    width: 70%;
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 0.05);
}

.order-summery .applyCoupon .btnStyle {
    height: 3.125rem;
    width: 30%;
    border-radius: 0;
}

.order-summery strong,
.order-summery span {
    font-size: 0.935rem;
    font-weight: 600;
    color: #000;
}

.order-summery strong {
    color: #000;
}

.cartItemCard {
    border-radius: 5px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    align-items: center;
    margin-bottom: 1.25rem;
    border: 1px solid #d2d2d2;
}

.cartItemCard img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
}

.cartItemCard .price {
    color: var(--primary);
}

.proCounter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter .minus,
.proCounter .plus {
    width: 3.125rem;
    height: 3.125rem;
    background: #ccc;
    border: 1px solid #ccc;
    color: #616161;
    font-size: 1.5625rem;
    padding: 4px 5px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.proCounter input {
    height: 3.125rem;
    width: 3.125rem;
    text-align: center;
    font-size: 1rem;
    border: 0;
    background: transparent;
    border: 1px solid #ccc;
}

.cartItemCard .delete i {
    color: red;
    font-size: 1.25rem;
}

.shipping-billing-col {
    list-style: none;
    border-top: 1px solid #ccc;
    margin-top: 1.5rem;
    padding: 0;
}

.shipping-billing-col p,
.shipping-billing-col a {
    position: relative;
    color: #333;
    font-size: 1rem;
    line-height: 1.625em;
}

.shipping-billing-col p {
    margin: 0px;
    padding: 20px 0 20px 40px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #ccc;
}

.shipping-billing-col p i {
    position: absolute;
    top: 17px;
    left: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary);
    border-radius: 100%;
    font-size: 0.75rem;
    transition: all 0.3s ease-in-out;
}

.shipping-billing-col .edit {
    color: #000000;
    text-transform: capitalize;
    font-size: 1rem;
    padding: 0;
    float: right;
    font-weight: 500;
}

.mouse-cursor {
    display: none;
}

/* END: 3 Steps Cart CSS */


/* proDtl-button */
.proDtlSlider img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.proDtlSliderThumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.proDtl-button {
    width: 60px;
    height: 60px;
    background: #ffffff30;
    border-radius: 100%;
    backdrop-filter: blur(20px);
}

.proDtl-button::after {
    font-size: 1.75rem;
    color: var(--white);
}
