@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300;400;500;600;700;800;900&display=swap");
*,
::after,
::before {
	margin: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*:focus {
	transition: all ease 0.5s;
	outline: none;
}
a:hover,
button:hover {
	transition: 0.5s all ease-in-out;
	-webkit-transition: 0.5s all ease-in-out;
	-moz-transition: 0.5s all ease-in-out;
	-ms-transition: 0.5s all ease-in-out;
}
html {
	width: 100%;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Darker Grotesque", sans-serif;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	color: #fff;
}
ul {
	padding: 0;
	margin: 0;
}
p {
	margin: 0;
	line-height: 32px;
	font-size: 18px;
	color: #fff;
}
a,
img {
	border: 0px;
}
img {
	max-width: 100%;
}
a,
ul,
li {
	text-decoration: none;
}
a {
	outline: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	display: inline-block;
}
a,
button {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
a:focus {
	outline: 0;
	text-decoration: none;
}
h1 {
	padding: 0;
	font-size: 60px;
	font-weight: 500;
	line-height: 80px;
	margin: 0;
}
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 600;
}
h2 {
	font-size: 70px;
	line-height: 80px;
	font-weight: 500;
}
h4 {
	font-size: 28px;
}
label {
	font-size: 22px;
	color: #000;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
	text-transform: uppercase;
}
.form-control {
	height: 60px;
	display: block;
	width: 100%;
	border: 2px solid #000000;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	padding: 12px;
	transition: 0.5s ease-in-out;
}
.form-control:focus,
.form-control:hover {
	border-color: #008314;
	box-shadow: 0 0 5px -1px #00831433;
}
.secondary-btn {
	background: #ef7843;
	padding: 18px 20px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	height: 55px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.secondary-btn:hover {
	background: rgb(228, 107, 55);
}
/*header start*/
.navigation {
	background: #000;
	display: inline-block;
	width: 100%;
	border: 1px solid #1d1d1d;
}
.brand {
}
.content-wrapper {
	background-image: url("../images/bg.png");
	min-height: calc(100vh - 224px);
}
.ch-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}
.topHeader {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav {
	display: flex;
	align-items: center;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li {
	float: left;
	position: relative;
	padding: 0 30px;
}
nav ul li a,
nav ul li a:visited {
	display: block;
	color: #ffffff;
	text-decoration: none;
}
nav ul li a {
	border-bottom: 2px solid transparent;
	transition: 0.5s ease-in-out;
	line-height: 80px;
	padding: 15px 0;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
nav ul li a:hover,
nav ul li a:visited:hover {
	color: #ffffff;
	border-color: #008315;
}
nav ul li ul li {
	padding: 0 30px;
}
nav ul li ul li a {
	padding: 15px;
	line-height: 20px;
}
.nav-dropdown {
	position: absolute;
	display: none;
	background-color: #fff;
	z-index: 2;
	min-width: 206px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	padding-top: 20px;
}
.nav-dropdown li {
	padding: 0 20px 0 20px;
	display: block;
	width: 100%;
}
.nav-dropdown li a {
	padding: 0 0 15px 0;
	font-size: 16px;
	color: #000 !important;
	border-bottom: 0 !important;
}
.nav-dropdown li a:hover {
	color: #008315 !important;
}
.rightUl {
	border-left: 1px solid #1d1d1d;
}
/* Mobile navigation */
.nav-mobile {
	display: none;
	position: absolute;
	top: 2px;
	right: 0;
	height: 70px;
	width: 70px;
}
.leftUl {
	padding-right: 20px;
}
.rightUl {
	padding-left: 20px;
}
.rightUl li a img {
	padding-right: 10px;
	width: 22px;
}
#nav-toggle {
	position: absolute;
	left: 18px;
	top: 22px;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 2px;
	width: 26px;
	background: #ffffff;
	position: absolute;
	display: block;
	content: "";
	transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
	top: -10px;
}
#nav-toggle span:after {
	bottom: -10px;
}
#nav-toggle.active span {
	background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
	top: 0;
}
#nav-toggle.active span:before {
	transform: rotate(45deg);
}
#nav-toggle.active span:after {
	transform: rotate(-45deg);
}
.main-menu li.current-menu-item a{
	border-color: #008315;
}
/*header end*/
.main-wrapper {
	background: rgb(0 0 0);
	/* min-height: 100vh;
     */
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/*footer*/
.footer-section {
	display: flex;
	justify-content: space-between;
}
.footer-right {
	display: flex;
}
.footer-column {
	padding: 0 30px;
}
.footer-column:last-child {
	padding-right: 0;
}
.footer-column li {
	list-style: none;
}
.footer-column h4 {
	color: #fff;
	margin-bottom: 5px;
}
.footer-column ul {
	display: flex;
	flex-direction: column;
}
.footer-column ul li a {
	font-size: 22px;
	color: #fff;
	line-height: 30px;
	padding-right: 20px;
}
.footer-column ul li a:hover {
	color: #008315;
}
.allrights p {
	font-size: 18px;
	color: rgb(255 255 255 / 40%);
	margin-top: 10px;
}
footer {
	padding: 60px 0 40px 0;
	border-top: 1px solid #1d1d1d;
	background-color: #000;
}
/*footer End*/
/*loginSection*/
.loginSection {
	padding: 100px 0 80px 0;
}
.whiteBox {
	max-width: 780px;
	display: block;
	margin: 0 auto;
	background: #fff;
	padding: 20px 100px 40px 100px;
	position: relative;
}
.boxTitle {
	text-align: center;
	margin-bottom: 20px;
}
.boxTitle h1 {
	color: #000;
}
.form-group {
	margin-bottom: 28px;
	position: relative;
}
.form-group label .required {
	color: #ef7843;
	vertical-align: middle;
}
/*logincheckbox*/
.checkboxLogin {
	display: block;
}
.checkboxLogin input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.checkboxLogin label {
	position: relative;
	cursor: pointer;
	font-weight: 500;
	margin: 0;
	font-size: 20px;
	line-height: normal;
}
.checkboxLogin label:before {
	content: "";
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #000;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 8px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
.checkboxLogin input:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	top: 10px;
	left: 8px;
	width: 6px;
	height: 11px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.btnsection {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #e6e6e6;
	margin-top: 20px;
	display: flex;
	width: 100%;
	justify-content: center;
}
.theme-btn {
	background: transparent;
	border: 3px solid #008315;
	padding: 18px 24px;
	font-size: 20px;
	min-width: 300px;
	transition: 0.5s ease-in-out;
	text-transform: uppercase;
	font-weight: 500;
	align-items: center;
	justify-content: center;
}
.theme-btn svg {
	margin-left: 30px;
}
.theme-btn:hover {
	background: #008315;
	color: #fff;
}
.forgotlink a {
	color: #ef7843;
	text-decoration: revert;
	font-size: 28px;
	text-align: center;
	display: block;
	line-height: 38px;
	margin-top: 15px;
}
/*logincheckbox*/
.whiteBox {
	position: relative;
	z-index: 1;
}
.whiteBox:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 33px;
	left: 0;
	bottom: -33px;
	background-image: url(../images/boxbg.svg);
	background-repeat: no-repeat;
	background-position: bottom;
	z-index: -1;
}
/*loginSection*/
/*home*/
.theme-btn.yellow {
	color: #fff;
	border-color: #fdc704;
	min-width: auto;
	align-items: center;
}
.theme-btn.yellow:hover {
	background-color: #fdc704;
}
.theme-btn.yellow img {
	margin-left: 24px;
}
.sliderLeft h1 {
	font-size: 70px;
	margin-bottom: 20px;
}
.sliderLeft p {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 40px;
	line-height: 34px;
}
.sliderLeft {
	max-width: 695px;
	padding-bottom: 100px;
}
.w-100 {
	max-width: 100%;
}
.whiteBox.w-100 {
	margin-bottom: 40px;
}
.whiteBox.w-100:after {
	content: "";
	width: 100%;
	height: 40px;
	left: -9px;
	bottom: -40px;
	background-size: cover;
}
.pageTitle {
	text-align: center;
	margin-bottom: 60px;
}
.accordianSection {
	padding-top: 60px;
}
.set {
	position: relative;
	width: 100%;
	height: auto;
}
.set > a {
	display: flex;
	padding: 20px 0;
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	border-bottom: 1px solid #1d1d1d;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	font-size: 24px;
}
.set > a .icons {
	margin-top: 2px;
	position: absolute;
	right: 0;
	font-size: 64px;
	font-weight: 200;
	line-height: 27px;
	top: 14px;
	display: flex;
	height: 20px;
	align-items: center;
	justify-content: center;
	color: rgb(255 255 255 / 48%) !important;
}
.set > a.active {
	border-color: transparent;
}
.content {
	display: none;
	padding-left: 40px;
}
.set > a .count {
	width: 30px;
	margin-right: 10px;
}
.set > a .spanText {
	width: calc(100% - 40px);
}
.set > a.active .count {
	color: #fdc704;
}
.content p {
	font-size: 24px;
}
.set:last-child a {
	border-bottom: 0;
}
.ch-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.col50 {
	flex: 0 0 50%;
	max-width: 50%;
	padding-right: 15px;
	padding-left: 15px;
}
.formDetails {
	text-align: center;
}
.formDetails p {
	font-size: 24px;
	font-weight: 500;
	color: #000;
}
.pList {
	color: #000;
	font-size: 18px;
	padding-bottom: 20px;
}
.pList span {
	padding-right: 26px;
}
.getStarted {
	margin-top: 100px;
	background: #008314;
	padding: 40px 80px 60px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.getStarted h3 {
	font-size: 60px;
	line-height: 60px;
	/* margin-right: 35px;
     */
	width: calc(100% - 366px);
}
.theme-btn.white-btn {
	border-color: #fff;
	color: #fff;
	min-width: 267px;
}
.theme-btn.white-btn:hover {
	background: #fff;
	color: #008315;
}
.whiteBox p {
	color: #000;
}
.slider-top {
	position: relative;
}
.sliderRight {
	position: absolute;
	right: 0;
	bottom: -86px;
	width: 500px;
}
.sliderRight img {
	height: 100%;
	width: 100%;
}
.lists {
	display: flex;
	margin-bottom: 40px;
}
.lists ul {
	margin-right: 20px;
}
.lists li {
	list-style: none;
	font-size: 26px;
	font-weight: 500;
}
.squares input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}
.nfc-table table {
	width: 100%;
}
.nfc-table table {
	color: #000;
}
.squares {
	position: relative;
}
.squares > span {
	width: 98px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: 0.5 ease-in-out;
	padding: 6px 15px;
}
.nfc-quater-table {
	overflow-y: visible !important;
}
.nfc-quater-table .squares > span {
	width: 75px;
	height: 75px;
}
.nfc-quater-table .headerBox span,
.nfc-quater-table .leftCell span {
	line-height: 45px;
}
.nfc-quater-table span.NumberSpan {
	width: 20px;
	height: 20px;
	font-size: 13px;
	line-height: 19px;
}
.squares input[type="checkbox"]:checked + .mainSpan {
	background-color: #d2ffdb;
	border: 1px solid #bcd8c0;
	box-shadow: 0px 2px 0px #d2ffdb40;
}
.squares input[type="checkbox"]:checked + .yellowCell {
	background-color: #fff9d2;
	border: 1px solid #e8da7e;
	box-shadow: 0px 2px 0px #fff9d282;
}
.squares input[type="checkbox"]:checked + .yellowCell .NumberSpan {
	background-color: #fed947;
}
.squares input[type="checkbox"]:checked + .greenCell {
	background-color: #d2ffdb;
	border: 1px solid #bcd8c0;
	box-shadow: 0px 2px 0px #d2ffdb40;
}
.squares input[type="checkbox"]:checked + .greenCell .NumberSpan,
.squares input[type="checkbox"]:checked + .mainSpan .NumberSpan {
	background-color: #38cc55;
}
.nfc-table {
	display: block;
	overflow-y: auto;
}
.bg-transparent {
	background-color: #fff !important;
}
.tabletopTitle.leftTranformTex h2 {
	color: #2d2d2d;
	font-size: 42px;
}
span.mainSpan {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #ebebeb 0% 0% no-repeat padding-box;
	box-shadow: 0px 2px 0px #0000001f;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
	color: #000;
	position: relative;
}
.headerBox span {
	background-color: #ef7843;
	letter-spacing: -0.84px;
	color: #ffffff;
	text-shadow: 0px 3px 0px #00000029;
	font-size: 70px;
	display: block;
	line-height: 75px;
}
span.nameSpan {
	font-size: 14px;
	color: rgb(0 0 0 / 40%);
	font-weight: 600;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
	position: absolute;
	top: 5px;
	width: 90%;
	left: 50%;
	transform: translateX(-50%);
}
span.NumberSpan {
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
	color: #000;
	font-size: 17px;
	display: inline-block;
	text-align: center;
	line-height: 30px;
	margin: 3px 0;
	font-weight: 600;
}
span.paidSpan {
	font-size: 14px;
	color: #000;
	font-weight: 600;
	text-align: center;
	position: absolute;
	bottom: 5px;
	width: 100%;
	left: 0;
}
.leftCell span {
	background-color: #2d2d2d;
	letter-spacing: -0.84px;
	color: #ffffff;
	text-shadow: 0px 3px 0px #00000029;
	font-size: 70px;
	display: block;
	line-height: 75px;
	border-radius: 10px;
}
.tabletopTitle h2 {
	color: #ef7843;
	font-size: 50px;
	font-weight: 600;
	line-height: 55px;
	margin-bottom: 18px;
}
.leftTranformTex {
	position: absolute;
	left: 0;
	top: 60%;
	transform: translateY(-60%);
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
}
.TbleBtns {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.TbleBtns .theme-btn {
	width: auto;
	min-width: auto;
	margin-right: 40px;
}
.red-btn {
	border-color: #fe2828;
}
.red-btn:hover {
	background-color: #fe2828;
}
.colorItems .colors {
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	margin-right: 10px;
}
.colorItems {
	color: #000;
	margin-right: 50px;
	font-weight: 600;
	display: flex;
	align-items: center;
}
.coloIndicators {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #d1d1d1;
}
.taken .colors {
	background-color: #fed947;
}
.Available .colors {
	background-color: #ebebeb;
}
.selected .colors {
	background-color: #38cc55;
}
/*home*/
/*how to play*/
.pb-50 {
	padding-bottom: 50px;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.breadcum {
	display: flex;
	width: 100%;
	padding-top: 22px;
	padding-bottom: 20px;
}
.breadcum li {
	list-style: none;
	color: rgb(255 255 255 / 50%);
	font-size: 18px;
	display: inline-block;
	padding-right: 8px;
	font-weight: 600;
	text-transform: uppercase;
}
.breadcum li a {
	color: rgb(255 255 255 / 50%);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}
.breadcum li a:hover {
	color: #008314;
}
.stepImg {
	width: 385px;
	height: 282px;
	flex: 0 0 auto;
	margin-right: 20px;
}
.stepsItem {
	display: flex;
	margin-bottom: 30px;
}
.stepsItem:last-child {
	margin-bottom: 0;
}
.stepImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stepsBox {
	padding: 60px;
}
.steps-title p {
	font-size: 28px;
	line-height: 38px;
	margin-bottom: 25px;
}
.stepText p {
	font-size: 24px;
	line-height: 28px;
}
.stepText h4 {
	color: #ef7843;
	font-size: 30px;
	line-height: 40px;
}
.otherOptions {
	display: flex;
	/* align-items: center;
     */
}
.optionImg {
	max-width: 382px;
	height: 290px;
}
.optionImg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.optionItme p {
	text-align: center;
	padding: 0 25px;
	line-height: normal;
	font-weight: 500;
}
.option-container {
	border-top: 1px solid #d1d1d1;
	margin-top: 50px;
	padding-top: 20px;
}
.option-container .pageTitle {
	margin-bottom: 40px;
}
.option-container .pageTitle h2 {
	color: #000;
}
.optionItme {
	padding-right: 30px;
}
.optionItme:last-child {
	padding-right: 0;
}
section.howtoplaySection {
	margin-bottom: 100px;
}
.pt-30 {
	padding-top: 30px;
}
/*how to play*/
/*terms and conditions*/
.termsConditions h2 {
	color: #ef7843;
	font-size: 36px;
	line-height: 42px;
	margin-bottom: 10px;
}
.termsConditions p {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 20px;
	font-weight: 500;
	word-break: break-word;
}
.termsConditions h4 {
	color: #ef7843;
}
.termsConditions ul {
	padding-left: 15px;
}
.termsConditions li {
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 10px;
	list-style: disc;
	font-weight: 500;
	color: #000;
}
.termsConditions li span {
	font-weight: bold;
}
.termsConditions li p {
	margin-bottom: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.loginBottom {
	padding-bottom: 140px;
}
.overflowHide {
	overflow: hidden;
}
/*terms and conditions*/
/*modal*/
.selectModal {
	position: relative;
}
.modal {
	position: fixed;
	z-index: 10000;
	/* 1 */
	top: 0;
	left: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.modal.is-visible {
	visibility: visible;
}
.modal-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #707070;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}
.modal-wrapper {
	position: absolute;
	z-index: 9999;
	top: 50%;
	left: 50%;
	width: 32em;
	margin-left: 0;
	background-color: #000;
	box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 35%);
	transform: translate(-50%, -50%) !important;
}
.modal-transition {
	transition: all 0.3s 0.12s;
	transform: translateY(-10%);
	opacity: 0;
}
.modal.is-visible .modal-transition {
	transform: translateY(0);
	opacity: 1;
}
.modal-close {
	position: absolute;
	top: -23px;
	right: 0;
	padding: 0;
	color: #aaa;
	background: none;
	border: 0;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 14px;
}
.modal-close img {
	width: 15px;
	margin-right: 5px;
}
.selectModal {
	padding: 100px;
}
.selectModal .checkboxLogin label {
	color: #fff;
	width: 56px;
	margin: 18px auto 0 auto;
	display: flex;
	align-items: center;
}
.textCne {
	text-align: center;
}
.selectModal .checkboxLogin label:before {
	border: 1px solid #fff;
	margin-right: 10px;
	top: 3px;
}
.selectModal .checkboxLogin input:checked + label:after {
	border-color: #008315;
	left: 6px;
}
.selectModal .checkboxLogin input:checked + label:before {
	border-color: #008315;
	background-color: #fff;
}
.selectModal .theme-btn {
	background: #008315;
	color: #fff;
}
.fullModal .modal-wrapper {
	top: 0;
	left: 0;
	width: 100%;
	margin-left: 0;
	transform: none !important;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fullModal .selectModal {
	padding: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outerBox {
	display: flex;
}
.mddleBox {
	width: 320px;
	height: 320px;
	border: 1px solid #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 100px;
	padding: 20px;
}
.mddleBox:last-child {
	margin-right: 0;
}
.boxText {
	font-size: 28px;
	text-align: center;
	color: #fff;
}
.demoSection h4 {
	font-size: 50px;
	line-height: 60px;
	margin-bottom: 50px;
	text-align: center;
	font-weight: normal;
}
.fullModal .modal-wrapper {
	position: relative;
}
.fullModal .modal-close {
	top: 40px;
	right: 12px;
	color: #fff;
	z-index: 9;
}
/*modal*/
/*select*/
.discountList {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	border-top: 0;
	border-right: 0;
}
.listItm {
	width: 50%;
	color: #000;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	border-right: 1px solid #ccc;
	padding: 10px;
	border-top: 1px solid #ccc;
}
.signuptilte h4 {
	font-size: 50px;
	color: #000;
	line-height: 55px;
	margin-bottom: 20px;
}
.signupBox {
	padding: 50px 100px;
}
.totleOrder {
	display: flex;
	border: 2px solid #000;
	background: #c1c1c1;
}
.totleOrder span {
	width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 24px;
	border-right: 2px solid #000;
	color: #000;
	font-weight: bold;
}
.totleOrder .form-control {
	border: 0;
	background: transparent;
}
.mt-30 {
	padding-top: 30px;
}
/*select*/
/*grid*/
.filterBox {
	display: flex;
	justify-content: space-between;
	background: #f6edcb;
	padding: 15px 20px;
	margin-bottom: 4px;
}
.filterLeft {
	display: flex;
	align-items: center;
}
.filterLeft .lable {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-right: 20px;
	text-transform: uppercase;
}
.inputBox {
	margin-right: 20px;
	min-width: 270px;
}
.inputBox:last-child {
	margin-right: 0;
}
.inputBox .form-control {
	height: 40px;
	font-size: 14px;
	border-width: 1px;
}
.orangbtn {
	background: #ef7843;
	border-color: #ef7843;
	font-size: 14px;
	display: flex;
	height: 40px;
	color: #fff;
	transition: 0.5s ease-in-out;
	min-width: 100px;
}
.orangbtn:hover {
	background: transparent;
	border-color: #ef7843;
	color: #ef7843;
}
.girdtablebox {
	padding: 20px;
}
.girdboxTop {
	display: flex;
}
.girdboxTop .inputBox {
	min-width: auto;
	color: #fff;
}
.girdboxTop .inputBox .form-control {
	background: #008315;
	color: #fff;
	border-color: #008315;
}
.tableHeader {
	font-size: 40px;
	margin-bottom: 20px;
}
.girdTable td {
	padding: 6px 8px;
	border-right: 1px solid #e1e1e1;
	margin: 0;
	border-collapse: collapse;
}
.girdTable table,
.girdTable th,
.girdTable td {
	border: 1px solid #e1e1e1;
	border-collapse: collapse;
}
.girdTable th {
	background: #e1e1e1;
	padding: 8px 4px;
	border-collapse: collapse;
	text-align: left;
	text-transform: uppercase;
}
.girdTable table {
	width: 100%;
	color: #000;
	font-weight: 600;
}
.girdTable table tbody tr:nth-child(even) {
	background: rgb(225 225 225 / 35%);
}
.tble_link {
	color: #ef7843;
	text-decoration: underline;
}
.girdTable {
	margin-top: 20px;
	display: block;
}
#dropdown {
	position: relative;
}
#dropdown a {
	padding: 5px 15px 5px;
}
/**** ****/
#dropdown ul.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #c5c5c5;
	min-width: 175px;
	right: 38% !important;
	z-index: 1;
	margin-top: 5px;
	background: #ffffff;
}
#dropdown ul.dropdown li {
	list-style-type: none;
	display: flex;
	align-items: center;
	line-height: 23px;
	font-weight: 600;
	font-size: 20px;
}
#dropdown ul.dropdown li a {
	text-decoration: none;
	padding: 0em 1em;
	display: block;
	padding: 5px 15px 5px;
	font-weight: bold;
	color: #000;
}
#dropdown ul.dropdown li i {
	font-size: 14px;
}
#dropdown .dropdown-toggle {
	background: #008315;
	color: #fff;
	display: inline-block;
	align-items: center;
	justify-content: center;
	min-width: auto;
	text-transform: uppercase;
}
#dropdown ul.dropdown li:hover,
ul.dropdown li:hover a {
	color: #008315;
}
.orangeTr {
	background: rgb(239 120 67 / 20%) !important;
}
.orangeTr td {
	opacity: 0.4;
}
.orangeTr td:last-child {
	opacity: 1;
}
span.expired {
	display: block;
	background: #fe2828;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	color: #fff;
	font-size: 13px;
	font-weight: normal;
	padding-bottom: 4px;
	margin-top: 3px;
}
td:first-child {
	text-align: center;
}
div#dropdown .dropdown-toggle i {
	padding-left: 4px;
}
/*grid*/
/* demo square css */
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	margin-right: 30px;
	color: #000000;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0.65;
	display: flex;
	align-items: center;
}
ul.tabs li img {
	margin-right: 5px;
	max-width: 14px;
	top: 2px;
	position: relative;
}
ul.tabs li.active:after {
	content: "";
	width: 100%;
	height: 3px;
	background: #ef7843;
	position: absolute;
	bottom: -15px;
	left: 0;
}
ul.tabs li:hover {
	color: #000000;
}
ul.tabs li.active {
	display: block;
	opacity: 1;
}
.tab_container {
	border-top: none;
	clear: both;
	width: 100%;
}
.tab_content {
	display: none;
}
.tab_drawer_heading {
	display: none;
}
.public-url {
	background: #fbebe1;
	padding: 15px 20px;
}
.public-url p {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}
.public-url p a {
	color: #ef7843;
}
.public-url p span {
	color: #9d9d9d;
}
.demo-form {
	padding: 20px;
}
.demo-form .boxForm {
	border-bottom: 1px solid #e6e6e6;
	padding: 32px 70px;
}
.demo-form .boxForm:nth-last-of-type(2) {
	border: 0;
}
.demo-form .boxForm label {
	text-transform: uppercase;
	font-weight: bold;
}
.demo-form .checkboxLogin {
	margin-top: 30px;
}
.demo-form .checkboxLogin label {
	display: inline-block;
	margin-right: 60px;
}
.demo-form .checkboxLogin input:checked + label:after,
.demo-form .checkboxLogin input:checked + label:before {
	border-color: #ef7843;
}
.demo-form .btnrow {
	background: #f8f8f8;
	padding: 30px;
	display: flex;
	justify-content: center;
}
.demo-form .btnrow .theme-btn {
	min-width: 165px;
	width: 165px;
	margin: 0 10px;
	justify-content: space-between;
}
.demo-form .btnrow .theme-btn.cancel-btn {
	border-color: #fe2828;
}
.demo-form .btnrow .theme-btn svg {
	margin-left: 16px;
	width: 16px;
}
.demo-form .btnrow .theme-btn.cancel-btn:hover {
	background: #fe2828;
}
.demo-form .dollar-sign {
	position: absolute;
	right: 2px;
	font-size: 24px;
	color: #000;
	font-weight: bold;
	width: 60px;
	height: 58px;
	bottom: 1px;
	border-left: 2px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* demo square css */
/* marketing homepage */
.marketing-page h2 {
	font-size: 60px;
	line-height: 60px;
}
.featuresSection {
	background: #fff url("../images/feature-banner.png") no-repeat;
	background-size: cover;
	padding: 130px 50px;
}
.featuresSection .ch-row {
	justify-content: flex-end;
}
.featuresSection .featureBox {
	background: #fff;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.29);
	border: 1px solid #dedede;
	padding: 40px 55px;
	position: relative;
}
.featuresSection .featureBox:after {
	content: "";
	background: url("../images/feature-box-bg.svg");
	background-size: cover;
	width: 100%;
	height: 12px;
	position: absolute;
	display: block;
	left: 0;
	bottom: -12px;
	background-repeat: no-repeat;
	background-position: center bottom;
}
.featuresSection .featureBox h2 {
	color: #000000;
}
.featuresSection .featureBox ul {
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 20px;
}
.featuresSection .featureBox ul li {
	color: #000000;
	font-size: 22px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	list-style: none;
	padding-left: 20px;
}
.featuresSection .featureBox ul li:before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	background: url("../images/ellipse-icon.svg") no-repeat;
	background-size: cover;
	display: inline-block;
	left: 0;
	top: 21px;
}
.featuresSection .featureBox .secondary-btn {
	width: 100%;
	margin-top: 20px;
}
.charityEvent {
	position: relative;
	padding: 120px 0 50px 0;
	background: #ffffff;
	color: #000000;
}
.charityEvent p {
	font-size: 28px;
	line-height: 30px;
	padding-bottom: 40px;
	color: #000000;
	font-weight: 500;
}
.charityEvent .eventRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.charityEvent .eventRow .eventRowLeft {
	width: 50%;
	padding-right: 40px;
}
.charityEvent .eventRow .eventRowLeft h2 {
	padding-bottom: 10px;
}
.charityEvent .eventRow .eventRowRight {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 50%;
}
.charityEvent .eventRow .eventRowRight .imgRow1,
.charityEvent .eventRow .eventRowRight .imgRow2 {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	max-width: 100%;
}
.charityEvent .eventRow .eventRowRight .imgbox {
	padding: 5px;
	border-radius: 20px;
}
.eventRowRight .imgbox.imgbox1 {
	height: 199px;
	width: 195px;
	overflow: hidden;
	max-width: 100%;
}
.eventRowRight .imgbox.imgbox2 {
	height: 287px;
	width: 200px;
	overflow: hidden;
	max-width: 100%;
}
.eventRowRight .imgbox.imgbox3 {
	height: 185px;
	width: 177px;
	overflow: hidden;
	max-width: 100%;
}
.eventRowRight .imgbox.imgbox4 {
	height: 315px;
	width: 220px;
	overflow: hidden;
	max-width: 100%;
}
.eventRowRight .imgbox.imgbox5 {
	height: 321px;
	width: 467px;
	overflow: hidden;
	max-width: 100%;
}
.testimonial {
	background: #ffffff;
	padding: 50px 50px 100px 50px;
	position: relative;
}
.testimonial:before {
	content: "";
	width: 100%;
	height: 400px;
	background: url("../images/testimonial-pattern.png") no-repeat;
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-position: center;
	background-size: cover;
}
.testimonial:after {
	content: "";
	width: 100%;
	height: 315px;
	background: #f1f1f1;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.testimonial h2 {
	color: #000000;
	text-align: center;
}
.testimonial .testimonial-slider {
	margin-top: 60px;
}
.testimonial .testimonial-slider .owl-stage {
	padding-bottom: 15px;
}
.testimonial .testimonial-slider .item {
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.29);
	border: 1px solid #dedede;
	padding: 55px;
	background: #ffffff;
}
.testimonial .testimonial-slider .item .userDetail {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}
.testimonial-slider .item .userDetail .avatar {
	width: 60px;
	height: 60px;
	border-radius: 100px;
	overflow: hidden;
}
.testimonial-slider .item .userDetail .avatar img {
	width: 100%;
}
.testimonial-slider .item .userDetail .userInfo {
	display: flex;
	flex-direction: column;
	padding-left: 13px;
}
.testimonial-slider .item .userDetail .userInfo h6 {
	font-size: 18px;
	font-weight: 700;
	color: #2a2a2a;
}
.testimonial-slider .item .userDetail .userInfo span {
	font-size: 16px;
	font-weight: 500;
	color: #ff5b2e;
}
.testimonial-slider .item p {
	font-size: 18px;
	font-weight: 600;
	color: #2a2a2a;
	padding-bottom: 30px;
}
.testimonial-slider .item p:last-child {
	padding-bottom: 0;
}
.testimonial-slider .owl-nav {
	position: absolute;
	width: 100%;
	top: 45%;
	transform: translateY(-50%);
}
.testimonial-slider .owl-nav button {
	width: 60px;
	height: 60px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
	border-radius: 100px;
}
.testimonial-slider .owl-nav button span {
	display: none;
}
.testimonial-slider .owl-nav button.owl-prev {
	left: -30px;
	position: absolute;
	background: #fff url("../images/left-arrow.svg") no-repeat center;
}
.testimonial-slider .owl-nav button.owl-next {
	right: -30px;
	position: absolute;
	background: #fff;
	background: #fff url("../images/right-arrow.svg") no-repeat center;
}
/* marketing homepage */
/** July -  **/
.bnner-content {
	display: flex;
	align-items: center;
	padding-top: 30px;
}
.bnner-content-left {
	flex: 1;
	padding-right: 30px;
}
.bnner-content-left h1 {
	font-size: 70px;
	margin-bottom: 20px;
}
.bnner-content-left p {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 40px;
	line-height: 34px;
}
.bnner-content-right,
.bnner-content-left {
	flex: 1;
}
.bnner-content-right img {
	width: 100%;
}
.steps-one-section {
	background: #fff;
	padding: 30px 0;
}
.step-flex {
	display: flex;
	align-items: center;
}
.step-left-img {
	width: 100%;
	flex: 1;
	padding-right: 30px;
}
.step-left-img img {
	width: 100%;
}
.step-des {
	flex: 1;
}
.step-des h2 {
	font-size: 60px;
	color: #000;
	margin-bottom: 20px;
}
.step-des p {
	color: #000;
	font-size: 29px;
	margin-bottom: 40px;
	line-height: 35px;
}
.gray-bg {
	background: #f1f1f1;
}
.header-banner {
	background: #000;
}

/** July -  **/
.form-field {
	display: flex;
	margin: 0 -8px;
}
.form-field .form-group {
	margin-bottom: 28px;
	position: relative;
	padding: 0 8px;
	flex: 1;
}
.form-field .form-control {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
}
.form-field label {
	color: #fff;
}
.signup-form .theme-btn {
	color: #fff;
	width: 100%;
	background-color: #008315;
}
.signup-form .theme-btn:hover {
	color: #fff;
	width: 100%;
	background-color: transparent;
}
.signup-form h2 {
	margin-bottom: 20px;
}
.signinLink {
	margin-top: 30px;
	font-size: 20px;
	line-height: 24px;
}
.signinLink a {
	color: #ef7843;
}
.teramsBox {
	background: #fff;
	padding: 60px 0;
}
.pt-3 {
	padding-top: 30px;
}
.termsConditions p {
	color: #000;
}
.marketingHeader .main-menu {
	justify-content: space-between;
	width: calc(100% - 190px);
}
.marketingHeader .rightUl {
	border-left: 0 solid #1d1d1d;
	display: flex;
}
.marketingHeader .rightUl li {
	display: flex;
	align-items: center;
}
.marketingHeader .rightUl li a {
	line-height: normal;
	display: flex;
	align-items: center;
	background: #008315;
	padding: 8px 10px;
}
.marketingHeader .main-menu {
	justify-content: space-between;
	width: calc(100% - 230px);
}
.rightUl li a img {
	width: 27px;
}
.rightUl .emal-li a img {
	top: 2px;
	position: relative;
}
.loginmodal .whiteBox {
	padding: 40px;
	width: 625px;
}
.loginmodal .checkboxLogin label:before {
	top: -2px;
}
.fullModal .modal-wrapper {
	overflow-y: auto;
	padding: 30px 0;
}
.checkboxLogin input:checked + label:after {
	top: 8px;
}
section.howtoplaySection {
	margin-bottom: 0;
}
.orange-btn {
	background: #ef7843;
	color: #fff;
	border-color: #ef7843;
}
.orange-btn:hover {
	background: transparent;
	color: #ef7843;
	border-color: #ef7843;
}
.pb-100 {
	padding-bottom: 100px;
}

/* July -  */
/*Media query*/

@media only screen and (max-width: 992px) {
	.nav-mobile {
		display: block;
	}
	nav {
		width: 100%;
	}
	nav ul {
		display: none;
	}
	nav ul li {
		float: none;
	}
	nav ul li a {
		padding: 15px;
		line-height: 20px;
	}
	nav ul li ul li a {
		padding-left: 30px;
	}
	.nav-dropdown {
		position: static;
	}
}
@media screen and (min-width: 993px) {
	.nav-list {
		display: block;
	}
}
@media (max-width: 1024px) {
	.brand img,
	.footerLogo img {
		width: 140px;
	}
	nav.main-menu ul li {
		padding: 0 15px;
	}
	.footer-column ul {
		flex-direction: column;
	}
	.footer-column {
		padding: 0 15px;
	}
	.whiteBox {
		max-width: 600px;
	}
	.stepsBox {
		max-width: 100%;
	}
}
@media (max-width: 992px) {
	.topHeader {
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 0;
	}
	.main-menu {
		flex-direction: column;
		align-items: flex-start;
	}
	.rightUl {
		padding-left: 0;
	}
	.brand {
		width: 100px;
	}
	.main-menu ul li {
		padding: 0;
	}
	nav.main-menu ul li a {
		font-size: 16px;
		padding: 9px 0;
		display: inline-block;
	}
	.nav-dropdown {
		background-color: #000;
		padding-top: 0;
	}
	nav.main-menu ul li a {
		color: #fff !important;
	}
	.nav-dropdown li {
		padding: 0 !important;
	}
	.whiteBox {
		padding: 20px 50px 40px 50px;
	}
	.form-control {
		height: 46px;
		font-size: 16px;
	}
	label {
		font-size: 16px;
		line-height: 20px;
	}
	.theme-btn {
		padding: 10px 15px;
		font-size: 14px;
		min-width: 250px;
	}
	.forgotlink a {
		font-size: 20px;
		line-height: 28px;
	}
	.loginSection {
		padding: 40px 0;
	}
	.getStarted {
		margin-top: 40px;
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
	.getStarted h3 {
		width: 100%;
		font-size: 40px;
		line-height: 44px;
		margin-bottom: 20px;
	}
	h2,
	.boxTitle h1,
	.sliderLeft h1,
	.signuptilte h4 {
		font-size: 30px;
		line-height: 34px;
		margin: 0;
	}
	.signuptilte h4 {
		margin-bottom: 10px;
	}
	.pageTitle {
		margin-bottom: 30px;
	}
	.whiteBox.w-100 {
		max-width: 100%;
	}
	.stepsItem {
		flex-direction: column;
	}
	.optionImg {
		height: auto;
	}
	.sliderRight {
		display: none;
	}
	.sliderLeft {
		max-width: 100%;
		padding-bottom: 30px;
	}
	.rightUl {
		border-left: 0;
	}
	.mddleBox {
		width: 280px;
		height: 280px;
		margin-right: 30px;
	}
	.sliderLeft p {
		font-size: 20px;
		line-height: 28px;
	}
	.inputBox {
		min-width: auto;
	}
	.girdtablebox {
		padding: 20px;
	}
	.girdTable td {
		min-width: 150px;
	}
	.girdTable td:first-child {
		min-width: auto;
	}
	.demo-form .dollar-sign {
		height: 44px;
	}
	/** Marketing Home **/
	.eventRowRight .imgbox.imgbox1 {
		height: 134px;
		width: 195px;
	}
	.eventRowRight .imgbox.imgbox2 {
		height: 187px;
		width: 200px;
	}
	.eventRowRight .imgbox.imgbox3 {
		height: 125px;
		width: 177px;
	}
	.eventRowRight .imgbox.imgbox4 {
		height: 182px;
		width: 220px;
	}
	.eventRowRight .imgbox.imgbox5 {
		height: 183px;
		width: 467px;
	}
	/** Marketing Home **/
	/** July -  **/
	.step-des p {
		font-size: 18px;
		margin-bottom: 20px;
		line-height: 22px;
	}
	.step-des h2 {
		font-size: 30px;
		margin-bottom: 12px;
	}
	.bnner-content-left p {
		font-size: 20px;
		margin-bottom: 20px;
		line-height: 24px;
	}
	.bnner-content-left h1 {
		font-size: 30px;
		margin-bottom: 20px;
		line-height: 32px;
	}
	.steps-one-section {
		padding: 20px 0;
	}
	.bnner-content-left {
		padding-right: 0;
	}
	.step-left-img {
		padding-right: 0;
	}
	.marketingHeader .rightUl {
		display: none;
	}
	.marketingHeader .main-menu {
		width: 100%;
	}
	.footer-section {
		flex-direction: column;
	}
	.footerLogo {
		margin-bottom: 30px;
	}
	/** July -  **/
}
@media (max-width: 767px) {
	.footer-section,
	.footer-right {
		flex-direction: column;
	}
	.footer-column,
	.footerLogo {
		padding: 0;
		margin-bottom: 20px;
	}
	h4 {
		font-size: 18px;
	}
	.stepText h4 {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 10px;
	}
	.footer-column ul li a {
		font-size: 18px;
	}
	footer {
		padding: 30px 0 20px 0;
	}
	.whiteBox {
		padding: 20px;
	}
	h1,
	h2,
	.sliderLeft h1,
	.termsConditions h2,
	.signuptilte h4 {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 10px;
	}
	.whiteBox {
		width: 100%;
	}
	.sliderLeft p {
		font-size: 16px;
		line-height: 20px;
	}
	.whiteBox.w-100:after {
		left: 0;
	}
	.theme-btn svg,
	.theme-btn.yellow img {
		margin-left: 15px;
		width: 17px;
	}
	.col50 {
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}
	.pageTitle {
		margin-bottom: 20px;
	}
	.getStarted h3 {
		font-size: 34px;
		line-height: 36px;
	}
	.content p {
		font-size: 18px;
		line-height: 24px;
	}
	.otherOptions,
	.lists {
		flex-direction: column;
	}
	.optionItme {
		padding-right: 0;
		margin-bottom: 30px;
	}
	.stepImg {
		width: 100%;
		height: auto;
	}
	.stepImg img {
		object-fit: contain;
	}
	.TbleBtns,
	.coloIndicators {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.TbleBtns .theme-btn,
	.colorItems {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.lists {
		margin-bottom: 20px;
	}
	.lists li {
		font-size: 16px;
		line-height: 20px;
	}
	.headerBox span,
	.leftCell span {
		font-size: 44px;
		line-height: 68px;
	}
	.tabletopTitle h2,
	.tabletopTitle.leftTranformTex h2 {
		font-size: 28px;
		line-height: normal;
	}
	.nfc-table {
		padding-left: 20px;
	}
	.coloIndicators {
		margin-top: 10px;
		padding-top: 30px;
	}
	.btnsection {
		margin-top: 0;
		padding-top: 30px;
	}
	.accordianSection {
		padding-top: 40px;
	}
	.set > a {
		font-size: 18px;
		padding: 15px 40px 15px 0;
	}
	.set > a .icons {
		font-size: 50px;
		top: 8px;
	}
	.content p {
		font-size: 16px;
		line-height: 20px;
	}
	.content {
		padding-left: 30px;
	}
	.getStarted h3 {
		font-size: 30px;
		line-height: 34px;
	}
	.loginBottom {
		padding-bottom: 60px;
	}
	.steps-title p {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 14px;
	}
	.stepText p,
	.termsConditions p,
	.breadcum li,
	.breadcum li a {
		font-size: 16px;
		line-height: 20px;
	}
	.termsConditions p {
		margin-bottom: 15px;
	}
	.termsConditions h4 {
		font-size: 24px;
		line-height: 28px;
		margin-bottom: 9px;
	}
	.breadcum {
		padding-top: 16px;
		padding-bottom: 15px;
		flex-wrap: wrap;
	}
	.set > a .count {
		margin-right: 0;
	}
	.selectModal .theme-btn {
		min-width: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.selectModal {
		padding: 35px;
	}
	.modal-wrapper {
		width: 92%;
		margin-left: 0;
	}
	.warning-icon {
		margin-bottom: 15px;
	}
	.warning-icon img {
		width: 41px;
	}
	.selectModal .checkboxLogin {
		margin-bottom: 30px;
	}
	.outerBox {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.mddleBox {
		margin-bottom: 30px;
		margin-right: 0;
	}
	.demoSection h4 {
		font-size: 30px;
		line-height: 34px;
		margin-bottom: 20px;
		margin-top: 50px;
	}
	.boxText {
		font-size: 22px;
		line-height: 26px;
	}
	.filterLeft,
	.filterBox {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.girdboxTop {
		flex-direction: column;
	}
	.filterLeft .lable {
		margin-bottom: 10px;
	}
	.inputBox {
		min-width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.tableHeader {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.tableHeader {
		font-size: 28px;
		margin-bottom: 20px;
	}
	.demo-form .boxForm {
		padding: 0;
	}
	.demo-form .checkboxLogin {
		margin-top: 0;
	}
	.demo-form .btnrow {
		flex-direction: column;
		align-items: center;
	}
	.demo-form .btnrow .theme-btn {
		margin: 5px 0;
	}
	.tab_container {
		margin-top: 30px;
	}
	.signuptilte h4 {
		font-size: 40px;
		line-height: 45px;
	}
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		background-color: #ccc;
		color: #000000;
		border: 1px solid #000;
		margin: 8px 0 0;
		padding: 5px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.d_active {
		background-color: #fbebe1;
		border: 1px solid #ffc7ae;
		color: #000000;
	}
	.tab_content {
		border: 1px solid #ffc7ae;
		border-top: 0px;
		padding: 20px;
	}
	.square-demo-form .filterBox {
		display: none;
	}
	/** Marketing Home **/
	.charityEvent {
		padding: 50px 0 50px 0;
	}
	.charityEvent .eventRow {
		flex-direction: column;
	}
	.charityEvent .eventRow .eventRowLeft,
	.charityEvent .eventRow .eventRowRight {
		width: 100%;
		padding: 0;
	}
	.charityEvent .eventRow .eventRowRight {
		margin-top: 50px;
	}
	.marketing-page h2 {
		font-size: 50px;
		line-height: 50px;
	}
	.featuresSection,
	.testimonial {
		padding: 50px;
	}
	.charityEvent p {
		font-size: 20px;
		padding-bottom: 20px;
	}
	/** Marketing Home **/
	/** July -  **/
	.bnner-content,
	.step-flex,
	.form-field {
		flex-direction: column;
	}
	.form-field .form-group {
		margin-bottom: 10px;
	}
	.loginmodal .whiteBox {
		width: 90%;
		padding: 20px;
	}
	/** July -  **/
}
@media (max-width: 575px) {
	/** Marketing Home **/
	.charityEvent {
		padding-bottom: 0;
	}
	.featuresSection .featureBox {
		padding: 10px 25px;
	}
	.featuresSection .featureBox ul li {
		font-size: 18px;
		padding: 5px 0 0 20px;
	}
	.featuresSection .featureBox ul li:before {
		top: 14px;
	}
	.secondary-btn {
		font-size: 16px;
	}
	.marketing-page h2 {
		font-size: 40px;
		line-height: 40px;
	}
	.testimonial-slider .owl-nav button {
		width: 40px;
		height: 40px;
	}
	.featuresSection,
	.testimonial {
		padding: 30px 20px;
	}
	.testimonial-slider .owl-nav button.owl-prev {
		left: -20px;
	}
	.testimonial-slider .owl-nav button.owl-next {
		right: -20px;
	}
	.testimonial .testimonial-slider .item {
		padding: 35px;
	}
	/** Marketing Home **/
}
@media (max-width: 380px) {
	.theme-btn.white-btn {
		min-width: 100%;
	}
}

/*=== Custom Style ===*/
.info,
.success,
.warning,
.error,
.validation {
	border: 1px solid;
	margin: 10px 0px;
	padding: 15px 10px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
}
.error {
	color: #d8000c;
	background-color: #ffbaba;
	background-image: url("https://i.imgur.com/GnyDvKN.png");
}
.success {
	color: #270;
	background-color: #dff2bf;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form select, .wpcf7-form textarea {
	box-shadow: none !important;
}
.secondary-btn {
	border: none;
}
.marketingHeader .rightUl li:last-child{
     padding-right: 0px;
}
.marketingHeader nav ul li{
    padding: 0 20px;
}
/*=== Custom reCAPTCHA V3 Style ===*/
.grecaptcha-badge {
    display: none!important;
}
body.page-id-172 .grecaptcha-badge {
    display: block!important;
}