 /*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,                 
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.44;
	font-family: 'Oswald', sans-serif;
	background-color: #fff;
	color: #000;
	font-weight: 300;
	font-size: 1.8rem;
}
html[dir="rtl"] body{
	font-family: 'Tajawal', sans-serif;;
	font-weight: 500;

}
ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
	position: relative;
}

.loader3 span {
	top: 0;
	left: 0;
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #f33737;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	width: 3.0rem;
}
.hamburger-menu span {
	background: #FFA300;
	width: 100%;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(0.82rem) rotate(135deg);
	-ms-transform: translateY(0.82rem) rotate(135deg);
	transform: translateY(0.82rem) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-0.82rem) rotate(-135deg);
	-ms-transform: translateY(-0.82rem) rotate(-135deg);
	transform: translateY(-0.82rem) rotate(-135deg);
}
header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	padding: 1.7rem 0;
	background-color: #012169;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
.menu_area{
	padding: 2.3rem 0 2.7rem;
}
#menu {
	text-align: center;
	background-color: #FFA300;
	padding: 1.7rem;
	border-radius: 3rem;
	display: inline-block;
}

#menu li {
	display: inline-block;
	color: #fff;
}

#menu li a {
	font-size: 1.6rem;
	text-transform: uppercase;
	color: #000000;
	padding: 0 3.7rem;
}
#menu>li>a.active,
#menu>li>a:hover {
	color: #012169;
}
.hum_gap{
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.logo img{
	width: 7.5rem;
}
header .dropdown-toggle::before {
	position: absolute;
	content: '\f107';
	font-family: "Font Awesome 5 Pro";
	right: -2.2rem;
	top: 55%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 2.2rem;
	color: #FFA300;
}
.dropdown-toggle::after{
	display: none;
}
.button{
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 300;
	background-color: #FFA300;
	border-radius: 0.3rem;
	color: #000;
	line-height: 1.5;
	padding: 1.3rem 5rem;
	border: none;
	outline: none;
}
.button:hover{
	background-color: #000;
	color: #fff;
}
.rtl_btn{
	font-size: 1.5rem;
	color: #012169;
	background-color: #fff;
	border-radius: 1.3rem;
	padding: 0.3rem 1.4rem;
}
.header_lang{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 4.8rem;
	   -moz-column-gap: 4.8rem;
	        column-gap: 4.8rem;
}
/*hero_input*/
.home_area{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.left_side{
	width: 82rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.hero_input{
	width: 40.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.input_wapp{
	position: relative;
}
.input_wapp input{
	width: 100%;
	font-size: 2rem;
	line-height: 1.5;
	height: 5.7rem;
	color: #000;
	border-radius: 0.3rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.14);
	padding: 0 6.3rem;
}
.input_wapp input::-webkit-input-placeholder{
	color: #000;
}
.input_wapp input::-moz-placeholder{
	color: #000;
}
.input_wapp input:-ms-input-placeholder{
	color: #000;
}
.input_wapp input::-ms-input-placeholder{
	color: #000;
}
.input_wapp input::placeholder{
	color: #000;
}
.input_wapp img {
	position: absolute;
	left: 2.2rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 2.2rem;
}
.wapper_form .input_wapp:not(:last-child){
	margin-bottom: 4rem;
}
.wapper_form .button{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	background-color: #012169;
	font-size: 2rem;
	color: #FFA300;
}
.wapper_form .button:hover{
	background-color: #FFA300;
	color: #000;
}
.hero_input .hero_logo img{
	width: 18.1rem;
	padding: 5.7rem 0 4.7rem;
}
.hero_input ul{
	margin-top: 4.8rem;
}
.hero_input ul li a{
	font-size: 2rem;
	line-height: 1.5;
	color: #FFA300;
}
.hero_input ul li a:hover{
	color: #012169;
}
.hero_input ul li:not(:last-child){
	margin-bottom: 2.6rem;
}
.play_spt{
	position: relative;
	width: 100%;
}
.play_spt::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.37);
}
.hero_input h2{
	font-size: 2.5rem;
	line-height: 1.48;
	color: #FFA300;
	font-weight: 500;
	text-transform: uppercase;
	padding: 3.2rem 2.2rem;
}
.sign_form .input_wapp:not(:last-child){
	margin-bottom: 2rem;
}
.sign_form ul{
	margin: 2.5rem 0 7.5rem;
}
.play_spt img{
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
/*profile_area*/
.profile_area {
	padding-top: 7.4rem;
}
.profile_area h2{
	font-size: 4.9rem;
	color: #000;
	line-height: 1.46;
	font-weight: 500;
	margin-bottom: 3.8rem;
}
.profile_area ul li a img{
	width: 2.9rem;
}
.profile_area ul li a {
	font-size: 2.7rem;
	line-height: 1.48;
	color: #000;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
}
.profile_area ul li a:hover{
	color: #012169;
}
.profile_area ul li a p span{
	color: #FFA300;
}
.profile_area ul li:not(:last-child){
	margin-bottom: 3.2rem;
}
/*profile_modal*/
.profile_modal{
	max-width: 108.8rem;
}
.profile_modal input{
	width: 100%;
	border: 0.1rem solid #FFA300;
	border-radius: 0.3rem;
	padding: 1rem 1.5rem;
	height: 5rem;
	font-size: 1.8rem;
	line-height: 1.20;
	color: #000;
}
.profile_modal input::-webkit-input-placeholder{
	color: #000;
}
.profile_modal input::-moz-placeholder{
	color: #000;
}
.profile_modal input:-ms-input-placeholder{
	color: #000;
}
.profile_modal input::-ms-input-placeholder{
	color: #000;
}
.profile_modal input::placeholder{
	color: #000;
}
.profile_modal label{
	font-size: 1.8rem;
	line-height: 1.20;
	margin-bottom: 0.5rem;
}
.profile_modal .modal-body{
	padding: 3.2rem 14rem 5rem;
}
.profile_modal h2{
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
}
.profile_modal .modal-content{
	border-radius: 2rem;
}
.profile_radio input{
	display: none;
}
.profile_radio label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	cursor: pointer;
}
.radio_wapp{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: 15rem;
	margin: 0 auto;
}
.profile_radio label img{
	height: 7.1rem;
	margin-bottom: 1.3rem;
}
.profile_radio input:checked + label img {
   -webkit-filter: invert(56%) sepia(79%) saturate(793%) hue-rotate(0deg) brightness(103%) contrast(104%);
           filter: invert(56%) sepia(79%) saturate(793%) hue-rotate(0deg) brightness(103%) contrast(104%);
}
.profile_form .button{
	width: 100%;
	background-color: #012169;
	color: #FFA300;
	text-transform: uppercase;
	font-size: 1.8rem;
	padding: 1.2rem 1rem;
	margin-top: 8rem;
}
.profile_form .button:hover{
	color: #012169;
	background-color: #FFA300;
}
button.close {
	padding: 0;
	border: 0;
	position: absolute;
	left: 3rem;
	top: 3rem;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	color: #FFA300;
	background-color: #012169;
	font-size: 3rem;
	opacity: 1;
	z-index: 1;
	text-shadow: none;
}
/*footer*/
footer{
	padding: 2.5rem 0 3.8rem;
	background-color: #012169;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.5;
}
footer a{
	color: #fff;
}
footer a:hover{
	color: #FFA300;
}
footer h3{
	margin-bottom: 1rem;
}
.foot_wapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.2rem;
	   -moz-column-gap: 3.2rem;
	        column-gap: 3.2rem;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.foot_wapper p{
	text-transform: uppercase;
}
.foot_wapper img{
	width: 9.5rem;
}
.social_media li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.site_map li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.4rem;
	   -moz-column-gap: 2.4rem;
	        column-gap: 2.4rem;
	text-transform: uppercase;
}
.site_map {
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
	max-width: 37rem;
}
.site_map li a::before{
	content: '';
	width: 1.3rem;
	height: 1.3rem;
	background-color: #FFA300;
	border-radius: 50%;
	display: inline-block;
}
.site_map li:not(:last-child){
	margin-bottom: 0.5rem;
}
.social_media li a img{
	width: 2.3rem;
}
.social_media li:not(:last-child){
	margin-bottom: 1.3rem;
}
.carousel_area {
	max-width: 120rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 6.7rem;
}
.carousel_area img{
	border-radius: 2.1rem;
}
.slider1 .owl-dots,
.slider2 .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: absolute;
	left: 0;
	bottom: 1.8rem;
	width: 100%;
}
.slider1 .owl-dots .owl-dot,
.slider2 .owl-dots .owl-dot{
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0 1.5rem;
}
.slider1 .owl-dots .owl-dot.active,
.slider2 .owl-dots .owl-dot.active{
	background-color: #fff;
}
/*select_area*/
.select_area{
	max-width: 73rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5.7rem;
}
.select_area h2{
	font-size: 2rem;
	line-height: 1.44;
	font-weight: 500;
	color: #FFA300;
	margin-bottom: 1.8rem;
	text-transform: uppercase;
	text-align: center;
}
.select_area .select_btn,
.select2-container--default .select2-selection--single {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: left;
	border: 0.1rem solid #012169;
	border-radius: 0.5rem;
	height: 5rem;
	padding: 1.4rem 2rem;
	font-size: 1.8rem;
	line-height: 1.20;
	color: #000;
	text-transform: uppercase;
	background-color: transparent;
	position: relative;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
span.select2-selection.select2-selection--single {
   padding-left: 5rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
   color: inherit;
   line-height: 1.2;
   font-weight: 400;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
   height: 100%;
   top: 0;
}
.select_area .select_btn img{
	max-width: 2rem;
	max-height: 2rem;
	-o-object-fit: cover;
	   object-fit: cover;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.select_area .button{
	width: 100%;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.20;
	height: 5rem;
	background-color: #012169;
	color: #FFA300;
	text-transform: uppercase;
	margin-top: 0.5rem;
}
.select_btn::before {
	position: absolute;
	content: '\f107';
	font-family: "Font Awesome 5 Pro";
	right: 1.5rem;
	top: 29%;
	font-size: 1.8rem;
	color: #FFA300;
}
.select_area .button:hover{
	background-color: #FFA300;
	color: #012169;
}
/*sport_modal*/
.sport_modal{
	max-width: 72rem;
}
.sport_modal .modal-content {
    border-radius: 2rem;
}
.sport_modal .modal-body {
   padding: 3rem 11rem 7rem;
}
.sport_model{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 0.1rem solid rgba(112, 112, 112, 0.26);
	background-color: #FFFFFF;
	height: 10rem;
	border-radius: 0.7rem;
}
.sport_modal .row{
   margin-right: 0rem;
   margin-left: 0rem;
}
.sport_modal .row>div{
   padding-right: 1rem;
   padding-left: 1rem;
}
.sport_modal h3{
	font-size: 1.8rem;
	line-height: 1.20;
	text-align: center;
	margin-top: 0.5rem;
	color: #000;
}
.sport_modal h2{
	font-size: 1.8rem;
	line-height: 1.20;
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
}
/*foott_box*/
.s_football_area{
	padding-bottom: 6rem;
}
.foott_box{
	height: 100%;
	border: 0.1rem solid rgba(112, 112, 112, 0.52);
	background-color: #fff;
	position: relative;
	z-index: 1;
}
.promotion_box {
	background-color: #FFA300;
	padding: 0.6rem 2.4rem;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	opacity: 0.7;
}
.promotion_box p{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	color: #fff;
	font-size: 1.8rem;
}

.promotion_box_reverse {
	background-color: #FFFFFF/*#cfcfcf*/;
	padding: 0.6rem 2.4rem;
	position: absolute;
	right: 10px;
	bottom: 75px;
	z-index: 2;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 1px #959595;
}
.promotion_box_reverse p{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	font-size: 1.8rem;
}

.foott_cont{
	padding: 2.2rem 2.7rem 1.8rem 1.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.kuwat{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
.kuwat span{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 50%;
	background-color: #FFA300;
	color: #012169;
	font-weight: 600;
	font-size: 1.8rem;
}
.kuwat_items{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.kuwat_items img{
	width: 9rem;
}
.kuwat_items h2{
	font-size: 2rem;
	line-height: 1.44;
	margin: 0.4rem 0 0.8rem;
	font-weight: 300;
}
.kuwat_items h3{
	font-size: 1.7rem;
	line-height: 1.4;
	font-weight: 300;
}
.last_rate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.last_rate h4{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
}
.last_rate img{
	width: 5.4rem;
}
.foot_cust .kuwat span {
   background-color: #F5F5F5;
}
.s_football_area h5{
	font-size: 2.3rem;
	text-align: center;
	color: #FFA300;
	text-transform: uppercase;
}
.s_foot_img{
	overflow: hidden;
	display: block;
}
.foott_box:hover .s_foot_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.contact_page {
	margin-bottom: 7rem;
}
.contact_page h2{
	font-size: 2rem;
	line-height: 1.44;
	font-weight: 500;
	margin-bottom: 1.4rem;
}
.contact_page label{
	font-size: 2rem;
	line-height: 1.44;
	font-weight: 300;
	margin-bottom: 0.5rem;
}
.contact_page input,
.contact_page textarea{
	width: 100%;
	font-size: 2rem;
	line-height: 1.44;
	border-radius: 0.3rem;
	border: 0.1rem solid #FFA300;
	height: 4.5rem;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
}
.contact_page textarea{
	height: 14.3rem;
	resize: none;
}
.contact_page .button{
	width: 100%;
	background-color: #012169;
	color: #FFA300;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 2rem;
}
.contact_page .button:hover{
	color: #012169;
	background-color: #FFA300;
}
.contact_page img{
	width: 36.2rem;
}
.fail_area {
	max-width: 54.3rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5.5rem;
	margin-bottom: 9.7rem;
}
.fail_area h2{
	font-size: 2.3rem;
	line-height: 1.5;
	margin-bottom: 9.2rem;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 2.9rem;
	   -moz-column-gap: 2.9rem;
	        column-gap: 2.9rem;
}
.fail_area img{
	width: 2.4rem;
}
.fail_area .button{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 2.4rem;
	text-transform: uppercase;
	background-color: #FFA300;
	color: #012169;
	margin-bottom: 2rem;
}
.fail_area .color_can{
	color: #FFA300;
	background-color: #012169;
}
.fail_area .button:hover{
	background-color: #000;
	color: #fff;
}
/*left_succes*/
.success_area{
	margin-bottom: 10rem;
}
.left_succes h2{
	color: #FFA300;
	font-size: 2.4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 2.8rem;
	font-weight: 500;
	-webkit-column-gap: 2.4rem;
	   -moz-column-gap: 2.4rem;
	        column-gap: 2.4rem;
}
.left_succes h3{
	color: #FFA300;
	font-size: 2.4rem;
	margin-bottom: 3.1rem;
	font-weight: 400;
}
.left_succes h2 img{
	width: 2.4rem;
}
.wap_date{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-column-gap: 10rem;
	   -moz-column-gap: 10rem;
	        column-gap: 10rem;
	margin-bottom: 6.3rem;
}
.left_succes .wap_date h4{
	font-size: 2.4rem;
	font-weight: 400;
}
.left_succes p {
	font-size: 1.9rem;
	margin-bottom: 7rem;
	line-height: 1.7;
}
.left_succes p span{
	color: #FFA300;
}
.left_succes .button{
	background-color: #012169;
	color: #FFA300;
	font-size: 2.4rem;
	width: 100%;
	text-align: center;
	font-weight: 400;
}
.left_succes .button:hover{
	color: #012169;
	background-color: #FFA300;
}
.right_succes{
	padding: 5rem 7rem 5.5rem;
	border: 0.1rem solid rgba(112, 112, 112, 0.3);
	border-radius: 1.5rem;
}
.suc_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 1.3rem;
}
.right_succes h2{
	font-size: 2.4rem;
	margin-bottom: 1.1rem;
	font-weight: 300;
}
.suc_child{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.7rem;
	   -moz-column-gap: 0.7rem;
	        column-gap: 0.7rem;
}
.suc_child span{
	border: 0.1rem solid #FFA300;
	width: 2.6rem;
	height: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 0.4rem;
	font-size: 2rem;
	color: #000;
}
.suc_child h3{
	font-size: 2rem;
	line-height: 1.44;
	font-weight: 300;
}
.right_succes p{
	color: #FFA300;
	line-height: 1.44;
	font-size: 2.4rem;
	font-weight: 300;
}
.right_succes h4{
	color: #FFA300;
	line-height: 1.44;
	font-size: 2.4rem;
	font-weight: 400;
	margin: 3rem 0 1.4rem;
	text-transform: uppercase;
}
.right_succes h5{
	font-size: 2rem;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 2.8rem;
}
.right_succes h6{
	font-size: 2.47rem;
	line-height: 1.5;
	font-weight: 400;
	color: #000;
}
/*check_out*/
.check_out h2{
	font-size: 2.5rem;
	line-height: 1.5;
	font-weight: 500;
	color: #FFA300;
	margin-bottom: 2.1rem;
}
.check_out .shape_items:not(:last-child) {
   margin-bottom: 1.8rem;
}
.check_out input {
   display: none;
}
.check_out label {
	font-size: 2.1rem;
	font-weight: 300;
	line-height: 1.5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	text-transform: uppercase;
}
.check_out label p{
	color: #FFA300;
	margin: 0;
	font-size: 2.1rem;
}
.check_out h6 {
	font-size: 2.47rem;
	line-height: 1.5;
	font-weight: 400;
	color: #000;
}
.extre_h6 span {
	color: #FFA300;
	line-height: 1.44;
	font-size: 2.4rem;
	font-weight: 300;
}
.check_out label span {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	border: 0.1rem solid #012169;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.check_out label span::before {
	content: '';
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: #FFA300;
	opacity: 0;
	display: block;
}
.check_out input:checked + label span::before {
   opacity: 1;
}
.check_out p{
	font-size: 1.6rem;
	color: #FFA300;
	line-height: 1.30;
	margin-bottom: 2.5rem;
}
.check_out p a{
	color: #000;
	text-decoration: underline;
}
.check_out .button {
	background-color: #012169;
	color: #FFA300;
	font-size: 2.4rem;
	width: 100%;
	text-align: center;
	font-weight: 400;
}
.check_out .button:hover{
	color: #012169;
	background-color: #FFA300;
}
.check_out h6{
	margin-bottom: 2.5rem;
}
.chek_right>h3{
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 500;
	text-transform: uppercase;
	color: #FFA300;
	margin-bottom: 2.4rem;
}
/*jersy_top*/
.jersy_top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.jersy_cont{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.2rem;
	   -moz-column-gap: 2.2rem;
	        column-gap: 2.2rem;
}
.jersy_cont img{
	width: 19.1rem;
}
.jersy_cont h2{
	font-size: 3.6rem;
	line-height: 1.44;
	font-weight: 300;
	color: #FFA300;
}
.jersy_cont h3{
	font-size: 2.5rem;
	font-weight: 300;
}
.jersy_rate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.jersy_rate h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
}
.jersy_rate img {
   width: 5.4rem;
}
.jersy_area h5{
	color: #FFA300;
	font-size: 2.6rem;
	line-height: 1.44;
	font-weight: 500;
	text-transform: uppercase;
	margin: 3.2rem 0 2.7rem;
}
.jersy_kd{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 2.4rem;
	line-height: 1.33;
}
.jersy_kd span{
	color: #FFA300;
}
.jersy_area .button {
	background-color: #012169;
	color: #FFA300;
	font-size: 2.4rem;
	width: 100%;
	text-align: center;
	font-weight: 400;
}
.jersy_area .button:hover{
	color: #012169;
	background-color: #FFA300;
}
.map_area{
	margin-bottom: 10rem;
}
.map_area h2{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-column-gap: 1.1rem;
	   -moz-column-gap: 1.1rem;
	        column-gap: 1.1rem;
	font-size: 2.8rem;
	line-height: 1.33;
	font-weight: 400;
	margin-bottom: 3.1rem;
}
.map_area h2 img{
	width: 2.8rem;
}
.map_area iframe{
	width: 100%;
	height: 28.3rem;
}
.jersy_area input {
	border-radius: 0.3rem;
	border: none;
	border-right: none;
	border-left: none;
	font-size: 2.4rem;
	width: 80%!important;
}
.jurs_input{
	border: 0.1rem solid rgba(112, 112, 112, 0.32);
	padding: 2.3rem 2.7rem;
}
.jersy_area .nice-number button {
	width: 3.8rem;
	height: 4.3rem;
	background-color: #012169;
	color: #FFA300;
	border-radius: 0.3rem;
	font-size: 2.1rem;
	border: none;
	line-height: 1;
}
.jersy_area .nice-number {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
}
/*subsicription_area*/
.subsicription_area{
	background-color: #F5F5F5;
}
.subsic_box{
	background-color: #fff;
	padding: 3rem 3.5rem 1.5rem 1.5rem;
}
.subsi_wap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.subsi_wap h2{
	font-size: 1.8rem;
	color: #FFA300;
	font-weight: 300;
}
.subsi_wap h3{
	font-size: 1.5rem;
	font-weight: 300;
}
.subsi_wap img{
	width: 7rem;
}
.subsi_bott{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 3rem;
}
.item_sub{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.item_sub h4{
	color: #000;
	font-size: 1.5rem;
	margin-top: 0.5rem;
}
.subsicription_area{
	padding-bottom: 10rem;
}
.subsicription_area .nav-tabs {
   border-bottom: none;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   border-radius: 2.1rem;
   margin-bottom: 3rem;
   margin-top: 2.5rem;
}
.subsicription_area .nav-item button{
	background-color: #fff;
	color: #000;
	font-size: 1.8rem;
	padding: 1.4rem 4.5rem;
}
.subsicription_area .nav-item:first-child button{
	border-radius: 2.1rem 0 0 2.1rem;
}
.subsicription_area .nav-item:last-child button{
	border-radius: 0 2.1rem 2.1rem 0;
}
.subsicription_area .nav-tabs .nav-item.show .nav-link,
 .nav-tabs .nav-link.active {
   color: #FFA300;
   background-color: #012169;
}
.color_body{
	background-color: #F5F5F5;
}
.cup_area h5 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	font-size: 2.4rem;
	line-height: 1.44;
	font-weight: 400;
	text-transform: capitalize;
	margin: 0 0 1.4rem;
}
.cup_area h5 img{
	width: 2.3rem;
}
.radi_wap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border-radius: 0.3rem;
	border: 0.1rem solid rgba(112, 112, 112, 0.3);
	padding: 2.5rem 1rem;
}
.cup_area .radi_wap:not(:last-child){
	margin-bottom: 4rem;
}
.red_items input {
    display: none;
}
.red_items label {
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
}
.red_items label span {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 0.1rem solid #012169;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.red_items label span::before {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background-color: #FFA300;
    opacity: 0;
    display: block;
}
.red_items input:checked + label span::before {
   opacity: 1;
}
.cup_area .nice-number{
	width: auto;
}
.cup_area input{
   width: 7rem!important;
}
.cup_area .nice-select {
	background-color: transparent;
	border: 0.1rem solid #707070;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 2.2rem;
	line-height: 1.30;
	font-weight: 300;
	color: #000;
	height: 58px;
	padding: 2rem 2rem;
}
.cup_area .nice-select:after {
   border-bottom: 0.2rem solid #000;
   border-right: 0.2rem solid #000;
   right: 3.2rem;
}
.cup_area .nice-select .list {
   background-color: #ddd;
}
html[dir="rtl"] .subsicription_area .nav-item:first-child button {
   border-radius: 0 2.1rem 2.1rem 0;
}
html[dir="rtl"] .subsicription_area .nav-item:last-child button {
   border-radius: 2.1rem 0 0 2.1rem;
}
html[dir="rtl"] header .dropdown-toggle::before {
   right: 4.8rem;

}
html[dir="rtl"] .select_btn::before {
   left: 1.5rem;
}
html[dir="rtl"] .input_wapp img {
	left: auto;
	right: 2.2rem;
}
.bor_style{
	border: 0.1rem solid rgba(0, 0, 0, 0.14);
	border-radius: 0.3rem;
}
.bor_style input{
	border: none;
}
.bor_style .iti--separate-dial-code .iti__selected-flag {
   background-color: transparent;
}
.shad {
	position: absolute;
	left: -15%;
	top: 27%;
	width: 63.3rem;
}
html[dir="rtl"] .shad {
	right: -15%;
	top: 27%;
}
.slider1 iframe,
.slider2 iframe{
	width: 100%;
	height: 35rem;
	border: none;
	border-radius: 2.1rem;
}
.slider1 img,
.slider2 img{
	height: 35rem;
	-o-object-fit: fill;
	   object-fit: fill;
}
.star_box{
	position: relative;
}
.star_box img{
	width: 5.4rem;
}
.star_box span{
	font-size: 1.6rem;
	line-height: 1.30;
	color: #000;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
main {
   min-height: 70.2vh;
}
html[dir="rtl"] .iti--allow-dropdown .iti__flag-container, 
html[dir="rtl"] .iti--separate-dial-code .iti__flag-container {
   right: 0;
   left: auto;
}
.iti {
   width: calc(100% - 6rem);
   margin-left: 6rem;
}
html[dir="rtl"] .iti {
   margin-right: 6rem;
} 
html[dir="rtl"] .iti--allow-dropdown input, 
html[dir="rtl"] .iti--allow-dropdown input[type=text], 
html[dir="rtl"] .iti--allow-dropdown input[type=tel], 
html[dir="rtl"] .iti--separate-dial-code input, 
html[dir="rtl"] .iti--separate-dial-code input[type=text], 
html[dir="rtl"] .iti--separate-dial-code input[type=tel] {
   padding-right: 82px;
}
.sport_model img{
	width: 4.5rem;
}
.extra_scr {
    overflow: auto;
    max-height: 48rem;
}
.selet_wapper .select_btn {
   padding: 2.4rem 6rem;
}
.selet_wapper{
	position: relative;
}
html[dir="rtl"] .selet_wapper>img{
	left: auto;
	right: 2rem;
}
.selet_wapper>img{
	position: absolute;
	z-index: 1;
	max-width: 2rem;
   max-height: 2rem;
   -o-object-fit: cover;
      object-fit: cover;
   -ms-flex-negative: 0;
       flex-shrink: 0;
   left: 2rem;
   top: 50%;
   -webkit-transform: translateY(-50%);
       -ms-transform: translateY(-50%);
           transform: translateY(-50%);
}
.selet_wapper .select_btn::before{
	display: none;
}
html[dir="rtl"] .selet_wapper .nice-select:after {
	left: 1.9rem;
	right: auto;
}
html[dir="rtl"] .selet_wapper .nice-select .option{
	text-align: right;
}
.selet_wapper .nice-select:after {
	border-bottom: 0.3rem solid #FFA900;
	border-right: 0.3rem solid #FFA900;
	height: 0.8rem;
	right: 1.9rem;
	width: 0.8rem;
}
.selet_wapper .nice-select .list {
   background-color: #ddd;
}
.selet_wapper .nice-select .option {
   padding-left: 4.5rem;
   padding-top: 0.7rem;
   padding-bottom: 0.7rem;
}
.play_video{
	background-color: #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 35rem;
	width: 100%;
	border-radius: 2.1rem;
}
.play_video a i{
	font-size: 5rem;
	color: red;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #F2DA55;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -o-linear-gradient(top, white, black);
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: linear-gradient(to bottom, white, black);
}

html[dir="rtl"] span.select2-selection.select2-selection--single {
    padding-left: 2rem;
    padding-right: 5rem;
}