@font-face {
    font-family: 'Inter';
    src: url('Inter-Regular.woff2') format('woff2'),
        url('Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('Inter-Bold.woff2') format('woff2'),
        url('Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Light';
    src: url('Inter-Light.woff2') format('woff2'),
        url('Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html, body {
	height: 100%;
}

* {
	box-sizing: border-box;
}

body{
	background: #000;
    color: #C6C6C6;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-family: 'Inter';
}


a{
	color:#fff;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	color:#000;
	text-decoration:none;
}

a img {
	border: none;
}

a > img {
	vertical-align: bottom;	
}

img {
	max-width: 100%;	
}

strong {
  	font-weight: 500;
}

p {
	margin: 0 0 30px;
}

.main_wrapper {
	width: 100%;
	display: flex;
    flex-direction: column;
    position: relative;
}

header {
    width: 100%;
	display: flex;
    align-items: center;
	justify-content: space-between;
    padding: 1rem 3rem;
    /* position: absolute;
    top: 0; */
}

.sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.65s ease-out;
    z-index: 9;
}

@keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }

.logo {
    width: 150px;
}

.headerActions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.headerActions a {
    width: 205px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    color: #FFFFFF;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14.1796px;
    position: relative;
    background-image: url(image/btnBg.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.headerActions a:before {
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.whatsUp::before {
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    background-image: url(image/whatsupIcon.svg);
}

.whatsUp:hover:before {
    background-image: url(image/whatsupIconHover.svg);
}

.registration::before {
    content: "";
    width: 14px;
    height: 20px;
    display: flex;
    background-image: url(image/registrationIcon.svg);
}

.registration:hover:before {
    background-image: url(image/registrationIconHover.svg);
}

.downloadApp::before {
    content: "";
    width: 16px;
    height: 20px;
    display: flex;
    background-image: url(image/dwnldAppIcon.svg);
}

.downloadApp:hover:before {
    background-image: url(image/dwnldAppIconHover.svg);
}

.headerActions a:hover {
    background-image: url(image/btnBgHover.png);
    color: #763A00;
}

.headerActions svg {
    width: 20px;
}

.banner {
    width: 100%;
    height: 100vh;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: url(image/banner_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
    background-attachment: fixed;
}

.bannerText {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 1rem;
}

.bannerText h1 {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    font-family: 'Inter-Bold';
}

.colorText {
    background: linear-gradient(180deg, #DFB674 0%, #b59869 42.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.normalText {
    font-weight: 400;
    font-size: 20px;
    color: #C6C6C6;
}

.registerDiv {
    width: 536px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(image/bannerSignupBg.png);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
    /* backdrop-filter: blur(5.86725px); */
    border-radius: 12px;
    padding: 1rem 2rem;
}

.registerDiv span {
    color: #C6C6C6;
    font-weight: 400;
    font-family: 'Inter-Light';
}

bold {
    color: #FFFFFF;
    font-family: 'Inter-Bold';
}
.primaryBtn {
    width: 169.2px;
    height: 49.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-image: url(image/primaryBtnBg.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.primaryBtn:after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(image/rightArrow.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.primaryBtn:hover:after {
    background-image: url(image/rightArrowHover.png);
}

.primaryBtn:hover {
    background-image: url(image/primaryBtnBgHover.png);
    color: #763A00;
}

.body_content {
    width: 100%;
    /* height: 1000px; */
    display: flex;
    flex-direction: column;
    gap: 5rem;
    background-image: url(image/content_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: top;
}

.rowBlock {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.shapeBlock {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 7rem;
    background-image: url(image/whatMakesBgBorder.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.secondaryText {
    color: #FFFFFF;
    font-size: 34px;
    font-family: 'Inter-Bold';
    text-transform: capitalize;
    margin-top: 0;
}

.shapeBlock ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.shapeBlock ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shapeBlock ul li::before {
    content: "";
    width: 24px;
    height: 24px;
    display: flex;
    background-image: url(image/coin.png);
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
}

.rowBlock h2::after {
    content: "";
    width: 128px;
    height: 5px;
    display: flex;
    background: linear-gradient(90deg, #6576E3 0%, #354CDA 100%);
    margin-top: 10px;
    border-radius: 10px;
}

.colorTextSec {
    background: linear-gradient(180deg, #6576E3 0%, #354BDA 29.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.imageBlock {
    display: flex;
    align-items: center;
}

/* Slider Styles */
.sliderWrapper {
    width: 80%;
    display: inline-block;
    margin: 0 auto;
    text-align: left;
    vertical-align: middle;
    background-image: url(image/carouselBg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem;
}

.sliderWrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sliderPlyBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFD085;
    text-decoration: underline;
    font-size: 16px;
    padding-top: 5px;
}

.sliderPlyBtn:hover{
    color: #fff;
}

.sliderPlyBtn:after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url(image/playNowIcon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sliderPlyBtn:hover::after {
    background-image: url(image/rightArrow.png);
}

.sliderWrapper .slick-track {
    display: flex;
    gap: 2rem;
}

.sliderWrapper .slick-prev, .sliderWrapper .slick-next {
    top: -30%;
}

.sliderWrapper .slick-prev {
    left: unset;
    right: 70px;
    width: 50px;
    height: 50px;
    background-image: url(image/prev.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sliderWrapper .slick-next {
    right: 0px;
    width: 50px;
    height: 50px;
    background-image: url(image/next.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sliderWrapper .slick-next:hover {
    background-image: url(image/nextHover.png);
}

.sliderWrapper .slick-prev:hover {
    background-image: url(image/prevHover.png);
}

.sliderWrapper .slick-prev:before, .sliderWrapper .slick-next:before {
    content: "";
}

.sliderWrapper .slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sliderWrapper .slick-dots li {
    margin: 0;
}

.sliderWrapper .slick-dots li button:before {
    color: #626262;
    font-size: 9px;
}

.sliderWrapper .slick-dots li.slick-active button:before {
    color: #FFD085;
}

.sliderWrapper .slick-dots {
    bottom: -55px;
}

.sliderWrapper .slick-initialized .slick-slide img {
    transition: transform .2s; /* Animation */
}

.sliderWrapper .slick-initialized .slick-slide img:hover {
    transform: scale(1.1);
}

.secondaryText.centerAlign {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobTitle {
    display: none;
}

.shapeBlock h2.centerAlign::after {
    content: "";
    width: 128px;
    height: 5px;
    display: flex;
    background: linear-gradient(90deg, #D9B172 0%, #A18558 100%);
}

.shapeBlock.vertical {
    align-items: center;
    background-image: url(image/howTowinBg.png);
}

.shapeBlock.vertical .primaryBtn {
    width: 189.2px;
    height: 69.2px;
}

.shapeBlock.vertical .imageBlock {
    display: none;
}

.incentiveSteps {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
}

.stepsOne {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1rem;
    background-image: url(image/step1Bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.stepsTwo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1rem;
    background-image: url(image/step2Bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.stepsThree {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1rem;
    background-image: url(image/step3Bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.stepsText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.stepsText h3 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 0;
    color: #FFFFFF;
    font-family: 'Inter-Bold';
}

.stepsText p {
    font-size: 16px;
    text-transform: capitalize;
    color: #C6C6C6;
    font-family: 'Inter-Light';
    margin: 0;
}

/* footer */
footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #848484;
    padding: 1rem 4rem;
    background: #000000;
}

.copyRight.copyMobile {
    display: none;
}

.socialMediaWrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.socialMediaWrapper a {
    width: 35px;
    height: 35px;
    display: flex;
}

.copyRight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyRight img {
    width: 34px;
    height: 34px;
}

.copyRight p {
    margin: 0;
    font-size: 12.5px;
}

.paymentMethod {
    display: flex;
    align-items: center;
    gap: 20px;
}

.paymentMethod img {
    display: flex;
    height: 22px;
}

.slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.tracking-in-contract-bck {
	-webkit-animation: tracking-in-contract-bck 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract-bck 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-1000px);
              transform: translateX(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }

/**
 * ----------------------------------------
 * animation tracking-in-contract-bck
 * ----------------------------------------
 */
@-webkit-keyframes tracking-in-contract-bck {
    0% {
      letter-spacing: 1em;
      -webkit-transform: translateZ(400px);
              transform: translateZ(400px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes tracking-in-contract-bck {
    0% {
      letter-spacing: 1em;
      -webkit-transform: translateZ(400px);
              transform: translateZ(400px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }

/* ==================================================
   Responsive Code
================================================== */

@media (min-width: 1600px) {
    .sliderWrapper {
        width: 1512px;
    }
}

@media (max-width: 1200px) {
    header {
        padding: 1rem;
    }

    .logo {
        width: 120px;
    }

    .headerActions a {
        width: 165px;
        height: 40px;
        font-size: 12px;
        position: relative;
        background-image: url(image/btnBgMob.png);
    }

    .whatsUp::before {
        width: 15px;
        height: 15px;
    }

    .registration::before {
        width: 14px;
        height: 16px;
    }

    .downloadApp::before {
        width: 12px;
        height: 15px;
    }

    .bannerText {
        padding-top: 0rem;
    }

    .bannerText h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .normalText {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .registerDiv {
        width: 220px;
        height: 118px;
        flex-direction: column;
        justify-content: center;
        background-image: url(image/bannerSignupBgMob.png);
        background-size: contain;
        gap: 10px;
        padding: 1rem;
    }

    .registerDiv span {
        font-size: 14px;
        text-align: center;
    }

    .primaryBtn {
        width: 125px;
        height: 35px;
        font-size: 12px;
        gap: 6px;
    }

    .primaryBtn:after {
        width: 9px;
        height: 9px;
    }

    .secondaryText {
        font-size: 24px;
    }

    .rowBlock {
        padding: 0 2rem;
    }

    .imageBlock img {
        width: 80%;
    }

    .rowBlock h2::after {
        height: 4px;
    }

    .shapeBlock {
        padding: 5rem;
    }

    .shapeBlock ul {
        gap: 5px;
    }

    .shapeBlock ul li {
        gap: 8px;
        font-size: 14px;
    }

    .shapeBlock ul li::before {
        width: 22px;
        height: 22px;
    }

    .sliderWrapper {
        padding: 4rem;
    }

    .sliderWrapper .slick-prev {
        width: 40px;
        height: 40px;
        right: 55px;
    }

    .sliderWrapper .slick-next {
        width: 40px;
        height: 40px;
    }

    .secondaryText.centerAlign {
        margin-bottom: 5px;
        line-height: 24px;
    }

    .incentiveSteps {
        align-items: center;
        padding-bottom: 2rem;
    }
    
    .shapeBlock.vertical .primaryBtn {
        width: 145px;
        height: 42px;
    }

    .shapeBlock.vertical {
        position: relative;
    }

    .incentiveSteps::after {
        content: "";
        width: 91%;
        height: 1px;
        position: absolute;
        /* left: 0;
        right: 0; */
        bottom: 25%;
        display: flex;
        background: linear-gradient(268.09deg, rgba(236, 175, 57, 0.4029) 68.5%, rgba(255, 255, 255, 0) 95.76%, rgba(225, 149, 0, 0.3723) 108.62%), linear-gradient(0deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07));
    }

    .incentiveSteps img {
        width: 44px;
    }
    
    .stepsText h3 {
        font-size: 15px;
    }
    
    .stepsText p {
        font-size: 13px;
    }

    .stepsOne, .stepsTwo, .stepsThree {
        height: 71px;
        gap: 1rem;
        padding: 7px 10px;
    }

    footer {
        padding: 1rem;
    }

    .socialMediaWrapper {
        gap: 7px;
    }

    .socialMediaWrapper a {
        width: 25px;
        height: 25px;
    }

    .copyRight img {
        width: 20px;
        height: 20px;
    }

    .paymentMethod img {
        height: 15px;
    }
}

@media (max-width: 1024px) {
    .logo {
        width: 120px;
    }

    .shapeBlock {
        width: 50%;
        background-image: url(image/whatMakesBgBorderMob.png);
    }

    .shapeBlock ul {
        gap: 10px;
    }

    .shapeBlock ul li {
        font-size: 14px;
        display: flex;
        padding-left: 2rem;
        position: relative;
    }

    .shapeBlock ul li::before {
        width: 22px;
        height: 22px;
        float: left;
        margin-right: 7px;
        position: absolute;
        left: 0;
    }

    .shapeBlock.vertical {
        background-image: url(image/whatMakesBgBorderMob.png);
    }

    .sliderWrapper {
        width: 90%;
        padding: 2rem;
    }

    .imageBlock {
        justify-content: center;
    }

    .shapeBlock.vertical {
        width: 70%;
    }

    .shapeBlock h2.centerAlign::after {
        width: 140px;
        height: 3px;
    }

    .incentiveSteps {
        gap: 5px;
    }

    .incentiveSteps::after {
        width: 81%;
    }

    .secondaryText.centerAlign {
        margin-bottom: 10px;
    }

    .stepsOne, .stepsTwo, .stepsThree {
        height: 71px;
        gap: 10px;
        padding: 7px 10px;
        padding-left: 2rem;
    }
}

@media (max-width: 991px) {
    a.registration {
        display: none;
    }

    .bannerText h1 {
        font-size: 24px;
    }

    .normalText {
        margin-bottom: 20px;
    }

    /* .banner {
        background-image: url(image/banner_bgMob.jpg);
        background-position-y: 90%;
    } */

    .body_content {
        background-image: url(image/content_bgMob.jpg);
    }

    .rowBlock {
        height: auto;
        flex-direction: column-reverse;
    }

    .secondaryText.mobTitle {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 4rem;
    }

    .secondaryText.mobTitle br {
        display: none;
    }

    .secondaryText {
        display: none;
    }

    .sliderMob .secondaryText {
        display: block;
    }

    .imageBlock {
        flex-direction: column;
    }

    .imageBlock img {
        width: 213px;
    }

    .shapeBlock {
        width: 400px;
    }

    .sliderWrapper {
        width: 100%;
    }

    .sliderWrapper .slick-prev, .sliderWrapper .slick-next {
        top: -35%;
    }

    .sliderWrapper .slick-dots {
        bottom: -45px;
    }

    .shapeBlock.vertical .imageBlock {
        display: flex;
        padding: 20px 0;
    }

    .shapeBlock.vertical .imageBlock img {
        width: 319px;
    }

    .imageBlock.dsktP {
        display: none;
    }
    .stepsOne, .stepsTwo, .stepsThree {
        width: 270px;
    }

    .incentiveSteps::after {
        width: 79%;
        bottom: 18%;
    }

    .copyRight {
        display: none;
    }

    .copyRight.copyMobile {
        display: flex;
    }

    footer {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .banner {
        background-image: url(image/banner_bgMob.jpg);
        background-position-y: 90%;
    }

    .shapeBlock.vertical {
        width: 350px;
        background-image: url(image/howTowinBgMob.png);
        padding: 2rem 5rem;
    }

    .incentiveSteps {
        position: relative;
    }

    .incentiveSteps::after {
        width: 328px;
        bottom: 6%;
        height: 2px;
    }

    .logo {
        width: 90px;
    }
    
}

@media (max-width: 576px) {
    .body_content {
        gap: 2rem;
        background-position: 100%;
    }

    .bannerText {
        padding-top: 3rem;
    }

    .whatsUp::before, .downloadApp::before {
        display: none;
    }

    /* .headerActions a.downloadApp {
        width: 100px;
    } */

    .headerActions {
        gap: 5px;
    }

    .headerActions a {
        width: 125px;
        height: 30px;
        padding: 5px;
    }

    header {
        padding: 1rem 5px;
    }

    .shapeBlock {
        width: 350px;
        padding: 2rem 3rem;
    }

    .shapeBlock h2.centerAlign::after {
        height: 2px;
    }

    .shapeBlock.vertical {
        padding: 2rem 1rem;
    }

    .shapeBlock.vertical .imageBlock {
        padding-top: 0;
    }

    .sliderWrapper {
        width: 100%;
        background-image: url(image/carouselBgMob.png);
        padding: 2rem 0;
        background-size: cover;
    }

    .sliderPlyBtn {
        font-size: 14px;
    }

    .rowBlock.sliderMob {
        padding: 0;
    }

    .sliderMob .secondaryText {
        font-size: 18px;
        text-align: center;
        padding-bottom: 5px;
    }

    .rowBlock h2::after {
        height: 2px;
        margin: 6px auto;
    }

    .copyRight p {
        font-size: 10px;
    }

    .copyRight img {
        width: 17px;
        height: 17px;
    }

    .paymentMethod {
        overflow: auto;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .paymentMethod::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 360px) {
    .main_wrapper {
        overflow-x: auto;
    }
}