/* Font Family ***********************************************************************/
@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/gilroy/Gilroy-Light.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/gilroy/Gilroy-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/gilroy/Gilroy-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/gilroy/Gilroy-Bold.ttf");
  font-display: swap;
}

body {
  background: var(--canary-yellow);
  font-family: "Gilroy-Bold";
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

/* */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --canary-yellow: #F8FE38;
  --grey: #707070;
  --gainsboro: #DBDBDB;
}

/* Common class Start ****************************************************************/

/* Container custom class Start ***********/
.sec-space {
  padding: 0 50px !important;
}
.b-radius {
  border-radius: 30px 30px 0 0;
}

/* Container custom class End ***********/

.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}

.bg {
  padding: 80px 0;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.yellow {
  color: var(--canary-yellow);
}
.black-bg {
  background-color: var(--black);
}
.white-bg {
  background-color: var(--white);
}

.x-small {
  font-size: 10px;
}
.small {
  font-size: 12px;
}
.uppercase {
  text-transform: uppercase;
}

/* 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;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.1;
  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: 36px;
}
h2 {
  font-size: 38px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 20px;
  font-family: "Gilroy-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;
  font-family: inherit;
}
span {
  display: inline-block;
}
img, video {
  max-width: 100%;
}

.cmn-btn {
  font-size: 18px;
  padding: 10px 40px;
  color: var(--canary-yellow);
  background: var(--black);
  border-radius: 12px;
  border: 1px solid var(--canary-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy-Bold";
}
.cmn-btn img {
  max-width: 30px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
  /* margin-bottom: 40px; */
}
.section-heading P {
  max-width: 610px;
  margin: 0 auto;
  font-size: 18px;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
  outline: 2px solid var(--white);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  /* outline: 2px solid var(--white);
  outline-offset: 3px; */
}
.owl-nav {
  margin-top: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.owl-prev i, .owl-next i {
  color: var(--black);
  font-size: 26px;
}
/* .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;
  border: 1px solid var(--black);
  border-radius: 0;
  width: 100%;
  appearance: textfield;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 20px;
}

/* header css start **********************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header {
  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;
  padding: 22px 0;
}
#header .logo-box img {
  max-width: 200px;
  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-right: 45px;
}
#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;
}
#header .social-bx a img {
  max-width: 85%;
}

/* Home Banner section css ******************************************************************************/
.home-banner-box {
  margin: 0 2px;
}
#home-banner .home-banner-box .item {
  background-size: 100% 100% !important;
  background-repeat: no-repeat;
  border: 1px solid var(--canary-yellow);
  padding: 15% 0;
  border-radius: 20px;
}
#home-banner .text-bx h1 {
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}


/* Welcome section css ******************************************************************************/
#welcome .welcome-box {
  background: url("../images/cricket-ground-bg.png") no-repeat;
  background-position: center center;
  background-size: 105% 100%;
}
#welcome .welcome-box .image-bx {
  padding-top: 100px;
}
#welcome .welcome-box .image-bx img {
  width: 100%;
  max-width: 40%;
  margin: 0 auto;
  display: block;
}
#welcome .section-heading p {
  margin-top: 30px;
}


/* Why Choose section css ******************************************************************************/
#why-choose .box {
  background-color: var(--canary-yellow);
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  text-align: center;
  padding: 36px 10px;
  height: 100%;
}
#why-choose .box .image-bx {
  min-height: 100px;
}
#why-choose .box h5 {
  font-size: 22px;
  text-transform: uppercase;
}
.join-us-today-bx p {
  font-size: 24px;
  text-align: center;
  margin: 50px 0;
  font-family: "Gilroy-Medium";
}


/* Our Service section css ******************************************************************************/
#our-services {
  position: relative;
}
#our-services .our-services-box:after {
  position: absolute;
  content: "";
  top: 0;
  left: 268px;
  background: url('../images/ball.png') no-repeat;
  background-size: 100%;
  width: 170px;
  height: 124px;
}
#our-services .section-heading {
  padding-bottom: 50px;
}
#our-services .box {
  border-radius: 20px;
  border: 1px solid var(--canary-yellow);
  height: 100%;
}
#our-services .box .title-bx {
  background-size: 100%;
  padding: 15% 5%;
  border-radius: 20px;
}
#our-services .box .title-bx h4 {
  text-transform: uppercase;
}
#our-services .box .text-box {
  padding: 30px 10px;
}
#our-services .box .text-box ul li {
  font-size: 18px;
  color: var(--white);
  line-height: 1.1;
  font-family: "Gilroy-Regular";
  text-align: center;
}
#our-services .box .text-box ul li:not(:last-child) {
  margin-bottom: 20px;
}
#our-services .box .sm-border {
  background: var(--canary-yellow);
  width: 45px;
  height: 1px;
  margin: 8px auto;
}
#our-services .join-us-today-bx p {
  margin: 40px 0 280px;
}


/* Cricket Team bx section css ******************************************************************************/
.cricket-team-bx {
  position: relative;
}
.cricket-team-bx .image-bx {
  margin-top: -250px;
}


/* Biggest bonus section css ******************************************************************************/
#biggest-bonus .row {
  row-gap: 22px;
}
#biggest-bonus .box .title-bx {
  background-size: 100%;
  padding: 15% 5%;
  border-radius: 20px;
  text-align: center;
}
#biggest-bonus .box .title-bx h3 span {
  font-size: 46px;
  color: var(--canary-yellow);
  display: block;
}
#biggest-bonus .box .title-bx p {
  font-size: 20px;
  color: var(--white);
  font-family: "Gilroy-Light";
}
#biggest-bonus .join-us-today-bx p {
  margin-top: 50px;
  margin-bottom: 0;
}


/* Upcoming Matches section css ******************************************************************************/
#upcoming-matches .owl-item .item {
  position: relative;
  border-radius: 10px;
}
#upcoming-matches .owl-item .item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}
#upcoming-matches .owl-item.active.center {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#upcoming-matches .owl-item.active.center .item:after {
  display: none;
}
#upcoming-matches .owl-item .item img {
  border-radius: 10px !important;
}
#upcoming-matches .owl-theme .owl-nav {
  margin-top: 30px;
}
#upcoming-matches .owl-prev {
  left: 47%;
  position: absolute;
}
#upcoming-matches .owl-next {
  position: absolute;
  right: 47%;
}
#upcoming-matches .dont-miss-out-bx {
  padding-top: 100px;
  position: relative;
}
#upcoming-matches {
  position: relative;
}
#upcoming-matches:after {
  position: absolute;
  content: "";
  bottom: 0%;
  right: 6%;
  background: url('../images/cricketer.png') no-repeat;
  background-position: right bottom;
  background-size: 100%;
  width: 250px;
  height: 340px;
  z-index: -1;
}
#upcoming-matches .dont-miss-out-bx .box {
  text-align: center;
  padding: 20px 20px;
  border-radius: 14px 14px;
  height: 100%;
}
#upcoming-matches .dont-miss-out-bx .box p {
  text-transform: uppercase;
}
.dont-miss-tag-bx p {
  font-size: 20px;
  text-align: center;
  padding: 40px 0;
  font-family: "Gilroy-Medium";
}


/* Our Partner section css ******************************************************************************/
#our-partner .our-partner-part {
  background: var(--black);
  padding: 50px;
}
#our-partner .our-partner-part .logo-box-wrapper {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
}
#our-partner .our-partner-part .logo-box-wrapper img {
  max-width: 250px;
  border-radius: 18px;
}

#our-partner .our-partner-part .text-box p {
  text-align: center;
  font-size: 20px;
  color: var(--white);
  font-family: "Gilroy-Medium";
  margin-top: 50px;
}


/* FAQ section css ******************************************************************************/
#FAQ .FAQ-part .accordion-item {
  border-radius: 27px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--grey) !important;
}
#FAQ .FAQ-part .accordion-item,
#FAQ .FAQ-part .accordion-header,
#FAQ .FAQ-part .accordion-button {
  background: var(--white);
}
#FAQ .FAQ-part .accordion-button {
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  padding-left: 0;
  padding-block: 20px;
  font-family: "Gilroy-Light";
  padding: 20px;
}
#FAQ .FAQ-part .accordion-button span {
  margin-right: 15px;
}
#FAQ .FAQ-part .accordion-body {
  background: var(--white);
}
#FAQ .FAQ-part .accordion-body p {
  font-size: 18px;
  text-transform: capitalize;
}
#FAQ .FAQ-part .accordion-button:not(.collapsed),
#FAQ .FAQ-part .accordion-button:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
#FAQ .FAQ-part .accordion-button:not(.collapsed) {
  padding: 20px 20px 0px 20px;
  font-family: "Gilroy-Bold";
}
#FAQ .FAQ-part .accordion-button::after {
  width: 18px;
  height: 11px;
  background-image: url('../images/faq-open.png') !important;
  background-size: 100% 100%;
  transform: unset;
}
#FAQ .FAQ-part .accordion-button.collapsed::after {
  background-image: url('../images/faq-close.png') !important;
}
#FAQ .FAQ-part .accordion-button:not(.collapsed)::after {
  transform: rotate(0) !important;
}
#FAQ .payment-method-box {
  padding-top: 50px;
}
#FAQ .payment-method-box .logo-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 4px;
}


/* footer css ******************************************************************************/
#footer {
  background: var(--black);
}
#footer .top-box {
  padding-top: 30px;
}
#footer .top-box .logo-box img {
  max-width: 200px;
}
#footer .top-box .box.box2 {
  padding-left: 40px;
}
#footer .top-box .box .list-bx ul li {
  font-size: 22px;
  color: var(--white);
  font-family: "Gilroy-Regular";
}
#footer .top-box .box .list-bx ul li:not(:last-child) {
  margin-bottom: 6px;
}
#footer .top-box .box .list-bx ul li span {
  color: var(--canary-yellow);
}
#footer .top-box .box.box3 {
  float: right;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 10px;
}
#footer .top-box .link-box ul img {
  max-width: 34px;
}
#footer .end-box {
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid var(--grey);
}
#footer .end-box p {
  color: var(--gainsboro);
  text-align: center;
}

/* Whatsapp fixed button bar css ******************************************************************************/
.whatsapp-box {
  position: fixed;
  right: 1.5%;
  bottom: 3%;
  z-index: 2;
}
.tada-animation {
  animation: tada 1s infinite;
  display: inline-block;
}

@keyframes tada {
    0% {
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}