:root {
	--color-theme-shade-1: #f25e0d;
	--color-theme: #f58026;
	--color-theme-tint-1: #fff0e4;
	--color-dark: #061e33;
	--color-navyblue: #072e51;
	--color-red: #f20d0d;
	--color-yellow: #f2af0d;
	--color-green: #0b8600;
	--color-green-tint-1: #1dcf00;
	--color-gray: #a7a7a7;
	--color-gray-tint-1: #e4e4e4;
	--color-gray-tint-2: #f2f2f2;
	--text-color: #4f4f4f;
	--white-tint-1: #fcfcfc;
	--white: #ffffff;
	--black: #000000;
	--primary-font: "Inter", sans-serif;
	--secondary-font: "Bebas Neue", sans-serif;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Bold.woff2") format("woff2"),
	url("../fonts/Inter-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2"),
	url("../fonts/Inter-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Medium.woff2") format("woff2"),
	url("../fonts/Inter-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Bebas Neue";
	src: url("../fonts/BebasNeue-Regular.woff2") format("woff2"),
	url("../fonts/BebasNeue-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html {
	font-size: 10px;
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: var(--text-color);
	font-weight: 400;
	background-color: var(--white);
	font-family: var(--primary-font);
	font-size: 16px;
}

::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background: var(--color-gray);
}

::-webkit-scrollbar-thumb {
	background: var(--color-dark);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--black);
}

.container {
	padding: 0px 15px;
}

.h1,
h1 {
	font-size: 6.4rem;
}

.h2,
h2 {
	font-size: 5rem;
}

.h3,
h3 {
	font-size: 3.8rem;
}

.h3.small,
h3.small {
	font-size: 3.6rem;
}

.h4,
h4 {
	font-size: 3.2rem;
}

.h5,
h5 {
	font-size: 2.8rem;
}

.h6,
h6 {
	font-size: 2.4rem;
}

.h6.small,
h6.small {
	font-size: 22px;
}

.p,
p {
	font-size: 18px;
}

.p.md,
p.md {
	font-size: 16px;
}

.p.small,
p.small {
	font-size: 14px;
}

.text-sm {
	font-size: 12px;
}

.text-md {
	font-size: 20px;
}

header {
	width: 100%;
	background-color: var(--white);
	z-index: 99;
	display: flex;
	align-items: center;
	box-shadow: unset;
	transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	padding-top: 5.6rem;
}

header .logo-wrapper {
	width: 12.8rem;
	cursor: pointer;
	position: relative;
	z-index: 3;
}

header .logo {
	text-decoration: none;
	display: block;
	width: 100%;
}

header .logo-img {
	object-fit: contain;
	max-width: 100%;
	display: block;
	-webkit-user-drag: none;
}

.header-center .nav-link {
	font-size: 22px;
	color: var(--black);
	transition: 0.3s all;
	cursor: pointer;
	line-height: 1.2;
	font-weight: 400;
}

.header-center .nav-link:hover {
	color: #f20d0d;
}

.header-links-wrap li:not(:last-child) a {
	margin-right: 3.5rem;
}

.header-center .nav-item .nav-link {
	margin-right: 4rem;
}

.header-center .nav-item:last-child .nav-link {
	margin-right: 0;
}

.header-center .nav-items {
	list-style-type: none;
}

body.show {
	overflow: hidden;
}

body.show::after {
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 61%);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	opacity: 1;
	transition: 0.5s all;
	z-index: 11;
}

.navbar-toggler {
	width: 35px;
	height: 35px;
	line-height: 35px;
	padding: 0;
	border-radius: 5px;
	text-align: center;
	z-index: 99;
	display: block;
	margin-left: 20px;
	border: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	cursor: pointer;
	background: 0 0;
}

.navbar-toggler span {
	position: relative;
	width: 25px;
	height: 2px;
	background-color: var(--color-theme);
	display: inline-block;
	vertical-align: middle;
}

.navbar-toggler span::after,
.navbar-toggler span::before {
	position: absolute;
	content: "";
	width: 17px;
	height: 2px;
	background-color: var(--color-theme);
	right: 0;
	transition: all 0.5s;
	-webkit-animation: 0.3s linear forwards openCloseByeSpan;
	animation: 0.3s linear forwards openCloseByeSpan;
}

.navbar-toggler span::before {
	top: -7px;
}

.navbar-toggler span::after {
	top: 7px;
}

body.show .navbar-toggler span {
	height: 0;
}

body.show .navbar-toggler span::after,
body.show .navbar-toggler span::before {
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
	top: -1px;
}

body.show .navbar-toggler span::after {
	transform: rotate(-45deg);
}

.hero {
	padding-top: 105px;
	position: relative;
	z-index: 10;
}

/* 07-07-2023 START */

/* HEADER START */
.log-in-wrapper {
	position: absolute;
	top: -10px;
	right: 0;
}

.user-in {
	font-size: 20px;
	text-decoration: none;
	line-height: 1.2;
	transition: 0.3s all;
}

.sign-in {
	color: #000000;
}

.sign-in:hover {
	color: #f20d0d;
}

.sign-up {
	padding: 6px 22px;
	border: 2px solid #00b2ff;
	background-color: #00b2ff;
	border-radius: 5px;
	color: white;
	margin-left: 8px;
}

.sign-up:hover {
	background-color: transparent;
	color: #000000;
}
/* HEADER END */

/* FEATURES START */
.app-features {
	padding-top: 17.5rem;
	padding-bottom: 11.5rem;
}

.section-title {
	font-size: 4rem;
	font-weight: 500;
	color: var(--black);
	padding-bottom: 6px;
	border-bottom: 4px solid #ff463c;
	display: inline-block;
	margin: 0 auto;
}

.app-features .section-title {
	margin-bottom: 4.5rem;
}

.custom-card {
	background-color: var(--white);
	border-radius: 2.5rem;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}

.feature-card {
	padding: 5rem 20px;
	text-align: center;
	font-size: 20px;
	line-height: 1.3;
	color: var(--black);
	height: 100%;
}

.app-info-wrapper {
	padding-top: 11rem;
}

.app-card-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 4.6rem;
	margin: 0 auto;
}

.app-card {
	padding: 18px 25px;
	text-align: center;
}

.app-icon-wrap {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	margin-bottom: 4px;
}

.app-icon-wrap img {
	width: inherit;
	height: inherit;
	object-fit: contain;
}

.app-count {
	font-size: 4rem;
	font-weight: 700;
	color: #fd2740;
	display: block;
	line-height: 1;
	margin-bottom: 8px;
}

.app-title {
	font-size: 25px;
	color: var(--black);
	line-height: 1;
}
/* FEATURES END */

/* POLITICAL START */
.political-design {
	padding-bottom: 4rem;
}

.political-design .section-title {
	margin-bottom: 28px;
}

.political-wrapper {
	max-width: 46%;
	margin: 0 auto;
}

.political-container {
	position: relative;
	padding-bottom: 82.5%;
}

.political-container img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
}
/* POLITICAL END */

/* OVERVIEW START */
.quick-overview {
	padding: 3.5rem 0;
	background-color: #f6f1f1;
	text-align: center;
}

.quick-overview .section-title {
	margin-bottom: 15px;
	border-bottom: none;
	padding-bottom: 0;
}

.play-btn {
	margin-bottom: 10px;
/*  width: 15rem;*/
height: 15rem;
}

.play-btn img {
	width: inherit;
	height: inherit;
	object-fit: contain;
}
.overview-tagline {
	font-size: 4rem;
	color: #000000;
	display: block;
	font-weight: 500;
	line-height: 1;
	margin-top: 15px;
}
/* OVERVIEW END */

/* MEMBERSHIP START */
.membership-plan {
	padding: 10rem 0;
}

.membership-plan .section-title {
	margin-bottom: 3.8rem;
}

.membership-card-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5.2rem;
}

.membership-card {
	padding: 12px 16px 28px;
	display: flex;
	flex-direction: column;
}

.membership-plan-wrap {
	background-color: #fe2a40;
	padding: 28px 14px;
	display: flex;
	align-items: center;
	border-radius: 20px 20px 0px 0px;
/*	margin-bottom: 3.2rem;*/
}

.crown-wrap {
	width: 108px;
	height: 90px;
	margin-right: 10px;
}

.crown-wrap img {
	width: inherit;
	height: inherit;
	object-fit: contain;
	/* box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25); */
}

.plan-name {
	font-size: 3.5rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1;
	margin-bottom: 5px;
	display: block;
}

.plan-price {
	font-size: 5rem;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
}

.plan-include-wrap {
	padding: 0 20px;
	margin-bottom: 3.6rem;
}

.plan-include-wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.plan-include-wrap li:first-child {
	padding-top: 0;
}

.plan-include-wrap li {
	font-size: 18px;
	color: var(--black);
	border-bottom: 2px solid #d9d9d9;
	padding: 12px 15px;
	line-height: 1;
}

.membership-contains-wrap {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.buy-now-btn-wrap {
	margin-top: auto;
}

.buy-now-btn {
	font-size: 25px;
	color: var(--white);
	padding: 5px 4.5rem;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	border-radius: 3rem;
	background: linear-gradient(180deg, #fd2740 0%, #ff6737 100%);
	border: none;
}

.buy-now-btn:hover{
	color: var(--white);
	background: linear-gradient(180deg, #fd2740 0%, #ff6737 100%);
}
/* MEMBERSHIP END */

/* ABOUT US START */
.about-us {
	padding: 20px 0 5.5rem 0;
	background-color: #212a3e;
}

.about-us .section-title {
	margin-bottom: 18px;
	color: var(--white);
}

.about-us-container {
	display: flex;
	gap: 6.5rem;
	max-width: 92%;
	margin: 0 auto;
}

.about-us-left {
	width: var(--about-left-width);
}

.about-us-right {
	width: calc(100% - var(--about-left-width));
}

.about-title {
	font-size: 25px;
	font-weight: 500;
	color: var(--white);
	line-height: 1;
	margin-bottom: 10px;
	display: block;
}

.about-des {
	font-size: 20px;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 0;
}

.contact-icon {
	margin-right: 6px;
}

.contact-detail {
	display: inline-flex;
	align-items: center;
	font-size: 20px;
	color: var(--white);
	text-decoration: none;
	transition: 0.3s all;
}

.contact-detail:hover,
.playstore-link:hover {
	color: #f20d0d;
}

.playstore-link {
	display: inline-flex;
	align-items: center;
	margin: 4rem 0;
	color: var(--white);
	font-size: 25px;
	font-weight: 500;
	text-decoration: none;
	transition: 0.3s all;
}
/* ABOUT US END */

/* FOOTER START */
footer {
	background-color: #f2f2f2;
	font-size: 25px;
	color: var(--black);
	line-height: 1;
	padding: 3.5rem 0;
}
/* FOOTER END */
/* hero-section start */
.hero-section {
	min-height: 815px;
}
.hero-content-wrap {
	padding-left: 50px;
	margin-left: auto;
}
.hero-content-wrap h1 {
	font-family: var(--secondary-font);
	color: #fff;
	text-shadow: 2px 10px 10px rgba(0, 0, 0, 0.25);
	font-size: 10rem;
	font-style: normal;
	font-weight: 400;
	line-height: 90.5%;
	text-transform: uppercase;
	max-width: 800px;
	margin: 0 auto;
}
.min-h-inherit {
	min-height: inherit;
}
.hero-mobile-img {
	position: relative;
	top: 100px;
}
.hero-content-img-wrap {
	position: relative;
	top: -50px;
}
/* hero-section end */
/* 07-07-2023 END */
