@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    scroll-behavior: auto;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ul,
ol {
    margin: 0;
    padding: 0;
}
button,
a {
    text-decoration: none;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background: #fff;
}
.main-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container {
    max-width: 1462px;
}
/* **** Header Toggler Switch **** */

/* **** Header **** */
header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
     background: #fff;
    padding: 16px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    transform: translateY(-100px);
}
header.sticky{
    position: fixed;
    top: 0;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0px 0;
    align-items: center;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar .navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar .navbar-brand img {
    max-width: 100%;
    height: 32px;
}
.navbar .navbar-nav {
    gap: 8px;
    margin: 0 auto;
}
.navbar .navbar-nav .nav-link {
    padding: 8px 16px;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link.active {
    color: #2239ba;
}

.navbar .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;padding: 0;height: 48px;width: 48px;border-radius: 999px;background: rgba(0, 0, 0, 0.10);backdrop-filter: blur(4px);align-items: center;justify-content: center;}
.navbar .navbar-toggler:focus {box-shadow: none;outline: none;}
.navbar .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active,
.navbar-toggler:focus {outline: none;}
.navbar .navbar-toggler-icon {width: 22px;height: 16px;background-image: none;position: relative;border-bottom: 2px solid #1E1E1E;transition: all 300ms linear;}
.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {width: 22px;position: absolute;height: 2px;background-color: #1E1E1E;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar .navbar-toggler-icon:after {top: 7px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(7px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End Header **** */


/* **** Buttons **** */
.btn-primary {
    border-radius: 205px;
    background: linear-gradient(180deg, #5e72e4 0%, #2239ba 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px 20px;
    border: none;
}
.btn-primary span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-white {
    color: #0068d1;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 24px;
    border-radius: 205px;
    background: #fff;
    width: fit-content;
    margin: 0 auto;
}
.btn-white:hover {
    background-color: #0068d1;
    color: #fff;
}
/* **** End Buttons **** */

/* **** Hero **** */
.hero-wrp {
    padding: 96px 0 24px;
}
.hero-wrp .hero-detail {
    border-radius: 24px;
    background: #F0F3FF;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.hero-wrp .hero-detail .hero-shape {
    position: absolute;
    height: 90%;
    left: -5%;
    top: -5%;
    right: -5%;
    pointer-events: none;
    display: none;
}
.hero-wrp .hero-detail .hero-shape img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: rotate(-90deg) scale(0.4);
    opacity: 0;
}
.hero-wrp .hero-detail h6 {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    display: table;
    border-radius: 99px;
    background: rgba(30, 30, 30, 0.10);
    padding: 6px 24px;
    margin: 0 auto 24px;
}
.hero-wrp .hero-detail h1 {
    color: #333;
    font-size: 72px;
    font-weight: 200;
    text-align: center;
    line-height: 82px;
    margin: 0 0 16px;
}
.hero-wrp .hero-detail p {
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    margin: 0 0 24px;
}
.hero-wrp .hero-detail .btn-white {
    margin: 0 auto 12px;
    background-color: #6161FF;
    color: #fff;
    font-weight: 300;
}
.hero-wrp .hero-detail .btn-white img{
    filter: brightness(0) invert(1);
}
.hero-wrp .hero-detail h5 {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    margin: 0 0 56px;
    text-align: center;
}
.hero-wrp .hero-video {
    max-width: 860px;
    height: 496px;
    background: #313337;
    margin: 0 auto;
    border-radius: 16px;
    padding: 10px;
    position: relative;
}
.hero-wrp .hero-video video {
    filter: blur(3px);
    height: 100%;
    width: 100%;
    border: 10px solid #fff;
    border-radius: 10px;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hero-wrp .hero-video.show-video video {
    filter: unset;
}
.hero-wrp .hero-video .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    background-color: #d9d9d9;
    border-radius: 50px;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0068d1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    padding: 10px 16px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hero-wrp .hero-video .play-button span {
    width: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hero-wrp .hero-video:hover .play-button {
    gap: 10px;
    padding: 10px 24px;
    background-color: #fff;
    width: auto;
}
.hero-wrp .hero-video:hover .play-button span {
    width: auto;
}

.hero-wrp .hero-detail h6{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.hero-wrp .hero-detail h1{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.hero-wrp .hero-detail p{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.hero-wrp .hero-detail .btn-white{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.hero-wrp .hero-detail h5{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.hero-wrp .hero-video{transform: translateY(350px);opacity: 0;-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
/* **** End Hero **** */

/* **** Qualify **** */
.qualify-wrp {
    padding: 24px 0;
}
.qualify-wrp .qualify-block {
    border-radius: 24px;
    background-color: #000;
    padding: 64px;
    text-align: center;
    position: relative;
}
.qualify-wrp .qualify-block .qualify-shape {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    display: none;
}
.qualify-wrp .qualify-block .qualify-shape img {
    max-width: 100%;
    margin: 0 auto;
}
.qualify-wrp .qualify-block h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 200;
    margin: 0 0 12px;
}
.qualify-wrp .qualify-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 48px;
}
.qualify-wrp .qualify-block ul {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.qualify-wrp .qualify-block ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.qualify-wrp .qualify-block ul li a.btn-white {
    border: 1px solid #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #1e1e1e;
}
.qualify-wrp .qualify-block ul li a.btn-white:hover {
    border-color: #0068d1;
    color: #fff;
}
.qualify-wrp .qualify-block ul li a.btn-secondary {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    border-radius: 205px;
    border: 1px solid #fff;
    padding: 12px 20px;
}
.qualify-wrp .qualify-block ul li a.btn-secondary:hover {
    background-color: #fff;
    color: #0068d1;
}
/* **** End Qualify **** */

/* **** Gamification **** */
.gamification-wrp {
    padding: 48px 0;
}
.gamification-wrp .gamification-title {
    margin: 0 0 48px;
    text-align: center;
}
.gamification-wrp .gamification-title h2 {
    color: rgba(30, 30, 30, 0.9);
    font-size: 72px;
    font-weight: 200;
    line-height: 100px;
    margin: 0 0 12px;
}
.gamification-wrp .gamification-title h2 span {
    color: #5e72e4;
}
.gamification-wrp .gamification-title p {
    color: rgba(30, 30, 30, 0.9);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    margin: 0;
}
.gamification-wrp .row {
    margin: 0 -10px;
    row-gap: 20px;
}
.gamification-wrp .col-md-6 {
    padding: 0 10px;
}
.gamification-wrp .gamification-box {
    border-radius: 24px;
    background: #f2f2f2;
    padding: 16px;
}
.gamification-wrp .gamification-box .box-img {
    height: 275px;
    width: 100%;
    background-image: url("../images/gamification-img1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gamification-wrp .gamification-box .box-img .image1 {
    max-width: 351px;
    margin: 0 auto;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.gamification-wrp .gamification-box .box-img .image1 .video-img {
    max-width: 100%;
    margin: 0 0 8px;
}
.gamification-wrp .gamification-box .box-img .image1 .bottom-box {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 176px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 4px 8px;
}
.gamification-wrp .gamification-box .box-img .image1 .bottom-box img {
    max-width: 100%;
    margin: 0;
}
.gamification-wrp .gamification-box .box-img .image1 .bottom-box .progress {
    border-radius: 62px;
    background: #e9e9e9;
    height: 24px;
    padding: 2px;
    width: 100%;
}
.gamification-wrp .gamification-box .box-img .image1 .bottom-box .progress .progress-bar {
    border-radius: 1216px;
    background: #5e72e4;
    box-shadow: -2px 2px 5px 0 #5e72e4 inset, -6px 4px 8px 0 rgba(255, 255, 255, 0.25) inset, 6px -4px 12px 0 rgba(0, 0, 0, 0.25) inset;
    width: 20px;
}
.gamification-wrp .gamification-box:hover .box-img .image1 {
    transform: scale(1.1);
}
.gamification-wrp .gamification-box:hover .box-img .image1 .bottom-box .progress .progress-bar {
    width: 100%;
}
.gamification-wrp .instantly-box {
    max-width: 243px;
    margin: 0 auto;
    position: relative;
}
.gamification-wrp .instantly-box span {
    position: absolute;
    top: 20px;
    left: 55px;
    font-weight: 400;
    font-size: 16px;
    display: block;
    color: #757575;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s linear, opacity 0.3s linear;
}
.gamification-wrp .gamification-box:hover .instantly-box span {
    opacity: 1;
    transform: scaleX(1);
}
.gamification-wrp .instantly-box span.text2 {
    top: 67px;
}
.gamification-wrp .instantly-box img {
    max-width: 100%;
}
.gamification-wrp .image2 button {
    border-radius: 176px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 4px;
    display: block;
    border: none;
    width: 100%;
    margin: 8px 0 0;
}
.gamification-wrp .image2 button span {
    display: block;
    height: 40px;
    border-radius: 1216px;
    transition: all 0.3s linear;
}
.gamification-wrp .gamification-box:hover .image2 button span {
    background: #5e72e4;
    box-shadow: -2px 2px 5px 0 #5e72e4 inset, -6px 4px 8px 0 rgba(255, 255, 255, 0.25) inset, 6px -4px 12px 0 rgba(0, 0, 0, 0.25) inset;
}
.gamification-wrp .gamification-box:hover .instantly-box span {
    width: auto;
}
.gamification-wrp .gamification-box .box-img .image3 {
    max-width: 327px;
    position: relative;
}
.gamification-wrp .gamification-box .box-img .image3 img {
    max-width: 100%;
    height: auto;
}
.gamification-wrp .gamification-box .box-img .image3 .search-image {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.gamification-wrp .gamification-box .box-img .image3 .video-img {
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.gamification-wrp .gamification-box:hover .image3 .search-image {
    top: 0;
    -webkit-transform: unset;
    transform: unset;
}
.gamification-wrp .gamification-box:hover .image3 .video-img {
    transform: translateY(45px);
    opacity: 1;
    visibility: visible;
}
.gamification-wrp .gamification-box .box-img .image4 {
    position: relative;
    width: 100%;
}
.gamification-wrp .gamification-box .box-img .image4 img {
    height: auto;
    transition: all 0.3s linear;
}
.gamification-wrp .gamification-box .box-img .image4 .social-img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
}
.gamification-wrp .gamification-box .box-img .image4 .social-img-hover {
    opacity: 0;
    margin: 0 auto;
    display: table;
}
.gamification-wrp .gamification-box:hover .box-img .image4 .social-img {
    opacity: 0;
}
.gamification-wrp .gamification-box:hover .box-img .image4 .social-img-hover {
    opacity: 1;
}
.gamification-wrp .gamification-box .box-img img {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
}
.gamification-wrp .gamification-box .detail {
    padding: 8px 0 0;
}
.gamification-wrp .gamification-box .detail h3 {
    color: #333;
    font-size: 28x;
    font-weight: 200;
    margin: 0 0 8px;
}
.gamification-wrp .gamification-box .detail p {
    color: #333;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}
/* **** End Gamification **** */

/* **** Action **** */
.action-wrp {
    padding: 48px 0;
    overflow: hidden;
}
.action-wrp .action-title {
    padding: 0 0 48px;
}
.action-wrp .action-title .row {
    align-items: flex-end;
}
.action-wrp .action-title h2 {
    color: #1e1e1e;
    font-size: 56px;
    font-weight: 200;
    opacity: 0.9;
    margin: 0 0 12px;
}
.action-wrp .action-title p {
    color: #1e1e1e;
    font-size: 22px;
    font-weight: 300;
    line-height: 35px;
    opacity: 0.7;
    margin: 0;
}
.action-wrp .action-title .action-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.action-wrp .action-title .action-slider-arrow button {
    border-radius: 205px;
    border: 1px solid #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    font-size: 18px;
}
.action-wrp .action-title .action-slider-arrow button.slick-disabled {
    opacity: 0.4;
}
.action-wrp .action-slider {
    position: relative;
    margin-right: -250px;
}
.action-wrp .action-slider:after {
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    position: absolute;
    right: -40px;
    top: 0;
    width: 225px;
    height: 100%;
}
.action-wrp .action-slider .slick-list {
    margin: 0 -10px;
}
.action-wrp .action-slider .slick-slide {
    padding: 10px;
}
.action-wrp .action-slider .slick-slide:hover .slider-box {
    transform: scale(1.05);
    border-color: #000918;
}
.action-wrp .action-slider .slick-slide:hover .slider-box .detail .btn-white{
    background-color: #2239ba;
    color: #fff;
}
.action-wrp .action-slider .slider-box {
    border-radius: 16px;
    background: #24c4e6;
    padding: 24px;
    height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: column;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border: 5px solid transparent;
}
.action-wrp .action-slider .slider-box .box-img img {
    max-width: 100%;
}
.action-wrp .action-slider .slider-box .detail h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 200;
    line-height: 35px;
    margin: 0 0 8px;
}
.action-wrp .action-slider .slider-box .detail p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    margin: 0 0 48px;
}
.action-wrp .action-slider .slider-box .detail .btn-white {
    margin: 0;
    padding: 8px 24px;
    font-weight: 300;
}
/* **** End Action **** */

/* **** Featured **** */
.featured-wrp {
    padding: 48px 0;
}
.featured-wrp h2 {
    color: #1e1e1e;
    text-align: center;
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 40px;
}
.featured-wrp .marquee {
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-wrp .marquee-content {
    display: flex;
    gap: 96px;
}
.featured-wrp .marquee-content img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* **** End Featured **** */

/* **** Works **** */
.work-wrp {
    padding: 48px 0;
}
.work-wrp .work-block {
    border-radius: 40px;
    background: #000;
    padding: 64px 40px;
}
.work-wrp .work-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: column;
    height: 100%;
}
.work-wrp .work-title h2 {
    color: #fff;
    font-size: 72px;
    font-weight: 200;
    margin: 0 0 12px;
}
.work-wrp .work-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 12px;
}
.work-wrp .work-title p:last-child {
    margin: 0;
    font-size: 20px;
}
.work-wrp .work-title .btn-white {
    color: #000;
    margin: 0;
	line-height:22px;
    font-weight: 300;
}
.work-wrp .work-title .btn-white:hover {
    background-color: #0068d1;
    color: #fff;
}
.work-wrp .work-detail ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 0 24px;
    position: relative;
}
.work-wrp .work-detail ul li:last-child {
    padding: 0;
}
.work-wrp .work-detail ul li:last-child:before {
    display: none;
}
.work-wrp .work-detail ul li::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    border-left: 1px dashed #fff;
    left: 20px;
    top: 46%;
}
.work-wrp .work-detail ul li span.number {
    border-radius: 2032px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #000918;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    background-color: #000918;
    position: relative;
    z-index: 5;
}
.work-wrp .work-detail ul li .detail {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    width: 100%;
}
.work-wrp .work-detail ul li:nth-child(2) .detail {
    background: rgba(255, 255, 255, 0.06);
}
.work-wrp .work-detail ul li:nth-child(3) .detail {
    background: rgba(255, 255, 255, 0.04);
}
.work-wrp .work-detail ul li:nth-child(4) .detail {
    background: rgba(255, 255, 255, 0.02);
}
.work-wrp .work-detail ul li .detail h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 200;
    margin: 0 0 8px;
}
.work-wrp .work-detail ul li .detail p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    margin: 0;
}
/* **** End Works **** */

/* **** Performance **** */
.performance-wrp {
    padding: 48px 0;
}
.performance-wrp .performance-title {
    padding: 0 0 48px;
    text-align: center;
}
.performance-wrp .performance-title h2 {
    color: #1e1e1e;
    font-size: 56px;
    font-weight: 200;
    opacity: 0.9;
    margin: 0 0 12px;
}
.performance-wrp .performance-title p {
    color: #1e1e1e;
    font-size: 28px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0;
}
.performance-wrp .row {
    row-gap: 30px;
}
.performance-wrp .performance-box {
    border-radius: 12px;
    background: #fafafa;
    display: flex;
    height: 250px;
    padding: 16px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
}
.performance-wrp .performance-box .box-icon {
    border-radius: 99px;
    background: linear-gradient(180deg, #0068d1 0%, #03488d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
}
.performance-wrp .performance-box h4 {
    color: #1e1e1e;
    font-size: 28px;
    font-weight: 200;
    margin: 0 0 12px;
}
.performance-wrp .performance-box p {
    color: #757575;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}
/* **** End Performance **** */

/* **** Video **** */
.video-wrp {
    padding: 48px 0;
}
.video-wrp .video-box {
    max-width: 100%;
    height: 370px;
    border-radius: 16px;
    background: #f2f2f2;
    margin: 0 auto;
    border-radius: 16px;
    padding: 10px;
    position: relative;
}
.video-wrp .video-box video {
    filter: blur(3px);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.video-wrp .video-box.show-video video {
    filter: unset;
}
.video-wrp .video-box .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    background-color: #d9d9d9;
    border-radius: 50px;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0068d1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    padding: 10px 16px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.video-wrp .video-box .play-button span {
    width: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.video-wrp .video-box:hover .play-button {
    gap: 10px;
    padding: 10px 24px;
    background-color: #fff;
    width: auto;
}
.video-wrp .video-box:hover .play-button span {
    width: auto;
}

/* **** FAQ **** */
.faq-wrp {
    padding: 48px 0 96px;
}
.faq-wrp .faq-title {
    padding: 0 0 48px;
}
.faq-wrp .faq-title .row {
    align-items: center;
}
.faq-wrp .faq-title h2 {
    color: rgba(30, 30, 30, 0.9);
    font-size: 80px;
    font-style: normal;
    font-weight: 200;
    margin: 0;
}
.faq-wrp .faq-title p {
    color: #1e1e1e;
    font-size: 28px;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}
.faq-wrp .accordion {
    border: none;
    background-color: transparent;
}
.faq-wrp .accordion-item {
    border: none;
    background-color: transparent;
    margin: 0 0 20px;
    border-radius: 24px;
    border: 1px solid rgba(30, 30, 30, 0.3);
    padding: 4px;
}
.faq-wrp .accordion-item:last-child {
    margin: 0;
}
.faq-wrp .accordion-item .accordion-button {
    background-color: transparent;
    padding: 12px 52px 12px 12px;
    color: #373737;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    border-radius: 0;
    border: none;
    box-shadow: none;
    outline: none;
    position: relative;
}
.faq-wrp .accordion-item .accordion-button::after {
    display: none;
}
.faq-wrp .accordion-item .accordion-button:before {
    position: absolute;
    content: "";
    background-image: url("../images/accordion-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    right: 16px;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(-180deg);
    transform: translate(0, -50%) rotate(-180deg);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.faq-wrp .accordion-item .accordion-button.collapsed:before {
    -webkit-transform: translate(0, -50%) rotate(0);
    transform: translate(0, -50%) rotate(0);
}
.faq-wrp .accordion-item .accordion-body {
    padding: 0 12px 12px;
}
.faq-wrp .accordion-item .accordion-body p {
    color: #757575;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    margin: 0;
}
/* **** End FAQ **** */

/* **** Footer **** */
footer {
    background-color: #000918;
    padding: 80px 0 40px;
    position: relative;
}
footer .footer-shape1 {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    pointer-events: none;
}
footer .footer-shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    pointer-events: none;
}
footer .newsletter-block {
    padding: 0 0 48px;
    margin: 0 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 5;
}
footer .newsletter-block .row {
    align-items: flex-end;
}
footer .newsletter-block h2 {
    color: #fff;
    font-size: 56px;
    font-style: normal;
    font-weight: 200;
    margin: 0 0 16px;
}
footer .newsletter-block h2 span {
    color: rgba(255, 255, 255, 0.5);
}
footer .newsletter-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    max-width: 541px;
    margin: 0;
}
footer .newsletter-block form {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 8px;
    max-width: 580px;
}
footer .newsletter-block .form-group {
    width: 100%;
}
footer .newsletter-block .form-group .form-control {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    border-radius: 205px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border: none;
    box-shadow: none;
    outline: none;
}
footer .newsletter-block .btn-white {
    border: none;
    color: #000;
    padding: 8px 24px;
    font-weight: 300;
}
footer .newsletter-block .btn-white:hover {
    background-color: #0068d1;
    color: #fff;
}
footer .footer-block {
    padding: 0 0 48px;
    margin: 0 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 5;
}
footer .footer-block .foot-logo img {
    max-width: 100%;
    height: 40px;
    margin: 0 0 32px;
}
footer .footer-block .foot-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    max-width: 541px;
    margin: 0;
}
footer .footer-block .quicklink-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 96px;
}
footer .footer-block .quicklink-block h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    margin: 0 0 28px;
}
footer .footer-block .quicklink-block ul li {
    margin: 0 0 16px;
}
footer .footer-block .quicklink-block ul li:last-child {
    margin: 0;
}
footer .footer-block .quicklink-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
footer .footer-block .quicklink-block ul li a:hover {
    color: #fff;
}
footer .copyright p {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    position: relative;
    z-index: 5;
}


.action-wrp .action-slider .slider-box .detail{
    position: relative;
}
.action-wrp .action-slider .slider-box .detail .arrow-button{
    position: absolute;
    max-width: 100%;
    left: 135px;
    bottom: 13px;
}

.video-wrp .video-box{
    height: 100%;
}
.hero-wrp .hero-video wistia-player{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.video-wrp .video-box wistia-player{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* **** End Footer **** */


.action-wrp .action-slider .slider-box .detail .arrow-button{
    animation: blink-arrow 1s infinite;
}
@keyframes blink-arrow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.action-wrp .action-slider .slider-box .detail .btn-white {
    border: none;
    background: linear-gradient(145deg, #0074e4, #005bb5);
    color: #fff;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4),
                inset -2px -2px 5px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}
.action-wrp .action-slider .slick-slide:hover .slider-box .detail .btn-white{
    border: none;
    background: linear-gradient(145deg, #0074e4, #005bb5);
    color: #fff;
}
.action-wrp .action-slider .slick-slide:hover .slider-box .detail .btn-white:hover {
    background: #fff;
    color: #0068d1;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
                inset -2px -2px 5px rgba(0, 104, 209, 0.4);
}


.wa__btn_popup .wa__btn_popup_icon {
    background: #000 !important;
    background-size: contain; /* makes the image fit */
    border-radius: 50%;       /* keep it round if you want */
    height: 56px;
    width: 56px;
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
}

.privacy p{
        font-size: 18px;
    line-height: 25px;
    color: rgba(30, 30, 30, 0.9);
}

.privacy ul li{
    font-size: 18px;
    line-height: 25px;
    color: rgba(30, 30, 30, 0.9);
    list-style: disc;
    margin: 10px;
}

hr {
    margin: 2rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
}


/* **** Contact Us Page ***** */
.contact-wrp{
    padding: 138px 0 90px;
}
.contact-wrp .container{
    max-width: 1320px;
}
.contact-wrp .titlebar{
    margin: 0 0 40px;
}
.contact-wrp .titlebar h2{
    font-size: 40px;
    font-weight: 300;
    color: #333;
    margin: 0;
    text-align: center;
}
.contact-wrp .contact-from{
    border-radius: 24px;
    background: #000;
    padding: 40px;
}
.contact-wrp .contact-from h3{
    color: #fff;
    font-size: 42px;
    font-weight: 200;
    margin: 0 0 12px;
}
.contact-wrp .contact-from p{
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
    margin: 0 0 32px;
}
.contact-wrp .contact-from .form-group{
    margin: 0 0 20px;
}
.contact-wrp .contact-from .form-group .form-control{
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
    resize: none;
    padding: 10px 20px;
}
.contact-wrp .contact-from .form-group .form-control::placeholder{
    color: #fff;
}
.contact-wrp .contact-from .btn-white{
    margin: 0;
    padding: 8px 24px;
    border: none;
}
.contact-wrp .contact-detail{
    border-radius: 24px;
    background: #f2f2f2;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: column;
    height: 100%;
}
.contact-wrp .contact-detail .detail-title h3{
    color: #1e1e1e;
    font-size: 42px;
    font-weight: 200;
    opacity: 0.9;
    margin: 0 0 12px;
}
.contact-wrp .contact-detail .detail-title p{
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0 0 40px;
}
.contact-wrp .contact-detail .info{
    margin: 0 0 80px;
}
.contact-wrp .contact-detail .info ul li{
    margin: 0 0 24px;
}
.contact-wrp .contact-detail .info ul li:last-child{
    margin: 0;
}
.contact-wrp .contact-detail .info ul li a{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-wrp .contact-detail .info ul li a .box-icon{
    /* background: linear-gradient(180deg, #0068d1 0%, #03488d 100%); */
    background-color: #6161FF;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.contact-wrp .contact-detail .info ul li a .box-icon img{
    max-width: 32px;
}
.contact-wrp .contact-detail .info ul li a h4{
    color: #333;
    font-size: 20px;
    font-weight: 200;
    margin: 0 0 6px;
}
.contact-wrp .contact-detail .info ul li a p{
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}
.contact-wrp .contact-detail .social-icons{
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-wrp .contact-detail .social-icons a{
    height: 40px;
    width: 40px;
    background-color: #6161FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    border-radius: 100%;
}
/* **** End Contact Us Page ***** */

textarea.wpcf7-form-control{height:150px;}
.wpcf7-response-output{color:#fff}



/* **** Play & Earn **** */
.play-hero-wrp{
    padding: 112px 0 40px;
    text-align: center;
}
.play-hero-wrp h6{
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 99px;
    background: rgba(30, 30, 30, 0.10);
    padding: 6px 24px;
    display: table;
    margin: 0 auto 24px;
}
.play-hero-wrp h2{
    color: #000918;
    font-size: 120px;
    font-weight: 200;
    margin: 0 0 24px;
}
.play-hero-wrp p{
    color: #1E1E1E;
    font-size: 28px;
    font-weight: 300;
    line-height: 40px;
    margin: 0 0 24px;
}
.play-hero-wrp h5{
    color: #1E1E1E;
    font-size: 28px;
    font-weight: 200;
    line-height: 40px;
    margin: 0;
}
.play-hero-wrp .hero-img{
    position: relative;
    margin: 0 auto 24px;
    display: table;
}
.play-hero-wrp .hero-img .hero-down-tap-img{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
}
.play-hero-wrp .hero-img .hero-beast-img{
    margin: 0 auto;
    max-width: 100%;
}
.action-slider .winner-box{
    border-radius: 16px;
    background: #F2F2F2;
    height: 450px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.action-slider .winner-box .box-img{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-slider .winner-box .box-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.action-slider .winner-box h3{
    color: #1E1E1E;
    text-align: center;
    font-size: 24px;
    font-weight: 200;
    line-height: 35px;
    margin: 0;
}
.action-wrp .info{
    padding: 48px 0 0;
}
.action-wrp .info h6{
    color: #1E1E1E;
    font-size: 24px;
    font-weight: 300;
    opacity: 0.7;
    margin: 0;
    max-width: 1071px;
}



.how-it-works-wrp{
    padding: 48px 0 96px;
}
.how-it-works-wrp .work-box{
    border-radius: 24px;
    background: #F2F2F2;
    height: 100%;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
    gap: 24px;
}
.how-it-works-wrp .work-box h6{
    color: #1E1E1E;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    margin: 0 auto;
}
.how-it-works-wrp .work-box a{
    color: #5214E0;
    font-size: 48px;
    font-weight: 300;
    line-height: 60px;
    border-radius: 615px;
    background: #FFF;
    padding: 24px 72px 24px 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.how-it-works-wrp .work-box a i{
    font-size: 20px;
}
.how-it-works-wrp .work-box h3{
    color: #1E1E1E;
    font-size: 40px;
    font-weight: 200;
    opacity: 0.9;
    margin: 0;
}
.how-it-works-wrp .work-box ul{
    padding-left: 24px;
}
.how-it-works-wrp .work-box ul li{
    color: #1E1E1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    opacity: 0.7;
    list-style: disc;
    margin: 0 0 8px;
}
.how-it-works-wrp .work-box ul li:last-child{
    margin: 0;
}
/* **** End Play & Earn **** */


.whatsapp-icon{
    position: fixed;
    background: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -webkit-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
    -moz-box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    height: 56px;
    width: 56px;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 121;
}
.whatsapp-icon img{
    max-width: 30px;
}



.action-wrp .action-slider{
    margin: 0;
}
.action-wrp .action-slider .slider-box{
    padding: 16px;
    border-radius: 16px;
    gap: 20px;
    height: 350px;
}
.action-wrp .action-slider .slider-box .detail h3{
    font-size: 20px;
    line-height: 30px;
}
.action-wrp .action-slider .slider-box .detail p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    margin: 0 0 20px;
}
.action-wrp .action-slider:before{
    height: 100%;
    content: "";
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    position: absolute;
    top: 0;
    left: -20px;
    width: 200px;
    z-index: 1;
}
.action-wrp .action-slider:after{
    height: 100%;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 90.42%);
    position: absolute;
    top: 0;
    right: -20px;
    width: 200px;
    z-index: 1;
}

.action-wrp button.slick-prev.slick-arrow,
.action-wrp button.slick-next.slick-arrow{
    position: absolute;
    left: 60px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9;
    font-size: 0;
    border: 0;
    background-color: transparent;
    line-height: 0;
}
.action-wrp button.slick-next.slick-arrow{
    left: auto;
    right: 60px;
}

.action-wrp button.slick-prev.slick-arrow:before,
.action-wrp button.slick-next.slick-arrow:before{
    position: absolute;
    content: "\f060";
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    height: 60px;
    width: 60px;
    background-color: #181b34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border-radius: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.action-wrp button.slick-next.slick-arrow:before{
    left: auto;
    right: 0;
    content: "\f061";
}

.action-wrp .action-slider .slider-box{
    height: 362px;
}
.action-wrp .action-slider .slider-box .detail p{
    min-height: 70px;
}

.gamification-wrp .gamification-title h2 span{color:#000;}

.action-wrp .action-title h2{
    color: #000;
    font-size: 72px;
}