/*-------------------------------------
    
	Author: Sporteyz 
	Copyright © 2019
	
---------------------------------------
    
    CSS INDEX
    ===================
	
    1. BODY
	2. CUSTOM CSS / A
	3. PRELOADER
	4. hs_btn_wrapper
	5. ft_logo_wrapper
	6. slider-area
	7. next_match_wrapper
	8. upcoming_match_wrapper 
	9. latest_result_wrapper
	10. upcoming_games_wrapper
	11. best_player_wrapper
	12. portfolio_grid
	13. counter_section
	14. latest_news_wraper
	15. official_store
	16. footer_wrapper

---------------------------------------*/
/*--------------
1.Theme default CSS
--------------------------*/
body, html {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #444;
	width:100%;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	background:#fff;
	overflow-X:hidden;
	position:relative;
	z-index:1;
}
a {
	cursor:pointer;
	color: #444;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover, a:focus {
	cursor:pointer;
	text-decoration: none;
	outline: none;
	color:#111;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Poppins', sans-serif;
	line-height: 1.1;
	font-weight:400;
	color: #111111;
	margin:0;
	padding:0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	color: #111111;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a{
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
p{
	margin:0;
}
input, select, button, textarea {
	outline: none;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
	box-shadow:none;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
.float_left{
	float:left;
	width:100%;
}
/*-- cursor css start --*/
* {
	cursor: none;
}
.cursor {
    --size: 10px;
    height: var(--size);
    width:  var(--size);
    border-radius: 50%;
    position: absolute;
    z-index: 10000;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cursor.cursor-shadow {
    background-color: transparent;
    border: 3px solid #65ad43;
    --size: 40px;
}
.cursor.cursor-dot {
    background: #111;
    transition: width .2s, height .2s;
}
.cursor-shadow.active {
    --size: 40px;
    border-color: #65ad43;
    background-color: #65ad43;
}
.cursor-dot.active {
	  --size: 0;
}
a {
	  cursor: none;
}
a:hover {
  	text-decoration: none;
	cursor:pointer;
}
/*-- Button css start --*/
.hs_btn_wrapper li a {
	float: left;
	width: 140px;
	height:40px;
	font-size:17px;
	text-transform:capitalize;
	display: block;
	font-weight:500;
	text-align:center;
	line-height:35px;
	background:#fff;
	color:#65ad43;
	position:relative;
	border:2px solid #fff;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hocky_btn{
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    z-index: 2;
    text-align: center;
    height: 40px;
	font-size:17px;
    line-height: 35px;
    width: 140px;
	border:2px solid #fff;
	color:#65ad43;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s ease;
}
.hs_btn_wrapper li a:hover {
    background: transparent;
    border: 2px solid #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.hocky_btn .btn-front {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: scale(1);
    transition: all 0.4s ease;
}
.hocky_btn .btn-back {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: scale(4);
    transition: all 0.4s ease;
    opacity: 0;
}
.hocky_btn:hover .btn-front {
    transform: scale(0);
    color: #fff;
    background: transparent;
}
.hocky_btn:hover .btn-back {
    transform: scale(1);
    opacity: 1;
    color: #fff;
    background: transparent;
}
.hocky_btn:hover{
	background:transparent;
}
.ckeck_btn{
	 color: #fff;
    background: #65ad43;
}
.ckeck_btn:hover .btn-back {
    transform: scale(1);
    opacity: 1;
	color:#65ad43;
    background: transparent;
}
.ckeck_btn:hover{
	color:#65ad43;
    background: transparent;
    border: 2px solid #65ad43;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/*-- Preloader css start --*/
#preloader {
	background-color: #172027;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
	width: 100%;
	height: 100%;
}
#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
#return-to-top {
    position: fixed;
    bottom: 53px;
    right: 30px;
    background: #fbc546;
    width: 45px;
    height: 45px;
    display: block;
    text-decoration: none;
	box-shadow:0px 5px 30px rgba(0,0,0,0.1);
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:1000;
}
#return-to-top i {
    color: #193e76;
    margin: 0;
    position: relative;
    left: 14px;
    top: 8px;
    font-size: 26px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover i {
    color: #fff;
    top: 10px;
}
.custom-container{
	max-width: 1520px;
}
/* =======================
		TABLE TENNIS CSS START
==========================================*/

.main-header-wrapper1 {
	position: relative;
	z-index: 999;
  }
  
  .main-header-wrapper1 .right-sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 440px;
	height: 100%;
	background: #ffffff;
	z-index: 99999;
	box-shadow: 0 -12px 46px 12px #b60e0e0d;
	transform: translate3d(20px, 0, 0);
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
	overflow-x: hidden;
	overflow-y: auto;
  }
  
  .main-header-wrapper1 .right-sidebar .sidebar-close {
	width: 100%;
	float: right;
	position: relative;
	background: none;
	border: none;
	outline: none;
	padding: 0;
	width: 40px;
	height: 40px;
  }
  
  .main-header-wrapper1 .right-sidebar .sidebar-close:before {
	content: '';
	position: absolute;
	top: 20px;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	transform: rotate(45deg);
  }
  
  .main-header-wrapper1 .right-sidebar .sidebar-close:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	transform: rotate(-45deg);
  }
  
  .main-header-wrapper1 .right-sidebar .toggle-top-header {
	background-color: #111111;
	width: 100%;
	padding: 20px;
  }
  
  .main-header-wrapper1 .right-sidebar .toggle-top-header .tog-logo {
	display: inline-block;
  }
  
  .main-header-wrapper1 .right-sidebar .toogle-centent {
	padding: 20px;
	border-top: 1px solid #ccc;
	width: 100%;
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
  }
  
  .main-header-wrapper1 .right-sidebar .toogle-centent p {
	color: #111111;
  }
  
  .main-header-wrapper1 .right-sidebar .toogle-centent strong {
	color: #193E76;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle {
	margin-top: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .togle-img {
	position: relative;
	
	width: 130px;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .togle-text {
	width: 130px;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .togle-text a {
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .togle-text span {
	font-size: 14px;
	color: #797979;
	display: block;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .toggle-cross {
	position: relative;
  }
  
  .main-header-wrapper1 .right-sidebar .post-toggle .toggle-cross a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #193E76;
	color: #ffffff;
	display: inline-block;
  }
  
  .main-header-wrapper1 .right-sidebar .view-btn-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0px 30px;
  }
  .main-header-wrapper1 .right-sidebar .view-btn-wrapper .redButton {
    width: 100%;
    background: #193e76;
    color: #ffffff;
    padding: 12px;
    margin-bottom: 12px;
}
  .main-header-wrapper1 .right-sidebar .view-btn-wrapper .redButton {
	width: 100%;
	text-align: center;
  }
  
  .main-header-wrapper1 .top-header {
	width: 100%;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: #ffffff;
	box-shadow: 0px 1px 6px 0px #97979787;
	border-radius: 0px 0px 35px 35px;
	padding: 15px 30px;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper .contact-us {
	font-weight: 700;
	color: #F82348;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper .contact-us span {
	display: inline-block;
	padding-right: 6px;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper .user {
	font-weight: 700;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper .user span {
	display: inline-block;
	padding-right: 6px;
  }
  
  .main-header-wrapper1 .top-header .food-contact-details-wrapper .user a:hover {
	color: #F82348;
  }
  
  .main-header-wrapper1 .open {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .index1-logo {
	width: 200px;
	float: left;
	padding-top: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .index1-logo .sticky-logo {
	display: none;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 26px 0px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav {
	padding: 0;
	margin-right: 18px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items {
	position: absolute;
	background-color: #ffffff;
	z-index: 999;
	top: 35px;
	display: none;
	width: 700px;
	right: -315px;
	border-radius: 8px;
	box-shadow: 0 1px 6px 0 #20212447;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li {
	padding: 3px 8px;
	position: relative;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li a {
	color: #111;
	font-size: 16px;
	padding: 0.25rem 1rem;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li a span {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li:hover:after {
	display: none;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li:hover a {
	color: red;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items li + li {
	margin-left: 0;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs {
	width: 100%;
	display: flex;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .nav-tabs {
	width: 30%;
	padding: 20px;
	background-color: #F82348;
	border: 0;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .nav-tabs li button {
	width: 100%;
	text-align: left;
	border-radius: 4px;
	color: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .nav-tabs li button.active {
	color: #F82348;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .nav-tabs li button:hover {
	background-color: #ffffff;
	color: #F82348;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content {
	width: 70%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content .tabs-box-wrapper {
	width: 100%;
	display: flex;
	padding: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content .tabs-box-wrapper .tabs-text {
	width: 60%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content .tabs-box-wrapper .tabs-text p {
	font-size: 14px;
	color: #111111;
	padding-bottom: 10px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content .tabs-box-wrapper .tabs-img {
	width: 40%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1 .dropdown-items .custom-tabs .tab-content .tabs-box-wrapper .tabs-img img {
	width: 100%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul .menu-click1.clicked .dropdown-items {
	display: block;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li {
	position: relative;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li a {
	color: #ffffff;
	padding: 0px;
	font-size: 16px;
	font-weight: 500;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li a span {
	font-size: 10px;
	margin-left: 3px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu {
	left: 0;
	top: 35px;
	z-index: 100;
	margin: 0px;
	padding: 0px;
	height: auto;
	min-width: 200px;
	display: block;
	border: none;
	border-radius: 8px;
	position: absolute;
	transform: scaleY(0);
	background-color: #ffffff;
	background-clip: inherit;
	transition: all 0.4s ease-in-out;
	transform-origin: center top 0;
	box-shadow: 0 13px 18px -8px rgba(0, 0, 0, 0.15), 0 29px 45px 4px rgba(0, 0, 0, 0.08), 0 11px 55px 10px rgba(0, 0, 0, 0.07);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li {
	display: block;
	margin: 0 !important;
	transition: 0.3s all ease-in-out;
	border-bottom: 1px solid rgba(228, 228, 228, 0.95);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li a {
	width: 100%;
	display: block;
	padding: 10px 20px 10px;
	color: #111111;
	font-weight: 500;
	font-size: 14px;
	transition: 500ms all ease;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li a:hover {
	margin-left: 8px;
	background-color: transparent;
	color: #193e76;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li a span {
	float: right;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li .sub-dropdown {
	position: absolute;
	left: 200px;
	padding: 0px 0px;
	top: 0;
	width: 170px;
	border-radius: 8px;
	background-color: #ffffff;
	display: none;
	box-shadow: 2px 0 10px #0000001a;
	transition: 0.3s all ease-in-out;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li:hover .sub-dropdown {
	display: block;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu li:last-child {
	border-bottom: 0;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu {
	width: 690px;
	left: -237%;
	padding: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li {
	border-bottom: 0;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list {
	width: 100%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list h5 {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 8px;
	text-transform: uppercase;
	color: #F82348;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list a {
	color: #111111;
	display: block;
	font-weight: 600;
	position: relative;
	padding-left: 12px;
	font-size: 16px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(228, 228, 228, 0.95);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list a:before {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #111111;
	left: 0;
	top: 18px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list a:hover {
	margin-left: 8px;
	color: #F82348;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list a:hover:before {
	background-color: #F82348;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li .dropdown-menu.short-code-menu li .megamenu-wrapper .megamenu-list a:last-child a {
	border-bottom: 0;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li:hover .dropdown-menu {
	transform: scaleY(1);
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header nav ul li + li {
	margin-left: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar {
	position: relative;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_bar {
	color: #444;
	font-size: 16px;
	cursor: pointer;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_bar a span svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_box {
	position: absolute;
	width: 270px;
	top: 60px;
	right: -35px;
	padding: 20px;
	font-size: 16px;
	display: inline-block;
	border-top: 4px solid #111;
	border-radius: 0px;
	-o-box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 5px 8px -5px rgba(0, 0, 0, 0.5);
	background-color: #ffffff;
	display: none;
	z-index: 1000;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_box input {
	float: left;
	color: #111111;
	width: calc(100% - 45px);
	padding: 0px 10px;
	height: 45px;
	border: 1px solid #e1e1e1;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-right: 0px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_box button {
	width: 45px;
	height: 45px;
	border: 1px solid #e1e1e1;
	border-left: none;
	background-color: #ffffff;
	color: #111111;
	text-align: center;
	padding: 0px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .search_bar .lv_search_box button:hover {
	color: #ffffff;
	background: #cca334;
	border-color: #cca334;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .sidebar-toggle {
	position: relative;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .sidebar-toggle span svg {
	width: 24px;
	height: 24px;
	fill: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li .sidebar-toggle:before {
	content: '1';
	position: absolute;
	right: -4px;
	top: -5px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	text-align: center;
	font-size: 11px;
	background-color: #ffffff;
	color: #F82348;
	font-weight: 600;
	border-radius: 50%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop {
	position: relative;
	padding-top: 5px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn {
	display: inline-block;
	border: 1px solid #ffffff;
	color: #ffffff;
	width: 150px;
	text-align: center;
	height: 45px;
	line-height: 43px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn span {
	display: inline-block;
	padding-right: 8px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn:after {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	left: -35%;
	top: 0;
	transform: skew(50deg);
	transition-duration: 0.6s;
	transform-origin: top left;
	background: #0060aa;
	border: 1px solid #0060aa;
	transition: all 0.3s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn:hover {
	border: 1px solid #0060aa;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn:hover span {
	z-index: 11;
	position: relative;
	color: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-btn:hover:after {
	height: 100%;
	width: 135%;
	transition: all 0.3s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-page-wrapper {
	position: absolute;
	background-color: #e9f0fa;
	z-index: 999;
	top: 72px;
	display: none;
	width: 160px;
	left: 0;
	border-radius: 8px;
	padding: 20px 0px;
	box-shadow: 0 1px 6px 0 #20212447;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .post-drop .post-page-wrapper a {
	display: block;
	padding: 3px 21px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons li + li {
	margin-left: 20px;
  }
  

  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .user-text {
	width: 150px;
	position: absolute;
	top: 50px;
	right: 0px;
	float: left;
	z-index: 99;
	background: #ffffff;
	border-radius: 12px;
	padding: 5px 0px;
	display: none;
	overflow: hidden;
	box-shadow: 8px 0px 29px #0000000a;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .user-text a {
	width: 100%;
	display: inline-block;
	font-size: 15px;
	color: #111111;
	padding: 9px 18px;
	text-align: left;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .user-text a span {
	display: inline-block;
	padding-right: 8px;
	line-height: inherit;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .user-text a span svg {
	width: 20px;
	height: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .menu-item-wrapper3 .my-menu-header .social-media-icons .user-text a:hover {
	color: #111111;
	background-color: #e5e5e5;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper {
	background-color: #111111;
	position: fixed;
	top: 0;
	width: 100%;
	padding: 12px 0px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons {
	padding-top: 0px;
	padding-right: 20px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul {
	width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  

  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar {
	position: relative;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_bar {
	color: #444;
	font-size: 16px;
	cursor: pointer;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_bar a span svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_box {
	position: absolute;
	width: 270px;
	top: 66px;
	right: -35px;
	padding: 20px;
	font-size: 16px;
	display: inline-block;
	border-top: 4px solid #111;
	border-radius: 0px;
	-o-box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.5);
	-ms-box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 5px 8px -5px rgba(0, 0, 0, 0.5);
	background-color: #ffffff;
	display: none;
	z-index: 1000;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_box input {
	float: left;
	color: #111111;
	width: calc(100% - 45px);
	padding: 0px 10px;
	height: 45px;
	border: 1px solid #e1e1e1;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-right: 0px;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_box button {
	width: 45px;
	height: 45px;
	border: 1px solid #e1e1e1;
	border-left: none;
	background-color: #ffffff;
	color: #111111;
	text-align: center;
	padding: 0px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul .search_bar .lv_search_box button:hover {
	color: #ffffff;
	background: #cca334;
	border-color: #cca334;
	transition: all 0.5s;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li {
	display: inline-block;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li .sidebar-toggle {
	position: relative;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li .sidebar-toggle span svg {
	width: 24px;
	height: 24px;
	fill: #ffffff;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li .sidebar-toggle:before {
	content: '1';
	position: absolute;
	right: -4px;
	top: -5px;
	width: 14px;
	height: 14px;
	line-height: 14px;
	text-align: center;
	font-size: 11px;
	background-color: #ffffff;
	color: #F82348;
	font-weight: 600;
	border-radius: 50%;
  }
  
  .main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul li + li {
	margin-left: 10px;
  }
  
  .mobile-menu-wrapper {
	background-color: #111111;
	padding: 15px 0px;
	display: block;
  }
  
  .mobile-menu-wrapper .toggle-main-wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
  }
  
  .mobile-menu-wrapper .toggle-main-wrapper .line {
	width: 30px;
	height: 3px;
	background-color: #ffffff;
	display: block;
	margin: 3px auto;
	transition: all 0.3s ease-in-out;
  }
  
  .mobile-menu-wrapper .toggle-main-wrapper.main span:nth-child(1) {
	top: 20px;
	transform: rotate(135deg);
	position: absolute;
  }
  
  .mobile-menu-wrapper .toggle-main-wrapper.main span:nth-child(2) {
	opacity: 0;
	left: -60px;
  }
  
  .mobile-menu-wrapper .toggle-main-wrapper.main span:nth-child(3) {
	top: 21px;
	transform: rotate(-135deg);
	position: absolute;
  }
.social-media-icons li .main_button_wrapper {
    margin: 0;
	background: #fbc546;
}
.social-media-icons li .main_button_wrapper a{
	color: #193e76;
	text-transform: uppercase;
}
.social-media-icons li .main_button_wrapper .btn_effect{
	background-color: #ffffff;
}
  #sidebar {
	position: fixed;
	display: block;
	height: 100vh;
	top: 0;
	left: -500px;
	width: 300px;
	background-color: #ffffff;
	overflow: scroll;
	overflow-x: hidden;
	z-index: 99999;
	transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  #sidebar .sidebar_logo {
	float: left;
	width: 300px;
	padding: 15px 24px;
	background: #000;
  }
  
  #sidebar .sidebar_logo a img {
	width: 90px;
  }
  
  #sidebar.open {
	left: 0;
  }
  
  #sidebar #cssmenu {
	width: 300px;
  }
  
  #sidebar #cssmenu .input-group {
	width: 94% !important;
  }
  
  #sidebar #cssmenu .input-group .btn-outline-secondary {
	color: #cccccc;
	border-color: #cccccc;
  }
  
  #sidebar #cssmenu .input-group .form-control {
	border-color: #cccccc;
  }
  
  #sidebar #cssmenu .input-group .form-control .form-control:focus {
	border: 1px solid #aaa;
  }
  
  #sidebar #cssmenu ul {
	width: 100%;
	float: left;
  }
  
  #sidebar #cssmenu ul li {
	border-bottom: 1px solid #cccccc;
	position: relative;
	width: 100%;
	float: left;
  }
  
  #sidebar #cssmenu ul li a {
	padding: 10px 20px;
	display: inline-block;
	width: 100%;
	color: #111111;
	text-transform: capitalize;
  }
  
  #sidebar #cssmenu ul li .social-icon {
	display: flex !important;
	justify-content: space-evenly;
	margin-top: 20px;
  }
  
  #sidebar #cssmenu ul li .social-icon li {
	border: none;
	width: 47px;
	height: 46px;
	background: #F82348;
	line-height: 26px;
	border-radius: 50%;
	text-align: center;
  }
  
  #sidebar #cssmenu ul li .social-icon li a {
	color: #111111;
	display: inline-block;
	padding: 10px 0px;
  }
  
  #sidebar #cssmenu ul .has-sub ul {
	display: none;
  }
  
  #sidebar #cssmenu ul .has-sub ul li {
	border-bottom: none;
	border-top: 1px solid #cccccc;
  }
  
  #sidebar #cssmenu ul .has-sub ul li a {
	padding: 10px 40px;
	font-size: 14px;
  }
  
  #sidebar #cssmenu ul .has-sub:before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	right: 25px;
	background-color: #cccccc;
	height: 2px;
	width: 10px;
	transition: all 0.5s;
	z-index: 1;
  }
  
  #sidebar #cssmenu ul .has-sub:after {
	content: '';
	display: block;
	position: absolute;
	top: 16px;
	right: 29px;
	background-color: #cccccc;
	height: 10px;
	width: 2px;
	transition: all 0.5s;
	z-index: 1;
  }
  
  #sidebar #cssmenu ul .open:before {
	transform: rotate(45deg);
  }
  
  #sidebar #cssmenu ul .open:after {
	transform: rotate(45deg);
  }
  .mobile-logo a img {
    width: 150px;
	}  


  /*  */

  .table-tennis-slider-wrapper{
	width: 100%;
	background-image: url('../images/table-tennis/tennis-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	margin-top: -95px;
  }
  .table-tennis-slider-wrapper .swiper-slide{
	background-color: transparent;
  }
  .table-tennis-slider-wrapper .swiper-slide .slider_tennis_img {
    -webkit-animation: movebounce 3.0s linear infinite;
    animation: movebounce 3.0s linear infinite;
    position: relative;
    left: 45px;
	top: 0px;
}
  
.table-tennis-slider-wrapper .swiper-slide .slider_tennis_img img {
    width: 100%;
}
.table-tennis-slider-wrapper .swiper-slide .lr_banner_content_inner_wrapper{
	top: 70% !important;
}
.table-tennis-slider-wrapper .swiper-slide .lr_banner_content_inner_wrapper h2{
	font-size: 150px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 110px;
    position: relative;
    font-weight: 600;
    padding-right: 100px;
    text-align: left;
    letter-spacing: 15px;
}
.ball-img {
    position: absolute;
    bottom: -104px;
    left: 67px;
	-webkit-animation: movebounce 3.0s linear infinite;
    animation: movebounce 3.0s linear infinite;
}
.swiper-pagination-current{
	color: #FBC546;
}
.swiper-pagination-total{
	color: #FBC546;
}
.swiper-pagination-total:after{
	background: #FBC546;
}
.swiper-button-prev{
	background-color: #FBC546;
}
.swiper-button-next{
	background-color: #FBC546;
}
.wrapper{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 21%;
	transform: translate(-50%, -50%);
}
.overlay1 {
    position: absolute;
    top: 50%;
    left: 16%;
    z-index: 9999;
}
.waves {
	position: absolute;
	width: 150px;
	height: 150px;
	background: rgba(214, 214, 214, 0.3);
	opacity: 0;
	border-radius: 100%;
	right: -70px;
	bottom: -23px;
	z-index: -1;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}
.waves1 {
	position: absolute;
	width: 150px;
	height: 150px;
	background: rgba(214, 214, 214, 0.3);
	opacity: 0;
	border-radius: 100%;
	right: 100px;
	bottom: -35px;
	z-index: -1;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}
.wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.wave-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
	}
	50% {
		opacity: 0.9;
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
	}
}
.play-vedio {
    display: flex;
	align-items: center;
}
.play-vedio p {
    color: #ffffff;
    padding-left: 15px;
	font-size: 25px;
}
.play-vedio .youtube {
    color: #193e76;
	width: 80px;
    height: 80px;
    font-size: 34px;
    background: #fbc546;
    text-align: center;
    line-height: 80px;
    border-radius: 50px;
	position: relative;
}
.play-vedio .WhatsApp {
    color: #193e76;
	width: 80px;
    height: 80px;
    font-size: 34px;
    background: #fbc546;
    text-align: center;
    line-height: 80px;
    border-radius: 50px;
	position: relative;
}




.animate-top-y {
	-webkit-animation-name: top-y;
	animation-name: top-y;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@keyframes top-y {
	0% {
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}
	50% {
		transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
	}
	100% {
		transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}
}

@keyframes rotate {
	20%,
	80% {
		transform: rotateY(180deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}





/*  */

.sporty-match-review-main-wrapper{
	width: 100%;
	float: left;
	padding: 60px 0px;
	background-color: #fafafa;
}
.match-review-wrapper{
	width: 100%;
	display: flex;
}
.next-match{
	width: 45%;
	background-color: #193E76;
	padding: 40px;
}
.next-match h2 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
	border-left: 4px solid #ffffff;
    padding-left: 20px;
}
.next-match p{
	color: #ffffff;
	padding-top: 12px;
	font-size: 16px;
}
.match-review-strip-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    background: #ffffff40;
    margin-top: 12px;
	position: relative;
}
.match-review-strip-wrapper .date-review {
    width: 30%;
    text-align: center;
    background: #ffffff;
	padding: 12px 0px;
}
.match-review-strip-wrapper .date-review h3{
	color: #193E76;
	font-size: 40px;
	font-weight: 700;
}
.match-review-strip-wrapper .date-review span{
	color: #111111;
	font-size: 20px;
	font-weight: 600;
}
.match-review-strip-wrapper .match-icon {
    width: 70%;
}
.match-review-strip-wrapper .match-icon ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.match-review-strip-wrapper .match-icon ul .vs-text {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    font-weight: 600;
}
.review-show-wrapper {
    width: 100%;
    padding: 20px;
    background-color: #fbc546db;
    margin-top: 10px;
    display: none;
    position: absolute;
    top: 119px;
    z-index: 1;
}
.review-show-wrapper .multi-btn{
	width: 100%;
	display: flex;
    gap: 20px;
    justify-content: center;
}
.review-show-wrapper .multi-btn a {
    background: #ffffff;
    padding: 12px 20px;
    color: #193E76;
    font-size: 25px;
    font-weight: 500;
}
.review-show-wrapper .multi-btn a:hover{
	background-color: #193E76;
	color: #ffffff;
}
.match-review-strip-wrapper:hover .date-review{
	background-color: #fbc546;
}
.match-review-strip-wrapper:hover .date-review h3{
	color: #ffffff;
}
.match-review-strip-wrapper:hover .date-review span{
	color: #ffffff;
}
.recent-match {
    width: 55%;
    padding: 0px 0px 0px 70px;
}
.recent-match h2 {
    font-size: 45px;
    font-weight: 600;
    border-left: 3px solid #193e76;
    padding-left: 20px;
}
.recent-match p {
    padding-top: 15px;
}
.recent-match .match-player-wrapper {
    width: 100%;
    display: flex;
    gap: 20px;
	margin-top: 30px;
	position: relative;
}
.match-player-wrapper:after {
    content: '';
    position: absolute;
    top: -65px;
    right: -145px;
    background-image: url(../images/table-tennis/winner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    width: 234px;
    height: 242px;
}
.player-img {
    position: relative;
}
.player-tag {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 50%;
    left: 35%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	margin-top: 65px;
}
.player-tag h2 {
    padding-left: 0;
    border: 0;
}
.player-img img {
    width: 100%;
}
.player-img:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	overflow: hidden;
  	width: 0;
	height: 100%;
	background-color: #193e7687;
	transition: .5s ease;
}
.player-img:hover:before{
	left: 0;
	width: 100%;
}
.player-title {
    width: 100%;
    background: #193e76;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
.player-title h3 a{
	color: #ffffff;
	padding: 20px;
	display: block;
}
.player-img .tropy {
    position: absolute;
    bottom: 35px;
    left: 14px;
    background: #ffffff;
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
}
.player-img .tropy img{
	width: 40px;
}

/*  */

.sporty-champion-award-main-wrapper {
    width: 100%;
    float: left;
    padding-bottom: 60px;
	background-color: #fafafa;
	position: relative;
}
.sporty-champion-award-main-wrapper:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-image: url('../images/table-tennis/before-img.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	width: 341px;
	height: 341px;
}
.head-title {
    text-align: center;
    width: 100%;
}
.head-title h2{
	color: #193e76;
    display: inline-block;
    font-weight: 500;
    border-left: 3px solid #193e76;
    border-right: 3px solid #193e76;
    padding: 0px 16px;
}
.sporty-champion-tropy-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	margin-top: 50px;
	gap: 20px;
}

.tropy-block-wrapper {
    width: 23%;
    text-align: center;
    transition: .5s ease;
}

.tropy-block {
    position: relative;
    background: #ffffff;
    padding: 45px 0px 60px;
}

.tropy-text {
    width: 76%;
    margin: auto;
    padding: 35px 0px 20px;
    background: #193e76;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.tropy-text span {
    display: inline-block;
    background-color: #193e76;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 42%;
    top: -19px;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.tropy-text h3{
	color: #ffffff;
	font-size: 20px;
}
.tropy-block-wrapper:hover .tropy-text {
    width: 100%;
	transition: .5s ease;
}
.tropy-block-wrapper:hover .tropy-text h3{
	color: #FBC546;
}

/*  */

.soprty-squad-main-wapper{
	width: 100%;
	float: left;
	padding: 60px 0px;
	background-image: url('../images/table-tennis/squad-bg.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.soprty-squad-main-wapper .left-title {
    display: inline-block;
}
.soprty-squad-main-wapper .main_button_wrapper {
    float: right;
    background: #FBC546;
}
.soprty-squad-main-wapper .main_button_wrapper a{
	color: #111111;
}
.left-title h2{
	color: #ffffff;
	display: inline-block;
	border-left: 3px solid #ffffff;
	padding-left: 12px;
}
.sport-player-details-wrapper {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
    margin-top: 50px;
	gap: 15px;
}
.sport-squad-player-wrapper {
    display: flex;
    width: 48%;
}
.sport-text {
    background: #ffffff;
    padding: 30px;
	width: 60%;
}
.sport-text span {
    color: #193E76;
    font-size: 18px;
    font-weight: 600;
}
.sport-text h3 a {
    font-size: 30px;
    font-weight: 600;
}
.sport-text p{
	padding-top: 10px;
	color: #111111;
}
.sport-text ul {
    display: flex;
    background: #e8ecf1;
    padding: 30px;
    margin-top: 30px;
}
.sport-text ul li {
    color: #193e76;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}
.sport-text ul li span {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    padding-top: 14px;
}
.sport-text ul li  + li{
	border-left: 2px solid #193e76;
}
.text-btn a {
    font-size: 22px;
    text-transform: uppercase;
}
.text-btn {
    margin-top: 30px;
}
.text-btn a:hover{
	color: #193e76;
}
.text-btn a span {
    display: inline-block;
    padding-left: 5px;
    vertical-align: 5px;
}
.sport-img {
    position: relative;
    overflow: hidden;
	width: 40%;
}
.sport-img img{
	transform: scale(1);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.sport-squad-player-wrapper:hover .sport-img img{
	transform: scale(1.1);
    transition: all 0.5s ease 0s;
}

/*  */

.sport-about-main-wrapper{
	width: 100%;
	float: left;
	padding: 60px 0px 0px;
	background-color: #fafafa;
}
.about-main-wrapper{
	width: 100%;
	display: flex;
}
.about-img {
	width: 40%;
}
.about-img img {
    animation: movebounce 3.0s linear infinite;
	width: 100%;
}
.about-text .left-title h2{
    color: #111111;
    border-left: 3px solid #193e76;
	font-weight: 600;
}
.about-text p{
	padding-top: 30px;
}
.about-text {
    width: 60%;
    padding-left: 110px;
}
.about-text .main_button_wrapper {
    margin-top: 40px;
    background: #193e76;
}
.about-text .main_button_wrapper .btn_effect {
    background: #fbc546;
}
.main_button_wrapper:hover a{
	color: #111111;
}
.sport-block-main-wrapper {
    width: 100%;
    display: flex;
	gap: 20px;
}
.sport-block-main-wrapper .about-block-wrapper {
    width: 30%;
    text-align: center;
    background-color: #ffffff;
	border: 1px solid #ffffff;
    padding: 45px 0px;
	position: relative;
	z-index: 1;
	box-shadow: 0px 4px 28px 9px rgba(0, 0, 0, 0.02);
	transform: scale(1.0);
	transition: .5s ease;
}
.sport-block-main-wrapper .about-block-wrapper:before {
    content: '';
    position: absolute;
    background-image: url(../images/table-tennis/icon1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 65px;
    height: 65px;
    left: 80px;
    top: 28px;
}
.sport-block-main-wrapper .team-member:before{
	background-image: url(../images/table-tennis/icon2.png);
}
.sport-block-main-wrapper .award-win:before{
	background-image: url(../images/table-tennis/icon3.png);
}
.sport-block-main-wrapper .about-block-wrapper .count-description{
	margin-top: 0;
}
.sport-block-main-wrapper .about-block-wrapper .count-description:after{
	display: none;
}
.sport-block-main-wrapper .about-block-wrapper  .count-description span{
	color: #193e76;
}
.sport-block-main-wrapper .about-block-wrapper .count-description h5 {
    font-size: 20px;
    padding-top: 45px;
    color: #193e76;
    font-weight: 600;
}
.sport-block-main-wrapper .about-block-wrapper:hover{
	border: 1px solid #193E76;
	transition: .5s ease;
	transform: scale(1.1);
}

/*  */

.sport-latest-news-maib-wrappper{
	width: 100%;
	float: left;
	background-color: #fafafa;
	padding: 60px 0px;
}
.sport-latest-news-maib-wrappper .left-title h2 {
    color: #111111;
    border-left: 3px solid #193e76;
    font-weight: 600;
}
.latest-news-main-wrapper{
	width: 100%;
	display: flex;
	margin-top: 40px;
}
.latest-news-left-wrapper{
	width: 60%;
}
.latest-blog-wrapper{
	width: 100%;
}
.latest-news-wrapper{
	width: 40%;
	padding-left: 45px;
}
.blog-img img {
    width: 100%;
}
.latest-blog-wrapper .blog-text {
    width: 90%;
    padding: 30px;
	margin: auto;
	margin-top: -95px;
	position: relative;
	z-index: 1;
    background-color: #193e76;
}
.latest-blog-wrapper .blog-text span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}
.latest-blog-wrapper .blog-text h4 a{
	color: #ffffff;
	font-size: 30px;
	font-weight: 600;
	display: inline-block;
	padding-top: 20px;
}
.latest-blog-wrapper .blog-text p{
	color: #ffffff;
	padding: 14px 0px;
}
.latest-blog-wrapper .blog-text a{
	color: #FBC546;
	text-transform: uppercase;
	font-weight: 600;
}
.latest-blog-wrapper .blog-text a span{
	display: inline-block;
	padding-left: 10px;
}
.news-headlines {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
	margin-top: 30px;
}
.news-headlines a {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    display: block;
	padding-bottom: 20px;
}
.news-headlines span {
    color: #193e76;
}
.news-slider{
	width: 100%;
}
.news-slider .owl-nav {
    position: absolute;
    right: 45px;
    bottom: 0px;
}
.news-slider .owl-nav .owl-prev {
    background-color: #fbc546;
    color: #ffffff;
    font-size: 35px;
	border-radius: 0;
    padding: 4px 16px;
	margin: 0;
}
.news-slider .owl-nav .owl-next {
    background-color: #fbc546;
    color: #ffffff;
    font-size: 35px;
	border-radius: 0;
    padding: 4px 16px;
	margin: 0;
}
.news-slider .owl-nav .owl-prev:hover{
	background-color: #fcdd92;
}
.news-slider .owl-nav .owl-next:hover{
	background-color: #fcdd92;
}

/*  */


.sporty-testimonial-wrapper{
	width: 100%;
	float: left;
	padding: 60px 0px;
	background-color: #fafafa;
}
.testimonial-slider {
    width: 100%;
    margin-top: 60px;
}
.testi-block-wrapper{
	width: 100%;
}
.testi-block-wrapper .testi-text{
	padding: 30px;
	background-color: #ffffff;
	box-shadow: 2px 19px 63px rgba(0, 0, 0, 0.05);
	position: relative;
}
.testi-text:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 0;
    height: 0;
    border-top: 60px solid white;
    border-right: 60px solid transparent;
}
.testi-img {
    display: flex;
    gap: 20px;
    align-items: center;
	margin-top: 60px;
}
.testi-img .profile-text {
    text-align: center;
}
.testi-img .profile-text h4 {
    font-size: 20px;
    font-weight: 500;
}
.testi-img .profile-text h4  span{
	display: block;
    color: #8b8888;
    font-weight: 400;
    font-size: 14px;
	padding-top: 6px;
}
.testi-block-wrapper .testi-text ul {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
}
.testimonial-slider .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 36px;
}
.testimonial-slider .owl-theme .owl-dots .owl-dot span{
	width: 16px;
    height: 16px;
}
.testimonial-slider .owl-theme .owl-dots .owl-dot.active span{
	background-color: #fbc546;
	width: 50px;
}

/*  */

.sporty-gallery-main-wrapper{
	width: 100%;
	float: left;
	padding: 60px 0px;
	background-color: #fafafa;
}
.gallery-main-wrapper {
	display: flex;
	gap: 24px;
	margin-top: 20px;
}
.gallery-main-wrapper .portfolio_img_wrapper {
	width: 70%;
	text-align: center;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img {
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 100%;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img img {
	width: 100%;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img .portfolio_img_text {
	position: absolute;
	bottom: 45%;
	z-index: 10;
	transition: 0.5s ease-out;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	opacity: 0;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img:before {
	content: '';
	display: block;
	position: absolute;
	height: 0%;
	width: 100%;
	bottom: 0;
	transition: height 0.5s ease-out;
	background: #fbc546bf;
	z-index: 9;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img:hover:before {
	height: 100%;
}
.gallery-main-wrapper .portfolio_img_wrapper .portfolio_img:hover .portfolio_img_text {
	opacity: 1;
	transition: 0.5s ease-out;
}
.gallery-main-wrapper .portfolio_img_wrapper.small-portfolio {
	width: 30%;
}
.sporty-gallery-main-wrapper .head-title {
    margin-bottom: 50px;
}

/*  */


.sporty-poster-main-wrappper{
	width: 100%;
	float: left;
	background-color: #fafafa;
	padding-bottom: 60px;
}
.poster-wrapper{
	width: 100%;
	display: flex;
	background-color: #EBF3FF;
	justify-content: space-around;
	position: relative;
}
.poster-wrapper .poster-text p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 12px;
    padding-bottom: 20px;
	color: #193E76;
}
.poster-wrapper .poster-text h2 {
    font-size: 60px;
    color: #193E76;
    font-weight: 600;
}
.poster-wrapper .poster-text h2 span{
	color: #FBC546;
}
.poster-text {
    padding-top: 9%;
}
.poster-text .main_button_wrapper {
    background: #193e76;
	margin-top: 30px;
}
.poster-text .main_button_wrapper .btn_effect {
    background-color: #fbc546;
}
.poster-wrapper .triangle-topleft {
    width: 0;
    height: 0;
    border-top: 100px solid #193e76;
    border-right: 100px solid transparent;
    position: absolute;
    left: 0;
}

/*  */

.sporty-feature-product-main-wrappper{
	width: 100%;
	float: left;
	padding: 60px 0px;
	background-color: #fafafa;
}
.featured-main-wrapper{
	width: 100%;
	display: flex;
	gap: 20px;
	margin-top: 45px;
}
.featured-main-wrapper .featured-main-block {
    width: 24%;
	padding: 40px 20px;
    background-color: #ffffff;
	border: 1px solid #ffffff;
	box-shadow: 0px 4px 28px 9px rgba(0, 0, 0, 0.02);
    text-align: center;
	transform: scale(1.0);
    transition: .5s ease;
}

.featured-main-block .product-img ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.featured-main-block .product-text h4 a {
    font-size: 24px;
    font-weight: 600;
    padding: 16px 0px;
    display: block;
	color: #193E76;
}
.featured-main-block .product-text p{
	color: #111111;
	padding-bottom: 12px;
}
.featured-main-block .product-text h2{
	color: #193E76;
	font-weight: 600;
	padding-bottom: 20px;
}
.featured-main-block .product-text h2 del {
    opacity: 0.2;
}
.featured-main-block .product-text .main_button_wrapper{
	background-color: #193E76;
	margin: auto;
    float: none;
}
.featured-main-block .product-text .main_button_wrapper .btn_effect{
	background-color: #fbc546;
}
.featured-main-wrapper .featured-main-block:hover{
	border-color: #193E76;
	transform: scale(1.1);
    transition: .5s ease;
}

/*  */

.sporty-footer-wrapper {
    width: 100%;
    float: left;
    position: inherit;
}
.sporty-footer-wrapper .section_2 {
    background-image: none;
    background-color: #193e76;
	text-align: center;
	padding-top: 65px;
}
.sporty-footer-wrapper .section_2 .wrapper_first_image{
	margin: 0;
}
.sporty-footer-wrapper .section_2  .abotus_content h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 16px;
}
.sporty-footer-wrapper .section_2 .wrapper_first_image a img {
    width: 170px;
}
.footer-input-box {
    width: 50%;
    margin: auto;
    display: flex;
	gap: 20px;
}
.footer-input-box input {
    background: #ffffff33;
	border: 1px solid #ffffff33;
	border-radius: 0;
	height: 40px;
}
.footer-input-box input:focus{
	background: #ffffff33;
	box-shadow: none;
}
.footer-input-box .main_button_wrapper a{
	line-height: 40px;
	text-transform: uppercase;
}
.footer-input-box  .main_button_wrapper{
	background-color: #FBC546;
}
.footer-input-box input

.footer-input-box input::-webkit-input-placeholder { /* Edge */
	color: #ffffff;
  }
  
  .footer-input-box input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #ffffff;
  }
  
  .footer-input-box input::placeholder {
	color: #ffffff;
  }
  .sporty-footer-wrapper .aboutus_social_icons {
	float: none;
    display: flex;
    justify-content: center;
}
.sporty-footer-wrapper .aboutus_social_icons li a{
	color: #ffffff;
	border: 1px solid #ffffff;
	width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 24px;
	border-radius: 50%;
}

.sporty-footer-wrapper .aboutus_social_icons li a:hover{
	background: #fbc546;
}

.footer-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 24px;
    gap: 20px;
}

.footer-nav a:hover{
	color: #FBC546;
}

.sporty_bottom_footer {
    width: 100%;
    text-align: center;
    float: left;
    padding: 12px 0px;
    background: #f8c345;
}

.sporty_bottom_footer p {
    color: #193e76;
    font-weight: 600;
    font-size: 15px;
}






@media (max-width: 1199px){
	.sport-block-main-wrapper .about-block-wrapper:before{
		left: 44px;
	}
	.sport-block-main-wrapper .about-block-wrapper{
		padding: 45px 16px;
	}
	.player-tag {
		width: 160px;
		height: 160px;
		margin-top: 35px;
	}
	.player-tag h2{
		font-size: 30px;
	}
	.player-img .tropy img {
		width: 30px;
	}
	.player-img .tropy {
		bottom: 46px;
		width: 70px;
		height: 70px;
		line-height: 70px;
	}
	.player-title h3 a {
		font-size: 20px;
	}
	.next-match h2{
		font-size: 40px;
	}
	.recent-match h2{
		font-size: 36px;
	}
	.news-headlines a {
		font-size: 20px;
		line-height: 25px;
	}
	.recent-match {
		padding: 0px 0px 0px 30px;
	}
}

@media (max-width: 1024px){
	.match-player-wrapper:after{
		display: none;
	}
	
	.recent-match {
		padding: 0px 0px 0px 24px;
	}
	
	.match-review-wrapper{
		flex-direction: column-reverse;
	}
	.player-img{
		width: 48%;
	}
	.recent-match{
		width: 100%;
	}
	.player-tag{
		left: 41%;
	}
	.next-match {
		width: 100%;
		margin-top: 30px;
	}
	.sport-squad-player-wrapper{
		width: 100%;
	}
	.sport-img img{
		width: 100%;
	}
	.sport-text ul li + li{
		margin-left: 18px;
	}
	.sport-text ul li {
		padding-left: 18px;
	}
	.about-text {
		padding-left: 30px;
	}
}




@media (max-width: 991px){
	.table-tennis-slider-wrapper .swiper-slide .slider_tennis_img{
		left: 0;
	}
	
	.next-match{
		width: 100%;
	}
	.recent-match {
		width: 100%;
		padding: 34px 0px 0px 35px;
	}
	.match-player-wrapper:after{
		right: 0;
	}
	.tropy-block-wrapper{
		width: 48%;
	}
	.sport-squad-player-wrapper{
		width: 100%;
	}
	.sport-text ul li span{
		display: block;
	}
	.sport-text ul {
		justify-content: space-evenly;
	}
	.sport-text ul li + li {
		padding-left: 40px;
	}
	.sport-img img{
		width: 100%;
	}
	.about-text{
		padding-left: 50px;
	}
	.featured-main-wrapper{
		flex-wrap: wrap;
		justify-content: center;
	}
	.featured-main-wrapper .featured-main-block{
		width: 48%;
	}
	.poster-text{
		width: 60%;
    	padding-left: 40px;
	}
	.poster-img {
		width: 40%;
	}
	.poster-img img {
		width: 100%;
	}
	.latest-news-main-wrapper {
		flex-direction: column;
	}
	.latest-news-left-wrapper{
		width: 100%;
	}
	.latest-news-wrapper {
		width: 100%;
		padding-left: 0;
	}
	.footer-input-box{
		width: 100%;
	}
	.table-tennis-slider-wrapper{
		margin-top: 67px;
	}
}




@media (max-width: 767px){
	.table-tennis-slider-wrapper .swiper-slide:After{
		background: #ffffff00;
	}
	.about-main-wrapper {
		flex-direction: column;
	}
	.about-img {
		width: 100%;
	}
	.about-text{
		width: 100%;
		padding-left: 0;
	}
	.sport-block-main-wrapper .about-block-wrapper:before {
		left: 35%;
	}
	.latest-news-main-wrapper{
		flex-direction: column;
	}
	.latest-news-left-wrapper, .latest-news-wrapper {
		width: 100%;
	}
	.match-player-wrapper:after{
		display: none;
	}
	.sport-text ul li + li {
		padding-left: 20px;
	}
	.news-headlines a {
		font-size: 18px;
		line-height: 26px;
		padding-bottom: 15px;
	}
	.sport-img img {
		width: auto;
	}
	.player-tag{
		width: 170px;
    	height: 170px;
		left: 37%;
	}
	.player-img .tropy img {
		width: 30px;
	}
	.player-img .tropy{
		width: 70px;
		height: 70px;
		line-height: 70px;
	}

	.overlay1{
		top: 78%;
	}
	.recent-match{
		padding: 0;
	}
}

@media (max-width: 640px){
	.sport-squad-player-wrapper {
		width: 100%;
		flex-direction: column;
	}
	.sport-img, .sport-text {
		width: 100%;
	}
	.sport-img img {
		width: 100%;
	}
	.sporty-testimonial-wrapper{
		padding: 0;
	}
	.player-tag {
		width: 140px;
		height: 140px;
	}
	.player-title h3 a{
		font-size: 20px;
	}
	.footer-input-box{
		width: 100%;
	}
	.poster-img {
		display: none;
	}
	.poster-text {
		width: 80%;
		padding-left: 0;
	}
	.sporty-poster-main-wrappper{
		padding-bottom: 0;
	}
	.latest-news-wrapper{
		padding-left: 0;
	}
	.player-tag h2{
		font-size: 24px;
	}
	.player-tag span {
		font-size: 12px;
	}
	.sport-text ul li{
		font-size: 30px;
	}
	.sport-text h3 a{
		font-size: 24px;
	}
	.text-btn a {
		font-size: 18px;
	}
}

@media (max-width: 520px){
	.player-tag {
		width: 120px;
		height: 120px;
		margin-top: 26px;
	}
	.tropy-block-wrapper {
		width: 90%;
	}
	.featured-main-wrapper .featured-main-block {
		width: 100%;
	}

	.sporty-footer-wrapper .section_2 .abotus_content h2{
		font-size: 30px;
	}
	.poster-wrapper .poster-text h2{
		font-size: 35px;
	}
	.latest-blog-wrapper .blog-text h4 a{
		font-size: 22px;
	}
	.recent-match h2{
		font-size: 28px;
	}
	.next-match h2{
		font-size: 30px;
	}
	.match-review-strip-wrapper .date-review h3{
		font-size: 30px;
	}
	.match-review-strip-wrapper .date-review span{
		font-size: 14px;
	}
}

@media (max-width: 420px){
	.sport-block-main-wrapper .about-block-wrapper{
		width: 100%;
	}
	.sport-block-main-wrapper{
		flex-direction: column;
	}
	.sport-block-main-wrapper .about-block-wrapper:before {
		left: 44%;
	}
	.sport-text ul li{
		font-size: 30px;
	}
	.sport-text ul li span{
		font-size: 14px;
	}
	.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons ul{
		gap: 0;
	}
	.main-header-wrapper1 .sb-main-header1 .mobile-menu-wrapper .social-media-icons{
		padding-right: 8px;
	}
	.social-media-icons li .main_button_wrapper {
		width: 86px;
	}
	.sport-text ul li + li {
		padding-left: 10px;
	}
	.sport-text ul li + li {
		margin-left: 10px;
	}
	.match-review-strip-wrapper .date-review{
		width: 22%;
	}
	.match-review-strip-wrapper .match-icon {
		width: 75%;
	}
	.match-review-strip-wrapper .match-icon ul li img {
		width: 50px;
	}
	.match-review-strip-wrapper .match-icon ul .vs-text {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	.next-match{
		padding: 20px;
	}
	.recent-match .match-player-wrapper{
		flex-direction: column;
	}
	.player-img {
		width: 100%;
	}
	.player-tag {
		right: 0;
		top: 40%;
		left: inherit;
	}
	.main_button_wrapper a{
		font-size: 16px !important;
	}
	.play-vedio {
        display: inline-flex;
	}
}


@media (max-width: 360px){
	#sidebar #cssmenu {
		width: 260px;
	}
	#sidebar{
		width: 260px;
	}
}


