/*
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;
}
