@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	/*! margin: 14px 0; */
}

.navbar__right {
	display: none !important;
}

.brand-img {
	width: 320px;
}

.menu .menu__inner .menu__item .menu__link,
.menu .menu__inner .menu__item .menu__link.active,
.submenu .submenu__list li a {
	font-family: "Chakra Petch", sans-serif;
	font-size: 18px;
}

.navbar .navbar__left {
	margin-top: 35px;
}


.banner-sec {
	position: relative;
}

.banner-carousel {
	position: relative;
	height: 700px;
}

.banner-carousel .slide-item {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 230px 0px;
	height: 700px;
}

.banner-sec .slide-item {
	padding: 170px 0px 200px;
}

.banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 6000ms linear;
	-moz-transition: all 6000ms linear;
	-ms-transition: all 6000ms linear;
	-o-transition: all 6000ms linear;
	transition: all 6000ms linear;
}

.banner-carousel .active .slide-item .image-layer {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}

.banner-carousel .slide-item:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #09031c;
	opacity: .30;
	content: "";
	z-index: 1;
}

.slide-item .auto-container {
	width: 65%;
	display: block;
	margin: 0 6%;
}

.banner-carousel .content-box {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	padding: 0 0px;
	z-index: 5;
}

.banner-sec .content-box {
	max-width: 100%;
	text-align: left;
	padding: 0px;
}

.banner-carousel .content-box h2 {
	display: block;
	color: #ffffff;
	font-weight: 700;
	opacity: 0;
	margin-bottom: 30px;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	text-transform: uppercase;
	font-size: 80px;
	line-height: 96.8px;
	font-family: "Chakra Petch", sans-serif;
}

.banner-sec .content-box h2 {
	margin-bottom: 20px;
}

.banner-carousel .active .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.content-box h2 span {
	color: #09926a;
}

.banner-carousel .content-box .text {
	display: block;
	font-size: 24px;
	line-height: 1.6em;
	color: rgba(255, 255, 255, 0.60);
	font-weight: 400;
	opacity: 0;
	max-width: 700px;
	margin-bottom: 40px;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
	font-family: 'Roboto Condensed', sans-serif;
}

.banner-carousel .active .content-box .text {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 700ms;
	-moz-transition-delay: 700ms;
	-ms-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms;
}

.banner-carousel .content-box .btn-box {
	position: relative;
	opacity: 0;
	z-index: 9;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	transition: all 700ms ease;
}

.banner-carousel .active .content-box .btn-box {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 700ms;
	-moz-transition-delay: 700ms;
	-ms-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms;
}

.banner-sec .banner-carousel .active .content-box .btn-box {
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-sec .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 0;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-sec:hover .owl-nav {
	opacity: 1;
}

.banner-sec .owl-nav .owl-prev {
	position: absolute;
	left: 0px;
	background: #ffffff;
	height: 80px;
	width: 40px;
	border-radius: 0;
	border: 2px solid #ffffff;
	text-align: center;
	line-height: 80px;
	color: #020202;
	font-size: 24px;
	opacity: .90;
	margin-top: -30px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-sec .owl-nav .owl-next {
	position: absolute;
	right: 0px;
	background: #ffffff;
	height: 80px;
	width: 40px;
	border-radius: 0;
	border: 2px solid #ffffff;
	text-align: center;
	line-height: 80px;
	color: #020202;
	font-size: 24px;
	opacity: .90;
	margin-top: -30px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-sec .owl-nav .owl-prev:hover,
.banner-sec .owl-nav .owl-next:hover {
	opacity: 1;
}

.banner-sec .owl-dots {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 57px;
	text-align: center;
	padding-top: 20px;
	border-bottom: 13px solid #000000;
	background: url(../images/icons/pagers-curve.png) center top no-repeat;
}

.banner-sec .owl-dots .owl-dot {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0px 4px;
}

.banner-sec .owl-dots .owl-dot span {
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
	background: #4d4d4d;
	border: 1px solid transparent;
	border-radius: 50%;
}

.banner-sec .owl-dots .owl-dot.active span {
	background: #09926a;
	border-color: #09926a;
}

.banner-sec .owl-dots {
	bottom: 40px;
	height: auto;
	padding: 0;
	border: none;
	background: none;
}

.bg-tx-upper {
	position: relative;
	overflow: hidden;
	background: #222434;
}

.bg-tx {
	position: relative;
	z-index: 1;
	overflow: hidden !important;
}

.bg-tx::before {
	position: absolute;
	content: "";
	width: 395px;
	height: 120%;
	bottom: 0;
	background: #09926a;
	transform: skew(-17deg);
	z-index: -1;
}

.bg-tx::before {
	right: 12%;
	animation: MoveDownUp 5s linear alternate;
}

.shape-area .shape-1 {
	top: 20%;
	left: 5%;
	animation: rotate 35s linear infinite;
	position: absolute;
	width: 8%;
}

.shape-area .shape-2 {
	left: calc(50% - 250px);
	top: 2%;
	position: absolute;
}

.shape-area .shape-3 {
	left: calc(50% - 250px);
	top: 5%;
	position: absolute;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg)
	}
}

.circle-area {
	width: 100px;
	height: 100px;
	animation: stretch 5s linear infinite;
	position: absolute;
}

.circle-area.circle-one {
	top: 15%;
	left: 15%;
}

.circle-area .circle-1 {
	right: 0;
	position: absolute;
	z-index: 1;
}

.circle-area .circle-2 {
	right: 0;
	bottom: 10%;
	position: absolute;
	z-index: 1;
}

.circle-area .circle-3 {
	bottom: 22%;
	position: absolute;
	z-index: 1;
}

@keyframes stretch {
	0% {
		transform: scale(0.8, 0.8)
	}

	50% {
		transform: scale(1.1, 1.1)
	}

	100% {
		transform: scale(0.8, 0.8)
	}
}

.circle-area.circle-two {
	top: 18%;
	left: 0%;
}

.circle-area img {
	position: absolute;
}

.circle-area.circle-two .circle-5 {
	bottom: 0;
	right: 25%;
	position: absolute;
}

.circle-area.circle-three {
	top: 40%;
	left: 5%;
}

.circle-area.circle-three .circle-1 {
	right: 0;
}

.circle-area.circle-four {
	left: calc(81% + 50px);
	bottom: calc(50% - 160px);
}

.bg-overlay {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bg-overlay::before {
	position: absolute;
	content: "";
	width: 395px;
	height: 300px;
	bottom: 0;
	background: linear-gradient(179.33deg, rgba(9, 146, 106, 0) 5%, #FF6A00 90%);
	transform: skew(-17deg);
	z-index: -1;
}

.bg-overlay::before {
	left: 0;
	animation: MoveDownUp 5s linear infinite alternate;
}

.bg-overlay::after {
	position: absolute;
	content: "";
	width: 395px;
	height: 650px;
	top: 0;
	background: linear-gradient(179.33deg, rgba(9, 146, 106, 0) 5%, #FF6A00 90%);
	transform: skew(-17deg);
	z-index: -1;
	rotate: 180deg;
}

.bg-overlay::after {
	width: 20px;
	left: 22%;
	animation: TravelUpDown 5s linear infinite alternate;
}

.bg-tx-upper::after {
	position: absolute;
	content: "";
	width: 395px;
	height: 120%;
	bottom: 0;
	background: #09926a;
	transform: skew(-17deg);
	z-index: -1;
}

.bg-tx-upper::after {
	width: 20px;
	right: 7%;
	animation: TravelUpDown 5s linear infinite alternate;
}

.int-pad {
	padding: 100px 0;
}

.inter-deta h2 {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 9px;
	font-family: Chakra Petch, sans-serif;
	font-size: 74px;
	font-weight: 700;
	line-height: 1.041em;
	color: #fff;
	text-align: center;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: black;
}

@keyframes MoveDownUp {
	100% {
		transform: skew(-17deg) translateY(0)
	}

	0% {
		transform: skew(-17deg) translateY(100%)
	}
}

@keyframes TravelUpDown {
	100% {
		transform: skew(-17deg) translateY(0)
	}

	0% {
		transform: skew(-17deg) translateY(100%)
	}
}

.cont-num,
.loc-ser,
.three-btns {
	margin: 20px 0;
}

.cont-num a {
	text-align: center;
	font-family: Chakra Petch, sans-serif;
	font-size: 50px;
	font-weight: 700;
	text-decoration: none;
	color: #95c41a;
	transition: color .3s;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
}

.cont-num a:hover {
	color: #fff;
}

.loc-ser P {
	text-align: center;
	font-family: Chakra Petch, sans-serif;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.cmn-btn {
	position: relative;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-weight: 800;
	line-height: 25px;
	transition: all 0.5s;
	padding: 20px 40px;
	background: url(../img/btn-bg.png);
	background-size: 100% 112%;
	background-repeat: no-repeat;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgb(6, 4, 23);
	font-size: 19px;
	margin: 20px;
	transition: color .3s;
}

.cmn-btn i {
	margin-left: 10px;
	font-size: inherit;
	color: rgb(6, 4, 23);
}

.cmn-btn:hover {
	color: #fff;
}

.vid-txt {
	background-color: #303141;
	border: #4c4d5a;
	border-radius: 12px;
	padding: 20px;
}

.video-sec {
	width: 500px;
	float: left;
	margin-right: 20px;
	display: block;
	position: relative;
	z-index: 1;
}

.video-sec iframe {
	border-radius: 12px;
	padding: 10px;
	border: 1px solid #09926a;
}

.txt-sec h2 {
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	font-family: Chakra Petch, sans-serif;
	line-height: 30px;
	position: relative;
	padding-bottom: 25px;
}

.txt-sec h2::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0 auto;
}

.txt-sec p {
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
}

.sec-ag {
	background: #222434 url(../img/bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 70px 0;
}

.set-bg-ag {
	background: #000;
	padding: 50px 100px;
	border-radius: 12px;
	border: 1px solid #09926a;
}

.lft-txt h1 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 9px;
	font-family: Chakra Petch, sans-serif;
	font-size: 65px;
	font-weight: 700;
	line-height: 1.041em;
	margin: 14px 0;
	position: relative;
	padding-bottom: 25px;
}

.lft-txt h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
}

.lft-txt h3 {
	color: #dfe2e5;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.286em;
	margin: 20px 0;
}

.lft-txt ul li {
	color: #fff;
	color: #dfe2e5;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.286em;
	margin: 25px 0;
}

.right-img {
	position: sticky;
	top: 10px;
}

.right-img img {
	width: 150px;
	height: 150px;
	padding: 10px;
}


.video-bg-circle {
	background-image: url(../img/act.png), url(../img/act2.png);
	background-position: center left, center right;
	background-repeat: no-repeat;
	padding: 70px 0;
}

.d-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-bg-circle .video-bg span {
	position: absolute;
	display: block;
	border-radius: 50%;
	width: 110px;
	height: 110px;
	z-index: -1;
}

.video-bg-circle .video-bg span::after,
.video-bg-circle .video-bg span::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #0efead;
	animation: videoTwo 8s linear infinite;
}

.video-bg-circle .video-bg span:nth-child(1)::before {
	animation-delay: 5s;
}

.video-bg-circle .video-bg span:nth-child(1)::after {
	animation-delay: 1s;
}

.video-bg-circle .video-bg span:nth-child(2)::before {
	animation-delay: 6s;
}

.video-bg-circle .video-bg span:nth-child(2)::after {
	animation-delay: 2s;
}

.video-bg-circle .video-bg span:nth-child(3)::before {
	animation-delay: 7s;
}

.video-bg-circle .video-bg span:nth-child(3)::after {
	animation-delay: 3s;
}

.video-bg-circle .video-bg span:nth-child(4)::after {
	animation-delay: 4s;
}

@keyframes videoTwo {
	0% {
		transform: translate(-50%, -50%) scale(2.3);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) scale(5);
		opacity: 0;
	}
}

.video-bg-circle .set-bg-ag {
	position: relative;
	padding: 15px;
}

.feat-txt {
	position: relative;
}

.feat-txt h2 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 9px;
	font-family: Chakra Petch, sans-serif;
	font-size: 65px;
	font-weight: 700;
	line-height: 1.041em;
	margin: 14px 0;
	position: relative;
	padding-bottom: 25px;
	text-align: center;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: black;
}

.feat-txt h2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0 auto;
}

.feat-txt ul li {
	color: #dfe2e5;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 35px;
	margin: 10px 0;
	display: flex;
	align-items: center;
}

.feat-txt ul li i {
	margin-right: 15px;
	background: #09926a;
	padding: 5px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: grid;
	align-items: center;
	justify-content: center;
}

.shadow-effect {
	background: #222434;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #09926a;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

.rev-slider-srt {
	background: #000;
	padding: 50px 0;
	border-radius: 12px;
	border: 1px solid #09926a;
}

#reviews-slider .shadow-effect p {
	color: #fff;
	text-align: center;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	margin: 0;
}

.testimonial-name {
	margin: -20px auto 0;
	display: table;
	width: auto;
	background: #09926a;
	padding: 9px 35px;
	border-radius: 12px;
	text-align: center;
	color: #fff;
	box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
	font-family: Chakra Petch, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

#reviews-slider .item {
	text-align: center;
	padding: 50px 0 0;
	margin-bottom: 0;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#reviews-slider .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
	max-width: 90px;
	margin: 0 auto 17px;
}

#reviews-slider.owl-carousel .owl-dots .owl-dot.active span,
#reviews-slider.owl-carousel .owl-dots .owl-dot:hover span,
#games-slider.owl-carousel .owl-dots .owl-dot.active span,
#games-slider.owl-carousel .owl-dots .owl-dot:hover span {
	background: #09926a;
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#reviews-slider.owl-carousel .owl-dots,
#games-slider.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}

#reviews-slider.owl-carousel .owl-dots .owl-dot,
#games-slider.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
}

#reviews-slider.owl-carousel .owl-dots .owl-dot span,
#games-slider.owl-carousel .owl-dots .owl-dot span {
	background: #09926a;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}

#reviews-slider .owl-nav,
#games-slider .owl-nav {
	text-align: center;
	padding: 15px;
}

#reviews-slider .owl-nav .owl-prev,
#reviews-slider .owl-nav .owl-next,
#games-slider .owl-nav .owl-prev,
#games-slider .owl-nav .owl-next {
	display: inline-block;
	background: #09926a;
	color: #fff;
	border-radius: 5px;
	padding: 8px 15px;
	margin: 10px 5px;
	border: 1px solid #fff;
	box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
	font-family: Chakra Petch, sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

#reviews-slider .owl-nav .owl-prev:hover,
#reviews-slider .owl-nav .owl-next:hover,
#games-slider .owl-nav .owl-prev:hover,
#games-slider .owl-nav .owl-next:hover {
	background: #222434;
	border: 1px solid #09926a;
	color: #09926a;
}

.red-mr {
	margin: 10px 0;
}

.red-mr a {
	font-size: 16px;
	font-weight: 600;
}

.red-mr a:hover {
	color: #09926a;
}

.rev-slider-srt.bg-overlay::after {
	right: 12% !important;
	left: unset !important;
}

footer {
	background: #000;
	border-top: 1px solid #09926a;
}

footer.bg-overlay::after {
	width: 20px;
	left: unset;
	animation: TravelUpDown 5s linear infinite alternate;
	right: 12%;
}

.lines .line {
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.1);
	z-index: -1;
}

.lines .line:nth-child(1) {
	left: 6%;
}

.lines .line:nth-child(2) {
	left: 12%;
}

.lines .line:nth-child(3) {
	left: 18%;
}

.lines .line:nth-child(4) {
	left: 24%;
}

.lines .line:nth-child(5) {
	left: 30%;
}

.lines .line:nth-child(6) {
	left: 36%;
}

.lines .line:nth-child(7) {
	left: 42%;
}

.lines .line:nth-child(8) {
	left: 48%;
}

.lines .line:nth-child(9) {
	left: 54%;
}

.lines .line:nth-child(10) {
	left: 60%;
}

.lines .line:nth-child(11) {
	left: 66%;
}

.lines .line:nth-child(12) {
	left: 72%;
}

.lines .line:nth-child(13) {
	left: 78%;
}

.lines .line:nth-child(14) {
	left: 84%;
}

.lines .line:nth-child(15) {
	left: 90%;
}

.lines .line:nth-child(16) {
	left: 96%;
}

.lines .line::after {
	content: "";
	display: block;
	position: absolute;
	height: 30px;
	width: 100%;
	top: 0%;
	left: 0;
	background: linear-gradient(to bottom, rgba(255, 217, 0, 0) 0%, #ffd900 75%, #ffd900 100%);
	animation: run 4s 0s infinite linear;
	animation-fill-mode: forwards;
}

.lines .line:nth-child(3n+1)::after {
	top: unset;
	animation: run 3s 0s infinite linear;
}

.lines .line-vertical {
	position: absolute;
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.1);
	z-index: -1;
}

.lines .line-vertical:nth-child(1) {
	top: 10%;
}

.lines .line-vertical:nth-child(2) {
	top: 20%;
}

.lines .line-vertical:nth-child(3) {
	top: 30%;
}

.lines .line-vertical:nth-child(4) {
	top: 40%;
}

.lines .line-vertical:nth-child(5) {
	top: 50%;
}

.lines .line-vertical:nth-child(6) {
	top: 60%;
}

.lines .line-vertical:nth-child(7) {
	top: 70%;
}

.lines .line-vertical:nth-child(8) {
	top: 80%;
}

.lines .line-vertical:nth-child(9) {
	top: 90%;
}

.lines .line-vertical:nth-child(10) {
	top: 100%;
}

@keyframes run {
	0% {
		top: 0%;
	}

	100% {
		top: 100%;
	}
}

.help {
	background: #303141;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid #09926a;
	position: sticky;
	top: 80px;
}

.help-txt {
	background: #222434;
	border: 1px solid #404250;
	border-radius: 16px;
	padding: 50px;
}

.help-txt h5 {
	margin-bottom: 16px;
	color: #dfe2e5;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 40px;
}

.help-txt h3 {
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 20px;
	color: #dfe2e5;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-weight: 600;
}

.help-txt h5 span,
.help-txt h3 span {
	color: #09926a;
	font-family: Chakra Petch, sans-serif;
}

.help-txt p {
	color: #fff;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.footer-card-area {
	position: relative;
	z-index: 1;
	border-right: 1px solid #09926a;
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.footer .footer-card-area::before,
.footer .footer-card-area::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	background: linear-gradient(188deg, rgba(9, 146, 106, 0.15) 5.73%, rgba(9, 146, 106, 0.00) 92.87%, rgba(9, 146, 106, 0.15) 92.87%);
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: -1;
}

.footer .footer-card-area::before {
	left: 0;
}

.footer .footer-card-area::after {
	right: 0;
	transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer .footer-card-area:hover::before {
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer .footer-card-area:hover::after {
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.py-lg-10 {
	padding-top: 2.5rem !important;
	padding-bottom: 2.5rem !important;
}

.mb-8 {
	margin-bottom: 2rem !important;
}

.social-links li {
	width: 40px;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgb(36, 40, 41);
	transition: all 0.5s ease;
}

.social-links li a i {
	font-size: 24px;
	line-height: 150%;
	color: #fff;
}

.social-links li:hover {
	background: #09926a;
}

.footer-title {
	font-weight: 900;
	display: block;
	font-size: 24px;
	line-height: 130%;
	color: #fff;
	font-family: Chakra Petch, sans-serif;
	padding: 0 15px;
}

.footer .footer-list li {
	padding: 0 15px;
}

.footer .footer-list li .footer-link {
	transition: all 0.5s ease;
	transform: translateX(-20px);
	color: rgb(181, 181, 181);
	font-size: 20px;
	font-family: Chakra Petch, sans-serif;
	font-weight: 600;
	text-transform: capitalize;
}

.footer .footer-list li .footer-link i {
	transition: all 0.5s ease;
	opacity: 0;
	margin-right: 5px;
}

.footer .footer-list li .footer-link:hover {
	color: #09926a;
	transform: translateX(0px);
}

.footer .footer-list li .footer-link:hover i {
	transform: translateX(0px);
	opacity: 1;
}

.boxes-inn {
	padding: 10px 5px;
	background: #000;
	border-radius: 12px;
	border: 1px solid #09926a;
}

.call-btn {
	margin: 10px 0;
}

.call-btn i {
	display: inline-block;
	background: #003d4d;
	text-align: center;
	color: #fff;
	font-size: 30px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
}

.call-btn span {
	margin-left: 5px;
}

.call-btn span small {
	font-size: 15px;
	border-bottom: 1px solid rgb(181, 181, 181);
	display: block;
	font-weight: 600;
	width: fit-content;
	color: rgb(181, 181, 181);
	font-family: Chakra Petch, sans-serif;
	font-weight: 600;
}

.call-btn span strong {
	font-size: 16px;
	font-weight: 600;
	color: rgb(181, 181, 181);
	word-break: break-word;
	font-family: Chakra Petch, sans-serif;
}

.call-btn:hover i {
	background-color: #09926a;
	border-color: #09926a;
	color: #fff;
}

.content-box {
	display: none;
}

.foot-last {
	background: #000;
	padding: 10px 0;
}

.foot-btm p {
	margin: 0;
	padding: 10px;
	text-align: center;
	font-size: 18px;
	font-family: Chakra Petch, sans-serif;
	font-weight: 600;
	color: #fff;
}

.foot-btm p a {
	position: relative;
	padding-bottom: 10px;
	color: #95c41a;
}

.foot-btm p a::after {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	background: #09926a;
	width: 0%;
	height: 1px;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.foot-btm p a:hover::after {
	width: 100%;
	left: 0;
}

.foot-btm p a:hover {
	color: #09926a;
}

.modal-body {
	background: #000;
	/*! height: 500px; */
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #09926a aliceblue;
}

.form-srt {
	text-align: left;
	padding: 0 20px;
	border-radius: 5px;
	border: 1px solid #09926a;
	background: #222434;
}

.form-srt h2 {
	line-height: 30px;
	color: #09926a;
	margin-bottom: 30px;
	border-bottom: 1px solid #09926a;
	width: fit-content;
	padding-bottom: 10px;
	text-transform: capitalize;
	font-weight: 700;
	font-size: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	font-family: Chakra Petch, sans-serif;
}

.form-group {
	margin-bottom: 1rem;
}

.form-srt .contactForm .form-control {
	border: none;
	background: #f4efeb;
	padding: 20px;
	height: 50px;
	box-shadow: none;
}

.get-in {
	text-align: center;
	margin: 0;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #09926a;
	background: #222434;
}

.get-in {}

.get-in h2 {
	margin-top: 20px;
	line-height: 30px;
	color: #09926a;
	margin-bottom: 20px;
	border-bottom: 1px solid #09926a;
	width: fit-content;
	padding-bottom: 10px;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-weight: 700;
	font-size: 40px;
	margin-left: auto;
	margin-right: auto;
}

.get-in ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.javacod ul {
	padding: 0 !important;
}

.get-in ul li {
	margin: 10px 0;
	font-size: 16px;
	display: block;
	border-bottom: 1px solid #09926a;
	padding-bottom: 10px;
	text-align: left;
}

.get-in ul li a {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	font-family: Chakra Petch, sans-serif;
	color: #fff;
	line-height: 30px;
}

.get-in ul li a i {
	color: #fff;
	font-size: 23px;
	height: 50px;
	width: 50px;
	box-shadow: 1px 1px 1px #000;
	text-align: center;
	line-height: 45px;
	margin-right: 10px;
	border-radius: 50px;
	border: 2px solid #056a4d;
	background: #09926a;
}

.get-in ul {
	list-style-type: none;
	margin: 0;
	padding: 0 10px;
}

.javacod ul li {
	border: none;
	padding: 0;
	margin: 0;
	font-weight: 600;
	margin-left: 5px;
	font-size: 18px;
	display: block;
	text-align: left;
	font-weight: 700;
	font-family: Chakra Petch, sans-serif;
	line-height: 30px;
}

.get-in ul li a:hover,
.get-in ul li a:hover ul li {
	color: #09926a;
	transition: .5s ease-in;
}

.get-in ul li a:hover i {
	background: #c8d9d4;
	color: #1b1b1b;
	box-shadow: 1px 1px 1px #09926a;
	border: 2px solid #1b1b1b;
	transition: .5s ease-in;
}

.form-srt .contactForm .form-control {
	border: none;
	background: #f4efeb;
	padding: 20px;
	height: 50px;
	box-shadow: none;
	font-size: 18px;
	font-weight: 700;
	font-family: Chakra Petch, sans-serif;
	color: #505050;
	line-height: 30px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

textarea.form-control {
	min-height: 140px !important;
}

.form-srt .contactForm .form-control:hover {
	background: #e754805c;
	border: 1px solid #09926a;
	background: #c8d9d4;
	border-radius: 5px;
}

.a-pd {
	padding: 5px 10px;
}

h1#exampleModalLabel,
h1#popup-modal-header {
	font-weight: 700;
	font-size: 25px;
	color: #09926a;
	font-family: Chakra Petch, sans-serif;
	text-transform: capitalize;
}

#exampleModal {
	padding-right: 0 !important;
	overflow: hidden;
}

.bg-chg-srt {
	font-size: 18px;
	font-weight: 600;
	border-radius: 4px;
	color: #fff;
	border-color: #09926a;
	font-family: Chakra Petch, sans-serif;
	padding: 10px 15px;
	background: #ff6a00;
	border: 1px solid #ff6a00;
}

.bg-chg-srt:hover {
	color: #FF6A00;
	background: transparent;
	border: 1px solid #FF6A00;
}

.bg-chg {
	font-size: 18px;
	font-weight: 600;
	border-radius: 4px;
	color: #09926a;
	border-color: #e75480;
	font-family: Chakra Petch, sans-serif;
	padding: 10px 15px;
	border: 1px solid #09926a;
}

.bg-chg:hover {
	color: #fff;
	background: #09926a;
}

.modal-content {
	border: 1px solid #09926a;
	background: #222434;
}

.close-btn-md i {
	font-size: 22px;
	color: #09926a;
}

.close-btn-md i:hover {
	color: #fff;
}

.mouse-follower span {
	z-index: 10;
	opacity: 1;
	top: -10px;
	left: -10px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	position: fixed;
	transition: 100ms ease-in-out;
	pointer-events: none;
}

.mouse-follower .cursor-outline {
	height: 30px;
	width: 30px;
	border: 1px solid #09926a;
}

.mouse-follower .cursor-dot {
	height: 6px;
	width: 6px;
	background: #09926a;
}

/* back to top button css starts */
#return-to-top {
    display:none!important;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgb(0, 0, 0);
	background: #09926a;
	width: 50px;
	height: 50px;
	display: block;
	text-decoration: none;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	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: 999;
}

#return-to-top i {
	color: #fff;
	margin: 0;
	position: relative;
	left: 16px;
	top: 13px;
	font-size: 19px;
	-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 {
	background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
	color: #fff;
	top: 5px;
}

header.sticky .brand-img {
	background: #000;
	border-radius: 0 0 35px 35px;
	padding: 5px;
}

/* inner page css */
.bread-sec {
	background-image: url(../img/prop-bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 300px;
	padding: 150px 0 75px;
}

.bread h1 {
	text-transform: capitalize;
	font-weight: 600;
	margin: 0;
	font-family: "Chakra Petch", sans-serif;
	font-size: 50px;
	text-shadow: 0px 1px 1px #003d4d;
	color: #fff;
}

.btn-txt {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn-txt a {
	min-width: 150px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 4px;
	color: #fff;
	font-family: Chakra Petch, sans-serif;
	padding: 10px 15px;
	background: #e84504;
	border: 1px solid #e84504;
	text-align: center;
}

.btn-txt a:hover {
	color: #e84504;
	background: transparent;
	border: 1px solid #e84504;
}

.btn-txt a i {
	margin-right: 10px;
}

.btn-txt p {
	font-size: 15px;
	font-weight: 500;
	line-height: 30px;
}

.inner-data {
	padding: 50px 20px;
	background: #222434;
}

.inner-data.bg-overlay::after {
	width: 20px;
	left: unset;
	animation: TravelUpDown 5s linear infinite alternate;
	right: 10%;
}

.first-accor,
.tab-camp,
.new-cont {
	padding: 20px;
	background: #000;
	border-radius: 4px;
	margin: 20px 0;
	border: 1px solid #09926a;
}
.tab-camp, .new-cont, .first-accor{
    border-color: #f4a91d;
}
.accordion-item {
	border: none;
}

.accordion-button {
  box-shadow: none;
  font-family: Chakra Petch, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  border-radius: .25rem !important;
  background: #fdfaf9;
  border: 1px solid #e84504;
  color: #e84504;
}

.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "\f078";
	background-image: unset;
	background-repeat: unset;
	background-size: unset;
	transition: transform .2s ease-in-out;
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
}

.accordion-button:not(.collapsed)::after {
	background-image: unset;
	background-repeat: unset;
	background-size: unset;
}

.accordion-button:not(.collapsed) {
	background: #e84504;
	border: 1px solid #e84504;
	color: #fff;
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
	border: 1px solid #e84504;
}

.nav-pills .nav-link {
	background: 0 0;
	border: 0;
	border-radius: .25rem;
	background: #fdfaf9;
	border: 1px solid #e84504;
	color: #e84504;
	box-shadow: none;
	margin: 5px;
	font-family: Chakra Petch, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.nav-fill .nav-item .nav-link {
	width: auto;
}

.nav-pills .nav-link.active {
	background: #e84504;
	border: 1px solid #e84504;
	color: #fff;
	box-shadow: none;
	width: auto;
}

.tab-content {
	padding: 1rem 1.25rem;
	background: #fff;
	width: 100%;
	/* min-height: 127px;
	max-height: 127px;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #09926a #003d4d; */
	border-radius: .25rem;
}

.new-form-deta {
	margin-bottom: 1rem;
}
.new-form-deta label{
  margin: 7px auto;
  display: block;
  text-align: center;
}
.new-form-deta .form-control {
	border: none;
	background: #f4efeb;
	padding: 20px;
	height: 50px;
	box-shadow: none;
	font-size: 17px;
	font-weight: 600;
	font-family: Chakra Petch, sans-serif;
	color: #505050;
	line-height: 30px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.new-form-deta .form-control:hover,
.new-form-deta .form-control:hover::placeholder {
	background: #ddece8;
	border: 1px solid #09926a;
	color: #09926a;
	border-radius: 5px;
	background: #fdfaf9;
	border: 1px solid #e84504;
	color: #e84504;
}

.new-form-deta select {
	background: #f4efeb;
	padding: 12px;
	height: 50px;
	box-shadow: none;
	font-size: 17px;
	font-weight: 600;
	font-family: Chakra Petch, sans-serif;
	color: #505050;
	line-height: 30px;
	border: 1px solid #ddd;
	border-radius: 5px;
	width: 100%;
}

.new-form-deta select:hover {
  background: #fdfaf9;
  border: 1px solid #e84504;
  color: #e84504;
  border-radius: 5px;
}

.inner-data .video-bg-circle {
	background-image: none;
}

.game-box {
	border-bottom: 1px solid #09926a;
	margin: 20px 0;
	padding: 20px 0;
}

.game-cont {
	background: #000;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #09926a;
	position: relative;
}

.game-cont h1 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.041em;
	margin: 14px 0;
	padding-bottom: 25px;
	position: relative;
	text-align: left;
}

.game-cont h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0;
}

.cricle-image {
	width: 350px;
	border-radius: 50%;
	height: 350px;
	object-fit: cover;
}

.game-cont h5 {
	color: #0efead;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 30px;
}

.game-cont p {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
}

.game-box .game-cont::before,
.game-box .game-cont::after {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	background: linear-gradient(188deg, rgba(9, 146, 106, 0.15) 5.73%, rgba(9, 146, 106, 0.00) 92.87%, rgba(9, 146, 106, 0.15) 92.87%);
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: -1;
}

.game-box .game-cont::before {
	left: 0;
}

.game-box .game-cont::after {
	right: 0;
	transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.game-box .game-cont:hover::before {
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.game-box .game-cont:hover::after {
	width: 100%;
	transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.call-new {
	background: #000;
	padding: 50px;
	border-radius: 12px;
	border: 1px solid #09926a;
	margin: 10px 0;
}

.help-cst-mar {
	margin: 10px 0;
}

.call-new.bg-overlay::after {
	right: 12% !important;
	left: unset !important;
}

.call-new h5 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.041em;
	margin: 14px 0;
	padding-bottom: 25px;
	position: relative;
	text-align: center;
}

.call-new h5::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0 auto;
}

.call-new p {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
}

.help-txt h3 {
	margin-bottom: 16px;
	color: #dfe2e5;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 40px;
}

.crt-new-sec-ag {
	text-align: center;
	padding: 20px;
}

.help-txt h6 {
	margin-bottom: 16px;
	color: #dfe2e5;
	text-transform: capitalize;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 40px;
	text-align: left;
}

.video-frame {
	background: #000;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #09926a;
	position: relative;
	height: 450px;
	margin: 10px 0;
}

.video-frame iframe {
	width: 100%;
	height: 100%;
}

.title-all-video {
	text-align: center;
	margin-bottom: 30px;
}

.title-all-video h2 {
	text-transform: capitalize;
	font-weight: 600;
	margin: 0;
	font-family: "Chakra Petch", sans-serif;
	font-size: 50px;
	text-shadow: 0px 1px 1px #003d4d;
	color: #fff;
	padding-bottom: 10px;
}

.vir-frame {
	width: 100%;
	height: 300px;
	margin-bottom: 15px;
	background: #303141;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid #09926a;
}

.vir-frame iframe {
	width: 100%;
	height: 100%;
	background: #222434;
	border: 1px solid #404250;
	border-radius: 10px;
}

.gallery-image,
.party-image {
	overflow: hidden;
	position: relative;
	background: #000;
	border-radius: 5px;
	border: 1px solid #09926a;
	padding: 10px;
	margin: 10px 0;
}

.gallery-image img {
	width: 100%;
	height: 225px;
	object-fit: cover;
}

.party-image img {
	width: 100%;
}

.gallery-image .gallery-overlay,
.party-image .gallery-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(3, 126, 89, 0.7);
	left: 0;
	top: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all linear .3s;
	-o-transition: all linear .3s;
	transition: all linear .3s;
}

.gallery-image .gallery-overlay a,
.party-image .gallery-overlay a {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.gallery-image .gallery-overlay a i {
	font-size: 25px;
	color: white;
	background: #222434;
	padding: 10px;
	border-radius: 50%;
	opacity: 0.8;
	border: 1px solid #09926a;
	transition: .5s;
}

.party-image .gallery-overlay a i {
	font-size: 25px;
	color: white;
	background: #222434;
	padding: 10px;
	border-radius: 50%;
	opacity: 0.8;
	border: 1px solid #09926a;
	transition: .5s;
	width: 55px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-image:hover .gallery-overlay,
.party-image:hover .gallery-overlay {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.gallery-image .gallery-overlay a:hover i,
.party-image .gallery-overlay a:hover i {
	color: #09926a;
	border: 1px solid #09926a;
}

.price-table.table-one {
	padding: 20px;
	background: #000;
	border-radius: 5px;
	border: 1px solid #09926a;
}

.price-table {
	margin: 15px 0;
}

.price-table p {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
}

.price-table.table-two {
	padding: 20px;
	background: #09926a;
	border-radius: 5px;
	border: 1px solid #000;
}

.position-sticky-set {
	position: sticky;
	top: 80px;
}

.price-table h3 {
	color: #fff;
	position: relative;
	padding-bottom: 25px;
	font-family: Chakra Petch, sans-serif;
	font-size: 30px;
	font-weight: 600;
}

.price-table h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
}

.price-table ul li {
	color: #dfe2e5;
	margin: 10px 0;
	display: flex;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	border-bottom: 2px solid #09926a;
	padding-bottom: 10px;
}

.price-table ul li i {
	margin-right: 10px;
	background: #09926a;
	padding: 5px;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: grid;
	align-items: center;
	justify-content: center;
}

.price-table.table-two ul li {
	border-bottom: 2px solid #000;
}

.price-table.table-two ul li i {
	background: #000;
}

.bg-crt {
	padding: 20px;
	background: #000;
	border-radius: 5px;
	border: 1px solid #09926a;
}

.bg-crt.bg-overlay::after {
	right: 12% !important;
	left: unset !important;
}

.game-list {
	border-radius: 5px;
	border: 2px solid #09926a;
	background: #000;
	padding: 5px;
}

.game-list img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	max-width: 100% !important;
	margin: 0 !important;
}

.game-list h2 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	padding: 8px;
	text-align: center;
	background: #09926a;
	margin: 10px 10px 5px;
	border-radius: 5px;
	font-weight: 600;
}

.game-title h2 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.041em;
	margin: 14px 0 25px;
	padding-bottom: 25px;
	position: relative;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.game-title h2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0 auto;
}

.help-txt hr {
	margin: 10px;
	width: 100%;
	height: 2px;
	background: #09926a;
}

.policy-txt {
	background: #000;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #09926a;
	position: relative;
}

.policy-txt h2 {
	color: #fff;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.041em;
	margin: 14px 0;
	padding-bottom: 25px;
	position: relative;
	text-align: left;
	padding-top: 10px;
}

.policy-txt h2::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	margin: 0;
}

.policy-txt p {
	font-family: 'Poppins', sans-serif;
	color: #fff;
	font-size: 15px;
	line-height: 30px;
	font-weight: 500;
}

.policy-txt h6 {
	color: #0efead;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: Chakra Petch, sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 30px;
}

.policy-txt ul li {
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 30px;
	font-weight: 500;
	margin: 10px 0;
}

body.modal-open {
	padding: 0 !important;
}

.faq-txt p {
	font-family: 'Poppins', sans-serif;
	color: #000;
	font-size: 15px;
	line-height: 30px;
	font-weight: 500;
}

.hvr-srt {
	position: relative;
	padding-bottom: 5px;
}

.hvr-srt::after {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
	background: #09926a;
	width: 0%;
	height: 2px;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.hvr-srt:hover {
	color: #09926a;
}

.hvr-srt:hover::after {
	width: 100%;
	left: 0;
}

.create-design {
	padding: 20px;
	background: #000;
	border-radius: 5px;
	border: 1px solid #09926a;
	margin: 15px 0;
}

.create-design h3 {
	color: #fff;
	position: relative;
	padding-bottom: 25px;
	font-family: Chakra Petch, sans-serif;
	font-size: 30px;
	font-weight: 600;
}

.create-design p {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
}

.create-design h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 270px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
}

.create-design ul {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -.5);
	margin-left: calc(var(--bs-gutter-x) * -.5);
}

.create-design ul li {
	color: #dfe2e5;
	display: flex;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	border-bottom: 2px solid #09926a;
	padding-bottom: 10px;
	flex: 0 0 auto;
	width: 48%;
	margin: 10px;
}

.create-design ul li i {
	margin-right: 10px;
	background: rgb(9, 146, 106);
	padding: 5px;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: grid;
	align-items: center;
	justify-content: center;
}

.rew-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.content {
	width: 32%;
	font-size: 24px;
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	max-width: 32%;
	display: none;
	margin: 12px 7px;
	padding: 20px;
	background: #000;
	border-radius: 5px;
	border: 1px solid #09926a;
}

.content:nth-of-type(even) {
	background: #09926a;
	border: 1px solid #000;
	position: relative;
}
.content:nth-of-type(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  opacity: 0.3;
}
.img-txt {
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}

.img-txt img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	background-color: #fff;
	float: left;
	margin-right: 10px;
}

.img-txt h5 {
	display: flex;
	height: 60px;
	align-items: center;
	line-height: 18px;
	color: #fff;
	position: relative;
	font-family: Chakra Petch, sans-serif;
	font-size: 22px;
	font-weight: 600;
	justify-content: center;
	padding-bottom: 10px;
	margin-bottom: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.img-txt h5::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url(../img/brbt.png);
	width: 180px;
	height: 13px;
	background-repeat: no-repeat;
	right: 0;
	background-size: 100%;
	margin: 0 auto;
}

.rew-txt {
	height: 150px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0), #0d1017 5rem);
}

.rew-txt ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.rew-txt ul li {
	display: inline-block;
	color: #ffc82a;
	font-size: 14px;
	margin: 2px;
}

.rew-txt p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
	margin: 0;
}

.content a.readmore-btn {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 0px;
	position: relative;
	-webkit-transition: color .4s ease-in-out;
	transition: color .4s ease-in-out;
	color: #ffd900;
	display: inline-block;
	padding-bottom: 2px;
	overflow: hidden;
}

.content a.readmore-btn:hover {
	color: #fff;
}

.content a.readmore-btn::before,
.content a.readmore-btn::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	height: 1px;
	transition: all .6s cubic-bezier(.68, -.55, .265, 1.55);
}

.content a.readmore-btn::before {
	right: 0;
	background-color: #ffd900;
}

.content a.readmore-btn::after {
	left: 0;
	background-color: #fff;
	transform: translateX(-150%);
}

.content a.readmore-btn:hover::before {
	transform: translateX(150%);
}

.content a.readmore-btn:hover::after {
	transform: translateX(0);
}

.content.showContent .rew-txt {
	height: auto;
	display: contents;
}

#loadMore {
	width: 200px;
	color: #fff;
	display: block;
	text-align: center;
	margin: 20px auto;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid transparent;
	background-color: #09926a;
	transition: .3s;
	font-weight: 600;
	font-size: 16px;
}

#loadMore:hover {
	color: #09926a;
	background-color: #e1e1e1;
	border: 1px solid #09926a;
	text-decoration: none;
}

#loadMore.noContent {
	background: none;
	border: none;
	color: #09926a;
	cursor: default;
}
.my-d-flex{
    display: flex;
}
.dateselectpick {
  width: 100%;
}



.modal-header, .modal-footer{
  padding: .5rem 1rem;
}
textarea.form-control {
  min-height: 100px !important;
}
.no-cap ul {
  display: flex;
  align-items: center;
margin-bottom: 1rem;
}
.no-cap ul li {
  list-style: none;
  margin: 0 5px;
  color: #09926a;
  font-family: Chakra Petch, sans-serif;
  font-weight: 700;
  font-size: 25px;
}
.modal-body {
  background: #000;
  max-height: 450px;
  scrollbar-width: thin;
  scrollbar-color: #09926a aliceblue;
}
.new-form-deta h2{
    text-align: center;
}
.error-msgs-show{
  color: #09926a;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@media (max-width:768px) {
.modal-body {
  max-height: 650px;
}
}
@media (min-width: 250px) and (max-width: 390px){
     .banner-carousel, .banner-carousel .slide-item {
    height: 225px;
  }
     .navbar .navbar__left, .brand {
width: 100%;
}
.header-inner-pages .brand-img {
margin: auto;
}
.brand-img {
  width: 250px !important;
}
.burger .burger-line {
    background: #fff;
  }
  .cont-num a{
      font-size: 35px;
  }
  .inter-deta h2{
      font-size: 38px;
  }
  .lft-txt h1, .feat-txt h2 {
    font-size: 40px;
  }
  .title-all-video h2 {
    text-align: center;
    font-size: 25px;
  }
  .cmn-btn{
      padding: 20px 25px;
  }
  .accordion-button, .accordion-button:not(.collapsed){
      font-size: 20px;
  }
  .game-cont h1{
      font-size: 20px;
      line-height: 30px;
  }
  .game-cont h5{
      font-size: 18px;
      line-height: 30px;
  }
  .call-new h5{
      font-size: 20px;
      line-height: 30px;
  }
  .ui-datepicker{
        width: 100% !important;
    }
    .slecttimec ul li .bg-chg-srt {
    padding: 8px 5px;
    font-size: 11px;
  }
  
 }
 
 @media (min-width: 391px) and (max-width: 768px){
 .banner-carousel, .banner-carousel .slide-item{
        height: 250px;
    }
}
/* inner page css ends */
@media (min-width: 391px) and (max-width: 768px) {

	.burger {
		height: 50px;
	}

	.burger .burger-line {
		background: #fff;
	}

	.banner-carousel,
	.banner-carousel .slide-item {
		height: 325px;
	}

	.banner-sec .slide-item {
		padding: 50px 0;
	}

	.banner-carousel .slide-item:before {
		opacity: 0;
	}

	.shape-area,
	.circle-area,
	.mouse-follower {
		display: none;
	}

	.int-pad {
		padding: 50px 0;
	}

	.inter-deta h2 {
		font-size: 50px;
		line-height: 1.041em;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: black;
		text-align: left;
	}

	.cont-num a {
		font-size: 43px;
		line-height: 50px;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: black;
		border-bottom: 2px solid #95c41a;
	}

	.cont-num a:hover {
		color: #fff;
		border-bottom: 2px solid #fff;
	}

	.loc-ser P {
		text-align: left;
		line-height: 40px;
	}

	.video-sec {
		width: 100%;
		float: unset;
		margin-right: unset;
		margin-bottom: 15px;
	}

	.txt-sec h2::before {
		left: 0;
	}

	.set-bg-ag {
		padding: 30px 10px;
	}

	.lft-txt h1,
	.feat-txt h2 {
		font-size: 50px;
	}

	.lft-txt h3,
	.lft-txt ul li,
	.feat-txt ul li {
		font-size: 20px;
		line-height: 30px;
		margin: 15px 0;
	}

	.right-img {
		text-align: center;
	}

	#reviews-slider .item {
		padding: 20px 20px 0;
	}

	.help {
		margin: 10px 0;
	}

	.help-txt {
		padding: 25px;
	}

	.help-txt h5 {
		font-size: 40px;
		font-weight: 600;
		line-height: 50px;
	}

	.footer-card-area {
		padding: 1rem 0 !important;
		border-bottom: 1px solid #09926a;
		border-right: unset;
	}

	.boxes-inn {
		margin: 0 15px;
	}

	.call-btn span {
		margin-left: 15px;
	}

	.call-btn span small {
		font-size: 17px;
	}

	.call-btn span strong {
		font-size: 18px;
	}

	.get-in {
		margin: 15px 0;
	}

	.form-srt h2,
	.get-in h2 {
		font-size: 35px;
	}

	.get-in ul li a {
		line-height: unset;
		word-break: break-all;
	}

	.contactForm .modal-body {
		padding: 1rem 0px;
		height: 650px;
	}

	h1#popup-modal-header {
		font-size: 20px;
	}

	.modal-footer {
		padding: .20rem;
	}

	.bg-chg-srt {
		padding: 8px 16px;
	}

	.btn-txt {
		display: block;
	}

	.bread-sec {
		height: 275px;
		padding: 150px 0 80px;
	}

	.inner-data {
		padding: 80px 0;
	}

	.call-new {
		padding: 50px 20px;
	}

	.first-accor,
	.tab-camp,
	.new-cont {
		padding: 20px 10px;
	}

	.bread h1 {
		font-size: 32px;
	}

	.policy-txt h2 {
		line-height: 40px;
	}


	.title-all-video h2 {
		text-align: center;
		font-size: 30px;
	}

	.title-all-video img {
		margin: auto;
		display: block;
	}

	.mob-over,
	.sec-ag {
		overflow: hidden;
	}

	.create-design ul li {
		flex: unset;
		width: 100%;
	}

	.content {
		width: 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.my-d-flex {
      display: block;
    }
    .my-d-flex #v-pills-tab{
        margin-right: 0 !important;
    }
    .my-d-flex .tab-content{
        padding: 1rem .5rem;
    }
    .ui-datepicker{
        width: 100% !important;
    }
    .new-form-deta h2{
        margin-bottom: 20px;
    }
    .dateselectpick {
      width: 100%;
      text-align: left;
    }

}

 @media (min-width: 769px) and (max-width: 999px){
 .banner-carousel, .banner-carousel .slide-item{
        height: 400px;
    }
}
@media (min-width: 769px) and (max-width: 999px) {
    
	.content {
		width: 47%;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
		max-width: 47%;
	}
	.inner-data .col-md-8, .int-pad .col-md-10, .video-bg-circle .col-md-4, .video-bg-circle .col-md-7, .sec-ag .col-md-8, .sec-ag .col-md-4, .game-box .col-md-7, .game-box .col-md-4, .quote-modal .col-md-7, .quote-modal .col-md-5, .pack-ag .col-md-4, .video-set .col-md-8, .video-set .col-md-4, .mob-over .col-md-8, .mob-over .col-md-4, .new-cont .col-md-5, .new-cont .col-md-6{
	    width: 100%;
	}
	.inner-data {
      padding: 80px 20px 50px;
    }
	.modal-dialog{
	    max-width: 90%;
	}
	.cmn-btn{
	    padding: 20px 20px;
	    font-size: 17px;
	}
	.video-sec {
    width: 100%;
    float: unset;
    margin-right: unset;
    margin-bottom: 15px;
  }
  .txt-sec h2::before {
    left: 0;
  }
  .inner-data, .sec-ag{
      overflow: hidden;
  }
  .help, .hasDatepicker{
      margin-top: 20px;
  }
  .gallery-set-res .col-md-4, .pdf-sec-ag-nw .col-md-3{
      width: 50%;
  }
  .my-cstm-div-wid{
      width: 50% !important;
  }
  .create-design ul li{
      flex: unset;
      width: 100%;
  }
  .ui-datepicker-inline{
      margin: auto;
  }
    .dateselectpick {
      width: 100%;
      text-align: left;
    }
    .mouse-follower, .banner-carousel .slide-item::before {
		display: none;
	}
	.new-form-deta h2{
	    text-align: center;
	}
	.btn-txt {
      display: block;
    }
    .btn-txt a{
        display: block;
        width: fit-content;
    }
    .get-in{
        margin-top: 20px;
    }
}


@media (min-width: 1000px) and (max-width: 1350px) {
    .brand-img {
      width: 270px;
    }
   .banner-carousel, .banner-carousel .slide-item{
        height: 400px;
    }
	.content {
		width: 47%;
		-ms-flex: 0 0 47%;
		flex: 0 0 47%;
		max-width: 47%;
	}
	.inner-data .col-md-8, .int-pad .col-md-10, .video-bg-circle .col-md-4, .video-bg-circle .col-md-7, .sec-ag .col-md-8, .sec-ag .col-md-4, .game-box .col-md-7, .game-box .col-md-4, .quote-modal .col-md-7, .quote-modal .col-md-5, .pack-ag .col-md-4, .video-set .col-md-8, .video-set .col-md-4, .mob-over .col-md-8, .mob-over .col-md-4, .new-cont .col-md-5, .new-cont .col-md-6{
	    width: 100%;
	}
	.inner-data {
      padding: 80px 20px 50px;
    }
	.cmn-btn{
	    padding: 20px 20px;
	    font-size: 17px;
	}
	.video-sec {
    width: 100%;
    float: unset;
    margin-right: unset;
    margin-bottom: 15px;
  }
  .txt-sec h2::before {
    left: 0;
  }
  .inner-data, .sec-ag{
      overflow: hidden;
  }
  .help, .hasDatepicker{
      margin-top: 20px;
  }
  .gallery-set-res .col-md-4, .pdf-sec-ag-nw .col-md-3{
      width: 50%;
  }
  .my-cstm-div-wid{
      width: 50% !important;
  }
  .create-design ul li{
      flex: unset;
      width: 100%;
  }
  .ui-datepicker-inline{
      margin: auto;
  }
    .dateselectpick {
      width: 100%;
      text-align: left;
    }
    .mouse-follower, .banner-carousel .slide-item::before {
		display: none;
	}
	.new-form-deta h2{
	    text-align: center;
	}
	.btn-txt {
      display: block;
    }
    .btn-txt a{
        display: block;
        width: fit-content;
    }
    .get-in{
        margin-top: 20px;
    }
}
.top-set-sec h3 {
  text-transform: capitalize;
}
.spamcheck {
display:none!important;    
}
span.validate  {
color:#de4040;
padding-left:8px;
font-style:italic;
font-weight:bold;
}

.gallery-image h2 {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: Chakra Petch, sans-serif;
  font-size: 20px;
  padding: 8px;
  text-align: center;
  background: #09926a;
  margin: 10px 10px 5px;
  border-radius: 5px;
  font-weight: 600;
}
.fancybox-caption__body {
  max-height:50vh;
  overflow:auto;
  pointer-events:all;
  width: fit-content;
  margin: auto;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: Chakra Petch, sans-serif;
  font-size: 20px;
  padding: 8px;
  text-align: center;
  background: #09926a;
  border-radius: 5px;
  font-weight: 600;
}
.fancybox-image{
  background: #09926a;
  padding: 5px;
  border: 1px solid #000;
  border-radius: 4px;
}
.slecttimec ul{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.slecttimec ul li{
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
  margin: 5px;
}



@media (max-width: 768px){
   .slecttimec ul li{
      -ms-flex: 0 0 45%;
      flex: 0 0 45%;
      max-width: 45%;
      margin: 5px;
    }
   .slecttimec ul li .bg-chg-srt {
        padding: 8px 10px;
        font-size: 14px;
      }
}