@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&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);
@import url(https://fonts.googleapis.com/css2?family=Paytone+One&display=swap);
/* Font Family */
/* Font Family List */
/* Looping the font family based on the index value */
/* Color */
/* Font Size */
/* Font Weight */
/* Lato Font Family */
:root {
  --theme-bg-color: $theme-bg-color; /* Background Color */
  --primary-font-color: $primary-font-color; /* Text Color */
  --secondary-font-color: $secondary-font-color; /* Text Color */
  --yellow-color: $yellow-color;
  --dark-yellow-color: $dark-yellow-color;
  --border-color: $border-color;
  --violet-color: $violet-color;
}

/* Common Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px; /* Base Font Size */
}

body {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  line-height: normal;
  overflow-x: hidden;
}

.closenav {
  color: #D5CA1C;
}

a {
  text-decoration: none;
  color: #ffffff;
}

h1 {
  font-size: 8rem;
}

h2 {
  font-size: 6rem;
  font-family: "Outfit";
  font-weight: 400;
}

h3 {
  font-size: 5.7rem;
}

h4 {
  font-size: 5rem;
}

h5 {
  font-size: 3.2rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  font-size: 1.6rem;
}

span {
  font-size: 1.4rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

ul li {
  list-style-type: none;
}

.page-container {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

button {
  border: none;
  outline: none;
  background: transparent;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #525252;
}

::-webkit-scrollbar-thumb {
  background: #d5ca1c;
}

.chat__icon {
  transition: 0.3s all ease-in-out;
}

.banner__section__right .chat-bubble-reg {
  position: unset;
}

.chat-bubble-reg {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.chat-bubble-reg:hover .tooltip-text-register-btn {
  visibility: visible;
}
.chat-bubble-reg .tooltip-text-register-btn {
  visibility: hidden;
  width: 150px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
}

.log-signup .chat-bubble-reg .tooltip-text-register-btn {
  top: 120%;
}

.become-an-aff.chat-bubble-reg .tooltip-text-register-btn {
  left: 98%;
  margin-left: 0;
  top: 40%;
}

@media screen and (max-width: 1024px) {
  .become-an-aff.chat-bubble-reg .tooltip-text-register-btn {
    left: 50%;
    top: 75%;
  }
}
.chat-bubble-reg .start__earning .tooltip-text-register-btn {
  bottom: 108%;
}

.notifyjs-corner .notifyjs-bootstrap-error {
  white-space: wrap;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #181818;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-background-clip: text;
          background-clip: text;
}

.funmatch_btn {
  min-width: 120px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  color: #ffffff;
  gap: 1rem;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 1.6rem;
  min-height: 4.6rem;
  transition: 0.2s;
}
.funmatch_btn.login {
  background: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
}
@media (max-width: 580px) {
  .funmatch_btn.login {
    border: 1px solid rgb(213, 202, 28);
  }
}
.funmatch_btn.login:hover, .funmatch_btn.login:active, .funmatch_btn.login:focus {
  background: transparent;
  transition: 0.2s;
  color: rgb(0, 0, 0);
}
.funmatch_btn.login:hover svg path, .funmatch_btn.login:active svg path, .funmatch_btn.login:focus svg path {
  fill: rgb(0, 0, 0);
}
@media (max-width: 580px) {
  .funmatch_btn.login:hover svg path, .funmatch_btn.login:active svg path, .funmatch_btn.login:focus svg path {
    fill: #ffffff;
  }
}
@media (max-width: 580px) {
  .funmatch_btn.login:hover, .funmatch_btn.login:active, .funmatch_btn.login:focus {
    color: #ffffff;
  }
}
.funmatch_btn.get__started {
  background: rgb(213, 202, 28);
  border: 1px solid rgb(213, 202, 28);
  color: rgb(0, 0, 0);
}
.funmatch_btn.get__started:hover, .funmatch_btn.get__started:active, .funmatch_btn.get__started:focus {
  background: transparent;
}
@media (max-width: 580px) {
  .funmatch_btn.get__started:hover, .funmatch_btn.get__started:active, .funmatch_btn.get__started:focus {
    color: #ffffff;
  }
}
@media (max-width: 767px) {
  .funmatch_btn {
    min-width: 10.5rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 580px) {
  .funmatch_btn {
    border: 1px solid #d5ca1c;
  }
}

.header {
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  box-shadow: 2px 2px 10px #f1f1f1;
}
.header.colored {
  background: rgba(192, 188, 0, 0.368627451);
}
.header .header__main {
  padding: 27px 0;
}
@media (max-width: 580px) {
  .header .header__main {
    height: 7rem;
  }
}
.header .header__wrapper .header_logo .header__logo__img {
  max-width: 180px;
}
@media (max-width: 767px) {
  .header .header__wrapper .header_logo .header__logo__img {
    max-width: 120px;
  }
}
.header .header__wrapper .header__nav ul {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  gap: 3.6rem;
  margin-bottom: 0;
}
.header .header__wrapper .header__nav ul li {
  list-style: none;
}
.header .header__wrapper .header__nav ul li a {
  text-decoration: none;
  color: rgb(24, 24, 24);
  font-size: 1.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}
.header .header__wrapper .header__nav ul li a.active {
  border-bottom: 2px solid rgb(213, 202, 28);
}
@media (max-width: 1200px) {
  .header .header__wrapper .header__nav {
    display: none;
  }
}
.header .header__wrapper .header__login-signup {
  gap: 1.2rem;
}
.header .header__wrapper .header__login-signup .log-signup {
  display: flex;
  gap: 10px;
}
@media (max-width: 580px) {
  .header .header__wrapper .header__login-signup .log-signup {
    display: none;
  }
}
.header .header__wrapper .header__login-signup .mob__ham {
  display: none;
}
.header .header__wrapper .header__login-signup .mob__ham.closenav {
  color: rgb(0, 0, 0);
}
@media (max-width: 1200px) {
  .header .header__wrapper .header__login-signup .mob__ham {
    display: block;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    color: rgb(0, 0, 0);
  }
}

.menuoverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(9, 9, 9, 0.5);
  z-index: 99;
  right: -100%;
  transition: 0.5s;
}

.mobile__nav_bar {
  display: none;
  right: 0px;
  position: fixed;
  height: 100%;
  z-index: 99;
}
@media (max-width: 1200px) {
  .mobile__nav_bar {
    display: block;
    background-color: #111111;
    width: 75%;
    max-width: 400px;
    min-width: 280px;
    right: -400px;
    transition: 0.5s;
  }
  .mobile__nav_bar .header__nav .close_nav {
    cursor: pointer;
  }
  .mobile__nav_bar .header__nav ul {
    text-align: left;
    margin-top: 25px;
  }
  .mobile__nav_bar .header__nav ul li {
    list-style: none;
  }
  .mobile__nav_bar .header__nav ul li:not(:first-child) {
    margin-top: 15px;
  }
  .mobile__nav_bar .header__nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
  }
  .mobile__nav_bar .header__nav ul li a.active {
    border-bottom: 2px solid rgb(213, 202, 28);
  }
}
@media (max-width: 1200px) and (max-width: 580px) {
  .mobile__nav_bar .header__nav ul li a {
    font-size: 1.4rem;
  }
}
.mobile__nav_bar .hamburger_logo {
  max-width: 180px;
}
@media (max-width: 767px) {
  .mobile__nav_bar .hamburger_logo {
    max-width: 120px;
  }
}
.mobile__nav_bar .mob__login {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
  margin-top: 25px;
  cursor: pointer;
}
@media (min-width: 581px) {
  .mobile__nav_bar .mob__login {
    display: none;
  }
}

.footer {
  background: #181818;
  padding: 20px;
}
@media (max-width: 1024px) {
  .footer {
    text-align: center;
  }
}
.footer .page-container .footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper {
    display: block;
  }
}
.footer .page-container .footer__wrapper .footer__left__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer .page-container .footer__wrapper .footer__left__wrapper .footer__logo__img {
  max-width: 180px;
}
@media (max-width: 767px) {
  .footer .page-container .footer__wrapper .footer__left__wrapper .footer__logo__img {
    max-width: 120px;
  }
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__left__wrapper {
    display: block;
  }
}
.footer .page-container .footer__wrapper .footer__left__wrapper .copyright {
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__left__wrapper .copyright {
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .footer .page-container .footer__wrapper .footer__left__wrapper .copyright {
    font-size: 1.2rem;
  }
}
.footer .page-container .footer__wrapper .footer__right__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__right__wrapper {
    display: block;
    margin-top: 10px;
  }
}
.footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap {
  margin-bottom: unset;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap {
    display: flex;
    justify-content: center;
  }
}
.footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap li {
  font-weight: 400;
  font-size: 1.4rem;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap li {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 360px) {
  .footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap li {
    font-size: 1.2rem;
  }
}
.footer .page-container .footer__wrapper .footer__right__wrapper .right__wrap li .terms__and__conditions a:hover {
  color: #d5ca1c;
  transition: 0.2s;
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper {
    justify-content: center;
    padding-top: 15px;
  }
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper .socialmediaicon .socialmedia {
  font-size: 20px;
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper .socialmediaicon .socialmedia.instagram:hover {
  color: #d5ca1c;
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper .socialmediaicon .socialmedia.twitter:hover {
  color: #d5ca1c;
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper .socialmediaicon .socialmedia.youtube:hover {
  color: #d5ca1c;
}
.footer .page-container .footer__wrapper .footer__right__wrapper .social__media__wrapper .socialmediaicon .socialmedia.facebook:hover {
  color: #d5ca1c;
}

.banner__section__wrapper {
  padding: 40px 0;
}
.banner__section__wrapper .banner__wrapper {
  padding-top: 10rem;
  display: flex;
  gap: 2%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper {
    padding-top: 7rem;
  }
}
@media (max-width: 1100px) {
  .banner__section__wrapper .banner__wrapper .banner__section__left {
    display: none;
  }
}
.banner__section__wrapper .banner__wrapper .right-section {
  display: grid;
  grid-template-columns: 50% auto;
  position: relative;
  gap: 2%;
  justify-content: center;
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section {
    display: block;
  }
}
.banner__section__wrapper .banner__wrapper .right-section::before {
  position: absolute;
  content: "";
  top: -22%;
  left: 0;
  bottom: 0;
  right: 29%;
  opacity: 0.07;
  z-index: -1;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center {
  position: relative;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  color: rgb(24, 24, 24);
  word-break: break-word;
}
@media (max-width: 1024px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate {
    font-size: 3.5rem;
  }
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate {
    font-size: 2rem;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate .funmatch {
  font-weight: 500;
  font-size: 4.2rem;
  color: #d5ca1c;
}
@media (max-width: 1024px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate .funmatch {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate .funmatch {
    font-size: 3.5rem;
  }
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate .funmatch {
    text-align: center;
  }
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate .funmatch {
    font-size: 2rem;
  }
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiliate {
    text-align: center;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiiliate__description {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiiliate__description {
    font-size: 1.2rem;
  }
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center .funmatch__affiiliate__description {
    text-align: center;
  }
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center button {
    display: block;
    margin: auto;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center button .started__btn {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  border: none;
  outline: none;
  background-color: #ffffff;
  border-radius: 42px;
  box-shadow: 2px 2px 10px #dad2d2;
  padding: 3px 2px 3px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 175px;
  gap: 25px;
  margin-top: 80px;
  cursor: pointer;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center button .started__btn:hover {
  color: #000000;
  transition: 0.3s all ease-in-out;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__center button .started__btn .arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #d5ca1c;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center button .started__btn {
    font-size: 1.4rem;
    min-width: 155px;
  }
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__center button .started__btn {
    margin: 20px auto;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right {
  position: relative;
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning {
  position: relative;
  width: 328px;
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning {
    margin: auto;
    margin-top: 50px;
    margin-top: auto;
  }
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning {
    width: 100%;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning img.card-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning img.card-bg {
    display: none;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .start__earning {
  position: absolute;
  content: "";
  right: 0%;
  top: -8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(24, 24, 24);
  background: rgb(213, 202, 28);
  border: 1px solid rgb(213, 202, 28);
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 140px;
  border-radius: 25px;
  padding: 5px 3px 5px 15px;
  transition: 0.3s all ease-in-out;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .start__earning:hover {
  background: transparent;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .start__earning .arrow {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .start__earning {
    top: -17%;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper {
  padding: 20px;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper {
    padding: 15px;
    background: rgba(213, 202, 28, 0.2);
    border-radius: 35px;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .earning__header {
  font-weight: 400;
  font-size: 1.2rem;
  color: rgb(24, 24, 24);
  text-transform: capitalize;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .earning__header {
    text-align: center;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .input__wrapper {
  position: relative;
  margin-top: 20px;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .input__wrapper .rupee {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .input__wrapper .earning__input {
  border: none;
  outline: none;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 42px;
  width: 75%;
  font-size: 1.2rem;
  padding-left: 20px;
  caret-color: #181818;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .input__wrapper .earning__input {
    margin: 15px auto;
    display: block;
    width: 100%;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper {
    justify-content: center;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper .casino__required__wrapper .casino__required {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  gap: 20px;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper .casino__required__wrapper .casino__required .profit__required {
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(24, 24, 24, 0.7);
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper .casino__required__wrapper .casino__required .casino__amount,
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper .casino__affiliate__button__wrapper .casino__required__wrapper .casino__required .casino__percentage {
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(24, 24, 24);
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper a {
  width: 100%;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper a .become__affiliate {
  border: none;
  outline: none;
  background: rgb(241, 237, 197);
  font-family: "Paytone One", sans-serif;
  color: rgba(24, 24, 24, 0.6);
  font-weight: 400;
  font-size: 1.2rem;
  border-radius: 25px;
  padding: 10px;
  box-shadow: 2px 2px 10px #cacaca;
  transform: rotate(90DEG);
  position: absolute;
  right: -35px;
  top: 42%;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper a .become__affiliate:hover {
  background: transparent;
  border: 1px solid rgb(241, 237, 197);
  transition: 0.3s all ease-in-out;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .earning .earning__wrapper a .become__affiliate {
    transform: none;
    position: unset;
    display: block;
    text-align: center;
    margin: auto;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .upi__image__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 360px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .upi__image__wrapper {
    margin-top: 15px;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 56%;
  padding-top: 8%;
}
@media (max-width: 680px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper {
    margin-left: unset;
    padding-top: unset;
  }
}
@media (max-width: 520px) {
  .banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper {
    padding-top: 5%;
  }
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content {
  background: #F1EDC5;
  border-radius: 20px;
  border: 0.85px solid;
  border-image-source: linear-gradient(180deg, #D6CB21 100%, #E2D87D 100%);
  box-shadow: 0px 3.39px 16.97px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #d5ca1c;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .customer__count {
  font-weight: 500;
  font-size: 2.4rem;
  color: rgb(0, 0, 0);
  text-align: center;
  padding-top: 15px;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .happy__affiliates {
  font-size: 1.6rem;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 10px 0 15px 0;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .customer__image__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: -15px;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .customer__image__wrapper .customer__image1 {
  margin-right: -20px;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .customer__image__wrapper .customer__image2 {
  z-index: 1;
}
.banner__section__wrapper .banner__wrapper .right-section .banner__section__right .happy__customer__wrapper .card__content .customer__image__wrapper .customer__image3 {
  margin-left: -20px;
}

.joinaffiliates__section__wrapper {
  background: rgb(241, 237, 197);
  position: relative;
  overflow: hidden;
}
.joinaffiliates__section__wrapper .joinaffiliates__bg1 {
  position: absolute;
  right: 0;
}
.joinaffiliates__section__wrapper .joinaffiliates__bg2 {
  transform: rotate(180deg);
  position: absolute;
  bottom: 0;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper {
  display: grid;
  justify-content: center;
  grid-template-columns: 45% 50%;
  align-items: center;
  padding: 42px 0;
}
@media (max-width: 1024px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper {
    display: block;
    padding-bottom: 30px;
  }
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__header {
  font-weight: 500;
  font-size: 3.5rem;
  color: rgb(0, 0, 0);
}
@media (max-width: 1024px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__header {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__header {
    font-size: 3rem;
  }
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__subheader {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 16px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__subheader {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__left .joinaffiliates__left__subheader {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 580px) {
  .joinaffiliates__section__wrapper .joinaffiliates__wrapper .joinaffiliates__right {
    margin-top: 20px;
    gap: 20px;
  }
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap {
  position: relative;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner {
  position: relative;
  border-radius: 60px 60px 30px 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: white;
  margin-bottom: 20px;
  padding: 16px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  flex-direction: column;
  gap: 10px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner.join__center {
  max-width: 518px;
  width: 100%;
  border-radius: 40px 40px 30px 30px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner.join__center::before, .joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner.join__center::after {
  width: 41%;
  border-radius: 40px 40px 30px 30px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner.join__center::before {
  border-top-right-radius: 37px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner.join__center::after {
  border-top-left-radius: 37px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner::before, .joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner::after {
  content: "";
  position: absolute;
  width: 32%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: white;
  border-radius: 130px 90px 60px 60px;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner::before {
  left: 0;
  z-index: 1;
  border-top-right-radius: 140px;
  width: 28%;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner::after {
  right: 0;
  width: 32%;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner .header-base {
  width: 66%;
  height: 20px;
  background-color: #F1EDC5;
  position: absolute;
  top: 0;
  z-index: 0;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner p {
  z-index: 1;
  text-align: center;
  font-size: 1.4rem;
  margin: 0;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner .join__title {
  color: #000000;
  z-index: 1;
  position: relative;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_inner .join__title span {
  position: absolute;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_header {
  width: 115px;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  background: #F1EDC5;
  margin-bottom: -53px;
  z-index: 2;
  position: relative;
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap .join__wrap_header_wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 1;
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.joinaffiliates__section__wrapper .joinaffiliates__wrapper .join__wrap p {
  color: rgba(24, 24, 24, 0.6);
}

.aboutus__section__wrapper {
  margin-top: 5%;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__header {
  font-weight: 500;
  font-size: 3rem;
  color: rgb(0, 0, 0);
  text-align: center;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__definition {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  text-align: center;
  margin-top: 30px;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 480px) {
  .aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper {
  text-align: center;
  margin-bottom: 56px;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto auto 56px auto;
}
@media (max-width: 830px) {
  .aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper {
    margin: auto auto 36px auto;
  }
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper:last-child {
  grid-column: span 3;
}
@media (max-width: 1200px) {
  .aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper:last-child {
    grid-column: unset;
  }
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__image {
  position: relative;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgb(213, 202, 28);
  z-index: -1;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__header {
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000;
  margin-top: 20px;
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__details {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 20px;
  min-height: 60px;
}
@media (max-width: 768px) {
  .aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__details {
    min-height: 20px;
    margin-top: 5px;
  }
}
.aboutus__section__wrapper .page-container .aboutus_section3__wrapper .aboutus__wrapper .product__wrapper .product__details .show__more {
  color: rgba(24, 24, 24, 0.6);
  text-decoration: underline;
}

.earning-commission__section__wrapper {
  background: #F1EDC5;
  margin-top: 50px;
}
.earning-commission__section__wrapper .page-container {
  padding-top: 60px;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper {
    flex-direction: column;
  }
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__left .earning__commission {
  font-weight: 500;
  font-size: 3rem;
  color: #000000;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__left .commission__definition {
  font-weight: 500;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 20px;
}
@media (max-width: 767px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__left .commission__definition {
    font-size: 1.3rem;
  }
}
@media (max-width: 991px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__left {
    text-align: center;
    margin-bottom: 25px;
  }
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs {
  background: #ffffff;
  border-radius: 100px;
  padding: 5px;
  font-weight: 400;
  color: #181818;
  gap: 5px;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs li {
  font-size: 1.4rem;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs li:nth-child(2) button {
  border-radius: 2rem;
  border: none;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs li:first-child button {
  border-radius: 2rem;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs button {
  width: 100%;
  outline: none;
  border: none;
  color: #000000 !important;
  width: 126px;
  padding: 13px;
  background-color: transparent;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs button.active {
  background: #D5CA1C;
  isolation: unset;
}
@media (max-width: 380px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right .faq__tabs button {
    width: 110px;
  }
}
@media (max-width: 991px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__commission__wrapper .earning-commission__right {
    display: inline-flex;
    margin: auto;
  }
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap {
    flex-wrap: wrap;
  }
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap {
  max-width: 268px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap.active {
  background: #30323C;
  color: #EAEAEA;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap.active button {
  color: #EAEAEA;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap.active .loader__defintion {
  color: #EAEAEA;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .silver__medal__wrap {
  display: flex;
  justify-content: space-between;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .silver__medal__wrap .silver__left .silver {
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .silver__medal__wrap .silver__left .silver__percentage {
  font-weight: 700;
  font-size: 2.2rem;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .silver__medal__wrap .silver__right {
  position: relative;
  top: -24px;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .loader .progressBarcontainer {
  width: 100%;
  height: 10px;
  background: #E1E1E1 !important;
  overflow: hidden;
  border-radius: 24px;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .loader .progressBarValue {
  height: 10px;
  float: left;
  border-radius: 24px;
  background: #D5CA1C;
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .loader__defintion {
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 14px;
  color: rgba(24, 24, 24, 0.3764705882);
}
.earning-commission__section__wrapper .page-container .earning-commission__section4__wrapper .earning__stage__wrap .silver__wrap .amount {
  outline: none;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #D5CA1C;
  padding: 9px 0;
  margin-top: 30px;
  border-radius: 50px;
  background-color: transparent;
  width: 100%;
  color: #181818;
  cursor: auto;
}

.faq__section__wrapper .page-container .faq__section5__wrapper {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .faq__section__wrapper .page-container .faq__section5__wrapper {
    margin-top: 50px;
  }
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__header {
  font-weight: 500;
  font-size: 3rem;
  color: #000000;
  text-align: center;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .queries__header {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 20px;
  text-align: center;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper {
  margin-top: 50px;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.1019607843);
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .accordion-button.collapsed::after {
  content: "+";
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .accordion-button:not(.collapsed)::after {
  transform: none;
  content: "";
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 2rem;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .accordion-button:not(.collapsed)::before {
  content: "-";
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 2rem;
  right: 18px;
  position: absolute;
  top: 6px;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__question {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000000;
  background-color: transparent;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__question:focus {
  box-shadow: none;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__question:after {
  content: "";
  background-image: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  font-size: 2rem;
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__question:not(.collapsed) {
  content: "-";
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__question.collapsed {
  content: "+";
}
.faq__section__wrapper .page-container .faq__section5__wrapper .faq__wrapper .faq__item .faq__answer {
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(24, 24, 24, 0.6);
  line-height: 1.5;
}

.awards__section__wrapper {
  background: #F1EDC5;
  margin-top: 90px;
  padding: 45px 0;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__header {
  padding-top: 44px;
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__definition {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 20px;
  text-align: center;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1200px) {
  .awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper {
    justify-content: center;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper {
    flex-wrap: wrap;
  }
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper .awards__time {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  max-width: 274px;
  width: 100%;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper .awards__time .time {
  font-weight: 600;
  font-size: 1.8rem;
  color: #181818;
  text-align: center;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .awards__timeline__wrapper .awards__time .cashout__time {
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 6px;
  text-align: center;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .slider__nav {
  margin-top: 50px;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .slider__nav .page-container .landing__swiper {
  max-width: 1120px;
  display: block;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .slider__nav .page-container .landing__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .slider__nav .page-container .landing__swiper .swiper-wrapper .swiper-slide {
  transition: 0.3s all ease-in-out;
  padding: 0 10px !important;
}
.awards__section__wrapper .page-container .awards__section6__wrapper .slider__nav .page-container .landing__swiper .swiper-wrapper .swiper-slide img {
  max-height: 100px;
  max-width: 100%;
}

.downloadAppSection {
  background: rgb(24, 24, 24);
  color: #ffffff;
}
.downloadAppSection .downloadAppInnerWrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .downloadAppSection .downloadAppInnerWrapper {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppBannerWrapper {
  max-width: 332px;
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppBannerWrapper {
    max-width: 250px;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppBannerWrapper img {
  width: 100%;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper {
  text-align: center;
  max-width: 700px;
  margin: 55px auto;
}
@media (max-width: 990px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper {
    max-width: 550px;
    margin: 40px auto;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper h4 {
  font-size: clamp(2rem, 1.2857rem + 1.0714vw, 3.6rem);
  margin-bottom: 16px;
}
@media (max-width: 990px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper h4 {
    margin-bottom: 8px;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper p {
  font-size: clamp(1.4rem, 0.8929rem + 0.5357vw, 2.2rem);
  line-height: 36px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}
@media (max-width: 1300px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper p {
    line-height: 1.9;
    margin-bottom: 20px;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppButtonWrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppButtonWrapper {
    flex-direction: column;
    gap: 16px;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppButtonWrapper a {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: clamp(1.4rem, 0.125vw + 1.36rem, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppButtonWrapper a img {
  width: 34px;
  padding-right: 10px;
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppButtonWrapper a img {
    width: 30px;
  }
}

.contactus__section__wrapper {
  background: #F6F6F6;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper {
  padding-top: 30px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper {
    display: block;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__header {
  font-weight: 500;
  font-size: 2.6rem;
  color: #000000;
  text-align: center;
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__header {
    font-size: 2.3rem;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__queries {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__queries {
    font-size: 1.4rem;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__map {
  margin-top: 52px;
}
@media (max-width: 1200px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__map {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__map {
    margin-top: 25px;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__left .contactus__map img {
  width: 100%;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right {
  max-width: 410px;
  width: 100%;
}
@media (max-width: 1200px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right {
    margin: auto;
    padding-top: 50px;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact {
  background: #1E1E1E;
  border-radius: 30px;
  padding: 20px 30px;
}
@media (max-width: 360px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact {
    padding: 20px 15px;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__info {
  font-weight: 500;
  font-size: 1.6rem;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__description {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 16px;
  padding-bottom: 30px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form {
  margin-bottom: 16px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form ul {
  padding-left: unset;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form ul li {
  padding-top: 2px;
  color: red;
  font-size: 1.2rem;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form .name {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 0 5px 15px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form .name__input {
  border-radius: 10px 10px 0 0;
  padding: 10px 16px;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  color: #181818;
  caret-color: #181818;
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form .name__input {
    font-size: 1.4rem;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .contact__form .error__msg {
  color: #D5CA1C;
  padding-top: 2px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .description {
  border-radius: 10px 10px 0 0;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  height: 90px;
  padding: 10px 16px;
  resize: none;
  caret-color: #181818;
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .description {
    font-size: 1.4rem;
  }
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .alert {
  width: 100%;
  background: #000000;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 0;
  position: relative;
  box-shadow: 0px 0px 6px -1px rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .alert .closebtn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .alert #error_content ul li {
  color: red;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .alert #success_msg {
  color: #4fff4f;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .alert #error_msg {
  color: red;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact ul {
  padding-left: 0;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact ul li {
  color: red;
  font-size: 12px;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .send__message {
  font-size: 1.6rem;
  font-weight: 400;
  background: #D5CA1C;
  border: 1px solid #d5ca1c;
  width: 100%;
  padding: 17px 0;
  outline: none;
  margin-top: 30px;
  border-radius: 50px;
  color: #181818;
}
.contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .send__message:hover {
  background: transparent;
  color: #ffffff;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 480px) {
  .contactus__section__wrapper .page-container .contactus__section7__wrapper .contactus__section__right .contact .send__message {
    font-size: 1.4rem;
    padding: 12px 0;
  }
}

.chat__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  margin-top: 4.2rem;
  cursor: pointer;
  position: fixed;
  right: 2.5%;
  bottom: 10vh;
  z-index: 1;
  border: 1px solid rgb(241, 237, 197);
}
.chat__icon:hover {
  box-shadow: 0px 2px 20px 0px #D5CA1C;
  border-radius: 50%;
}

.modal-body {
  min-height: 200px;
  border: 2px solid #d5ca1c;
  padding: unset;
}
.modal-body .btn-close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  border-radius: 50%;
  top: 10px;
  color: #000000;
  background-color: #ffffff;
}
.modal-body .viewmoreTitle {
  padding: 25px;
  background-color: rgba(192, 188, 0, 0.368627451);
  font-size: 20px;
}
.modal-body .viewMoreContent {
  padding: 0 15px;
}

.model-open {
  touch-action: none !important;
  -ms-touch-action: none !important;
  overflow: hidden !important;
  -webkit-overflow: hidden !important;
}

.remember_me__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.remember_me__wrap input {
  opacity: 0;
}
.remember_me__wrap input.remember__checkbox {
  display: none;
}
.remember_me__wrap input:checked ~ label::before {
  background-color: #d5ca1c;
}
.remember_me__wrap input:checked ~ label::after {
  opacity: 1;
}
.remember_me__wrap label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}
@media (max-width: 360px) {
  .remember_me__wrap label {
    font-size: 1.3rem;
  }
}
.remember_me__wrap label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #d5ca1c;
}
.remember_me__wrap label:after {
  content: "";
  position: absolute;
  top: 42%;
  left: 4px;
  transform: translateY(-50%) rotate(-50deg);
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  z-index: 1;
  transition: all 0.5s ease;
  opacity: 0;
}

.forget__password {
  text-align: right;
  font-weight: 400;
  font-size: 1.6rem;
  color: #181818;
  text-decoration: underline;
}
@media (max-width: 360px) {
  .forget__password {
    font-size: 1.3rem;
  }
}

@media (max-width: 380px) {
  .form-control label {
    font-size: 1.4rem;
  }
}

.signup__wrapper {
  margin: auto;
  font-family: "Outfit", sans-serif;
  display: grid;
  height: 100dvh;
  overflow: hidden;
  grid-template-columns: 15% auto;
  justify-content: center;
}
@media (min-width: 2000px) {
  .signup__wrapper {
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .signup__wrapper {
    display: block;
    overflow: unset;
  }
}
.signup__wrapper .signup__left {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 1200px) {
  .signup__wrapper .signup__left {
    max-width: unset;
  }
}
.signup__wrapper .signup__left .signup__left__wrap {
  padding: 50px 20px;
  text-align: center;
}
@media (max-width: 1200px) {
  .signup__wrapper .signup__left .signup__left__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 20px;
  }
}
@media (max-width: 767px) {
  .signup__wrapper .signup__left .signup__left__wrap {
    padding: 35px 20px 20px;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .signup__left .signup__left__wrap {
    display: block;
  }
}
@media (max-width: 1200px) {
  .signup__wrapper .signup__left .signup__left__wrap .signin__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .signup__left .signup__left__wrap .signin__logo {
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .signup__left .signup__left__wrap .signin__logo {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
}
.signup__wrapper .signup__left .signup__left__wrap .signin__logo li:first-child {
  margin-top: 100px;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .signup__wrapper .signup__left .signup__left__wrap .signin__logo li:first-child {
    margin-top: unset;
    padding-bottom: unset;
  }
}
.signup__wrapper .signup__left .signup__left__wrap .signin__logo li a {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.4);
}
.signup__wrapper .signup__left .signup__left__wrap .signin__logo li a:active, .signup__wrapper .signup__left .signup__left__wrap .signin__logo li a:focus {
  color: #D5CA1C;
}
.signup__wrapper .signup__left .signup__left__wrap .signin__logo li a.active {
  color: #D5CA1C;
}
.signup__wrapper .signup__left .signup__left__wrap .signin__logo li a span {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 580px) {
  .signup__wrapper .signup__left .signup__left__wrap .signin__logo li a span {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap {
    display: block;
  }
}
@media screen and (min-width: 2000px) {
  .signup__wrapper .center__right__wrap {
    align-items: center;
  }
}
.signup__wrapper .center__right__wrap .signup__center {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap {
  position: relative;
  background-color: white;
  padding: 50px 20px;
  text-align: center;
  margin: 3px 0;
  box-shadow: inset 10px 0px 34px 0px rgba(213, 202, 28, 0.0509803922), inset -4px 0px 34px 0px rgba(213, 202, 28, 0.0509803922);
  border-width: 1px;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -1px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  background: linear-gradient(60deg, white, white, #d5ca1c, #d5ca1c, white, #d5ca1c, #d5ca1c, #d5ca1c);
  z-index: -1;
  animation: animatedgradient 5s ease alternate infinite;
  background-size: 300% 300%;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap:after {
    top: -1px;
  }
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap {
    padding: 20px;
  }
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .signup__girl {
  margin-top: 58px;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .signup__girl img {
  width: 100%;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates {
  font-weight: 600;
  font-size: 5rem;
  color: #515151;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates {
    font-size: 4rem;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates {
    font-size: 3rem;
  }
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates .funmatch {
  font-weight: 600;
  font-size: 5rem;
  color: #D5CA1C;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates .funmatch {
    font-size: 4rem;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .funmatch__affiliates .funmatch {
    font-size: 3rem;
  }
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .points__girl__wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .points__girl__wrap {
    display: none;
  }
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .points__girl__wrap .signup__points {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(24, 24, 24, 0.6);
  max-width: 508px;
  width: 100%;
  margin: auto;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .points__girl__wrap .signup__points li {
  margin-bottom: 25px;
  list-style-type: disc;
  text-align: left;
}
.signup__wrapper .center__right__wrap .signup__center .signup__center__wrap .points__girl__wrap .signup__points li:first-child {
  margin-top: 40px;
}
.signup__wrapper .center__right__wrap .signup__right {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap {
  padding: 50px 60px;
}
@media (max-width: 1200px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap {
    padding: 35px 20px;
    text-align: center;
  }
}
@media (max-width: 380px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap {
    padding: 30px 20px;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__header {
  color: #515151;
  font-weight: 500;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__header {
    font-size: 2rem;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__header {
    font-size: 1.8rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition {
  font-weight: 400;
  color: rgba(24, 24, 24, 0.6);
  font-size: 1.8rem;
  margin-top: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition {
    font-size: 1.6rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition .mob__number {
  font-weight: 400;
  color: rgba(24, 24, 24, 0.6);
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition .mob__number {
    font-size: 1.6rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition .signup {
  font-size: 2.2rem;
  color: #D5CA1C;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition .signup {
    font-size: 1.8rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .signup__definition .signup {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form {
  margin-top: 40px;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group ul {
  padding-left: unset;
  margin-bottom: unset;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group ul li {
  padding-top: 4px;
  color: red;
  font-size: 1.2rem;
  text-align: left;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group.active {
  margin-bottom: 15px;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .password__wrap .visibility_off {
  position: absolute;
  right: 10px;
  transform: translateY(50%);
  opacity: 0.2;
  top: 0;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .password__wrap .visibility_off.eye-icon {
  cursor: pointer;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control {
  font-size: 1.6rem;
  padding: 10px 45px 10px 16px;
  width: 100%;
  max-width: 500px;
  border: none;
  background: rgba(24, 24, 24, 0.0392156863);
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(24, 24, 24, 0.3019607843);
  outline: none;
  color: #181818;
  box-shadow: none;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control.parsley-error {
  border-color: red;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control.parsley-error:active, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control.parsley-error:focus {
  border-color: red;
}
@media (max-width: 380px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control:active {
  border-bottom: 1px solid #000000;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control:focus {
  border-bottom: 1px solid #000000;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control:focus ~ label {
  top: -16px;
  font-size: 1.3rem;
  color: rgba(24, 24, 24, 0.6);
}
@media (max-width: 380px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group .form-control:focus ~ label {
    font-size: 1.2rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group label {
  color: rgba(24, 24, 24, 0.3019607843);
  font-size: 1.6rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 11px;
  font-weight: 400;
  transition: 0.2s ease all;
}
@media (max-width: 380px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .form-group label {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .error__msg {
  color: #E6654B;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .error__msg {
    font-size: 1.2rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .suggested {
  font-weight: 400;
  font-size: 1.4rem;
  color: #181818;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup {
  font-weight: 400;
  font-size: 1.6rem;
  color: #181818;
  padding: 19px;
  width: 100%;
  background: #D5CA1C;
  border-radius: 50px;
  border: none;
  outline: none;
  margin-top: 30px;
  border: 1px solid #D5CA1C;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup:hover, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup:focus, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup:active, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup.active {
  background: transparent;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 360px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .signup {
    padding: 15px;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .already__account {
  color: rgba(24, 24, 24, 0.6);
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 16px;
  text-align: center;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .already__account .signin {
  font-weight: 400;
  font-size: 1.6rem;
  color: #D5CA1C;
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .already__account {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .cancel {
  color: #181818;
  font-weight: 400;
  font-size: 1.6rem;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  padding: 16px;
  width: 100%;
  border-radius: 50px;
  margin-top: 16px;
  border: 1px solid #D5CA1C;
  display: block;
  margin-top: 20px;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .cancel:hover, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .cancel:focus, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .cancel:active, .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .cancel.active {
  background: #d5ca1c;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .otp__container {
  display: flex;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .otp__container {
    justify-content: center;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .otp__container .otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 5px;
  border: 1px solid transparent;
  outline: none;
  background: rgba(24, 24, 24, 0.0392156863);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .otp__container .otp-input:focus {
  border: 1px solid #d5ca1c;
}
@media (max-width: 320px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .otp__container .otp-input {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .error__msg ul {
  padding-left: 0;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .resend__otp {
  font-weight: 400;
  font-size: 1.8rem;
  color: #D5CA1C;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .resend__time {
  font-weight: 400;
  font-size: 1.8rem;
  color: rgba(24, 24, 24, 0.6);
}
@media (max-width: 425px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .resend__time {
    font-size: 1.6rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .resend__time .time {
  font-weight: 400;
  font-size: 1.8rem;
  color: #D5CA1C;
}
@media (max-width: 425px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .form .resend__time .time {
    font-size: 1.6rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions {
  color: rgba(24, 24, 24, 0.6);
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 16px;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding-bottom: 50px;
}
@media screen and (min-width: 2000px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions {
    position: unset;
  }
}
@media (max-width: 1200px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions {
    bottom: unset;
    position: unset;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions {
    font-size: 1.4rem;
  }
}
.signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions .terms {
  font-weight: 400;
  font-size: 1.6rem;
  color: #D5CA1C;
}
@media (max-width: 580px) {
  .signup__wrapper .center__right__wrap .signup__right .signup__right__wrap .terms__conditions .terms {
    font-size: 1.4rem;
  }
}

.terms__and__conditions__wrapper {
  padding-top: 130px;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__heading {
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
  font-family: "Poppins", sans-serif;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents h4 {
  font-size: 2rem;
  margin-top: 25px;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents p {
  font-size: 1.8rem;
  margin-top: 15px;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol {
  margin-top: 15px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol li {
  font-size: 1.8rem;
  margin-top: 15px;
  font-weight: 600;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol ul {
  padding-left: 0;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol ul li {
  font-weight: 400;
}

.privacy__policy__wrapper {
  padding-top: 130px;
}
.privacy__policy__wrapper .page-container .privacy__heading {
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
  font-family: "Poppins", sans-serif;
}
.privacy__policy__wrapper .page-container .privacy__contents h4 {
  font-size: 2rem;
  margin-top: 25px;
}
.privacy__policy__wrapper .page-container .privacy__contents p {
  font-size: 1.8rem;
  margin-top: 15px;
}
.privacy__policy__wrapper .page-container .privacy__contents ol {
  margin-top: 15px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
.privacy__policy__wrapper .page-container .privacy__contents ol li {
  font-size: 1.8rem;
  margin-top: 15px;
  font-weight: 600;
}
.privacy__policy__wrapper .page-container .privacy__contents ol ul {
  padding-left: 0;
}
.privacy__policy__wrapper .page-container .privacy__contents ol ul li {
  font-weight: 400;
}
.privacy__policy__wrapper .page-container .privacy__contents ol .inner-numbered-list p span {
  font-size: 1.8rem;
}
