* {
    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: #000;
}

/* font */

/* font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap');


/* common css */
:root {
    --white-color: #FFFFFF;
    --yellow-color: #FFE800;
    --blue-color: #504895;
    --black-color: #383838;
    --gray-color: #7A7A7A;
}

.white {
    color: var(--white-color);
}

.black {
    color: var(--black-color);
}

.gray {
    color: var(--gray-color);
}

body {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--black-color);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--blue-color);
}

h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white-color);
}

h1 span {
    color: var(--yellow-color);
    font-style: italic;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--black-color);
}

h2 span {
    font-style: italic;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--gray-color);
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--gray-color);
}

p a {
    color: var(--gray-color);
    font-size: inherit;
    font-family: inherit;
}

p a:hover {
    color: var(--gray-color);
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white-color);
}

a:hover {
    color: var(--white-color);
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.btn.btn-white {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 40px;
    background: var(--yellow-color);
    color: var(--blue-color);
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
}

.btn.btn-white img {
    max-width: 26px;
    margin-right: 10px;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

footer {
    padding-top: 80px;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.bg {
    background: var(--gray-color);
}

img,
video {
    max-width: 100%;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #D9D9D9;
    width: 14px;
    height: 14px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--blue-color);
    outline: 2px solid var(--white-color);
    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;
} */

/* 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 #fff;
}

#header {
    background: var(--blue-color);
    padding: 15px 0;
    transition: .5s all;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#header .logo-box img {
    max-width: 143px;
    width: 100%;
}

#header .main-nav .click-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 222;
    width: 25px;
    height: 33px;
}

#header .main-nav .click-menu span {
    width: 25px;
    height: 3px;
    background: var(--white-color);
    display: block;
    margin: 6px 0;
    border-radius: 10px;
    transition: .5s all;
}

#header .main-nav .click-menu.show span:nth-child(2) {
    display: none;
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#header .button-box {
    margin-left: 20px;
}

#header .button-box .btn.btn-white {
    padding: 8px 30px;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
    color: var(--white-color);
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}


/* homeBanner css */
#homeBanner {
    background: var(--blue-color);
    padding: 40px 0 0 0;
}

#homeBanner .image-box img {
    /* z-index: -11; */
    margin-top: 25px;
}

#homeBanner .homeBanner-box {
    text-align: center;
    position: relative;
}

#homeBanner .homeBanner-box::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape-mid.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    top: 23%;
    right: 0;
    width: 84px;
    height: 84px;
}

#homeBanner .homeBanner-box::before {
    position: absolute;
    content: "";
    background-image: url("../images/shape-small.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 23%;
    left: 0;
    width: 71px;
    height: 71px;
}

#homeBanner .sub-text {
    padding: 10px 0 20px 0;
}

#homeBanner .sub-text ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    justify-content: center;
}

#homeBanner .sub-text ul li {
    font-size: 22px;
    font-weight: 500;
    color: var(--white-color);
}

#homeBanner .sub-text ul li img {
    max-width: 40px;
    margin-right: 10px;
}

#homeBanner .button-box ul {
    justify-content: center;
}


/* money css */
#money {
    background-image: url("../images/money-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -158px;
    padding-top: 170px;
    z-index: 99;
    position: relative;
}

#money .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

#money .box {
    text-align: center;
}

#money .box h4 {
    font-weight: 600;
    text-align: center;
    color:var(--black-color);
    text-transform: none;
}


/* winning css */

/* Common color section title */
#winning .section-heading h2,
#download .section-heading h2,
#logo .section-heading h2,
#dream-team .section-heading h2 {
    color: var(--white-color);
}

#winning .section-heading h2 span,
#download .section-heading h2 span,
#logo .section-heading h2 span,
#dream-team .section-heading h2 span {
    color: var(--yellow-color);
}

/* Common color section title end */

#winning {
    background: var(--blue-color);
    position: relative;
    z-index: 1;
}

#winning::after {
    position: absolute;
    content: "";
    background-image: url("../images/back-border.webp");
    width: 100%;
    height: 145px;
    top: 56%;
    transform: translateY(-56%);
    z-index: -1;
    background-position: center center;
    background-size: 100% 100%;
}

#winning .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

#winning .box {
    max-width: 176px;
    margin: 0 auto;
}

#winning .box.box2,
#winning .box.box4,
#winning .box.box6 {
    margin-top: -30px;
}

#winning .box .img-box img {
    margin-bottom: 10px;
}

#winning .box h4 {
    font-weight: 600;
    text-align: center;
    color: var(--white-color);
    text-transform: none;
}


/* cash css */
#cash {
    position: relative;
}

#cash::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape-mid.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    top: 6%;
    right: 22%;
    width: 84px;
    height: 84px;
    z-index: -1;
}

#cash::before {
    position: absolute;
    content: "";
    background-image: url("../images/shape-small.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 8%;
    left: 19%;
    width: 71px;
    height: 71px;
    z-index: -1;
}

#cash .rating-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 7px;
    margin-bottom: 20px;
}

#cash .box {
    padding: 30px 16px;
    border-radius: 33px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 10px 6px;
}

#cash .box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

#cash .box h5 {
    color: var(--black-color);
    font-weight: 800;
    text-transform: none;
}

#cash .owl-nav button {
    position: absolute;
    bottom: 0;
}

#cash .owl-nav button.owl-prev {
    left: 44%;
}

#cash .owl-nav button.owl-next {
    right: 44%;
}

#cash .owl-theme .owl-nav {
    padding-top: 40px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none;
}


/* download css */
#download {
    background: var(--blue-color);
}

#download .row {
    align-items: center;
}

#download h4 {
    font-weight: 600;
    color: var(--white-color);
    text-transform: none;
}

#download .content-box p {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 10px;
}

#download .content-box ul li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

#download .content-box ul li:after {
    position: absolute;
    background: var(--white-color);
    width: 6px;
    height: 6px;
    content: "";
    left: 0;
    top: 10px;
    border-radius: 50%;
}

/* how css */
#how .content-box p {
    font-size: 18px;
    margin-bottom: 10px;
}


/* logo css */
#logo {
    background: var(--blue-color);
}

#logo-slider {
    padding: 20px 0;
}

#logo .img-box img {
    max-width: 60%;
    display: block;
    margin: 0 auto;
}


/* faq css */
#faq {
    position: relative;
}

#faq::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape-mid.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    top: 4%;
    right: 22%;
    width: 84px;
    height: 84px;
}

#faq::before {
	position: absolute;
	content: "";
	background-image: url("../images/shape-small.webp");
    background-repeat: no-repeat;
    background-size: 100%;
	bottom: 33%;
	left: 5%;
	width: 71px;
    height: 71px;
}

#faq .faq-part {
    position: relative;
}

#faq .faq-part::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape-big.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 0;
    right: 3%;
    width: 105px;
    height: 105px;
}

.accordion-button {
    border-radius: 30px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-button::after {
    width: 18px;
    height: 12px;
    background-image: url("../images/arrow.webp");
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: 100%;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/arrow.webp");
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #999999;
    border-radius: 30px;
}

.accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #999999;
}

.accordion-item:first-of-type {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

.accordion-button h5 {
    font-weight: 600;
    text-transform: none;
    margin-bottom: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 0 1.25rem 1rem;
}


/* footer css */
footer {
    background: var(--blue-color);
}

footer .top-box .logo-box img {
    max-width: 220px;
    margin-bottom: 30px;
}

footer .top-box h5 {
    color: var(--white-color);
    font-weight: 700;
    text-transform: none;
    margin-bottom: 25px;
}

footer .top-box ul li a {
    font-weight: 500;
}

footer .top-box .list-box li:not(:last-child) {
    margin-bottom: 8px;
}

footer .top-box .link-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 10px;
    margin-top: 20px;
}

footer .top-box .link-box ul img {
    max-width: 30px;
}

footer .top-box .box.box4 {
    float: right;
}

footer .end-box {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer .end-box .row {
    align-items: center;
}

footer .end-box .box.box2 .link-box p {
    font-weight: 600;
    color: var(--white-color);
    padding-left: 90px;
}

footer .end-box .logo-box img {
    max-width: 143px;
    width: 100%;
}

footer .end-box .link-box ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 30px;
}

footer .end-box .copyright {
    display: flex;
    justify-content: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer .end-box .copyright p {
    color: var(--white-color);
    font-weight: 600;
}

/* Privacy css inner page */

.inner-pg-ttl {
    padding-bottom: 180px !important;
    position: relative;
}

.inner-pg-ttl:after {
    position: absolute;
    content: "";
    background-image: url(../images/inner-pg-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 0;
    width: 100%;
    height: 131px;
}


.inner-pg-ttl .image-box img {
    margin-top: 0 !important;
  }

#privacy { 
    position: relative;
    margin-top: -100px;
}

#privacy a {
  color: var(--blue-color);
  text-transform: unset;
}

#homeBanner.inner-pg-ttl .homeBanner-box::before{
    display: none;
}

#homeBanner.inner-pg-ttl .homeBanner-box::after {
    display: none;
}

#privacy .list {
    list-style: number;
    padding-left: 20px;
}

#privacy .list {
    list-style: number;
    padding-left: 20px;
    margin-bottom: 10px;
}

#privacy .list li {
    padding-bottom: 10px;
}

#privacy .list ::marker {
    color: var(--gray-color);
}


/* About Us page css */

.inner-pg-ttl.about {
    padding-bottom: 0 !important;
    position: relative;
}

.inner-pg-ttl.about .homeBanner-box {
    text-align: left !important;
    position: relative !important;
}

.inner-pg-ttl.about .homeBanner-box::after {
    top: 0 !important;
    right: 12% !important;
    display: block !important;
}


/* who css */
.who {
    position: relative;
}

.who::before {
    position: absolute;
    content: "";
    background-image: url(../images/shape-big.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    top: 2%;
    left: 31%;
    width: 105px;
    height: 105px;
}

.who .row {
    align-items: center;
}

.who .section-heading {
    margin-bottom: 15px;
    text-align: left;
}

.who .section-heading h2 {
    font-size: 30px;
}

.who .content-box .text-box p {
    font-weight: 500;
}

.who .image-box img,
#action .image-box img {
    border-radius: 34px;
}

.who .content-box ul li::after {
    position: absolute;
    background: var(--gray-color);
    width: 6px;
    height: 6px;
    content: "";
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.who .content-box ul li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}


/* dream-team css */
#dream-team {
    background: var(--blue-color);
}

#dream-team .box {
    text-align: center;
}

#dream-team .box .image-box img {
    border-radius: 130px;
}

#dream-team .box .content-box {
    padding: 13px;
}

#dream-team .box .content-box h4 {
    font-weight: 700;
    color: var(--white-color);
    text-transform: unset;
    margin-bottom: 5px;
}

#dream-team .box .content-box h4.mediume {
    font-weight: 500;
    margin-bottom: 15px;
}

#dream-team .box .content-box p {
    font-weight: 500;
    color: var(--white-color);
}


/* action css */
#action {
    position: relative;
}

#action::after {
    position: absolute;
    content: "";
    background-image: url("../images/shape-mid.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    top: 4%;
    right: 22%;
    width: 84px;
    height: 84px;
}

#action::before {
    position: absolute;
    content: "";
    background-image: url("../images/shape-small.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: 25%;
    left: 5%;
    width: 71px;
    height: 71px;
}

#action .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
  }