/* Font Family ***********************************************************************/
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
  font-display: swap;
}

:root {
  --white: #FFFFFF;
  --black: #000000;
  --Saffron-mango: #FFE788;
  --gray: #F0F0F0;
}

/* Common class Start ****************************************************************/
.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;
}

/* 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;
}
.common::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
body {
  background: #FFFFFF;
  font-family: "Poppins-Regular";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--black);
}
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: 30px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 21px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 15px;
}
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;
  font-family: inherit;
}
span {
  display: inline-block;
}
img, video {
  max-width: 100%;
}
.btn:hover {
  color: var(--black) !important;
  background: var(--Saffron-mango);
  border: 1px solid transparent;
}
.cmn-btn {
  font-size: 16px;
  padding: 6px 20px;
  color: var(--black) !important;
  background: var(--Saffron-mango);
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins-SemiBold";
}

.cmn-btn img {
  margin-right: 10px;
  max-width: 34px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading h2 {
  font-family: "Poppins-SemiBold";
}
.section-heading p {
  font-size: 18px;
  font-family: "Poppins-Medium";
}

.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.form-control-common {
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  padding: 9px 10px 9px 10px;
  border: 1px solid var(--Dark-junglep-green);
  border-radius: 10px;
  width: 100%;
  appearance: textfield;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 20px;
}
.form-control:focus {
  border-color: var(--Dark-junglep-green);
  box-shadow: none;
}

/* header css start **********************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header {
  padding: 26px 0;
  background-color: var(--black);
  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 #000000;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 210px;
  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: 20px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
#header .main-nav nav ul li a {
  font-size: 16px;
  color: var(--white);
  padding: 5px 5px;
  transition: all 0.5s;
}
#header .main-nav nav ul li a:hover {
  color: var(--Saffron-mango);
}

/* home banner css ***************************************************************************/
#home-banner {
  padding: 0 0;
}
#home-banner .home-banner-part {
  background: url("../images/banner-bg.png") no-repeat;
  background-size: cover;
  background-position: center center;
}
#home-banner .text-box h1 {
  color: var(--Saffron-mango);
  text-transform: uppercase;
  font-family: "Poppins-SemiBold";
}
#home-banner .text-box span {
  font-size: 22px;
  color: var(--white);
  font-family: "Poppins-SemiBold";
}
#home-banner .box.box1 .button-box {
  padding-top: 50px;
}
#home-banner .box.box2 .image-box img {
  margin: 0 auto;
  display: block;
  width: 85%;
  max-width: 100%;
}

/* section css ******************************************************************************/
#super-easy .super-box {
  text-align: center;
  height: 100%;
}
#super-easy .super-box {
  padding: 12px 10px;
}
#super-easy .super-box .image-box img {
  max-width: 15%;
  width: 100%;
  margin-bottom: 10px;
}
#super-easy .super-box .text-box h6,
#how-to-play .how-to-play-box .text-box h6 {
  font-family: "Poppins-SemiBold";
}
#super-easy .super-box .text-box p {
  font-size: 16px;
}

/* Virtual sports css ******************************************************************************/
#virtual-sports {
  background-color: var(--gray);
  padding: 50px 0;
}
#virtual-sports .section-heading {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
}
#virtual-sports .virtual-box {
  padding: 15px 16px;
  text-align: center;
}
#virtual-sports .virtual-box h6 {
  font-size: 20px;
  font-family: "Poppins-SemiBold";
}
#virtual-sports .virtual-box h6 img {
  width: 100%;
  max-width: 8%;
  vertical-align: top;
}
#virtual-sports .virtual-box h6 img:first-child {
  padding-right: 6px;
}
#virtual-sports .virtual-box h6 img:last-child {
  padding-left: 6px;
}
#virtual-sports .virtual-box p {
  font-size: 16px;
}

/* How to play css *****************************************************************************/
#how-to-play .how-to-play-box-main .row {
  row-gap: 16px;
}
#how-to-play .how-to-play-box {
  text-align: center;
  height: 100%;
  padding: 10px 10px;
}
#how-to-play .how-to-play-box .image-box img {
  max-width: 15%;
  width: 100%;
  margin-bottom: 10px;
}
#how-to-play .how-to-play-box .text-box h6 {
  font-size: 18px;
  min-height: 43px;
}

/* question css ******************************************************************************/
#question {
  background-color: var(--gray);
}
.accordion {
  border-color: 0px solid var(--mercury) !important;
}
.accordion-item:first-of-type {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-radius: 10px !important;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-radius: 20px !important;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.accordion-button:focus {
  box-shadow: none;
}
#question .accordion-button {
  font-size: 18px;
  font-family: "Poppins-SemiBold";
  border-radius: 10px;
}
.accordion-button:not(.collapsed) {
  color: var(--Dark-junglep-green);
  background-color: var(--white);
  box-shadow: none !important;
}
.accordion-item {
  background-color: var(--white);
  border: none;
  margin-bottom: 10px;
  border-radius: 10px !important;
}
.accordion-item .accordion-header {
  background-color: var(--white);
  border-radius: 10px !important;
}
#question .question-box-main .accordion-button::after {
  content: "";
  background-image: url(../images/plus-icon.png) !important;
  background-repeat: no-repeat;
}
#question .question-box-main .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url(../images/minus-icon.png) !important;
}

/* join css ******************************************************************************/
#join {
  padding: 0 0 !important;
}
#join .join-box p {
  font-size: 20px;
  padding: 40px 10px;
  text-align: center;
  font-family: "Poppins-SemiBold";
}

/* footer css ******************************************************************************/
#footer {
  padding: 45px 0;
  background-color: var(--black);
}
#footer .text-box p {
  color: var(--white);
  text-align: center;
  margin-bottom: 12px !important;
  font-family: "Poppins-Medium";
}
#footer .text-box p b {
  font-size: 20px;
}
#footer .text-box p:not(:last-child) {
  margin-bottom: 20px;
}

/* Whatsapp Fixed bar css ******************************************************************/
.whatsapp-btn-box {
  position: fixed;
  bottom: 60px;
  right: 25px;
}
.whatsapp-btn-box a {
  display: block;
  animation: zoom 2s ease-in-out infinite;
}
.whatsapp-btn-box a img {
  max-width: 85%;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5); 
  }
}

.tada {
  animation-name: tada !important;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}