
/* Font Family ***********************************************************************/
@font-face {
  font-family: "Livvic-Regular";
  src: url("../fonts/Livvic/Livvic-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Livvic-Medium";
  src: url("../fonts/Livvic/Livvic-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Livvic-SemiBold";
  src: url("../fonts/Livvic/Livvic-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Livvic-Bold";
  src: url("../fonts/Livvic/Livvic-Bold.ttf");
  font-display: swap;
}

:root {
  --black: #000000;
  --grey:#d3d3d3;
  --white: #FFFFFF;
  --golden: #d6ac57;
  --white-smoke:#f6f6fa;
  --hunter-green: #163c0d;
  --saffron-mango: #f2c94c;
  --deep-green: #075414;
}

/* Common class Start ****************************************************************/

.gradient-text {
  background: linear-gradient(to top right , var(--saffron-mango), var(--deep-green));  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
.white {
  color: var(--white);
}
.black {
  color: var(--black);
}

.x-small {
  font-size: 10px;
}
.small {
  font-size: 12px;
}

.b-radius {
  border-radius: 10px;
}


/* Common class End ******************************************************************/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
body {
  background: var(--hunter-green);
  font-family: "Livvic-Medium";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  /* font-weight: 700; */
  line-height: 1.1;
  color: var(--black);
  font-family: "Livvic-Bold";
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 34px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--black);
  font-family: "Livvic-Regular";
}
p:last-child {
  margin-bottom: 0;
}
ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  transition: all .5s ease;
  font-family: inherit;
}
span {
  display: inline-block;
}
img, video {
  max-width: 100%;
}

.cmn-btn {
	font-size: 18px;
	padding: 12px 24px;
	color: var(--white);
	border-radius: 50px;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(270deg, #efb847, #c1a237, #075414);
  	background-size: 300% 300%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  	animation: goldGreenFlow 4s ease-in-out infinite;
}
.cmn-btn:hover{
	transform: scale(1.05);
  	box-shadow: 0 6px 18px rgba(242, 201, 76, 0.4);
}
@keyframes goldGreenFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cmn-btn img {
  max-width: 26px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  /* gap: 15px; */
}

.owl-theme .owl-dots .owl-dot span {
  background: #6d6d6d;
}
.owl-theme .owl-nav i {
  color: var(--black);
  background-color: var(--white);
  padding: 10px 15px;
  border-radius: 7px;
  font-size: 20px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: linear-gradient(270deg, #efb847, #c1a237, #075414);
  	outline-offset: 3px;
}
.owl-nav { margin-top: 0; }
.owl-nav button { position: absolute; top: 50%; transform: translateY(-50%); }
.owl-nav button.owl-prev { left: 0; }
.owl-nav button.owl-next { right: 0; }

.form-control-common {
	font-size: 20px;
	color: var(--black);
	background: var(--white);
	padding: 15px 50px 15px 20px;
	width: 100%;
	appearance: textfield;
	box-shadow: none;
	resize: none;
  	border: 0;
  	outline: none;
}
.form-control-common:focus{
	box-shadow: none;
}
.input-group {
  padding-bottom: 20px;
}
.form-control-common::placeholder {
  color: #999;
}

.form-control-common::-webkit-input-placeholder {
  color: #999;
}
.form-control-common::-moz-placeholder {
  color: #999;
}

b, strong{
  font-family: "Livvic-Bold";
}

.white-smoke-bg{
	background-color: var(--white-smoke);
}

/* header css start **********************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header {
  padding: 10px 0;
  background: var(--hunter-green);
  transition: 0.5s all;
  position: relative;
}
#header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5);
  background-color: var(--white-smoke);
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 150px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  border-radius: 5px;
  position: relative;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  padding-top: 0;
  margin-left: 40px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 24px;
}
#header .main-nav nav ul li a {
  font-size: 18px;
  color: var(--white);
  padding: 5px 5px;
  transition: all 0.5s;
}
#header.sticky .main-nav nav ul li a{
	color: var(--black);
}

#header .social-bx ul li a,
#footer .social-bx ul li a {
	width: 40px;
	height: 40px;
	background: -webkit-linear-gradient(270deg, var(--saffron-mango), var(--deep-green)); 
	background: -moz-linear-gradient(270deg, var(--saffron-mango), var(--deep-green));    
	background: -o-linear-gradient(270deg, var(--saffron-mango), var(--deep-green));   
	background: linear-gradient(270deg, var(--saffron-mango), var(--deep-green));      
	box-shadow: 0 20px 30px -6px rgba(16, 3, 13, 0.5);
	text-align: center;
	padding: 10px 10px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#header .social-bx ul li a i,
#footer .social-bx ul li a i {
  font-size: 18px;
  color: var(--white);
}
#header .social-bx ul li a:hover i,
#footer .social-bx ul li a:hover i {
    animation: slide 1s ease;
}
@keyframes slide{
	0%{
		transform: translateX(0);
	}
	50%{
		transform: translateX(20px);
		opacity: 0;
	}
	51%{
		transform: translateX(-20px);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
	}
}

/* homeBanner css ***************************************************************************/
#home-banner {
    padding: 0;
    margin-top: -105px;
}
.home-banner-part {
    padding: 180px 0 100px;
    background: var(--hunter-green);
}
#home-banner .section-heading {
  text-align: left;
}
#home-banner .box .image-bx img {
  width: 100%;
  max-width: 95%;
}

#home-banner .box .section-heading {
  padding-left: 20px;
  margin-bottom: 20px;
}
#home-banner .box .button-box ul li, .about-box-main .button-box ul li{
  margin-bottom: 20px;
}

.features-section{
    background-color: var(--white-smoke);
}

.game-slider-section{
    background-color: var(--hunter-green);
}

/* section css ******************************************************************************/
.process_section {
    padding: 60px 0;
    color: var(--white);
	background-color: var(--white-smoke);
}

/* about-section css ******************************************************************************/
.about-section{
	background-color: var(--hunter-green);
}


.step {
    background: -webkit-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: -moz-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: -o-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
	margin-bottom: 20px;
	position: relative;
	margin: 0 50px 20px;
}
.before_arrow::before {
    position: absolute;
    left: -100px;
    top: 50%;
    content: '';
    width: 64px;
    height: 64px;
	background-image: url(../images/right-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
    transform: translateY(-50%);
}

.step:hover {
  transform: translateY(-10px);
}
.step-number {
  background: var(--hunter-green);
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.step-desc, .step-title {
  color: var(--white);
}


/* features-section css ******************************************************************************/

.features-section .controlbox{
  	padding: 30px;
    background: -webkit-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: -moz-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: -o-linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    background: linear-gradient(145deg, var(--saffron-mango), var(--deep-green));
    border-radius: 20px;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.features-section .controlbox .info{
  text-align: center;
}
.features-section .controlbox .info p, .features-section .controlbox .info h6{
	color: var(--white);
}
.features-section .controlbox .info img {
    margin-bottom: 20px;
	max-width: 100px;
	width: 100%;
}



/* game-slider-section css ******************************************************************************/
.slider-img-block {
  margin-bottom: 30px;
}



.heading-wrapper {
  padding: 80px 0 50px;
}
.heading-wrapper .section-heading{
  margin-bottom: 20px;
}
.heading-wrapper .section-heading h1 {
  text-transform: uppercase;
}
.middle-content-section .inner-page-content p,
.middle-content-section .inner-page-content ul li {
  color: var(--white);
}
.middle-content-section .inner-page-content ul li {
  font-size: 18px;
  line-height: 1.3;
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 10px;
}
.middle-content-section .inner-page-content p,
.middle-content-section .inner-page-content ul  {
  margin-bottom: 30px;
}

.get-in-touch-section.contact-get-in-touch .email-contact-info p a,
.get-in-touch-section.contact-get-in-touch .address p {
  color: var(--white);
}
.get-in-touch-section .email-contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.get-in-touch-section .email-contact-info p i{
	margin-right: 10px;
    color: var(--golden);
}
.get-in-touch-section .email-contact-info p {
    margin-bottom: 0;
    margin-right: 40px;
}
.get-in-touch-section .address {
    margin-bottom: 20px;
}

.get-in-touch-section{
    background: var(--hunter-green);
}
.middle-content-section {
    background-color: var(--hunter-green);
}

/* support-form */
.support-form label{
	color: var(--white);
}
.support-form{
  padding: 20px 0;
}
.map iframe {
    min-height: 450px;
    border: 10px solid #ffffff2b !important;
}

.how-to-play .result-image-bx img {
    margin: 20px 10px 30px 10px;
    max-width: 60%;
    width: 100%;
}
.middle-content-section .inner-page-content h6,
.how-to-play p b {
    color: var(--golden);
}


/* footer css ******************************************************************************/
#footer {
  padding: 80px 0 20px;
  border-top: 2px solid var(--black1);
}
#footer .top-box .logo-box img {
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
}
#footer .top-box .list-box a,
.mail-link{
  text-transform: lowercase;
    font-family: "Livvic-Medium";
}
#footer .address p {
    font-family: "Livvic-Medium";
}
#footer .top-box .quick-links-col {
  width: 20%;
}
#footer .top-box .contact-col {
  width: 30%;
}
#footer .top-box .box.box3 .list-box p {
  margin-bottom: 10px;
}
#footer .end-box {
  padding: 30px 0 0;
  margin-top: 30px;
  border-top: 1px solid var(--grey);
}
#footer .end-box p,
#footer .top-box .box.box3 .list-box p{
  font-size: 15px;
}
#footer .end-box .link-box ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.footer_copyright_menu li{
  position: relative;
  padding: 0 10px;
  line-height: 20px;
}
.footer_copyright_menu a:hover,
#footer .top-box .list-box a:hover,
#header .main-nav nav ul li a:hover,
#header .main-nav nav ul li a.active,
.get-in-touch-section .email-contact-info p a:hover,
.mail-link:hover {
  color: var(--golden);
}
.footer_copyright_menu li a::before {
  content: "";
  background: var(--black);
  width: 1px;
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.footer_copyright_menu li:last-child a::before{
  content: none;
}
#footer .top-box .list-box .footer_menu a{
  text-transform: capitalize; 
}
#footer{
	background-color: var(--white-smoke);
}
.get-in-touch-section.contact-get-in-touch .email-contact-info .mail-link {
    font-family: "Livvic-Regular";
}