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

html {
	font-size: 16px;
	overflow-x: clip;
}

body {
	position: relative;
	font-family: "Roboto", sans-serif;
	background: #fff;
	overflow-x: clip;
}

@font-face {
	font-family: 'eurostar';
	src: url('../fonts/eurostarblackextended.ttf');

}

::placeholder {
	color: var(--white);
}



/*.container {
    max-width: 1170px;
}*/

:root {
	--white: #ffffff;
	--black: #000;
	--gary-color: #727272;
	--lightgary-color: #b2b9bd;
	--theme-color: #030D15;
	--primary-color: #283259;
}

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

h1,
h2,
h3,
h4 {
	color: #000;
	font-family: 'eurostar';
}

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

section {
	padding: 5rem 0;
	position: relative;
}

/* PRELOADER */

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

.preLoader {
	width: 100%;
	height: 100%;
	background: #010001;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 99999;
	display: none;
}

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

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

.preLoader .counter {
	color: var(--white);
	font-size: 15rem;
	font-family: 'eurostar';
	font-weight: 700;
	position: absolute;
	bottom: 0rem;
	right: 5rem;
}

.preLoader .bar {
	height: 20%;
	width: 100vw;
	background-color: #283259;
} */


/* PRELOADER */
/* 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 */

/* btn css */

.themeBtn {
	background: var(--theme-color);
	font-size: 1.125rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	padding: 1.04em 1.96em;
	border-radius: 7px;
	line-height: normal;
}

.themeBtn.borderBtn {
	background: transparent;
	border: 1px solid #fff;
	padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}

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

	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
}

/* mouse animation css  */

/* navigation css */

.top-bar {
	background: #222222;
	position: relative;
	padding: 10px 0;
}

.an-navbar {
	padding: 20px 0;
}

.shiping-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-bar p {
	margin: 0;
	color: var(--white);
}

.top-bar a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	color: var(--white);
	font-weight: 500;
	margin-right: 3rem;
}

.top-bar .swiper-button-prev {
	left: auto;
}

.top-bar .swiper-button-next {
	right: 0;
}

.top-bar .swiper-button-next:after {
	font-size: 1rem;
	color: var(--white);
}

.top-bar .swiper-button-prev:after {
	font-size: 1rem;
	color: var(--white);
}

.navbar-brand {
    width: 160px;
    margin: 0;
    padding: 0;
}

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

.scarch-bar {
	height: 56px;
	border-radius: 37px;
	background-color: #F3F3F3;
	display: flex;
	align-items: center;
	padding: 0 1.3rem;
	width: 470px;
	border: 2px solid #B9B9B9;
	margin-left: 3rem;
}

.select {
	position: relative;
	display: flex;
	width: 14em;
	color: var(--secondary);
	height: 3em;
	border-radius: 0.25em;
	overflow: hidden;
	border-right: 1px solid #707070;
	border-radius: 0;
}

.select select {
	appearance: none;
	outline: 0;
	border: 0;
	box-shadow: none;
	flex: 1;
	padding: 0;
	background-image: none;
	cursor: pointer;
	background: transparent;
	font-size: 0.875rem;
	color: #000;
	font-weight: 500;
}

.select::after {
	content: "\25BC";
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem 1.3rem;
	font-size: 0.875rem;
	transition: 0.25s all ease;
	pointer-events: none;
}

.scarch-bar .input-group {
	justify-content: space-between;
}

.form-outline {
	margin-left: 1rem;
	width: 80%;
}

.form-outline .form-control {
	border: 0;
	padding: 0 0.5rem;
	width: 100%;
	background: transparent;
}

.serach-btn {
	padding: 0;
}

.serach-btn i {
	font-size: 1.5rem;
	font-weight: 400;
}

.navbar-nav {
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	    margin-left: 26px !important;
}

.navbar-nav .nav-item .nav-link {
	font-size: 0.875rem;
	color: #040504;
	text-transform: capitalize;
	font-weight: 500;
	padding: 0 0;
	display: inline-block;
}

.form-inline .dropdown button {
	background: transparent;
	border: 1px solid var(--black);
	border-radius: 50px;
	font-size: 1rem;
	color: var(--black);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7.5px 16px;
}

.form-inline {
	gap: 1.5rem;
}

.form-inline a {
	font-size: 1.5rem;
	color: var(--black);
}

.form-inline a.cart {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}

.form-inline a.cart span {
	width: 16px;
	height: 16px;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 10px;
	color: var(--white);
}

/* Nav Fixed */
.menu-btn {
    cursor: pointer;
}

.nav-fixed {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: -1;
    padding: 5rem 0;
    transform: scale(0.8);
    opacity: 0;
    transition: all 300ms ease-in-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.nav-fixed.active {
    opacity: 1;
    transform: scale(1);
    z-index: 99999;
}

.nav-fixed ul {
    height: 492px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem 0;
    overflow-y: auto;
}

.nav-fixed ul li a {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.nav-fixed ul li a:hover {
    color: var(--lightgary-color);
    padding-left: 0.5rem;
}

.nav-fixedClose {
    background: none;
    border: none;
    outline: none;
    font-size: 2rem;
    position: absolute;
    top: 3rem;
    right: 3rem;
}

/* Nav Fixed */

/* navigation css */

/* slider css */

.mainSlider {
	height: 860px;
	position: relative;
	z-index: 1;
	padding: 0;
}

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

.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: flex-start;
	align-items: center;
}

.homeSlider .slide-inner:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0C0A0D;
	opacity: 30%;
}

.homeSlider .slide-inner.bg-image-two::before {
	opacity: 60%;
}

.slideContent {
    text-align: left;
    margin-top: 14rem;
}

.slideContent h1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 6.25rem;
    margin: 0;
}

.slideContent h2 {
	font-size: 2.25rem;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

a.themeLine {
	font-size: 1.75rem;
	color: var(--white);
	text-transform: capitalize;
	border-bottom: 3px solid var(--white);
}

.form-inline .dropdown .dropdown-menu a.dropdown-item {
	font-size: 1rem;
}

.homeSlider.swiper-container .swiper-pagination-bullet {
	background: transparent;
	font-size: 1.125rem;
	color: var(--white);
	opacity: 1;
	width: auto;
	height: auto;
	font-weight: 500;
	border-bottom: 2px solid var(--white);
	border-radius: 0;
	padding: 0 12px;
	height: 32px;
	display: flex;
	align-items: center;
}

.homeSlider.swiper-container .swiper-pagination {
	bottom: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.homeSlider.swiper-container .swiper-pagination-bullet-active {
	font-size: 1.875rem;
}

/* slider css */


.mainHead {
	font-size: 4.0625rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	/* line-height: 0.1; */
}

.mainHead span {
	font-size: 1.375rem;
	font-family: "Roboto", sans-serif;
	display: block;
}


.title {
	margin-bottom: 2rem;
}

/* promain-section */
.pro-card figure {
	background: #434547;
	min-height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .pro-card figure img {
	width: 100%;
} */

.pro-content h5 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 18px 0 0 0;
	color: #fff;
}

.pro-content {
	border-bottom: 1px solid #DDDDDD;
	margin-top: 1rem;
	padding-bottom: 1rem;
}



ul.star {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 8px 0;
}

ul.star li {
	color: #fff;
}

ul.star li span {
	font-size: 7px;
	color: #fff;
	font-weight: 500;
}

.pro-content a {
	font-size: 0.9375rem;
	font-weight: bold;
	color: #DB3819;
}

.pro-content a del {
	color: #BDBDBD;
}



.pro-card {
	margin-bottom: 57px;
}

.pro-main {
	padding-bottom: 0;
}

.title a {
	font-size: 1.75rem;
	font-weight: 500;
	color: #030D15;
	text-decoration: underline !important;
	position: absolute;
	right: 0;
}

/* promain-section */



/* blog-section */
.blog-section {
	background: url(../images/blogbg.png)center/cover no-repeat;
}

.blog-wrap {
	position: relative;
	margin-bottom: 16px;
}

.blog-content {
	position: absolute;
	bottom: 2.5rem;
	left: 0;
	padding: 0 1.5rem;
}

.blog-content p {
	font-size: 1.125rem;
	color: #fff;
	margin: 0;
}

.blog-content h5 {
	color: #fff;
	font-size: 1.675rem;
	font-weight: bold;
	width: 100%;
}

.blog-content .themeBtn,
.project-content .themeBtn,
.blog-inner-card--content .themeBtn,
.event-card--content .themeBtn {
	border: 1px solid #fff;
	border-radius: 3.125rem;
	font-size: 1rem;
	background: transparent;
}

/* blog-section */




.video-main {
	background: url(../images/video11.webp)center/cover no-repeat;
}



figure.video-card {
	position: relative;
}

figure.video-card:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(0 0 0 / 33%);
	border-radius: 25px;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}

figure.video-card a {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--white);
}

figure.video-card:hover:before {
	opacity: 1;
}

.classic-main {
	padding: 5rem 0 7rem 0;
    background: url(../images/video11.png) center / cover no-repeat;
}
.classic-main .pro-card figure {
    background: transparent;
    min-height: 440px;
}
.about-content .mainHead {
	color: var(--white);
}

.about-content h5 {
	font-size: 1.0625rem;
	color: var(--white);
	font-weight: bold;
	line-height: 1.875rem;
	margin: 0 0 20px;
}

.about-main {
	background: url(../images/aboutbg.png)center/cover no-repeat fixed;
}

.about-content p {
	color: var(--white);
	line-height: 1.875rem;
	padding-right: 5px;
}

a.read {
	font-size: 1.75rem;
	color: var(--white);
	font-weight: 500;
	border-bottom: 3px solid var(--white);
}



.review-main {
	background: url(../images/customerbg.png)center/cover no-repeat fixed;
}

.review-card {
	background: var(--white);
	border-radius: 15px;
	padding: 2rem 3.2rem;
}

.review-card p {
	font-size: 1.125rem;
	color: var(--black);
	line-height: 2.0625rem;
	margin: 0 0 1.7rem;
}

.review-card .d-flex {
	align-items: center;
	gap: 15px;
}

.review-card .d-flex h5 {
	font-size: 1.625rem;
	color: #030D15;
	font-weight: bold;
	margin: 0 0 5px;
}

.review-card .d-flex p {
	font-size: 1.1875rem;
	margin: 0;
	line-height: normal;
}

.reviewSlider {
	padding-bottom: 5rem;
}

.reviewSlider .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	background: transparent;
	border: 2px solid var(--white);
	opacity: 1;
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--white);
}





/* insta-Section */
.insta-Section {
    background: url(../images/instaBg.png) center / cover;
    padding: 4.0625rem 0 3.125rem 0;
}


.insta-Section .swiper-button-next,
.insta-Section .swiper-button-prev {
	width: 52px;
	height: 52px;
	border: 2px solid #fff;
	border-radius: 50px;
	font-size: 2.5rem;
	color: var(--black);
	top: 60%;
}

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

.insta-Section .swiper-button-prev {
	left: -90px;
}

.insta-Section .swiper-button-next {
	right: -90px;
}

input[type="file"] {
	display: none;
}

.fileup {
	text-align: center;
	margin-top: -0.5rem;
	margin-bottom: 1rem;
}

.fileup label {
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
}

/* insta-Section */


/* Footer Sec Css Start */

a {
	cursor: pointer;
}

footer {
	background-color: #080D0F;
	padding: 5rem 0 0 0;
}

footer h3 {
	color: var(--white);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 500;
	font-family: 'Roboto';
	border-bottom: 1px solid #323232;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

footer a {
	color: #D8D8D8;
	font-size: 0.875rem;
}


.servicesLinks li+li {
	margin-top: 12px;
}

.bottomFooter {
	padding: 41px 0 41px 0;
	border-top: 1px solid #323232;
	text-align: center;
	margin-top: 52px;
}

.bottomFooter .links {
	display: flex;
	gap: 30px;
}



footer a:hover,
.bottomFooter a:hover {
	color: var(--secondary);
}

.footerLogo {
    display: block;
    width: 200px;
    margin: 0 auto;
}


.socialLink {
	display: flex;
	gap: 3rem;
	justify-content: flex-end;
}

.socialLink a {
	color: var(--white);
	font-size: 2rem;
}

.bottomFooter p {
	margin-bottom: 0;
	text-align: center;
	color: var(--white);
	font-size: 1rem;
}

.rightline {
	position: relative;
}

.rightline::before {
	position: absolute;
	content: "";
	height: 440px;
	width: 2px;
	background: #323232;
	right: 0;
}

.rightline.rightline2::before {
	content: unset;
}

/* Footer Sec Css End */


.navbar-nav .nav-item .nav-link:hover {
	color: #8D1612;
}

a.themeLine:hover {
	color: #d5c8c7;
}

.blog-content .themeBtn:hover,
.project-content .themeBtn:hover,
.blog-inner-card--content .themeBtn:hover,
.event-card--content .themeBtn:hover {
	background: #000;
	color: #fff;
}


.featuressection {
    background: url(../images/featurebg.png) center / cover no-repeat;
    padding: 5rem 0 2rem 0;
}

.swiper.featureSlider {
	margin-left: 15rem;
}

/* switch-theme-btn */
.switch-theme-btn {
	position: fixed;
	padding: 1rem 1.25rem;
	top: 20%;
	right: -252px;
	background: #7C00FE;
	z-index: 999;
	font-size: 1.25rem;
	font-family: 'eurostar';
	text-transform: uppercase;
	color: var(--white);
	border-radius: 0.325rem 0 0 0.325rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 2rem;
	transition: all 0.3s ease;
    animation: bgcolor 8s infinite;
}

.switch-theme-btn span {
    font-family: 'Font Awesome 5 Pro';
}

@keyframes bgcolor {
	0% {
		background: #7C00FE;
	}   
	
	10% {
	    background: #36C2CE;
	}
	
	20% {
	    background: #F9E400;
	}

	30% {
		background: #615EFC;
	}
	
	40% {
	    background: #3DC2EC;
	}
	
	50% {
	    background: #F5004F;
	}
	
	60% {
	    background: #402E7A;
	}
	
	70% {
	    background: #D10363;
	}
	
	80% {
	    background: #141E46;
	}
	
	90% {
	    background: #EB5B00;
	}

	100% {
		background: #7C00FE;
	}
}

.switch-theme-btn:hover {
    right: 0;
    color: var(--white);
}

.exploretheme {
    width: 100%;
    height: 100dvh;
    background: var(--black);
    position: fixed;
    inset: 0;
    z-index: 9999;
    text-align: center;
    align-content: center;
    display: none;
}

.exploretheme-video {
    width: 100%;
    height: 640px;
    object-fit: contain;
    margin-top: -8rem;
}


.exploretheme-btn {
	gap: 1.5rem;
	margin-top: -2rem;
}

.exploretheme-btn .themeBtn {
    background: #615EFC;
}

.exploretheme-btn .themeBtn:hover {
	color: var(--white);
}

/* inner-pages */
.img--radius,
.img--radius2,
.img--radius3 {
	border-radius: 27px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
}

.img--radius2 {
	border-radius: 0.625rem;
}

.img--radius3 {
	border-radius: 1.25rem;
}

.secHeading {
	font-size: 3.125rem;
	text-transform: capitalize;
	color: var(--white);
}

.inner-banner {
	height: 532px;
}

.inner-banner>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-banner__content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.inner-banner__content h1 {
	font-size: 3.75rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white);
}

.about-inner-one,
.book-product,
.video-bg4,
.team-section,
.returns-exchanges-section {
	background: url("../images/aboutbg2.webp") no-repeat center / cover fixed;
}

.project-section,
.blog-inner-section,
.team-detail-section {
	background: url("../images/project-bg.webp") no-repeat center / cover fixed;
}

.gallery-section,
.video-gallery,
.event-section,
.faqs-section,
.order-history-section {
	background: url("../images/video-gallery-bg1.webp") no-repeat center / cover fixed;
}

.gallery-bg2,
.video-bg2,
.story-section,
.contact-section,
.shop-section,
.wishlist-section {
	background: url("../images/gallery-bg2.webp") no-repeat center / cover fixed;
}

.video-bg3,
.vision-and-mission,
.gallery-bg3,
.order-tracking-section,
.rewards-program-section {
	background: url("../images/video-gallery-bg2.webp") no-repeat center / cover fixed;
}

.about-main .row+.row,
.project-section .row+.row,
.vision-and-mission .row+.row {
	margin-top: 3rem;
}

.project-content h5,
.blog-inner-card--content h5 {
	font-size: 1.125rem;
	font-weight: 400;
	margin: 0 0 0.5rem;
	line-height: normal;
}

.galleryImg {
	margin-bottom: 2.25rem;
	position: relative;
}

.gallery-section .row .col-lg-6:nth-last-child(-n+2) .galleryImg,
.book-product .row .col-lg-3:nth-last-child(-n+4) .book-card,
.team-section .row .col-lg-4:nth-last-child(-n+4) .team-card {
	margin-bottom: 0;
}

.galleryImg img,
.book-card__img img {
	transform: scale(1);
	width: 100%;
	object-fit: cover;
}

.galleryImg:hover img,
.book-card:hover .book-card__img img {
	transform: scale(1.1);
}

.book-card {
	margin-bottom: 4rem;
	transition: all 0.5s ease-in-out;
}

.book-card__content h4 {
	font-size: 1.25rem;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	color: var(--white);
	margin: 1.25rem 0 0.5rem;
}

.book-card__content a {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--white);
}

.photo-xl {
	height: 798px;
}

.galleryImg.photo-lg {
	height: 678px;
}

.galleryImg.photo-md {
	height: 458px;
}

.galleryImg.photo-sm {
	height: 338px;
}

.galleryImg.photo-xl img,
.galleryImg.photo-lg img,
.galleryImg.photo-md img,
.galleryImg.photo-sm img {
	height: 100%;
}

.video-gallery .galleryImg .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-gallery .galleryImg .play-btn img {
	transform: scale(1) !important;
	width: auto;
	height: auto;
}


.blog-inner-card,
.blog-inner-card--content,
.event-card,
.event-card--content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.blog-inner-card,
.event-card {
	gap: 2rem;
	padding-bottom: 6rem;
}

.blog-inner-section .row .col-lg-6:nth-last-child(-n+2) .blog-inner-card,
.event-section .row .col-lg-6:nth-last-child(-n+2) .event-card {
	padding-bottom: 0;
}

.blog-inner-card--content,
.event-card--content {
	gap: 1rem;
}

.blog-inner-card--content *,
.event-card--content *,
.team-card__content *,
.team-detail-content *,
.faqs-section #accordion .card *,
.contact-info *,
.tracking-card *,
.returns-step *,
.product--list *,
.order-history-section *,
.wishlist-table * {
	color: var(--white);
}

.blog-inner-card--content :is(h5, .secHeading, p),
.event-card--content :is(h5, .secHeading, p) {
	margin: 0;
}

.blog-inner-card--content .secHeading,
.event-card--content .secHeading {
	font-size: 2.5rem;
}

.team-card {
	margin-bottom: 5rem;
	transition: all 0.5s ease-in-out;
}

.team-card__img {
	margin-bottom: -14rem;
}

.team-card__img img {
	width: 324px;
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
}

.team-card__content {
	padding: 16rem 3.125rem 5rem;
	background: rgb(141 22 18 / 75%);
	transition: all 0.5s ease-in-out;
}

.team-card:hover .team-card__content,
.team-detail-content,
.contact-info,
.tracking-card,
.product--list {
	background: rgb(40 50 89 / 75%);
}

.team-card__content :is(h3, h5),
.team-detail-content h5 {
	font-size: 1.875rem;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
}

.team-card__content h5,
.team-detail-content h5 {
	font-size: 1.25rem;
}

.team-social-links {
	gap: 1rem;
}

.team-detail-content {
	margin-right: -14rem;
	padding: 2rem 14rem 2rem 2rem;
}

.team-detail-content .secHeading,
.contact-info h4,
.tracking-card h4 {
	font-family: "Roboto", sans-serif;
}

.team-detail-content h5 {
	text-transform: capitalize;
}

.team-detail-content .team-social-links {
	gap: 1.5rem;
	margin-bottom: 0.75rem;
}

.team-detail-content .team-social-links li a {
	font-size: 1.75rem;
}

.faqs-title .mainHead {
	font-size: 3.4375rem;
}

.faqs-section #accordion .card {
	border: 0;
	background: transparent;
}

.faqs-section .card .subHeading {
	font-size: 1.25rem;
	font-family: "Roboto", sans-serif;
}

.faqs-section #accordion .card .btn-link {
	--height: 2.5rem;
	--width: 4.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
	text-transform: uppercase;
	background-color: #717171;
	margin: 1rem 0 0;
	border-radius: 0;
}

.faqs-section #accordion .card .btn-link span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--height);
	margin-right: 1rem;
	font-size: 1.875rem;
}

.faqs-section #accordion .card .btn-link i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--width);
	height: var(--height);
	margin-left: auto;
}

.faqs-section #accordion .card .btn-link i::before {
	content: "\f068";
}

.faqs-section #accordion .card .btn-link.collapsed i::before {
	content: "\f067";
}

.faqs-section #accordion .card .card-body {
	padding: 1rem 2rem;
}

.faqs-section #accordion .card .card-body p {
	font-size: 1.125rem;
}

.faqs-section #accordion .card [aria-expanded="true"] {
	background-color: #8D1612;
}

.contact-info,
.returns-step {
	display: block;
	padding: 2rem;
}

.contact-info:hover,
.returns-step {
	background: rgb(141 22 18 / 75%);
}

.contact-info span {
	font-size: 3.5rem;
}

.contact-info h4 {
	font-size: 1.875rem;
	text-transform: uppercase;
}

.contactForm-group :is(input, select, textarea),
.returnsFrom input {
	display: block;
	width: 100%;
	background: transparent;
	border-width: 0 0 2px 0;
	padding: 1rem 0;
	border-color: var(--white);
	color: var(--white);
	outline: none;
	resize: none;
	margin-bottom: 2.25rem;
}

.contactForm-btn button,
.returns-exchanges-section a {
	background: transparent;
	border: none;
	font-size: 1.75rem;
	color: var(--white);
	text-decoration: underline !important;
	outline: none;
	margin-top: 3rem;
}

.tracking-card {
	padding: 3.125rem 5rem 4.5rem;
	border-radius: 0.5rem;
}

.tracking-card--header {
	margin-bottom: 6.125rem;
}

.tracking-card--header h4 {
	font-size: 2.125rem;
	font-weight: 500;
	margin: 0;
}

.tracking-card--header #order-id {
	color: #DB4343;
}

.tracking-card--header h5 {
	font-size: 16px;
	font-weight: 400;
}

.tracking-card--header h5+h5 {
	margin: 0.5rem 0 0;
}

.tracking-bar {
	height: 18px;
	background: var(--white);
	border-radius: 3.125rem;
	margin-bottom: 3rem;
}

.tracking-bar .step {
	position: relative;
}

.tracking-bar .step .circle {
	width: 42px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #B0B0B0;
	display: grid;
	place-items: center;
	position: relative;
}


.traking-details figure {
	gap: 0.75rem;
}

.traking-details figure figcaption {
	font-size: 1.375rem;
}

.returnsFrom {
	position: relative;
}

.returnsFrom input {
	font-size: 1.5rem;
	margin: 0;
	padding-right: 12rem;
}

.returnsFrom button {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white);
	background: #8D1612;
	border-radius: 3.125rem;
	padding: 0.5em 2.5em;
	position: absolute;
	top: 0.5rem;
	right: 0;
}

.returns-exchanges-section a {
	font-size: 2.125rem;
	margin: 3.5rem 0 5rem;
}

.returns-step {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: 1.875rem 2rem 3.125rem;
}

.returns-step :is(h6, h5) {
	font-size: 1.875rem;
	margin-bottom: 0;
}

.returns-step h5 {
	font-weight: 400;
	text-transform: capitalize;
}

.product--list {
	padding: 1.25rem;
	border-radius: 0.5rem;
	position: sticky;
	top: 5%;
}

.product--list h3 {
	font-size: 1.875rem;
	padding: 0 0 1rem;
	margin: 0 0 1.25rem;
	border-bottom: 1px solid var(--white);
}

.product--list li+li {
	margin-top: 0px;
}

.product--list li a {
	font-size: 1.125rem;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--white);
}

.shop-section .pro-card figure img {
	height: 440px;
	object-fit: contain;
	border-radius: 0.375rem;
}

.order-history-title {
	gap: 3rem;
}

.order-history-title h3 {
	font-size: 2.125rem;
	text-transform: uppercase;
}

.order-history-title a {
	font-size: 16px;
	text-decoration: underline !important;
}

.order-history-table .table thead th,
.wishlist-table .table thead th {
	border-top: 1px solid #8F8F8F;
	border-bottom: 1px solid #8F8F8F;
}


.order-history-table .table :is(th, td) {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 1.5rem;
	white-space: nowrap;
	border: none;
}

.order-history-table .table td a {
	text-decoration: underline !important;
	color: var(--white);
}

.wishlist-table .table thead th {
	border-top: none;
	font-size: 1.125rem;
	font-weight: 500;
	font-family: 'eurostar';
}

.wishlist-table .table td, .table th {
	vertical-align: middle;
	border-top: 1px solid #8F8F8F;
}

.wishlist-table .table :is(th, td) {
	padding: 2rem;
	text-transform: capitalize;
}

.wishlist-table .trash-btn i {
	color: #ADADAD;
	font-size: 2rem;
}

.wishlist-product {
	gap: 1.5rem;
}

.wishlist-product figure {
	width: 100px;
	height: 120px;
	border-radius: 0.375rem;
	overflow: hidden;
	background: var(--white);
	display: grid;
	place-items: center;
	padding: 1rem;
}

.wishlist-product h5,
.stock-status h5{
	font-size: 1.375rem;
	font-weight: 400;
}

.until-price span,
.add-to-cart span,
.add-to-cart a {
	font-size: 16px;
	font-weight: 400;
}

.until-price span:first-child {
	color: #DB3819;
	margin-right: 0.25rem;
}

.add-to-cart a {
	display: block;
	width: fit-content;
	margin: 0.5rem auto 0;
	padding: 0.35em 1.75em;
	font-weight: 500;
	color: var(--black);
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: 3.125rem;
}

/* wp start css */

/*.blog-wrap figure img {*/
/*    height: 636px;*/
/*    object-fit: cover;*/
/*    border-radius: 10px;*/
/*}*/
.blogPagedetail img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: 100% 10%;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.blogPagedetail h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}
.blog-content p.para {
    font-size: 1rem;
    line-height: 1.8rem;
    margin: 1rem 0 0;
    display: none;
}
.faqs-section #accordion .card .btn-link[aria-expanded="false"] i:before {
    content: "\f067";
}
/* wp start css */

.onset .col-lg-6:last-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
/*My-account-Forms*/
.page-id-278:not(.logged-in) .inner .row,
.page-id-635:not(.logged-in) .inner .row{
    justify-content: center;
}

.page-id-278:not(.logged-in) :is(header, .inner-banner>img, .inner-banner .container, .insta-Section,footer, .switch-theme-btn),
.page-id-635:not(.logged-in) :is(header, .inner-banner>img, .inner-banner .container, .insta-Section,footer, .switch-theme-btn){
    display: none;
}


.page-id-278:not(.logged-in) .inner .col-lg-12.col-md-12.col-sm-12 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.page-id-278 .woocommerce h2 {
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
}

.page-id-278 .woocommerce form .form-row label {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 500;
}

.page-id-278 .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
    display: block;
}

.page-id-278 .woocommerce form .form-row input,
.page-id-635 .ur-frontend-form .ur-form-row .ur-form-grid :is(input,select){    
    color: var(--black) !important; 
}

.page-id-278 .woocommerce form .form-row {
    flex-direction: column;
}

.page-id-278 .woocommerce-LostPassword.lost_password a {
    color: var(--black);
    font-size: 1.125rem;
    text-decoration: underline !important;
    display: block;
    text-align: center;
}

.page-id-278 .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {        
    margin-right: 0;
    border-radius: 0 !important;
    outline: none !important;
}

.page-id-635 .inner {
    padding: 5rem 0;
}

.page-id-635:not(.logged-in) .inner .col-lg-12.col-md-12.col-sm-12 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.page-id-635 .ur-frontend-form {
    padding: 3rem;
    margin: 0;
    border: 5px solid #000;
    box-shadow: 0px 0px 30px -2px #fff;
    border-radius: 5px;
}

.page-id-635 .ur-form-row {
    margin-bottom: 1.5rem;
}

.page-id-635 .ur-frontend-form .ur-form-row .ur-form-grid legend, .page-id-635 .ur-frontend-form .ur-form-row .ur-form-grid label {
    margin-top: 0;
    font-size: 1.125rem;
    font-weight: 500 !important;
}

.page-id-635 .ur-frontend-form .ur-form-row .ur-form-grid :is(input,select) {
    min-height: 44px !important;
    margin: 0 !important;
}

.page-id-635 .ur-frontend-form .select {    
    border: 2px solid #707070;    
}

.page-id-635 .ur-frontend-form .ur-button-container {
    padding: 0 6px;
    margin: 1.75rem 0 0;
}

.page-id-635 .ur-frontend-form .ur-button-container .ur-submit-button {
    display: block !important;
    width: 100%;
    position: relative !important;
    overflow: hidden !important;
    font-size: 1.125rem !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    line-height: 1 !important;
    z-index: 1;
    border-radius: 0 !important;
    color: var(--white) !important;
    background: #8d1612 !important;
    padding: 0.8em 1.25em !important;
    transition: all 0.5s ease !important;
    margin: 0;
}

.page-id-278:not(.logged-in),
.page-id-635:not(.logged-in){    
    background: #000000;
}

.page-id-278:not(.logged-in) .inner-banner,
.page-id-635:not(.logged-in) .inner-banner{
    height: 500px;
}

.page-id-278 .inner-banner > video,
.page-id-635 .inner-banner > video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-id-278 .woocommerce form,
.page-id-635 .ur-frontend-form{  
  background: #fff;
}

.page-id-278:not(.logged-in) .woocommerce h2,
.page-id-635:not(.logged-in) .woocommerce h2{
    color: #fff;    
}
.signup-title h2 {font-size: 4rem;color: var(--white);text-transform: uppercase;font-weight: bold;text-align: center;margin: -2rem 0 0;}

.product--list .nav-tabs {
    border: 0;
    flex-direction: column;
}

.product--list .nav-tabs .nav-link {
    padding: 8px 13px;
}