/* font family **************************************************************************** */

@font-face {
  font-family: "Bigboz";
  src: url("../fonts/bigboz/Bigboz.otf");
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
}

/* common css ******************************************************************************/
:root {
  --white: #fff;
  --black: #000;
  --btn-bg: #8dc63f;
  --green: #006838;
  --dark-green: #182014;
  --light-green: #d1ff93;
  --green-72FE01: #72fe01;
  --green-F0FFE7: #f0ffe7;
  --gray: #252525;
  --dark-1F1B18: #1f1b18;
  --light-yellow: #ccc6ad;
  --blue-1B1E26: #1B1E26;
}
.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.green {
  color: var(--green-72FE01);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black);
}
body {
  background: var(--white);
  font-family: "Poppins-Regular", sans-serif;
}
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);
  font-family: "Poppins-Medium";
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 34px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--black);
  font-family: "Poppins-Regular";
  text-align: center;
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
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;
}
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}
.section-heading h6 {
  color: var(--green);
  font-family: "Poppins-Medium";
  text-transform: capitalize;
  margin-bottom: 10px;
}
.section-heading h5 {
  font-family: "Poppins-SemiBold";
  text-transform: capitalize;
  font-size: 28px;
}

.section-heading p {
  width: 80%;
  margin: 0 auto;
}
.btn-common {
  font-size: 20px;
  padding: 10px 20px;
  background: var(--btn-bg);
  color: var(--dark-green) !important;
  border-radius: 50px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bigboz";
  transition: 0.2s ease-in-out ;
}
.btn-common:hover {
  border: 1px solid var(--btn-bg);
  outline: 2px solid var(--btn-bg);
  outline-offset: 4px;
  background: var(--green-F0FFE7);
  transform: scale(1.07);
}

.btn-common img {
  max-width: 25px;
  margin-right: 10px;
}
section {
  padding-bottom: 50px;
  overflow: hidden;
}
.bg {
  padding: 50px 0;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.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(--gray);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--btn-bg);
  outline: none;
  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 {
  background: #0068383b;
  border: none;
  font-size: 16px;
  padding: 12px 50px 12px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
  border-radius: 10px;
  text-transform: capitalize;
}
.input-group {
  padding-bottom: 30px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px var(--black);
}
#header {
  background: transparent;
  padding: 30px 0 15px;
  transition: 0.5s all;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 99;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 120px;
  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;
  position: relative;
  border-radius: 5px;
}
#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 {
  margin-left: 20px;
  padding-top: 0;
}
#header .button-box .btn-common {
  padding: 10px 40px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
  background: url("../images/bannerBg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  padding: 8% 0;
}

#homeBanner .homeBanner-part::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000000b5;
  backdrop-filter: blur(12px);
}
#homeBanner .homeBanner-box {
  position: relative;
  z-index: 9;
}

#homeBanner .title h1 {
  color: var(--light-green);
  font-family: "Bigboz";
  text-align: center;
  margin-bottom: 15px;
}

#homeBanner .text {
  width: 80%;
  margin: 0 auto;
}
#homeBanner .text p {
  color: var(--white);
}
#homeBanner .button-box {
  padding-top: 60px;
  display: flex;
  justify-content: center;
}

#icons {
  background-color: var(--gray);
  overflow: hidden;
}
#icons .marquee img {
  height: 110px;
  width: 300px;
  object-fit: contain;
}

#icons .marquee {
  display: flex;
  animation: marquee 20s linear infinite;
  align-items: center;
  column-gap: 40px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-270%);
  }
}
/* business css ******************************************************************************/

#business .info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

#business .info-box .boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
  box-shadow: 0px 1px 5px #00000091;
  padding: 40px 20px;
  border-radius: 10px;
  transition: 0.5s;
}
#business .info-box .boxes:hover{
  transform: scale(1.05);
}
#business .info-box .boxes img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

#business .info-box .boxes h6 {
  font-family: "Poppins-SemiBold";
  color: var(--green);
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
}

.image-slider .item img {
  border-radius: 10px;
  height: 100%;
}
.image-slider .item {
  height: 100%;
}

.image-slider .owl-stage-outer {
  display: grid;
}

.image-slider .owl-item {
  height: 100%;
}

/* exchange  css ******************************************************************************/
.exchange .exchange-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.exchange .exchange-box .boxes {
  border-radius: 35px;
  background-color: var(--dark-1F1B18);
  overflow: hidden;
  width: 23%;
  display: flex;
  flex-direction: column;
}
.exchange .exchange-box .boxes .img-box {
  background-image: url("../images/cricketer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 70px;
  position: relative;
}
.exchange .exchange-box .boxes .img-box img {
  width: 160px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto;
  display: flex;
}

.exchange .exchange-box .boxes .img-box::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--dark-green);
  opacity: 0.8;
}

.exchange .exchange-box .boxes .img-box img {
  position: relative;
  z-index: 9;
}
.exchange .exchange-box .boxes .text-box h6 {
  color: var(--white);
  font-family: "Poppins-Regular";
  text-align: center;
  text-transform: capitalize;
}

.exchange .exchange-box .boxes .text-box {
  padding: 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.exchange .exchange-box .boxes .text-box .button-box {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.exchange .exchange-box .boxes .text-box p {
  font-size: 14px;
  margin: 30px 0 0;
  color: var(--light-yellow);
}

/* effortless css ***************************************************************************** */

#effortless .effortless-box {
  display: flex;
  justify-content: space-between;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 50px 10px;
  width: 80%;
  margin: 0 auto;
}

#effortless .effortless-box .text-box h2 {
  color: white;
  font-family: "Poppins-SemiBold";
  font-size: 50px;
}

#effortless .effortless-box .text-box .btn-common {
  border-radius: 0;
  color: var(--green) !important;
  text-transform: uppercase;
  font-family: "Poppins-SemiBold";
  background: rgb(224, 246, 115);
  background: linear-gradient(
    180deg,
    rgba(224, 246, 115, 1) 0%,
    rgba(94, 153, 29, 1) 100%
  );
  border-width: 3px;
  border-style: solid;
  border-image: 
    linear-gradient(140deg, rgba(139,201,32,1) 0%, rgba(100,133,53,1) 41%, rgba(24,100,35,1) 79%, rgba(100,124,72,1) 100%);
    border-image-slice: 1;
}

/* platform css ******************************************************************************/

#platform .platform-part {
  background-color: var(--green-F0FFE7);
}

#platform .title {
  text-transform: capitalize;
  font-family: "Poppins-SemiBold";
  font-size: 16px;
  text-align: center;
  border: 3px solid var(--btn-bg);
  border-radius: 50px;
  padding: 8px 12px;
  width: fit-content;
  margin: 0 auto 20px;
}

#platform .whitable-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#platform .boxes {
  background-color: var(--green);
  border-radius: 10px;
  padding: 20px 20px;
  width: 32%;
}

#platform .boxes .img-box img {
  width: 180px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: flex;
}
#platform .boxes .text-box h6 {
  color: var(--white);
  text-align: center;
}

#platform .boxes .text-box .button-box {
  display: flex;
  justify-content: center;
}

/* easy start ************************************************************* */

#easy .easy-part {
    background: url("../images/stadium.png") no-repeat center;
    background-size: 100% 100%;
    padding: 70px 0;
    position: relative;
}
#easy .easy-part:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black);
    opacity: 0.8;

}
#easy .easy-box{
    position: relative;
    z-index: 9;
}
#easy .easy-box .title h6 {
    color: white;
    text-align: center;
    font-family: 'Poppins-SemiBold';
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 20px;
}
#easy .easy-box .title h4 {
    color: var(--light-green);
    text-align: center;
    font-family: 'Poppins-SemiBold';
    font-size: 30px;
}

#easy .easy-box .boxes {
    display: flex;
    justify-content: center;
    column-gap: 100px;
    margin-top: 50px;
}

#easy .easy-box .boxes .box {
    background-color: var(--dark-1F1B18);
    border-radius: 35px;
    width: 350px;
}
#easy .easy-box .boxes .box .button-box {
    display: flex;
    justify-content: center;
    padding: 20px 20px;
}

/* provider css ********************************************************** */

#provider .exchange-box .boxes .img-box {
    background-image: none;
    padding: 0;
}
#provider .exchange-box .boxes .img-box img {
    width: 100%;
    height: 100%;
}
#provider .exchange-box .boxes .text-box p {
    margin: 0;
}


/* list start ************************************************************ */

#list .list-part{
    background-color: var(--green-F0FFE7);
}
#list .list-box  .boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
#list .list-box .boxes .box {
  width: 32%;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#list .list-box .boxes .box a {
    font-family: "Poppins-SemiBold";
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    text-decoration: underline;
    margin-bottom: 15px;
    transition: 0.5s;
}
#list .list-box .boxes .box a:hover{
  transform: translateY(-2px);
}
#list .list-box .boxes .box p{
    color: var(--green);
    font-family: "Poppins-SemiBold";
    text-transform: capitalize;
}

/* hub css *************************************************************** */

#hub .exchange-box .boxes .img-box {
    background-image: none;
    padding: 0;
}

#hub .exchange-box .boxes .img-box img {
    width: 100%;
    height: 100%;
}

#hub .exchange-box .boxes .text-box{
    background-color: var(--blue-1B1E26);
    border: 1px solid var(--black);
}

#hub .exchange-box .boxes .text-box {
    padding: 8px 20px;
}
#hub .exchange-box .boxes .button-box {
    padding: 20px;
    display: flex;
    justify-content: center;
}



/* journy css*********************************************************************** */

#journy .journy-part{
  background-color: var(--green-F0FFE7);
}

#journy .text-box h5 {
  font-family: 'Poppins-SemiBold';
  margin-bottom: 40px;
}

#journy .text-box h5 span{
color: var(--green);
}

#journy .text-box .contact {
  margin-bottom: 30px;
}

#journy .text-box .contact p{
  text-align: left;
  font-family: 'Poppins-Medium';
}

 .social-media {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 30px;
}

.social-media img {
  height: 25px;
  width: 25px;
  object-fit: contain;
  transition: 0.5s;
}
.social-media img:hover{
  transform: translateY(-3px);
}

#journy .form-box .btn-common {
  padding: 8px 50px;
}


/* footer css ******************************************************************************/
#footer .top-box .logo-box img {
  max-width: 220px;
  margin-bottom: 30px;
}
#footer .top-box h6 {
  margin-bottom: 30px;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .list-box li {
  color: var(--black);
  transition: 0.5s;
}
#footer .top-box .list-box li:hover{
  color: var(--green);
  transform: translateY(-3px);
}

#footer .end-box {
  margin-top: 30px;
  padding: 15px 0;
  background-color: var(--green-F0FFE7);
}

