@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@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');
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
:root{
	--c1:#C61B37;
	--c2:#010101;
	--c3:#FFFFFF;
	--f1:"Oswald", sans-serif;
	--f2:"Rubik", sans-serif;
	--f3: "Poppins", sans-serif;
}

a {
	display: inline-block;
	text-decoration: none !important;
	font-family:var(--f3);
}

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

img {
	width: 100%;
	display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	font-family: var(--f1);
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 155%;
	margin-bottom: 0px;
	font-family:var(--f2);
}

.spacing {
	padding: 100px 0px;
}
.wrapper{
	overflow: hidden;
}
/* HEADER SECTION CSS START */
.logo a img{
	width: 170px;
}
.header{
	position: absolute;
	top: 15px;
	z-index: 2;
	width: 100%;
	left: 0;
}
.header-menu ul {
    gap: 28px;
    justify-content: center;
}

.header-menu ul li a {
    font-size: 16px;
	color: var(--c3);
	font-family: var(--f3);
	position:relative;
	transition:all 0.5s;
	background: linear-gradient(to right, var(--c1) 50%, #fff 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s;
}
.header-cart {
    gap: 22px;
    align-items: center;
}

.cart-icon i {
    font-size: 20px;
    color: var(--c3);
}
.button a {
    color: var(--c3);
    padding: 10px 23px;
    font-family: var(--f3);
    border-radius: 8px;
    border: solid 1px var(--c1);
    transition: all 0.5s;
    background-color: var(--c1);
}
.button a:hover{
	background-color: var(--c3);
	color: var(--c1);
	border-color: var(--c1);	
}
.header-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--c1);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s;
}

.header-menu ul li a:hover::after {
	transform: scaleX(1);
}
.header-menu ul li a:hover {
    background-position: 0 0;
}

.header-menu ul li a:hover::after {
    transform: scaleX(1);
}
/* HEADER SECTION CSS END */
/* BANNER SECTION CSS END */
.banner-section {
    position: relative;
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    display: flex;
    align-items: end;
}
.banner-section::before{
	position:absolute;
	content:"";
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000000;
	opacity:0.5;
	z-index: -1;
}
.banner-content {
    text-align: center;
	margin-bottom: 80px;
}
.banner-content.web-title p{
	font-size: 18px;
	padding: 0 50px;
	font-weight: 300;
}
.banner-content.web-title p,
.banner-content.web-title h3{
	color:var(--c3);
}
.banner-content.web-title h3{
	font-size: 65px;
	margin-bottom: 20px !important;
}
.banner-content .web-title p{
    color: var(--c3);
    padding: 0 100px;
    padding-bottom: 24px;
}
.banner-content .web-title h3{
    color: var(--c3);
    font-size: 64px;
}
.banner-btns{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.banner-btns a{
	padding: 8px 16px !important;
	font-size: 14px;
}
.web-btn{
	background-color: var(--c1);
	color: var(--c3);
	border-radius: 8px;
	padding: 10px 36px;
	font-size:16px;
	border: solid 1px var(--c1);
	transition: all 0.5s;
}
.banner-btns .web-btn:hover{
    background-color: var(--c3);
    color: var(--c1);
    border-color: var(--c1);
}
.web-btn:hover {
	background-color: var(--c2);
	color: var(--c3);
	border-color:var(--c2);
}	
.web-btn-2 {
	color: var(--c3);
	padding: 10px 36px;
	border-radius: 8px;
	border:solid 1px var(--c3);
	transition:all 0.5s;
}
.web-btn-2:hover {
	background-color:var(--c1);
	color:var(--c3);
	border-color:var(--c1);
}
/* BANNER SECTION CSS END */
/* ABOUT SECTION CSS START */
.about {
	position: relative;
}
.about .web-title p {
	line-height:1.8;
}
.about-img img {
	width: 520px;
}
.about-img {
	margin-left: 50px;
}
.about .web-btn {
	margin-top: 24px;
}
.triangle-image {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    width: 580px;
}
/* ABOUT SECTION CSS END */
/* EXPLORE SECTION CSS START */
.explore .web-title{
	padding-left:30px;
}
.explore .web-title{
	padding-left:30px
}
.explore-img {
    overflow: hidden;
	border-radius: 12px;
}
.explore-img img {
    object-fit: cover;
    transition: all 0.7s;
}
.explore-img img:hover {
    transform: scale(1.2);
}
/* EXPLORE SECTION CSS END */
/* PROGRAM SECTION CSS START*/
.cards{
	margin-top: 110px;
}
.card-main {
	display: flex;
	gap: 20px;
	padding: 60px 30px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 14px;
}

.card-icon i {
	font-size: 50px;
	color: var(--c1);
	margin-top: 10px;
}

.card-main .web-title h3 {
	font-size: 26px;
	margin-bottom: 10px;
}

.card-main .web-title p {
	padding: 16px 0 20px 0;
}

.card-main .web-title .web-btn {
	background-color: var(--c3) !important;
	color: var(--c1);
	padding: 8px 36px;
}
.card-2{
	background-color:var(--c1);
    margin-top: -60px;
}
.card-2 .card-icon i{
	color:var(--c3);
}
.card-2 .web-title h3 {
	color: var(--c3);
}
.card-2 .web-title p {
	color: var(--c3);
}
.card-2 .web-title .web-btn{
	color: var(--c3);
	background-color: var(--c1) !important;
	border-color: var(--c3);
	transition:all 0.5s;
}
.card-main .web-title .web-btn:hover{
	background-color: var(--c1) !important;
	color: var(--c3);
	border-color: var(--c1);
}
.card-3{
	margin-top: -120px;
}
.card-2 .web-title .web-btn:hover{
	background-color: var(--c2) !important;
	color: var(--c3);
	border-color: var(--c2);
}
/* PROGRAM SECTION CSS END */
/* ACCORDIANT SECTION CSS START */
.accordian-faqs {
	padding: 180px;
}

.accordion-item button h1 {
	font-size: 23px;
	color: var(--c1);
}

.acordian-faq-m.accordian-item {
	background: black;
}

.accordion-body {
	gap: 20px;
	padding: 30px 30px;
	border-top:solid 1px #00000033;
}

.img-faq-a img{
	width: 200px;
	height: 240px;
	object-fit: cover;
	transition: all 0.7s;
}
.img-faq-a{
	overflow:hidden;
}
.faq-i-c{
	width:100%;
}
.img-faq-a img:hover {
    transform: scale(1.2);
}
.faq-i-c p {
	font-size: 18px;
	color: var(--c2);
}

.acordian-faq-m button.accordion-button {
	background: var(--c3);
	border: 0;
	padding: 24px 20px;
	border-radius: 8px;
}
.accordion-item {
	background-color: var(--c3) !important;
}
.acordian-faq-m .accordion-item {
	margin: 15px 0px;
	border-radius: 8px !important;
	background-color: #090c0f;
}

.accordion-item button.accordion-button::before {
    content: "\f0a9";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--c1);
    font-size: 25px;
    font-weight: 200;
    transform: translateY(-50%);
	transition: all 0.5s;
}

.accordion-button::after {
    display: none;
}
.acordian-faq-m button.accordion-button:not(.collapsed)::before {
	transform: translateY(-50%) rotate(90deg);
}
.accordiants-heading {
	text-align: center;
}
.accordiants-sec {
	background-color: var(--c1);
	margin-top:100px;
}
.accordiants-sec  .web-title h3{
	color:var(--c3);
	margin-bottom: 30px;
}
.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
	box-shadow: unset !important;
}

/* ACCORDIANT SECTION CSS END */
/* CONTACT SECTION CSS START */
.contact-section .web-title h3 {
	margin-bottom: 6px;
	font-weight: 500;
	font-size: 48px;
}
.web-title h4 {
	margin: 10px 0;
	font-size: 24px;
	color: var(--c2);
	font-weight:400
}
.icon-content span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: var(--c2);
	font-family: var(--f1);
}

.contact-main ul li i{
	background: var(--c1);
	color: var(--c3);
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	border-radius: 8px;
}

.contact-main {
	margin-top: 24px;
}

.icon-content a {
	font-size: 18px;
	font-family: var(--f2);
	color: var(--c2);
}
.contact-main ul li {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 24px;
}
.contact-main ul li:last-child{
	margin-bottom:0;
}
/* CONTACT FORM START */
.contact-form {
	border-style: solid;
	border-width: 8px 0;
	border-color: var(--c1);
	padding: 30px 40px;
	border-radius: 10px;
	box-shadow: 0px 4px 4px 0px #00000040;
}
.contact-form .web-title h4 {
	font-size: 32px;
	text-transform: capitalize;
	font-weight: 500;
}
.contact-form label {
	color: var(--c2);
	font-size: 17px;
	margin: 20px 0 4px 4px;
}
.contact-form input, .contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	outline: 0;
	border: 1px solid #00000033;
	border-radius: 5px;
}
.form-button {
	background: var(--c1);
	font-size: 18px;
	padding: 10px;
	transition: all 0.5s ease;
	margin-top: 20px;
	text-align: center;
	border: solid 1px var(--c1);
}
.contact-form textarea {
	height: 200px;
}
.form-button button{
	background-color: transparent;
	border: 0;
	font-family: var(--f2);
	color: var(--c3);
	letter-spacing: 1px;
	font-size: 16px;
	transition:all 0.5s;
}
.form-button:hover{
	background-color:var(--c3);
	cursor:pointer;
}
.form-button:hover button{
	color:var(--c1);
}
/* CONTACT FORM END */
/* CONTACT SECTION CSS END */
/* MAP SECTION CSS START */
.map {
	height: 400px
}
.frame {
	border: 0;
}
/* MAP SECTION CSS END*/
/* RESPONSIVE SECTION CSS START*/
.responsive-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 70%);
	z-index: 99999;
	transition: all .5s;
}

.responsive-menu-inner {
	height: 100%;
	padding: 30px 40px 0;
	position: relative;
	width: 90%;
	background-color: var(--c1);
	left: -100%;
}

.responsive-logo-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.respon-cross a,
.respon-cross a i {
	display: block;
}

.respon-cross a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--c4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--c3);
	transition: all .5s;
}

.respon-cross a:hover {
	transform: rotate(90deg);
	color: var(--c3);
	border-color: var(--c1);
}


.respon-logo {
	width: 150px;
}

.responsive-links ul li a {
	color: var(--c3);
	transition: all .5s;
	font-size: 18px;
	font-weight: 600;
	display: block;
	border-bottom: 1px solid var(--c3);
	padding: 12px 0px;
}

.responsive-links {
	margin-top: 30px;
	overflow-y: auto;
	height: calc(100vh - 232px);
}

.responsive-links ul li ul {
	display: none;
}

.responsive-links ul li a:hover {
	color: var(--c2);
}

.responsive-links ul li ul li a {
	padding-left: 40px;
	font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
	position: absolute;
	content: "\f067";
	top: 16px;
	right: 0;
	font-family: "Font Awesome 5 Pro";
	font-size: 22px;
	color: var(--c2);
}

.responsive-links ul li {
	position: relative;
}

.responsive-links ul li.active::before {
	content: "\f068";
	color: var(--c1);
}

.responsive-links ul li:last-child a {
	border-bottom: 0px;
}

.responsive-menu.active {
	left: 0;
}

.responsive-menu.active .responsive-menu-inner {
	left: 0;
	transition-delay: .3s !important;
	transition: all .7s;
}

body.stop-scroll {
	overflow-y: hidden;
}
.baar-menu{
	text-align:end;
	display:none;
}
.baar-menu a i {
	font-size: 26px;
	color: var(--c3);
}
.responsive-links .button a {
    color: var(--c1);
    border: solid 1px var(--c3);
    background-color: var(--c3);
    margin-top: 20px;
}
/* RESPONSIVE SECTION CSS END*/












/* if needed view 1400 */
@media only screen and (min-width: 100px) and (max-width: 1599px) {
	/* 	BANNER SECCTION CSS START */
	.banner-section {
		height: 750px;
	}
	
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.contact-form textarea {
		height: 190px;
	}
	/* 	CONTACT SECCTION CSS END */
}
/*for-large-dekstop view-1200*/
@media only screen and (min-width: 100px) and (max-width: 1399px) {
	/* 	BANNER SECCTION CSS START */
	.banner-content.web-title p {
		font-size: 17px;
	}
	.banner-content.web-title h3 {
    	font-size: 60px;
	}
	.button a {
		font-size: 15px;
	}	
	.web-btn-2,
	.banner-content .web-btn{
		padding: 10px 30px;
	}
	.banner-btns {
		margin-top: 24px;
	}
	
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.header {
		top: 10px;
	}
    .button a {
        padding: 10px 13px;
	}
	.header-cart {
		gap: 18px;
	}
	.contact-form {
		padding: 20px 28px;
	}
	.contact-form label {
		margin: 16px 0 4px 4px;
	}
	.contact-main ul li i {
		width: 64px;
		height: 64px;
		font-size: 38px;
	}
	.contact-section .web-title h3 {
		font-size: 44px;
	}
	/* 	CONTACT SECCTION CSS END*/
}

/*for-laptop view-1024*/
@media only screen and (min-width: 100px) and (max-width: 1199px) {
	
	
	/* 	BANNER SECCTION CSS START */
	.banner-btns a {
		padding: 8px 40px !important;
		font-size: 15px;
	}
	.banner-content.web-title p {
        font-size: 16px;
    }
	.banner-content.web-title h3{
		font-size: 55px;
	}
	.banner-section {
		height: 700px;
	}
	.banner-content {
		margin-bottom: 70px;
	}
	
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.logo a img{
		width: 160px;
	}
	.header-menu ul {
		gap: 22px;
		justify-content: end;
		margin-right: 20px;
	}
	.header-menu ul li a {
		font-size: 15px;
	}
	.cart-icon{
		display:none;
	}
	.button a {
		padding: 10px 15px;
	}
	.contact-section .web-title h3 {
		font-size: 40px;
	}
	.web-title h4 {
		font-size: 23px;
	}
	.contact-main ul li i {
		width: 60px;
		height: 60px;
		font-size: 34px;
	}
	.contact-main ul li {
		margin-bottom: 22px;
	}
	.contact-form label {
		margin: 16px 0 2px 4px;
	}
	.icon-content a {
		font-size: 17px;
	}
	.icon-content span {
		font-size: 19px;
	}
	.contact-form textarea {
		height: 170px;
	}
	.form-button {
		padding: 8px;
		margin-top: 18px;
	}
	.contact-form .web-title h4 {
		font-size: 30px;
	}
	
	
	/* 	CONTACT SECCTION CSS END */
}
/*for-tablet view-768*/
@media only screen and (min-width: 100px) and (max-width: 991px) {
	
	
	/* 	BANNER SECCTION CSS START */
	.banner-content {
        margin-bottom: 80px;
    }
	.banner-btns {
        margin-top: 20px;
    }
	.banner-btns a {
        padding: 8px 35px !important;
        font-size: 14px;
    }
	.banner-content.web-title p{
		padding: 0 20px;
		font-size: 15px;
	}
	.banner-section {
		height: 650px;
	}
	.banner-content.web-title h3{
		margin-bottom: 15px !important;
		font-size: 47px;
	}
	
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.header-menu {
		display: none;
	}
	.responsive-menu-inner .button{
		display:block !important;
	}
	.baar-menu{
		display:block;
	}
	.contact-content {
		margin-bottom: 50px;
	}
	.contact-section .web-title h3{
        font-size: 38px;
	}
	.icon-content span {
		font-size: 18px;
	}
	.map {
		height: 320px;
	}
	.web-title h4 {
		font-size: 22px;
	}
	/* 	CONTACT SECCTION CSS END */
}
/*for-landscape_mobile view-576*/
@media only screen and (min-width: 100px) and (max-width: 767px) {
	/* 	BANNER SECCTION CSS START */
	.banner-content.web-title h3 {
        font-size: 42px;
    }
	.banner-section {
        height: 380px;
        background-position: center;
    }
	.banner-content {
        margin-bottom: 25px;
    }
	.banner-btns {
		gap: 16px;
		margin-top: 14px;
	}
	    .banner-content p {
        font-size: 15px !important;
    }
	
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.contact-section .web-title h3 {
		font-size: 34px;
	}
	.web-title h4 {
		font-size: 22px;
	}
	.icon-content span {
		font-size: 17px;
	}
	.icon-content a {
		font-size: 16px;
	}
	.contact-main ul li i {
		width: 55px;
		height: 55px;
		font-size: 28px;
	}
	.contact-main ul li {
		gap: 15px;
	}
	.contact-form .web-title h4 {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.contact-form label {
		color: var(--c2);
		font-size: 16px;
		margin: 14px 0 2px 4px;
	}
	.form-button {
		padding: 7px;
		margin-top: 16px;
	}
	.map{
		height: 290px;
	}
	.baar-menu a i {
		font-size: 24px;
	}
	/* 	CONTACT SECCTION CSS END */
}
/*for-mobile view-375*/
@media only screen and (min-width: 100px) and (max-width: 575px) {
	/* 	BANNER SECCTION CSS START */
	.banner-content.web-title p{
		padding: 0;
		font-size: 12px !important;
	}
	.banner-btns {
		gap: 12px;
	}
.banner-content.web-title h3 {
        font-size: 24px;
    }

    .banner-btns a {
        padding: 12px 0px !important;
        font-size: 12px;
    }
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.container{
		width:96%;
	}
	.logo a img{
		width: 120px;
	}
	.baar-menu a i {
		font-size: 22px;
	}
	.contact-section .web-title h3 {
        font-size: 32px;
	}
	.contact-section .web-title h3 {
		font-size: 30px;
		margin-bottom: 4px !important;
	}
	.web-title h4 {
		font-size: 20px;
	}
	.contact-main ul li {
		margin-bottom: 16px;
	}
	.contact-form input, .contact-form textarea {
		padding: 10px 15px;
	}
	.contact-form textarea {
		height: 150px;
	}
	.form-button {
		padding: 6px;
		margin-top: 14px;
	}
	.contact-form {
		padding: 18px;
	}
	.responsive-menu-inner {
		padding: 20px 25px 0;
	}
	.responsive-links ul li a {
		font-size: 16px;
		padding: 11px 0px;
	}
	.web-title h4 {
		font-size: 19px;
	}

	.contact-main {
		margin-top: 16px;
	}
	.contact-main ul li i {
		width: 50px;
		height: 50px;
		font-size: 26px;
	}
	.icon-content a {
		font-size: 15px;
	}
	.icon-content span {
		font-size: 16px;
	}
	.contact-form .web-title h4 {
		font-size: 24px;
		margin-bottom: 6px;
	}
	
	/* 	CONTACT SECCTION CSS END */
}
/*for-small_mobile view-320*/
@media only screen and (min-width: 100px) and (max-width: 374px) {
	/* 	BANNER SECCTION CSS START */
	.banner-btns a {
        padding: 8px 0px !important;
        font-size: 11px;
    }
	/* 	BANNER SECCTION CSS END */
	/* 	CONTACT SECCTION CSS START */
	.responsive-menu-inner {
		width: 100%;
	}
	.responsive-menu-inner {
	}
	.respon-cross a {
		justify-content: end;
		padding: 20px 20px 0;
	}
	.contact-section .web-title h3 {
		font-size: 28px;
	}
	.web-title h4 {
		font-size: 18px;
	}
	.contact-form .web-title h4 {
		font-size: 22px;
		margin-bottom: 4px;
	}
	.form-button {
		padding: 5px;
	}
	.map {
		height: 250px;
	}
	.contact-form {
		border-width: 6px 0;
	}
	/* 	CONTACT SECCTION CSS END */
}


/* SINGLE PRODUCT CSS */

.woocommerce-error:focus-visible, .woocommerce-info:focus-visible, .woocommerce-message:focus-visible{
	outline: 0;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.woocommerce-error::after, .woocommerce-info::after, .woocommerce-message::after{
	content: none;
}
.woocommerce-message::before, .woocommerce-info::before{
	top: 50%;
	transform: translatey(-50%);
}
.woocommerce div.product .woocommerce-product-rating{
	margin-bottom: 10px;
}

.woocommerce-review-link{
	color: var(--c2);
}
.woocommerce-product-gallery__image img{
	object-fit: cover;
}
.woocommerce-product-gallery{
	height: 445px !important;
}
.flex-viewport,.woocommerce-product-gallery__wrapper, .woocommerce-product-gallery__image, .woocommerce-product-gallery__image a,.woocommerce-product-gallery__image a img {
	height: 100% !important;
}

.single-pro-image-main .woocommerce-product-gallery__image a {
    display: block !important;
}
.single-pro-content-main h1.product_title {
    color: var(--secondary);
    font-size: 36px;
    margin-bottom: 8px;
    font-weight: 700;
}
.single-pro-content-main p.price {
    color: var(--primary) !important;
    font-size: 18px !important;
    font-weight: 400;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}
.single-pro-content-main .woocommerce-product-details__short-description li {
    margin-bottom: 4px;
    list-style: disc;
    line-height: 1.7;
    color: var(--c1);
}
.single-pro-image-main .woocommerce-product-gallery {
    display: flex;
    flex-direction: row-reverse;
	gap: 15px;
}
.single-pro-image-main .woocommerce-product-gallery .flex-viewport {
    width: 85%;
}
.single-pro-content-main .woocommerce-product-details__short-description ul, .single-pro-content-main .woocommerce-product-details__short-description ol {
    margin-bottom: 10px;
    padding-left: 20px;
}
.single-pro-content-main .woocommerce-product-details__short-description p {
    margin-bottom: 10px;
    color: #000;
}
.single-pro-content-main .woocommerce-product-details__short-description li:last-child {
    margin-bottom: 0px;
}
.single-pro-content-main table.variations label {
    font-weight: 600 !important;
    color: #000;
}
.single-pro-content-main table.variations a.reset_variations {
    color: var(--c1);
}
.single-pro-content-main .quantity input.qty {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c1);
    outline: 0;
    color: var(--c2);
    background: unset;
}
.single-pro-content-main .quantity input.qty:focus {
    border-color: var(--c1);
}
.single-pro-content-main button.single_add_to_cart_button{
   width: 400px; 
}
.single-pro-content-main button.single_add_to_cart_button, 
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button{
   height: 50px; 
}
.single-pro-content-main button.single_add_to_cart_button, 
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button{
    background-color: var(--c1) !important;
    opacity: 1 !important;
    font-weight: 500;
    transition: all .4s;
    margin-left: 10px;
    color: var(--c3) !important;
    border: 0;
    font-family: var(--f1);
    font-size: 18px;
    width: 60%;
}
.single-pro-content-main button.single_add_to_cart_button:hover,
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover{
    background-color: var(--c1) !important;
    color: var(--c3) !important;
}
.single-pro-content-main .product_meta {
    font-size: 15px;
    color: var(--c3);
    font-weight: 600;
	line-height: 1.7;
}
.single-pro-content-main .product_meta a {
    color: var(--c1);
    transition: all .4s;
	font-weight: 400;
}
.single-pro-content-main .product_meta a:hover {
    color: var(--c3);
}
.single-data-item {
    padding-top: 100px;
}
body.single-product .woocommerce-tabs ul li:before, body.single-product .woocommerce-tabs ul li:after, body.single-product .woocommerce-tabs ul:before, body.single-product .woocommerce-tabs ul:after {
    display: none !important;
}
body.single-product .woocommerce-tabs ul li {
    margin: 0px !important;
    padding: 0px !important;
    background-color: unset !important;
    border: 0 !important;
}
body.single-product .woocommerce-tabs ul {
    padding: 0px !important;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e1e1e1;
}
body.single-product .woocommerce-tabs ul li a {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500 !important;
    display: block !important;
    color: #999999 !important;
}
body.single-product .woocommerce-tabs ul li a:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1.5px;
    background-color: var(--c4);
    transition: all .5s;
}
body.single-product .woocommerce-tabs ul li a:hover:after {
    left: 0;
}
body.single-product .woocommerce-tabs ul li.active a {
    color: var(--primary) !important;
}
body.single-product .woocommerce-tabs ul li.active a::after {
    left: 0;
}
.woocommerce-Tabs-panel h2, .related.products > h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: var(--f1);
}
.woocommerce-Tabs-panel p {
    margin-bottom: 15px;
    color: #000;
}
.single-data-item form.variations_form.cart {
    margin-top: 20px;
    margin-bottom: 30px !important;
}
body.single-product .woocommerce-Reviews p, body.single-product .woocommerce-Reviews span {
    color: var(--c2);
}
body.single-product .woocommerce-Reviews label {
    font-weight: 500;
    color: var(--c2);
    margin-bottom: 6px;
    width: 100%;
}
body.single-product .woocommerce-Reviews p.comment-form-cookies-consent input[type=checkbox] {
    transform: translateY(1px);
}
body.single-product .woocommerce-Reviews input[type="text"], body.single-product .woocommerce-Reviews input[type="email"], body.single-product .woocommerce-Reviews textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    height: 45px;
    transition: all .4s;
    outline: 0;
    background: unset;
    color: var(--c1);
}
body.single-product .woocommerce-Reviews input[type="text"]:focus, body.single-product .woocommerce-Reviews input[type="email"]:focus, body.single-product .woocommerce-Reviews textarea:focus {
    border-color: var(--c1);
}
body.single-product .woocommerce-Reviews textarea {
    height: 180px !important;
}
body.single-product .woocommerce-Reviews input#submit,
.woocommerce-message a.button, 
body.woocommerce-account .woocommerce-form-login__submit,
form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button,
.woocommerce-MyAccount-content button.button,
.woocommerce-info a.button {
    background: var(--c1) !important;
    border: 1px solid var(
    --c1) !important;
    border-radius: 0px !important;
    font-weight: 500 !important;
    color: var(
    --c3) !important;
    padding: 15px 30px !important;
    transition: all .4s;
    font-family: var(
    --f1);
}
body.single-product .woocommerce-Reviews input#submit:hover, 
.woocommerce-message a.button:hover, 
body.woocommerce-account .woocommerce-form-login__submit:hover, 
form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button:hover,
.woocommerce-MyAccount-content button.button:hover,
.woocommerce-info a.button:hover {
    background-color: transparent !important;
    color: var(--primary) !important;
}
body.single-product .woocommerce-Reviews p.stars span a {
    color: var(--primary);
}
.woocommerce-message, .woocommerce-info {
    border-top-color: var(--primary);
}
.woocommerce-message::before, .woocommerce-info::before {
    color: var(--primary);
}
body.single-product .woocommerce-message {
    margin-top: 30px;
    margin-bottom: 0px;
    color: var(--c1);
    background: unset;
    width: 1320px;
    margin: 30px auto 0px;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    width: 15%;
    flex-direction: column;
    gap: 10px;
}
.single-pro-image-main ol.flex-control-nav li {
    width: 100% !important;
	margin-bottom: 5px !important;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-arrow {
    position: absolute;
    z-index: 99;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #00000052;
    font-size: 12px;
    cursor: pointer;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-prev {
    top: 10px;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-next {
    bottom: 10px;
}
.single-pro-image-main ol.flex-control-nav .slick-list.draggable {
    height: 100% !important;
}
.single-pro-image-main ol.flex-control-nav li img {
    height: 100px !important;
    object-fit: cover;
}
.single-pro-content-main p.price ins {
    text-decoration: none;
    font-weight: 500 !important;
}
.related.products ul.products {
    display: flex;
    flex-wrap: wrap;
	margin-top: 40px;
}
.related.products ul.products::before, .related.products ul.products::after {
    display: none;
}
.related.products ul.products li.product {
    margin: 0px;
    width: 24%;
}
.related.products ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
}
.related.products {
    margin-bottom: 100px;
}
.our_products .web-title {
    margin-bottom: 60px;
}
.single-pro-content-main .woocommerce-product-details__short-description {
    margin-bottom: 20px;
}
.single-product table.woocommerce-product-attributes {
    color: #000;
}
.single-product div#reviews small a {
    color: var(--primary);
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item {
    background: unset;
    box-shadow: unset;
    border: 1px solid var(--primary);
    padding: 0px 10px !important;
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item:hover {
    background-color: var(--primary);
    box-shadow: unset;
    color: var(--c2);
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item.selected {
    background-color: var(--primary) !important;
    color: var(--c2) !important;
    box-shadow: unset;
}
.single-pro-content-main table.variations th.label {
    color: #000 !IMPORTANT;
}
.single-pro-content-main table.variations th.label label, .single-pro-content-main table.variations th.label span {
    font-weight: 500 !important;
}
.single-pro-content-main .single_variation_wrap span.price {
    color: var(--primary) !important;
}
.single-pro-content-main .single_variation_wrap .woocommerce-variation-add-to-cart {
    margin-top: 10px;
}
.product-box-content span.price {
    color: var(--c1) !important;
    font-size: 16px !important;
    margin-bottom: 0px !important;
}

/*CART PAGE CSS*/

body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
    width: 100%;
    margin: 0px;
}
body.woocommerce-cart .main{
    margin: 100px 0;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    padding-left: 16px;
    padding-top: 10px;
}
.wc-block-cart-items__row{
    border-top: 1px solid var(--c2);
}
.wc-block-cart-items__row td:first-child{
    padding:  20px 0 20px 20px !important;
}
.wc-block-cart-items__row td{
    border: 0 !important;
    padding: 22px 20px !important; 
}
.wc-block-cart-items__header {
    font-size: 13px !important;
    color: var(--c2);
}
.wc-block-cart-item__prices .price{
    font-size: 17px;
    margin-top: 5px;
    font-weight: 500;
    color: var(--c2);
}
.wc-block-components-product-metadata__description p{
	margin-bottom: 7px !important;
}
.wc-block-cart-item__wrap{
	gap: 6px !important;
}
.wc-block-components-quantity-selector button:focus{
    outline: 0 !important;
    box-shadow: unset !important;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper{
    font-size: 18px;
    font-weight: 500;
    font-family: var(--f1);
}
.wp-block-woocommerce-cart-order-summary-block{
    border: 1px solid var(--c2) !important;
}
.wc-block-components-totals-item,
.wc-block-components-panel__button,
.wc-block-components-totals-coupon__content{
    padding: 0 !important;
}
.wc-block-components-totals-item__description:empty {
    display: none;
}
.wc-block-components-panel__button {
    color: var(--c2);
    font-weight: 500;
    font-size: 16px;
}
form#wc-block-components-totals-coupon__form button.wc-block-components-totals-coupon__button {
    opacity: 1 !important;
    border: 1px solid var(--c1);
    background: var(--c1);
    color: var(
    --c3);
    font-weight: 500;
    transition: all .4s;
    font-size: 14px;
    border-radius: 5px;
}
form#wc-block-components-totals-coupon__form button.wc-block-components-totals-coupon__button:hover {
    background-color: unset;
    color: var(--primary);
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid.wp-block-product-new.wc-block-product-new.has-4-columns {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block hr, body.woocommerce-cart .wp-block-woocommerce-empty-cart-block hr~h2 {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
    padding: 50px 0px;
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items {
    border: 1px solid var(--c2) !important;
    color: #000;
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items th.wc-block-cart-items__header-image {
    text-align: center;
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items a.wc-block-components-product-name {
    color: var(--c1);
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 9;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button span {
    font-family: var(--f1);
}

/*CHECKOUT PAGE CSS*/

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    margin-top: 70px;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button {
    color: var(--c1);
    transition: all .4s;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--c3);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button span {
    font-family: var(--f1);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    margin-left: 0px;
}

/* MY ACCOUNT PAGE CSS */

body.woocommerce-account form.woocommerce-form-login input.input-text, 
form.woocommerce-ResetPassword.lost_reset_password input.input-text, 
.woocommerce-MyAccount-content input.input-text,
.woocommerce-MyAccount-content .select2-container .select2-selection--single{
    height: 45px;
    border: 1px solid #cfc8d8;
    padding: 0px 10px;
    transition: all .4s;
    border-radius: 0px;
}
span.select2-selection.select2-selection--single span:first-child{
    height: 100%;
    line-height: 45px;
    padding: 0px;
}
span.select2-selection.select2-selection--single span:nth-child(2) {
    top: 10px;
    right: 6px;
}
body.woocommerce-account form.woocommerce-form-login label, 
form.woocommerce-ResetPassword.lost_reset_password label, 
.woocommerce-MyAccount-content label{
    font-weight: 600;
    color: var(--c4);
}
body.woocommerce-account form.woocommerce-form-login input.input-text:focus, 
form.woocommerce-ResetPassword.lost_reset_password input.input-text:focus,
.woocommerce-MyAccount-content input.input-text:focus,
.woocommerce-MyAccount-content .select2-container .select2-selection--single:focus{
    border-color: var(--c1);
}
body.woocommerce-account form.woocommerce-form-login .lost_password a {
    color: var(--c1);
    font-weight: 500;
}
body.woocommerce-account .main {
    margin: 80px 0px 70px 0px;
}
body.woocommerce-account form.woocommerce-form-login .woocommerce-form-login__rememberme {
    transform: translateY(10px);
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    border: 1px solid var(--c1);
    box-shadow: 0px 4px 15px -7px rgb(0 0 0 / 50%);
    width: 25%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--c1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 15px;
    display: block !important;
    position: relative;
    text-transform: capitalize;
    color: var(--c1);
    font-weight: 500;
    font-size: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--c1);
    color: var(--c3) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:after {
    content: "";
    width: 31px;
    height: 100%;
    background: var(--c1);
    position: absolute;
    right: -10px;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
    top: 0;
    opacity: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:after,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:after {
    opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
	color: var(--c4);
    padding-left: 40px;
}
.woocommerce-MyAccount-content p a,
.woocommerce-Address-title a{
    color: var(--c1);
    font-weight: 500;
}
.woocommerce-MyAccount-content h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    margin-top: 10px;
}
form.woocommerce-form.woocommerce-form-login.login {
    margin-bottom: 0px;
}
.woocommerce-MyAccount-content address {
    font-size: 15px;
}
.woocommerce-info {
    background: unset;
    color: var(--c1);
}
.woocommerce-MyAccount-content address {
    color: var(--c1);
}
.woocommerce-Address-title a.edit {
    background: var(--c1);
    color: var(--c3);
    padding: 12px 20px;
    font-size: 14px !important;
    float: left !important;
    border-radius: 5px;
    transition: all 0.5s ;
    margin: 20px 0;
}
.woocommerce-Address-title a.edit:hover{    
    background: var(--c2);
}
.shop-page-sec-main a.added_to_cart {
    background-color: var(--primary);
    color: #fff;
    margin-top: 20px;
    padding-top: 0;
    padding: 7px 38px;
    border-radius: 50px;
    font-family: var(--f1);
    font-weight: 700;
    font-size: 19px;
    transition:all.5s;
}
.shop-page-sec-main a.added_to_cart:hover{
    background-color:var(--c1);
    color:#000;
}

.products_item a.added_to_cart{
    padding:7px 20px;
}
.woocommerce-cart .with-empty-cart-icon {
    color: var(--c1);
    position: relative;
    z-index: 9;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    position: relative;
    z-index: 9;
}
.wc-block-components-totals-coupon__content {
    padding-left: 16px;
    padding-right: 16px;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 0;
}
.wc-block-components-checkout-order-summary__title-text {
    color: var(--primary);
}


/* SHOP PAGE CSS */


.shop-page-sidebar ul.product-categories li.cat-item a, .shop-page-sidebar .widget_product_tag_cloud a {
    font-size: 15px !important;
    font-weight: 400;
    color: var(--c2);
    transition: all .4s;
    display: block;
    text-transform: capitalize;
    letter-spacing: 0px;
    padding: 0px;
}

.shop-page-sidebar ul.product-categories li.cat-item.current-cat a {
    color: var(--c1);
}

.shop-page-sidebar ul.product-categories li.cat-item a:hover, .shop-page-sidebar .widget_product_tag_cloud a:hover {
    color: var(--c1);
    padding-left: 10px;
}
.shop-page-sidebar .widget_product_tag_cloud {
    margin-top: 10px;
}

.shop-page-sidebar .widget_product_tag_cloud a {
    margin-bottom: 10px;
}

.shop-page-sidebar ul.product-categories li.cat-item {
    position: relative;
    margin-bottom: 10px;
}

.shop-page-sidebar ul.product-categories li.cat-item span.count {
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 12px;
    background-color: var(--c2);
    width: 27px;
    height: 19px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-page-sidebar ul.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count::before, .shop-page-sidebar ul.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count::after {
    display: none;
}

.shop-page-sidebar .wc-blocks-filter-wrapper input.wc-block-formatted-money-amount {
    font-size: 12px;
    outline: 0;
    border: 1px solid #e1e1e1 !important;
}

.shop-page-sidebar .wc-blocks-filter-wrapper input.wc-block-formatted-money-amount:focus {
    border-color: var(--c1) !important;
}

.shop_count_main_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
}

.shop_count_main_item p.woocommerce-result-count, .shop_count_main_item form.woocommerce-ordering {
    margin: 0px;
}

.shop-page-sec-main ul.products {
    display: flex;
    flex-wrap: wrap;
    row-gap: 19px;
    column-gap: 19px;
}

.shop-page-sec-main ul.products li.product {
    width: 32%;
    margin: 0px;
    padding: 0px;
}

.shop-page-sec-main ul.products::before, .shop-page-sec-main ul.products::after {
    display: none;
}

.shop-page-sidebar {
    border: 1px solid #e1e1e1;
    padding: 20px 20px;
	position: sticky;
    top: 20px;
}

.shop-page-sidebar ul.product-categories li.cat-item ul {
    padding-left: 20px !important;
}

.shop-page-sidebar .price_slider {
    background-color: #cc55008c !important;
}

.shop-page-sidebar .price_slider .ui-slider-range {
    background-color: var(--c4) !important;
}

.shop-page-sidebar .price_slider span.ui-slider-handle {
    background-color: var(--c1) !important;
}

.shop-page-sidebar .price_slider_wrapper .price_slider_amount button.button {
    background-color: var(--c1);
    color: var(--c3);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.shop-page-sidebar .price_slider_wrapper {
    margin-bottom: 25px;
}

.shop-page-sidebar span.custom-widget-title {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
    font-size: 20px;
}

.shop-page-sidebar ul.product-categories li:first-child>a {
    padding-top: 0px;
}

/* Price Slider */
.shop-page-sidebar .price_slider {
    position: relative;
    height: 6px !important;
    margin: 20px 10px 30px;
    background: #ddd !important;
    border-radius: 30px;
}

.shop-page-sidebar .price_slider .ui-slider-range {
    position: absolute;
    height: 100%;
    background: #cc5500;
    border-radius: 30px;
}

.shop-page-sidebar .price_slider .ui-slider-handle {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: #cc5500;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.shop-page-sidebar .price_slider .ui-slider-handle:focus{
    outline: none;
}
.shop-page-sidebar .price_slider_amount {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.shop-btn a {
    background-color: var(--c3);
    color: var(--c1);
    font-weight: 500;
}

.shop-btn {
    text-align: center;
}




/* My Account Css Start */

.woocommerce-MyAccount-content form p{
    margin-bottom: 12px !important;
}
.woocommerce-MyAccount-content form input,
.woocommerce-MyAccount-content form span.select2-selection{
    margin-bottom: 0;
    border-color: var(--c2) !important;
    border-radius: 5px !important;
    font-size: 15px;
    padding: 15px 10px 15px 15px !important;
    color: var(--c2);
    transition: all 0.5s ;
}
.woocommerce-MyAccount-content form input::placeholder{
    color: var(--c2);
}
.woocommerce-MyAccount-content form input:focus{
    outline: 0;
    border-color: var(--c1) !important;
    box-shadow: 0px 0px 0px 3px var(--c1);
}
span.select2-selection.select2-selection--single span:first-child{
    line-height: 1 !important;
    color: var(--c2);
}
span.select2-selection.select2-selection--single span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}
.woocommerce-MyAccount-content form p button.button{
	margin-top: 20px;
}
.woocommerce-MyAccount-content form .form-row{
	padding: 0 !important;
}
.woocommerce-address-fields{
	margin-top: 20px;
}
#account_display_name_description{
	margin-top: 10px;
	display: block;
}
.woocommerce-MyAccount-content legend {
	font-family: var(--f1);
	font-weight: 500;
}



/* Cart Css Start */
a.wc-block-components-product-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    font-family: var(--c1) !important;
}
.wc-block-cart-items__row{
    border-top: 1px solid var(--c2);
}
.wc-block-cart-items__row td:first-child{
    padding:  20px 0 20px 20px !important;
}
.wc-block-cart-items__row td{
    border: 0 !important;
    padding: 22px 20px !important; 
}
.wc-block-cart-items__header th{
    padding: 12px !important;
}
.wc-block-cart-items__header {
    font-size: 13px !important;
    color: var(--c2);
}
.wc-block-cart-item__prices .price{
    font-size: 17px;
    font-weight: 500;
    color: var(--c2);
}
.wc-block-components-product-metadata__description p{
    font-size: 16px !important;
}
.wc-block-components-quantity-selector button:focus{
    outline: 0 !important;
    box-shadow: unset !important;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper{
    font-size: 18px;
    font-weight: 500;
    font-family: var(--f1);
}
.wp-block-woocommerce-cart-order-summary-block{
    border: 1px solid var(--c2) !important;
}
.wc-block-components-totals-wrapper{
    padding: 15px;
}
.wc-block-components-totals-item,
.wc-block-components-panel__button,
.wc-block-components-totals-coupon__content{
    padding: 0 !important;
}
.wc-block-components-totals-item__description:empty {
    display: none;
}
.wc-block-components-panel__button {
    color: var(--c2);
    font-weight: 500;
    font-size: 16px;
}
#wc-block-components-totals-coupon__input-coupon {
    border: 1px solid var(--c2);
}
#wc-block-components-totals-coupon__input-coupon:focus{
    outline: 0 !important;
}
.wp-block-woocommerce-cart-order-summary-coupon-form-block.wc-block-components-totals-wrapper,
.wc-block-components-totals-wrapper{
    border-color: var(--c2);
}
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-panel__button{
	font-family: var(--f1);
}
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block,
.wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block{
	margin-bottom: 0 !important;
}
.wp-block-woocommerce-cart-order-summary-coupon-form-block {
	border: 0;
}
.wc-block-cart-items tbody tr:first-child{
	border: 0 !important;
}
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
.is-small table.wc-block-cart-items .wc-block-cart-items__row{
	gap: 0 !important;
}


/* Check Out Css Start */

.wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-totals-block{
	border-color: var(--c2) !important; 
}
.wc-block-components-sidebar .wc-block-components-panel{
	padding: 0 !important;
}
.wc-block-components-totals-item__label,
.wc-block-formatted-money-amount {
	font-size: 18px;
	font-weight: 600;
}

.wc-block-components-form.wc-block-checkout__form label{
    color: var(--c2);
}
.wc-block-components-form.wc-block-checkout__form input,
.wc-block-components-form.wc-block-checkout__form select{
    color: var(--c2);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.5s ;
}
.wc-block-components-form.wc-block-checkout__form input:focus,
.wc-block-components-form.wc-block-checkout__form select:focus{
    outline: 0 !important;
    box-shadow: 0 0 0 2px var(--c1);
    border-color: var(--c1) !important;
}
.wc-block-components-title.wc-block-components-checkout-step__title{
    font-size: 25px;
}
.wc-block-components-checkbox__label{
    font-size: 16px;
    font-weight: 500;
}
.wc-block-components-product-name {
	font-size: 18px !important;
	font-weight: 700 !important;
}
.wc-block-components-order-summary {
	padding: 0 30px !important;
}
.wc-block-cart__submit-button:focus{
	box-shadow: unset !important;
}







/* =========================================
   PROGRAM PRODUCTS
========================================= */

.program-products {
    padding: 80px 0;
}

.program-product-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* IMAGE */

.program-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.program-product-card:hover .program-product-image img {
    transform: scale(1.05);
}


/* CONTENT */

.program-product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* ICON */

.program-product-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-product-icon i {
    font-size: 22px;
}


/* TITLE */

.program-product-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}


/* DESCRIPTION */

.program-product-content p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}


/* BUTTON */

.program-product-content .web-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}


/* SPACING */

.program-products .row {
    row-gap: 30px;
}


/* TABLET */

@media (max-width: 991px) {

    .program-products {
        padding: 60px 0;
    }

    .program-product-image {
        height: 250px;
    }

    .program-product-content {
        padding: 25px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .program-products {
        padding: 45px 0;
    }

    .program-product-image {
        height: 230px;
    }

    .program-product-content {
        padding: 22px;
    }

    .program-product-content h3 {
        font-size: 21px;
    }

}


/* ==========================================
   REGISTRATION MODAL
========================================== */

#registrationModal .modal-dialog {
    max-width: 900px;
    width: calc(100% - 30px);
    margin: 30px auto;
}

#registrationModal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

#registrationModal .modal-header {
    padding: 22px 30px;
    border: 0;
    background: var(--c1);
    color: #fff;
}

#registrationModal .modal-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

#registrationModal .btn-close {
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    box-shadow: none;
}

#registrationModal .modal-body {
    padding: 30px;
    max-height: 75vh;
    overflow-y: auto;
}

/* Scrollbar */

#registrationModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#registrationModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#registrationModal .modal-body::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 10px;
}


/* ==========================================
   FORM
========================================== */

#registrationModal .registration-form {
    width: 100%;
}

#registrationModal .form-group {
    margin-bottom: 20px;
}

#registrationModal label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

#registrationModal label span.required {
    color: #e53935;
}

#registrationModal input,
#registrationModal select,
#registrationModal textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

#registrationModal input:focus,
#registrationModal select:focus,
#registrationModal textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

#registrationModal textarea {
    min-height: 120px;
    resize: vertical;
}


/* ==========================================
   TWO COLUMN FIELDS
========================================== */

#registrationModal .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* ==========================================
   SECTION TITLES
========================================== */

#registrationModal .form-section {
    margin-bottom: 30px;
}

#registrationModal .form-section-title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    color: #111;
    font-size: 19px;
    font-weight: 700;
}


/* ==========================================
   PAYMENT DETAILS
========================================== */

#registrationModal .payment-details {
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
}

#registrationModal .payment-details p {
    margin: 0 0 6px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

#registrationModal .payment-details p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   TERMS & CONDITIONS
========================================== */

#registrationModal .terms-box {
    max-height: 220px;
    overflow-y: auto;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

#registrationModal .terms-box p {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

#registrationModal .terms-box p:last-child {
    margin-bottom: 0;
}


/* Checkbox */

#registrationModal .terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

#registrationModal .terms-checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0;
    cursor: pointer;
}

#registrationModal .terms-checkbox label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}


/* ==========================================
   PURCHASE BUTTON
========================================== */

#registrationModal .purchase-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    padding: 14px 25px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

#registrationModal .purchase-submit:hover {
    background: #333;
    transform: translateY(-1px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #registrationModal .modal-dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    #registrationModal .modal-header {
        padding: 18px 20px;
    }

    #registrationModal .modal-title {
        font-size: 21px;
    }

    #registrationModal .modal-body {
        padding: 20px;
        max-height: 85vh;
    }

    #registrationModal .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

.terms-section h4 {
    color: var(--c1);
    margin-bottom: 17px;
    font-size: 26px;
}

.terms-section .terms-content p {
    margin-bottom: 18px;
    color: var(--c2);
    font-size: 16px;
}

label.terms-checkbox {
    margin-bottom: 20px !important;
}
/* =========================================================
   WOOCOMMERCE - ORDER RECEIVED / THANK YOU PAGE
========================================================= */

/* Main WooCommerce container */
.woocommerce-order-received .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}


/* =========================================================
   ORDER SUCCESS MESSAGE
========================================================= */

.woocommerce-order-received .woocommerce-notice--success {
    margin: 0 0 35px;
    padding: 22px 25px;
    border-radius: 12px;
    background: #f3f8f3;
    border: 1px solid #d8e8d8;
    color: #267326;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}


/* =========================================================
   THANK YOU HEADING
========================================================= */

.woocommerce-order-received .woocommerce-order {
    background: #fff;
}

.woocommerce-order-received .woocommerce-order h2 {
    margin: 0 0 20px;
    color: #111;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   ORDER DETAILS
========================================================= */

.woocommerce-order-received .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    margin: 0 0 45px;
    padding: 0;

    list-style: none;
}

.woocommerce-order-received .woocommerce-order-overview li {
    margin: 0;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;

    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    margin-top: 7px;

    color: #111;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   ORDER DETAILS SECTION
========================================================= */

.woocommerce-order-received .woocommerce-order-details {
    margin: 0 0 40px;
    padding: 30px;

    border: 1px solid #e5e5e5;
    border-radius: 15px;
    background: #fff;
}


/* Heading */

.woocommerce-order-received .woocommerce-order-details__title {
    margin: 0 0 25px;

    color: #111;
    font-size: 24px;
    font-weight: 700;
}


/* =========================================================
   ORDER TABLE
========================================================= */

.woocommerce-order-received .woocommerce-table--order-details {
    width: 100%;
    margin: 0;

    border-collapse: collapse;
}

.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
    padding: 18px 15px;
    border-bottom: 1px solid #e8e8e8;

    color: #333;
    font-size: 14px;
    text-align: left;
}

.woocommerce-order-received .woocommerce-table--order-details th {
    color: #111;
    font-weight: 700;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot th {
    color: #111;
    font-weight: 600;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot td {
    color: #111;
    font-weight: 700;
}


/* Product name */

.woocommerce-order-received .woocommerce-table--order-details .product-name a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name a:hover {
    text-decoration: underline;
}


/* Variation */

.woocommerce-order-received .woocommerce-table--order-details .product-name dl {
    margin: 6px 0 0;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name dt,
.woocommerce-order-received .woocommerce-table--order-details .product-name dd {
    display: inline;
    margin: 0;
    font-size: 12px;
    color: #777;
}


/* =========================================================
   CUSTOMER DETAILS
========================================================= */

.woocommerce-order-received .woocommerce-customer-details {
    margin: 0;
    padding: 30px;

    border: 1px solid #e5e5e5;
    border-radius: 15px;
    background: #fff;
}

.woocommerce-order-received .woocommerce-customer-details h2 {
    margin: 0 0 22px;

    color: #111;
    font-size: 24px;
    font-weight: 700;
}

.woocommerce-order-received .woocommerce-customer-details address {
    margin: 0;
    padding: 20px;

    border: 1px solid #eee;
    border-radius: 10px;

    background: #fafafa;
    color: #555;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BILLING / SHIPPING INFO
========================================================= */

.woocommerce-order-received .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details--email {
    color: #333;
}


/* =========================================================
   PAYMENT METHOD
========================================================= */

.woocommerce-order-received .woocommerce-order-overview__payment-method {
    color: #111;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .woocommerce-order-received .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .woocommerce-order-received .woocommerce {
        padding: 40px 15px;
    }

    .woocommerce-order-received .woocommerce-notice--success {
        padding: 18px;
        font-size: 15px;
    }

    .woocommerce-order-received .woocommerce-order h2 {
        font-size: 23px;
    }

    .woocommerce-order-received .woocommerce-order-overview {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }

    .woocommerce-order-received .woocommerce-order-overview li {
        padding: 16px;
    }

    .woocommerce-order-received .woocommerce-order-details,
    .woocommerce-order-received .woocommerce-customer-details {
        padding: 20px;
    }

    .woocommerce-order-received .woocommerce-order-details__title,
    .woocommerce-order-received .woocommerce-customer-details h2 {
        font-size: 20px;
    }

    /* Horizontal table scroll */
    .woocommerce-order-received .woocommerce-order-details {
        overflow-x: auto;
    }

    .woocommerce-order-received .woocommerce-table--order-details {
        min-width: 600px;
    }

}

.explore .web-title ul li {
    list-style: disc;
    margin: 6px 20px;
}

.form-group {
    margin: 20px 0px;
}

.form-group label {
    margin-bottom: 10px;
}

.form-button input {
    border: 0;
    color: var(--c3);
    height: 100%;
    display: flex;
    align-items: center;
}

.form-button p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.wpcf7-spinner {
    display: none;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.step-indicator .step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-indicator .step-dot.active {
    background: #111827;
    color: #fff;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.step-nav .step-back-btn {
    background: #f3f4f6;
    color: #111827;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
}

.add-address-line-btn {
    background: none;
    border: none;
    color: #2563eb;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 12px;
}

/*
Theme Name: Custom Theme
Theme URI: http://wordpress.org/themes/twentythirteen
Author: John Dev
Author URI: http://johndev.com/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.web-title h3 span{
    color: var(--c1);
}
.web-title h3{
	margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 55px;
	font-weight: 700;
    color: var(--c2);
}
.web-title p{
    color: var(--c2);
}

/* Footer Css Start */

.footer{
	padding-bottom: 0 !important;
	background: #212121;
}
.footer-logo {
    margin-bottom: 60px;
}
.footer-logo ul{
	align-items: center !important;
	margin: 30px 0 32px 0;
	display: flex;
	gap: 40px;
	font-weight: 500;
}
.footer-images img {
    height: 220px;
    width: 220px;
}

.footer-logo img{
    width: 230px;
    object-fit: cover;
}
.footer-logo a{
    position: relative;
    transition: all 0.5s;
    overflow: hidden;
}
.footer-logo ul li a::before{
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: -100%;
    background: var(--c3);
    transition: all 0.5s;
}
.footer-logo a:hover::before{
    left: 0;
}
.footer-logo a,
.footer-logo span,
.footer-logo p{
    font-size: 18px;
    font-weight: 600;
    color: var(--c3);
}
.footer-logo p a{
    font-family: var(--f2);
}
.footer-logo p a:hover{
    color: var(--c1);
}
.footer-logo p{
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-images {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.footer-bottom {
    background: var(--c2);
    color: var(--c3);
    padding: 15px 0;
    font-family: var(--f3);
}
.footer-bottom p{
    font-family: var(--f3);
    font-size: 14px;
}
.footer-contact ul{
    display: flex;
    justify-content: end;
}
.footer-contact li{
    font-size: 14px;
}
.footer-contact li a:hover{
    color: var(--c1);
}
.footer-contact li a{
    transition: all 0.5s ;
    margin-left: 5px;
    color: var(--c3);
}
.footer-contact li i{
    margin-right: 5px;
}

/* Testimonial Section Css Start */
.page-template-team .testimonial-section{
	padding-top: 30px;
}
.testimonial-slider {
    margin-top: 80px;
}
.testimonial-box {
    padding: 0 50px;
    display: flex;
    font-style: italic;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}
.testimonial-box img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-box h5{
    font-family: var(--f3);
    font-size: 22px;
    color: var(--c2);
    font-weight: bold;
}
.testimonial-box p{
    color: var(--c2);
}
.testimonial-box ul{
    display: flex;
    gap: 5px;
    color: #FFBA07;
    font-size: 17px;
}
.testimonial-pagination {
    text-align: center;
    margin-top: 85px;
}
.testimonial-section .swiper-pagination-bullet {
    background: #01010152;
    opacity: 1;
    width: 13px;
    height: 13px;
    transition: all 0.5s;
}
.testimonial-section .swiper-pagination-bullet:hover{
    background: #C61B37;
}
.testimonial-section .swiper-pagination-bullet-active{
    background: #C61B37;
}
.testimonial-section .swiper-pagination-bullet-active:hover{
    background: #01010152;   
}


/* Marquee Css Start */

.fancy-section {
    overflow-x: hidden;
	padding: 50px 0;
}
.fancy-section .row{
	row-gap: 15px;
}
.marquee,
.marquee-2{
    display: flex;
	height: 100%;
    gap: 15px;
}
.marquee{
    animation: marquee 15s linear infinite;
}
.marquee-2{
    animation: marquee 15s linear infinite reverse;
}
.marquee:hover,
.marquee-2:hover{
    animation-play-state: paused;
}
@keyframes marquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}
.marquee-img a{
	display: block;
}
.marquee-img img {
    width: 385px;
    height: 300px;
	object-fit: cover;
}
.fancy-section .row:last-child{
	margin-top: 30px;
}

/* Blog Section */

.blog-main {
    border-radius: 16px; 
    overflow: hidden;
    background: var(--c3);
    box-shadow: -7px 12px 54px 0px #00000012;
}
.blog-content {
    padding: 50px 30px;
}
.blog-content a{
    color: var(--c2);
    font-size: 25px;
    font-family: var(--f1);
    text-transform: uppercase;
    font-weight: bold;
}
.blog-content a span{
    color: var(--c1);
}
.blog-content p{
    color: var(--c2);
    font-size: 15px;
    margin: 15px 0 20px 0;
}
.blog-img {
    overflow: hidden;
    height: 100%;
}
.blog-img a{
    display: block;
    height: 100%;
}
.blog-img img{
    transition: all 0.7s;
    height: 100%;
    object-fit: cover !important;
}
.blog-main .web-btn{
	color: var(--c3);
	font-size: 15px;
	font-weight: 400;
	font-family: var(--f3);
	text-transform: capitalize;
}
.blog-img img:hover{
    transform: scale(1.2);
}
.blog-flex {
	display: flex;
}
.blog-side-box {
    height: 50%;
}

.blog-side-box .row, .blog-side-box .col-lg-5, .blog-side-box .col-lg-7, .blog-side-box .blog-content {
    height: 100%;
}

.blog-side-box .blog-content {
    align-content: center;
}
.blog-side-box-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
}

/* Product Section Css Start */

.product-section {
    background: var(--c1);
}
.product-section .web-title h3{
    color: white;
}
.product-box {
    background: var(--c3);
    box-shadow: -7px 12px 54px 0px #00000012;
    border-radius: 10px;
    overflow: hidden;
}
.product-content{
    padding: 18px;
}
.product-content a,
.product-content {
    color: var(--c2)
}
.product-content h2{
	padding: 0 !important;
    transition: all 0.5s;
    font-size: 23px !important;
    font-weight: bold;
    font-family: var(--f1);
    text-transform: uppercase;
}
.product-content a:hover{
	color: var(--c1);
}
.product-content p{
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5;
}
.product-content span{
    color: var(--c1);
    font-weight: bold;
    font-family: var(--f1);
    font-size: 20px;
}
.product-image {
    margin: 10px 10px 0px 10px;
    overflow: hidden;
}
.product-image img{
    transition: all 0.5s ;
}
.product-image a{
    height: 100%;
    display: block !important;
}
.product-box:hover .product-image img{
    transform: scale(1.2);
}
.product-section .web-title h3{
	margin-bottom: 60px;
}






/* Inner Banner Css Start */

.inner-banner{
    background-repeat: no-repeat !important;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1;
    height: 650px;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.inner-banner::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--c2);
	opacity: 0.4;
	z-index: -1;
}
.inner-banner-title{
     text-align: center;
}
.inner-banner-title h2{
    color: var(--c3);
    font-size: 60px;
}






/* ============================================================
     SECTION 2 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â THE HOOPSTARS JOURNEY (dark process banner + stats)
  ============================================================ */
.journey-section{
	padding-top: 130px;
	background: radial-gradient(1200px 500px at 15% 0%, rgba(255,255,255,.06), transparent 60%), linear-gradient(135deg, var(--c1) 0%, var(--c1) 55%, 		  	  var(--c1) 100%);
	clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}

.journey-section .web-title h3{
	color: var(--c3);
	margin-bottom: 18px;
}
span.accent{
    color: var(--c2) !important;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .4);
}
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f1);
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 13.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c3) !important;
}
.mini-title::before {
    content: "";
    width: 22px;
    height: 3px;
    background: var(--c3);
    display: inline-block;
}
.journey-section .web-title p{
	color: var(--c3);
    font-size: 17.5;
	font-weight: 300;
    line-height: 1.65;
}
.journey-section .row:nth-child(2){
    margin-top: 70px;
    row-gap: 50px;
}
.step {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--c3);
    gap: 20px;
}
.step span{
    align-content: center;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--f1);
    display: block;
    background: var(--c3);
    color: var(--c1) !important;
}
.step h4{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
}
.step p{
    font-weight: 300;
    font-size: 15px;
}

.program-btn {
    margin-top: 70px;
    text-align: center;
}
.program-btn a{
    border-color: var(--c3);
}

/* Counter Section Css Start */
.counter-section .row{
	row-gap: 40px;
}

.counter-section {
    background: var(--c1);
    color: var(--c3);
    position: relative;
    z-index: 4;
}
.counter-section::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.18);
	z-index: -1;
}
.counter {
    text-align: center;
}
.counter h5{
    font-size: 45px;
}
.counter p{
    margin-top: 10px;
    font-weight: 300;
    font-size: 15px;
}

/* Team Section Css Start */
.team-section .row:nth-child(2){
	margin-top: 60px;
}
.team-section .web-title .mini-title{ 
	color: var(--c1) !important; 
}
.team-section .web-title .mini-title::before{
	background: var(--c1);
}
.team-section .web-title p{
	font-size: 18.5px;
	color: var(--c2);
}

.team-card{
	position:relative;
	background:var(--c2);
	border-radius:20px;
	overflow:hidden;
	height:100%;
}
.team-img{
	position:relative;
	aspect-ratio:3/3.6;
	overflow:hidden;
}
.team-img  img{
	width:100%; 
	height:100%; 
	object-fit:cover;
	transition: all 0.5s;
	filter:grayscale(15%);
}
.team-card:hover .team-img img{
	transform:scale(1.06);
	filter:grayscale(0%);
}
.team-img::after{
	content:"";
	position:absolute; 
	inset:0;
	background:linear-gradient(180deg, rgba(26,26,26,0) 45%, rgba(26,26,26,.92) 100%);
}

.team-img span{
	position:absolute; 
	top:16px; 
	left:16px; 
	z-index: 2;
	background:var(--c1); 
	color:var(--c3);
	font-family:var(--f1); 
	font-weight:800; 
	font-size:10.5px;
	text-transform:uppercase;
	padding:6px 12px; 
	border-radius: 30px;
}

.team-social{
	position:absolute; 
	top:16px; 
	right:16px; 
	z-index:3;
	display:flex; 
	flex-direction:column; 
	gap:8px;
	opacity:0; 
	transform:translateX(8px);
	transition:all 0.5s;
}
.team-card:hover .team-social{ 
	opacity:1; 
	transform:translateX(0); 
}
.team-social a{
	width:32px; 
	height:32px; 
	border-radius:50%;
	background:var(--c3); 
	color:var(--c2);
	display:flex; 
	align-items:center; 
	justify-content:center;
	box-shadow:0 6px 14px -4px rgba(0,0,0,.4);
	transition: all 0.5s;
}
.team-social a:hover{ 
	background:var(--c1); 
	color:var(--c3); 
}
.coach-social i{ 
	font-size: 15px;
}

.team-info{
	position:absolute; 
	left:0; 
	right:0; 
	bottom:0; 
	z-index:2;
	padding:20px 20px 22px;
}
.team-info h5{
	text-transform:uppercase;
	font-size:21px; color:var(--c3);
	line-height:1.1; 
	margin-bottom:4px;
}
.team-info span{
	font-weight:600; 
	font-size:13px;
	color:var(--c1); 
	text-transform:uppercase;
	position: relative;
	display: block;
	padding-bottom: 20px;
}
.team-info span::before{
	content: "";
	position: absolute;
	bottom: 0;
 	left: 0;
	width:34px; 
	height:3px; 
	background:var(--c1);
	margin:12px 0 10px;
	transition:width 0.5s ease;
}
.team-card:hover .team-info span::before{
	width:56px;
}
.team-info p{
	font-size:13px; 
	color: var(--c3);
	height:0; 
	opacity:0;
	overflow:hidden;
	transition: all 0.5s ease;
}
.team-card:hover .team-info p{
	height: 40px;
	opacity:1;
}
.team-btn {
	margin-top: 60px;
}


/* Shop Css Start */
.product-image img{
	margin-bottom: 0 !important;
}
.product-home-main ul.products li.product{
	width: 23.4%;
}
ul.products{
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
}
ul.products li.product .price{
	margin-bottom: 0 !important;
}
ul.products li.product{
	margin: 0 10px !important;
}
form.woocommerce-ordering {
    margin: 0 !important;
}
form.woocommerce-ordering select{
    border-color: var(--c2);
    padding: 10px;
    color: var(--c2);
}
form.woocommerce-ordering select:focus{
    outline: 0;
}
body.woocommerce-shop ul.products{
	padding-top: 30px;
}
