@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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 */
  --border-color: $border-color;
  /* Border Color */
  --box-shadow-primary-color: $box-shadow-primary-color;
  /* Box Shadow Color */
  --box-shadow-secondary-color: $box-shadow-secondary-color;
  /* Box Shadow Color */
}

/* Common Styles */
html {
  scroll-behavior: smooth;
  font-size: 10px;
  /* Base Font Size */
}

body {
  background: #000000 !important;
  color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
}

a {
  text-decoration: none !important;
}

h1 {
  font-size: 6.7rem;
}

h2 {
  font-size: 5.2rem;
}

h3 {
  font-size: 3.8rem;
}

h4 {
  font-size: 2.8rem;
}

h5 {
  font-size: 2.4rem;
}

h6 {
  font-size: 2rem;
}

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;
}

button {
  border-radius: 40px;
  background: linear-gradient(90deg, #EE7600 0%, #FFA751 106.39%);
  font-size: 1.8rem;
  font-weight: 700;
  color: #CD1D22;
}

input {
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid #2C2C2C;
  background: #0F0F0F;
}

input:focus {
  outline: 0;
}

a:hover {
  color: #ffffff;
}

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

@media only screen and (max-width: 1700px) {
  .page-container {
    max-width: 1440px;
  }
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: text;
          background-clip: text;
}

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

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f72626;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100%;
  }
}
.chat__icon {
  transition: 0.3s all ease-in-out;
}

.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: 8px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
  z-index: 9;
  -webkit-text-fill-color: #fff;
}

.log-signup .dzm_btn .tooltip-text-register-btn {
  top: 120%;
}

.intercom-messenger-frame {
  color: red;
}
.intercom-messenger-frame iframe button[data-testid=home] span {
  color: red;
}

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

/* Header Section CSS Start */
.dzm_btn {
  display: none;
  gap: 1.2rem;
  min-width: 13.5rem;
  border-radius: 1.2rem;
  border: 0.2rem solid #CB1C21;
  background: rgb(205, 29, 34);
  background: linear-gradient(280deg, rgb(205, 29, 34) 0%, rgb(100, 10, 13) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cd1d22",endColorstr="#640a0d",GradientType=1);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
}
.dzm_btn:hover, .dzm_btn:active, .dzm_btn:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 767px) {
  .dzm_btn {
    min-width: 10.5rem;
    font-size: 1.3rem;
  }
}

.header {
  -webkit-backdrop-filter: blur(1.5rem);
          backdrop-filter: blur(1.5rem);
  background: rgb(67, 21, 21);
  background: linear-gradient(180deg, rgb(67, 21, 21) 0%, rgb(17, 13, 15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#431515",endColorstr="#110d0f",GradientType=1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header .header__main {
  height: 9rem;
}
@media (max-width: 580px) {
  .header .header__main {
    height: 7rem;
  }
}
.header .header__wrapper .header_logo img {
  max-width: 160px;
}
.header .header__wrapper .header__nav ul {
  display: flex;
  align-items: center;
  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: #ffffff;
  font-size: 1.8rem;
}
.header .header__wrapper .header__nav ul li a:hover, .header .header__wrapper .header__nav ul li a.active {
  color: #CB1C21;
}
@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;
}
@media (max-width: 1200px) {
  .header .header__wrapper .header__login-signup .mob__ham {
    display: block;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
}

.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 .close_nav img {
    max-width: 160px;
  }
  .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: 10px;
  }
  .mobile__nav_bar .header__nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.8rem;
  }
  .mobile__nav_bar .header__nav ul li a:hover {
    color: #CB1C21;
  }
  .mobile__nav_bar .header__nav ul li a.active {
    color: #CB1C21;
  }
}
@media (max-width: 1200px) and (max-width: 580px) {
  .mobile__nav_bar .header__nav ul li a {
    font-size: 1.4rem;
  }
}
.mobile__nav_bar .mob__login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  cursor: pointer;
}
@media (min-width: 581px) {
  .mobile__nav_bar .mob__login {
    display: none;
  }
}

/* Header Section CSS End */
/* Footer Section CSS Start */
.footer {
  margin-top: 5.4rem;
  padding-bottom: 5rem;
}
.footer .page-container .footer-logo {
  max-width: 160px;
}
.footer .page-container .stay__connected {
  font-size: 1.7rem;
}
@media (max-width: 380px) {
  .footer .page-container .stay__connected {
    font-size: 1.4rem;
  }
}
.footer .page-container .terms, .footer .page-container .privacy__policy {
  font-size: 1.3rem;
  padding-top: 1.6rem;
}
.footer .page-container .terms a, .footer .page-container .privacy__policy a {
  color: rgba(255, 255, 255, 0.2705882353);
}
.footer .page-container .terms a:hover, .footer .page-container .privacy__policy a:hover {
  color: #CB1C21;
}
@media (max-width: 380px) {
  .footer .page-container .terms, .footer .page-container .privacy__policy {
    font-size: 1.1rem;
  }
}
.footer .page-container .social__media__wrapper {
  gap: 1.7rem;
  margin-top: 3.6rem;
}
@media (max-width: 375px) {
  .footer .page-container .social__media__wrapper {
    margin-top: 3rem;
  }
}
.footer .page-container .social__media__wrapper .social__media {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 4rem;
  border: 0.1rem solid #CB1C21;
  border-right: none;
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  color: #ffffff;
  font-size: 20px;
}
.footer .page-container .social__media__wrapper .social__media a {
  color: #ffffff;
}
.footer .page-container .social__media__wrapper .social__media:hover, .footer .page-container .social__media__wrapper .social__media:active, .footer .page-container .social__media__wrapper .social__media:focus {
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.footer .page-container .footer__wrapper {
  margin-top: 3.3rem;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .footer .page-container .footer__wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
}
.footer .page-container .footer__wrapper .footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
@media (max-width: 767px) {
  .footer .page-container .footer__wrapper .footer__nav {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.footer .page-container .footer__wrapper .footer__nav ul {
  gap: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__nav ul {
    gap: 1.4rem;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer .page-container .footer__wrapper .footer__nav ul {
    margin-left: unset;
    margin-right: unset;
    margin-bottom: unset;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 0;
  }
}
.footer .page-container .footer__wrapper .footer__nav ul li {
  list-style: none;
}
.footer .page-container .footer__wrapper .footer__nav ul li a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #ffffff;
}
.footer .page-container .footer__wrapper .footer__nav ul li a:hover {
  color: #CB1C21;
}
@media (max-width: 1024px) {
  .footer .page-container .footer__wrapper .footer__nav ul li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 580px) {
  .footer .page-container .footer__wrapper .footer__nav ul li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 320px) {
  .footer .page-container .footer__wrapper .footer__nav ul li a {
    font-size: 1rem;
  }
}
.footer .page-container .footer__wrapper .footer__copyrights {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: right;
  color: rgba(255, 255, 255, 0.4392156863);
}

/* Footer Section CSS End */
.header__wrapper__main {
  height: 100vh;
}
@media (min-width: 2000px) {
  .header__wrapper__main {
    height: auto;
    padding: 20em 0;
  }
}
@media (max-width: 1200px) {
  .header__wrapper__main {
    height: auto;
  }
}
.header__wrapper__main .header__hero {
  height: calc(100svh - 9rem);
}
@media (min-width: 2000px) {
  .header__wrapper__main .header__hero {
    height: auto;
  }
}
@media (max-width: 1200px) {
  .header__wrapper__main .header__hero {
    height: auto;
  }
}
.header__wrapper__main .header__hero .hero__content {
  display: grid;
  grid-template-columns: 47% 53%;
}
@media (min-width: 2000px) {
  .header__wrapper__main .header__hero .hero__content {
    height: auto;
  }
}
@media (max-width: 1200px) {
  .header__wrapper__main .header__hero .hero__content {
    display: block;
    max-width: 50rem;
    margin: auto;
    text-align: center;
    padding-top: 100px;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content__left {
  position: relative;
  height: 100vh;
  display: flex;
}
@media (min-width: 2000px) {
  .header__wrapper__main .header__hero .hero__content .hero__content__left {
    height: auto;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content__left .dazambackground {
  position: absolute;
  width: auto;
  top: 10.4rem;
  left: 0;
  max-width: 750px;
  margin: auto;
}
.header__wrapper__main .header__hero .hero__content .hero__content__left .girls-wrap {
  position: absolute;
  bottom: 23%;
}
.header__wrapper__main .header__hero .hero__content .hero__content__left .girls-wrap .dazamgirls {
  z-index: 1;
}
.header__wrapper__main .header__hero .hero__content .hero__content__left .girls-wrap .girlsmask {
  position: absolute;
  bottom: -18.9rem;
  left: -23.8rem;
  z-index: 0;
}
@media (max-width: 1200px) {
  .header__wrapper__main .header__hero .hero__content .hero__content__left {
    display: none;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .hero__content__right__img {
  margin-bottom: 20px;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .hero__content__right__img img {
  max-width: 30rem;
  width: 100%;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper__border {
  position: relative;
  padding: 2px;
  border-radius: 1.6rem;
  overflow: hidden;
  max-width: 97.1rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper__border {
    width: 90%;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper__border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 150%;
  background-color: linear-gradient(to right, #872216, #411616) 1;
  background: rgb(129, 32, 23);
  background: linear-gradient(90deg, rgb(129, 32, 23) 0%, rgb(62, 20, 20) 32%, rgb(62, 20, 20) 68%, rgb(129, 32, 23) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#812017", endColorstr="#812017", GradientType=1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: animatedgradient 5s ease alternate infinite;
  background-size: 300% 300%;
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper {
  border-radius: 1.6rem;
  background: rgb(136, 29, 29);
  background: linear-gradient(180deg, rgb(136, 29, 29) 0%, rgb(54, 39, 39) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#881d1d", endColorstr="#362727", GradientType=1);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  padding: 1.8rem;
  width: 100%;
}
@media (max-width: 320px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper {
    padding: 1.4rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper {
  border-radius: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.1) 0.02%, rgba(255, 255, 255, 0) 100.02%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  padding: 1.4rem;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .earn__monthly__wrap {
  font-size: 1.4rem;
  text-transform: uppercase;
  align-items: center;
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .earn__monthly__wrap .earn__monthly {
    font-size: 1.2rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .earn__monthly__wrap .countryFlag {
  width: 20px;
  height: auto;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap {
  margin-top: 1.6rem;
  gap: 1rem;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .input__wrapper {
  position: relative;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .input__wrapper .rupee {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .input__wrapper .rupee {
    top: 53%;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap input::-moz-placeholder {
  color: #ffffff;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap input::placeholder {
  color: #ffffff;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.1) 0.02%, rgba(255, 255, 255, 0) 100.02%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  outline: none;
  font-size: 1.5rem;
  width: 100%;
  padding: 2.2rem 1.4rem 1.9rem 2rem;
}
@supports (-webkit-touch-callout: none) and (-webkit-backdrop-filter: none) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount {
    font-size: 1.3rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount__type {
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.1) 0.02%, rgba(255, 255, 255, 0) 100.02%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  font-size: 1.5rem;
  text-transform: uppercase;
}
@supports (-webkit-touch-callout: none) and (-webkit-backdrop-filter: none) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount__type {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount__type {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__top__wrapper .amount__wrap .amount__type {
    padding: 1.9rem 1.5rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper {
  border-radius: 1.6rem;
  background: linear-gradient(98deg, rgba(255, 255, 255, 0.1) 0.02%, rgba(255, 255, 255, 0) 100.02%);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  padding: 2.9rem 1.2rem;
  margin-top: 2.4rem;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .casino__required {
  text-transform: capitalize;
  gap: 1rem;
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .casino__required span {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .commission__plan__wrapper {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .commission__plan__wrapper span {
    font-size: 1.2rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning {
  font-size: 1.4rem;
  border: none;
  outline: none;
  border-radius: 4.8rem;
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  padding: 1.2rem 2rem;
  animation-name: gradient;
  -webkit-animation-name: gradient;
  animation-duration: 2s;
  -webkit-animation-duration: s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  width: 100%;
  justify-content: center;
  display: block;
  text-align: center;
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning:hover, .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning:active, .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 375px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning {
    font-size: 1.2rem;
  }
}
@media (max-width: 580px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning #yourEarnings {
    font-size: 1.3rem;
  }
}
@media (max-width: 375px) {
  .header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .start__earning #yourEarnings {
    font-size: 1.2rem;
  }
}
.header__wrapper__main .header__hero .hero__content .hero__content-right .deposit__wrapper .deposit__bottom__wrapper .upi__wrapper {
  margin-top: 1.6rem;
}

.slider__nav {
  margin-top: 8rem;
  position: relative;
}
@media (max-width: 586px) {
  .slider__nav {
    margin-top: 20px;
  }
}
.slider__nav .slider__bg {
  position: absolute;
  background-color: #CD1D22;
  filter: blur(17.97rem);
  width: 20%;
  height: 30%;
  top: 90%;
  opacity: 0.9;
  right: 0%;
  left: 0;
}
.slider__nav .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.slider__nav .swiper.landing__swiper {
  padding: 0 1rem;
}
.slider__nav .swiper.landing__swiper .swiper-slide {
  font-size: 1.8rem;
  padding: 1.5rem;
  background: transparent;
}
.slider__nav .swiper.landing__swiper .swiper-slide img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__nav .swiper .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 1.2rem);
}
.slider__nav .swiper .swiper-button-next:after {
  content: "";
  opacity: 0;
  height: 100%;
}
.slider__nav .swiper .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 1.2rem);
}
.slider__nav .swiper .swiper-button-prev:after {
  content: "";
  opacity: 0;
  height: 100%;
}
@media (max-width: 760px) {
  .slider__nav .swiper-button-next {
    right: 2rem;
  }
  .slider__nav .swiper-button-next img {
    width: 40px;
  }
  .slider__nav .swiper-button-prev {
    left: 2rem;
  }
  .slider__nav .swiper-button-prev img {
    width: 40px;
  }
}
@media (max-width: 580px) {
  .slider__nav .swiper-button-prev img,
  .slider__nav .swiper-button-next img {
    width: 30px;
  }
}

.commission__wrapper {
  margin-top: 8rem;
  position: relative;
}
@media (max-width: 580px) {
  .commission__wrapper {
    margin-top: 20px;
  }
}
.commission__wrapper .commission__bg {
  position: absolute;
  background-color: #CD1D22;
  filter: blur(25.97rem);
  width: 20%;
  height: 30%;
  top: 35%;
  opacity: 0.9;
  right: 0%;
}
.commission__wrapper .commission__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
  font-style: normal;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .commission__wrapper .commission__header {
    font-size: clamp(2.5rem, 1.16vw + 1.609rem, 3rem);
  }
}
@media (max-width: 767px) and (min-width: 280px) {
  .commission__wrapper .commission__header {
    font-size: clamp(2.5rem, -1.229vw + 2.942rem, 2rem);
  }
}
.commission__wrapper .commission__definition {
  font-size: 1.6rem;
  padding-top: 1.6rem;
  padding-bottom: 5rem;
  max-width: 772px;
  width: 100%;
  margin: auto;
}
@media (max-width: 375px) {
  .commission__wrapper .commission__definition {
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}
.commission__wrapper .tab-content .start__earning {
  font-size: 1.4rem;
  border: none;
  outline: none;
  border-radius: 4.8rem;
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  padding: 1.5rem 3rem;
  animation-name: gradient;
  -webkit-animation-name: gradient;
  animation-duration: 2s;
  -webkit-animation-duration: s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  width: -moz-max-content;
  width: max-content;
}
.commission__wrapper .tab-content .start__earning:hover, .commission__wrapper .tab-content .start__earning:active, .commission__wrapper .tab-content .start__earning:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 580px) {
  .commission__wrapper .tab-content .start__earning {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
  }
}
.commission__wrapper .tab-content .start__earning #yourCommission1 {
  padding-right: 4px;
}
.commission__wrapper .tab-content .tab-pane {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 80px;
  margin-top: 134px;
  padding-bottom: 50px;
}
@media (max-width: 580px) {
  .commission__wrapper .tab-content .tab-pane {
    margin-top: 40px;
  }
}
.commission__wrapper .tab-content .tab-pane .chart_child {
  position: relative;
}
.commission__wrapper .tab-content .tab-pane .chart_child .polar__value span {
  font-weight: 600;
  font-size: 4rem;
  position: absolute;
}
@media (max-width: 767px) {
  .commission__wrapper .tab-content .tab-pane .chart_child .polar__value span {
    font-size: 3rem;
  }
}
.commission__wrapper .tab-content .tab-pane .chart_child .chart__amt {
  font-weight: 500;
  font-size: 1.8rem;
}

.downloadAppSection {
  border: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #CB1C21 48.5%, rgba(255, 255, 255, 0) 100%);
  border-image-slice: 1;
}
@media (max-width: 1024px) {
  .downloadAppSection {
    margin-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .downloadAppSection {
    margin-bottom: 5rem;
  }
}
.downloadAppSection .downloadAppWrapper {
  max-width: 114rem;
  margin: auto;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  position: relative;
}
@media (max-width: 1024px) {
  .downloadAppSection .downloadAppWrapper {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .downloadAppSection .downloadAppWrapper {
    display: block;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.downloadAppSection .downloadAppWrapper::after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .downloadAppSection .downloadAppWrapper::after {
    display: none;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppBanner {
  max-width: 22.6rem;
  margin: auto;
}
@media (max-width: 990px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBanner {
    max-width: 19rem;
  }
}
@media (max-width: 580px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBanner {
    margin-bottom: 2rem;
    max-width: 15rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppBanner img {
  width: 100%;
}
.downloadAppSection .downloadAppWrapper .downloadAppTitle {
  background: linear-gradient(to right, #a60d12 10%, #c0373b 14.5%, #f7878b 32.5%, #fab2b2 40%, #ffffff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 990px) {
  .downloadAppSection .downloadAppWrapper .downloadAppTitle {
    background: linear-gradient(to right, #a60d12 10%, #c0373b 35.5%, #f7878b 65%, #fab2b2 80%, #ffffff 90%, #ffffff 100%);
    -webkit-background-clip: text;
  }
}
@media (max-width: 767px) {
  .downloadAppSection .downloadAppWrapper .downloadAppTitle {
    text-align: center;
    font-size: clamp(2.5rem, -1.229vw + 2.942rem, 2rem);
  }
}
@media (max-width: 580px) {
  .downloadAppSection .downloadAppWrapper .downloadAppTitle {
    background: linear-gradient(to right, #a60d12 10%, #c0373b 30.5%, #f7878b 55%, #fab2b2 75%, #ffffff 90%, #ffffff 100%);
    -webkit-background-clip: text;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppDesc {
  font-size: clamp(1.4rem, 0.125vw + 1.36rem, 1.6rem);
  font-weight: 500;
  max-width: 60rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .downloadAppSection .downloadAppWrapper .downloadAppDesc {
    text-align: center;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper {
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 420px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper {
    flex-direction: column;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper .downloadAppBtnInnerWrapper .downloadAppBtn {
  font-size: 1.4rem;
  border-radius: 4.8rem;
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  padding: 1.5rem 3rem;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper .downloadAppBtnInnerWrapper .downloadAppBtn {
    justify-content: center;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 420px) {
  .downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper .downloadAppBtnInnerWrapper .downloadAppBtn {
    width: 100%;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper .downloadAppBtnInnerWrapper .downloadAppBtn:hover {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.downloadAppSection .downloadAppWrapper .downloadAppBtnWrapper .downloadAppBtnInnerWrapper .downloadAppBtn img {
  width: 2rem;
  margin-right: 1.2rem;
}

.awards__wrapper {
  margin-top: 8rem;
  position: relative;
  background: url("/themes/theme-three/images/landing/awards/awards-bg.webp") no-repeat right;
  padding: 15px;
}
@media (max-width: 1024px) {
  .awards__wrapper {
    margin-top: 0;
  }
}
.awards__wrapper .awards__bg {
  position: absolute;
  background-color: #CD1D22;
  filter: blur(21.97rem);
  width: 30%;
  height: 30%;
  left: 11%;
  top: 55%;
  opacity: 0.9;
}
.awards__wrapper .awards__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
}
@media (max-width: 1199px) and (min-width: 768px) {
  .awards__wrapper .awards__header {
    font-size: clamp(2.5rem, 1.16vw + 1.609rem, 3rem);
  }
}
@media (max-width: 767px) and (min-width: 280px) {
  .awards__wrapper .awards__header {
    font-size: clamp(2.5rem, -1.229vw + 2.942rem, 2rem);
  }
}
.awards__wrapper .awards__definition {
  font-size: 1.6rem;
  padding-top: 1.6rem;
  max-width: 760px;
  width: 100%;
  margin: auto;
}
@media (max-width: 360px) {
  .awards__wrapper .awards__definition {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .awards__wrapper .award__list__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.awards__wrapper .award__list__wrapper .award__list__left {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 767px) {
  .awards__wrapper .award__list__wrapper .award__list__left {
    grid-column: 1/-1;
    grid-row: 1;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    display: grid;
  }
}
@media (max-width: 580px) {
  .awards__wrapper .award__list__wrapper .award__list__left {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .awards__wrapper .award__list__wrapper .award__list__left .award__img {
    max-width: 150px;
  }
}
.awards__wrapper .award__list__wrapper .award__list__left .award__img img {
  border-radius: 0.6rem;
  border: 0.1rem solid #680303;
  background: linear-gradient(250deg, rgba(209, 42, 45, 0.08) 0%, rgba(209, 42, 45, 0) 100%);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  padding: 2.8261rem 4.4522rem 2.8739rem 4.4rem;
  flex: 0 0 25%;
  height: 11.7rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .awards__wrapper .award__list__wrapper .award__list__left .award__img img {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .awards__wrapper .award__list__wrapper .award__list__left .award__img img {
    padding: 1rem;
  }
}
@media (max-width: 580px) {
  .awards__wrapper .award__list__wrapper .award__list__left .award__img img {
    max-height: 8rem;
    padding: 2rem;
  }
}
.awards__wrapper .award__list__wrapper .award__list__right {
  position: relative;
  margin: auto;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .awards__wrapper .award__list__wrapper .award__list__right {
    display: grid;
    grid-column: 1/-1;
    padding: unset;
    grid-row: 2;
  }
}
.awards__wrapper .award__list__wrapper .award__list__right .timing__wrap {
  border-radius: 1rem;
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, rgba(205, 29, 34, 0.1) 0%, rgba(205, 29, 34, 0.1) 0.01%, rgba(100, 10, 13, 0.1) 100%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  padding: 2rem 0rem;
  max-width: 34.8rem;
  width: 34.8rem;
}
@media (max-width: 767px) {
  .awards__wrapper .award__list__wrapper .award__list__right .timing__wrap {
    width: 100%;
    margin: auto;
    padding: 2rem;
  }
}
.awards__wrapper .award__list__wrapper .award__list__right .timing__wrap .time {
  font-size: 1.8rem;
}
.awards__wrapper .award__list__wrapper .award__list__right .timing__wrap .time__out {
  font-size: 1.6rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.3764705882);
}

.about__us__wrapper {
  background-image: url("/themes/theme-three/images/landing/aboutus/aboutus-bg.webp"), url("/themes/theme-three/images/landing/aboutus/about-bg.webp");
  background-repeat: no-repeat;
  background-position: left, right top 10%;
  border-top: 0.1rem solid #590606;
  border-bottom: 0.1rem solid #590606;
  margin-top: 8rem;
  position: relative;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .about__us__wrapper {
    padding-bottom: 8rem;
    margin-top: 4rem;
  }
}
@media (max-width: 380px) {
  .about__us__wrapper {
    padding-bottom: 6rem;
  }
}
.about__us__wrapper .about__us__left__bg {
  position: absolute;
  background-color: #CD1D22;
  filter: blur(219.7044219971px);
  width: 30%;
  height: 20%;
  opacity: 0.8;
  bottom: 25%;
}
.about__us__wrapper .about__us__center__bg {
  position: absolute;
  background-color: #CD1D22;
  filter: blur(219.7044219971px);
  width: 20%;
  height: 20%;
  opacity: 0.8;
  right: 25%;
}
.about__us__wrapper .about__us__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5.5rem;
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
}
@media (max-width: 1199px) and (min-width: 768px) {
  .about__us__wrapper .about__us__header {
    font-size: clamp(2.5rem, 1.16vw + 1.609rem, 3rem);
  }
}
@media (max-width: 767px) and (min-width: 280px) {
  .about__us__wrapper .about__us__header {
    font-size: clamp(2.5rem, -1.229vw + 2.942rem, 2rem);
    margin-top: 4rem;
  }
}
.about__us__wrapper .about__us__definition {
  font-size: 1.6rem;
  padding-top: 1.6rem;
  max-width: 760px;
  width: 100%;
  margin: auto;
}
@media (max-width: 360px) {
  .about__us__wrapper .about__us__definition {
    font-size: 1.4rem;
  }
}
.about__us__wrapper .about__us__main__wrapper {
  display: grid;
  grid-template-columns: 25% 40% 25%;
  margin-top: 3.2rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper > * {
    grid-column: 1/-1;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__card {
  border-radius: 1rem;
  border: 0.1rem solid #5B080B;
  background: linear-gradient(270deg, rgba(205, 29, 34, 0.15) 0%, rgba(205, 29, 34, 0.15) 0.01%, rgba(100, 10, 13, 0.15) 100%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  padding: 2.2rem;
  min-height: 15rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__card {
    min-height: 18.8rem;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__card {
    min-height: 0;
  }
}
.about__us__wrapper .about__us__main__wrapper .card__header {
  font-size: 1.6rem;
}
.about__us__wrapper .about__us__main__wrapper .card__detail {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
}
.about__us__wrapper .about__us__main__wrapper .card__detail .aboutus__content {
  overflow: hidden;
  max-height: 100px;
  height: 100%;
}
.about__us__wrapper .about__us__main__wrapper .card__detail .aboutus__content .aboutus__span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about__us__wrapper .about__us__main__wrapper .card__detail .about__showmore {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper {
    order: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 3%;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .product__wrapper {
  width: 15rem;
  display: inline-block;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .product__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 26.8rem;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .product__wrapper {
    width: 100%;
    margin-top: 2rem;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .software__wrapper {
  width: 26.8rem;
  float: right;
  margin-top: 4.1rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .software__wrapper {
    margin-top: 0;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__left__wrapper .software__wrapper {
    width: 100%;
    margin-top: 2rem;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper {
  margin: 0 3.5rem 0 3.5rem;
  margin: auto;
  width: auto;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper {
    order: 0;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper {
    grid-row: 1;
    margin: unset;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper .center__img {
  margin-top: 7.6rem;
  margin-left: 4rem;
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper .center__img {
    width: 100%;
    max-width: 100%;
    margin: unset;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper .center__img img {
  width: 100%;
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__center__wrapper .center__img img {
    width: 100%;
    max-width: 100%;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper {
  flex-direction: column;
  position: relative;
  right: -20%;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper {
    order: 1;
    flex-direction: row;
    margin-top: 5rem;
    gap: 4rem;
    right: 0;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper {
    margin-top: 5rem;
    flex-direction: column;
    gap: 0;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper .currencies__wrapper {
  width: 24.8rem;
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper .currencies__wrapper {
    width: 100%;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper .restricted__countries__wrapper {
  width: 26.3rem;
  margin-top: 5.5rem;
  margin-right: 8rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper .restricted__countries__wrapper {
    margin-top: 0;
    margin-right: 0;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__right__wrapper .restricted__countries__wrapper {
    width: 100%;
    margin-inline: unset;
    margin-top: 2rem;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper {
  grid-column: 1/-1;
  position: relative;
  top: 30%;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper {
    order: 2;
    margin-top: 8rem;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper {
    margin-top: 0;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper {
  gap: 3%;
  margin-top: -4rem;
  display: flex;
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper {
    display: block;
    margin-top: 2rem;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .payment__methods__wrapper {
  max-width: 19.2rem;
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .payment__methods__wrapper {
    width: 100%;
    max-width: unset;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .withdraw__wrapper {
  width: 19.2rem;
  min-height: 9.9rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .withdraw__wrapper {
    min-height: 18.8rem;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .withdraw__wrapper {
    width: 100%;
    margin-top: 2rem;
    min-height: 0;
  }
}
.about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .language__wrapper {
  width: 15rem;
}
@media (max-width: 1024px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .language__wrapper {
    min-width: 19.2rem;
  }
}
@media (max-width: 580px) {
  .about__us__wrapper .about__us__main__wrapper .about__us__bottom__wrapper .about__us__payment__methods__wrapper .language__wrapper {
    width: 100%;
    margin-top: 2rem;
  }
}

.faq__wrapper,
.commission__wrapper {
  position: relative;
}
.faq__wrapper.faq__background,
.commission__wrapper.faq__background {
  background-image: url("/themes/theme-three/images/landing/faq/faq-cards-bg.webp"), url("/themes/theme-three/images/landing/faq/faq-dice-bg.webp");
  background-repeat: no-repeat;
  background-position: top 8rem right, bottom 44rem left 0.3rem;
}
.faq__wrapper .faq__header,
.commission__wrapper .faq__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 5rem;
  font-size: clamp(3rem, 4.167vw - 2rem, 4rem);
}
@media (max-width: 1199px) and (min-width: 768px) {
  .faq__wrapper .faq__header,
  .commission__wrapper .faq__header {
    font-size: clamp(2.5rem, 1.16vw + 1.609rem, 3rem);
  }
}
@media (max-width: 767px) and (min-width: 280px) {
  .faq__wrapper .faq__header,
  .commission__wrapper .faq__header {
    font-size: clamp(2.5rem, -1.229vw + 2.942rem, 2rem);
    margin-top: 4rem;
  }
}
.faq__wrapper .faq__definition,
.commission__wrapper .faq__definition {
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 1.2rem;
  max-width: 760px;
  width: 100%;
  margin: auto;
}
@media (max-width: 360px) {
  .faq__wrapper .faq__definition,
  .commission__wrapper .faq__definition {
    font-size: 1.4rem;
  }
}
.faq__wrapper .faq__tabs,
.commission__wrapper .faq__tabs {
  margin-top: 2.4rem;
  border: none;
}
.faq__wrapper .faq__tabs li,
.commission__wrapper .faq__tabs li {
  font-size: 1.8rem;
}
.faq__wrapper .faq__tabs li:nth-child(2) button,
.commission__wrapper .faq__tabs li:nth-child(2) button {
  border-radius: 0rem 1.6rem 1.6rem 0rem;
  border-left: none !important;
}
.faq__wrapper .faq__tabs li button,
.commission__wrapper .faq__tabs li button {
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, rgba(205, 29, 34, 0.3) 0%, rgba(205, 29, 34, 0.3) 0.01%, rgba(100, 10, 13, 0.3) 100%);
  color: #ffffff;
  padding: 1.6rem 3rem;
  min-width: 19.5rem;
  width: 100%;
  outline: none;
  border-radius: 16px;
}
.faq__wrapper .faq__tabs li button.faq-tab,
.commission__wrapper .faq__tabs li button.faq-tab {
  border-radius: 16px 0 0 16px;
}
.faq__wrapper .faq__tabs li button.active,
.commission__wrapper .faq__tabs li button.active {
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  border: 0.1rem solid #CB1C21;
  color: #ffffff;
  isolation: unset;
}
.faq__wrapper .faq__tabs li button:hover,
.commission__wrapper .faq__tabs li button:hover {
  border: 0.1rem solid #CB1C21;
  color: #ffffff;
  isolation: unset;
}
@media (max-width: 580px) {
  .faq__wrapper .faq__tabs li button,
  .commission__wrapper .faq__tabs li button {
    padding: 1.5rem 2rem;
    min-width: 12.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 360px) {
  .faq__wrapper .faq__tabs li button,
  .commission__wrapper .faq__tabs li button {
    padding: 1.5rem 1rem;
    min-width: 10.5rem;
  }
}
.faq__wrapper .tab-content,
.commission__wrapper .tab-content {
  padding-bottom: 5.4rem;
}
@media (max-width: 768px) {
  .faq__wrapper .tab-content,
  .commission__wrapper .tab-content {
    padding-bottom: 5rem;
  }
}
@media (max-width: 1200px) {
  .faq__wrapper .tab-content .polar__bg,
  .commission__wrapper .tab-content .polar__bg {
    width: 70%;
    display: block;
    margin: 0 auto;
    max-width: 230px;
    background-size: 50%;
  }
}
@media (max-width: 767px) {
  .faq__wrapper .tab-content .polar__bg,
  .commission__wrapper .tab-content .polar__bg {
    width: 60%;
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
    display: block;
  }
}
@media (min-width: 600px) and (max-width: 700px) {
  .faq__wrapper .tab-content .polar__bg .pChart,
  .commission__wrapper .tab-content .polar__bg .pChart {
    width: 230px !important;
    height: 230px !important;
  }
}
.faq__wrapper .tab-content .faq__accordion__wrapper,
.commission__wrapper .tab-content .faq__accordion__wrapper {
  background: rgba(46, 11, 11, 0.6);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  margin-top: 5.4rem;
  border-radius: 1.6rem;
}
.faq__wrapper .tab-content .faq__accordion__wrapper img,
.commission__wrapper .tab-content .faq__accordion__wrapper img {
  max-width: 20px;
}
.faq__wrapper .tab-content .faq__accordion__wrapper:not(:first-child),
.commission__wrapper .tab-content .faq__accordion__wrapper:not(:first-child) {
  margin-top: 2rem;
}
.faq__wrapper .tab-content .faq__accordion__wrapper.active,
.commission__wrapper .tab-content .faq__accordion__wrapper.active {
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%), #CC4242;
}
.faq__wrapper .tab-content .faq__accordion__wrapper.active .question .serial__number,
.commission__wrapper .tab-content .faq__accordion__wrapper.active .question .serial__number {
  border-radius: 4rem;
  border: 0.1rem solid #CB1C21;
  border-right: none;
  background: #2E0B0B;
}
.faq__wrapper .tab-content .faq__accordion__wrapper.active .arrow,
.commission__wrapper .tab-content .faq__accordion__wrapper.active .arrow {
  transform: rotate(180deg);
}
.faq__wrapper .tab-content .faq__accordion__wrapper .question,
.commission__wrapper .tab-content .faq__accordion__wrapper .question {
  width: 100%;
  border-radius: 1.6rem;
  background: transparent;
  outline: none;
  color: #ffffff;
  gap: 1.6rem;
  padding: 1.4rem 2rem;
  border: none;
}
@media (max-width: 580px) {
  .faq__wrapper .tab-content .faq__accordion__wrapper .question,
  .commission__wrapper .tab-content .faq__accordion__wrapper .question {
    padding: 1.4rem 1rem;
    gap: 1rem;
  }
}
.faq__wrapper .tab-content .faq__accordion__wrapper .question .qa__wrapper,
.commission__wrapper .tab-content .faq__accordion__wrapper .question .qa__wrapper {
  gap: 1.6rem;
  font-size: 1.8rem;
}
@media (max-width: 580px) {
  .faq__wrapper .tab-content .faq__accordion__wrapper .question .qa__wrapper,
  .commission__wrapper .tab-content .faq__accordion__wrapper .question .qa__wrapper {
    font-size: 1.5rem;
    text-align: left;
    gap: 1rem;
  }
}
.faq__wrapper .tab-content .faq__accordion__wrapper .question .serial__number,
.commission__wrapper .tab-content .faq__accordion__wrapper .question .serial__number {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 100%;
  border-radius: 4rem;
  border: 0.1rem solid #CB1C21;
  background: linear-gradient(270deg, #CD1D22 0%, #CD1D22 0.01%, #640A0D 100%);
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 580px) {
  .faq__wrapper .tab-content .faq__accordion__wrapper .question .serial__number,
  .commission__wrapper .tab-content .faq__accordion__wrapper .question .serial__number {
    font-size: 1.5rem;
    min-width: 3rem;
    width: 3rem;
    aspect-ratio: 1;
    flex-shrink: 0;
  }
}
.faq__wrapper .tab-content .faq__accordion__wrapper .answer,
.commission__wrapper .tab-content .faq__accordion__wrapper .answer {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 500;
  border-radius: 1.6rem;
  padding-right: 2rem;
  padding-left: 6.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-width: 360px) {
  .faq__wrapper .tab-content .faq__accordion__wrapper .answer,
  .commission__wrapper .tab-content .faq__accordion__wrapper .answer {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.page-container .send__message__border {
  position: relative;
  padding: 2px;
  border-radius: 4rem;
  overflow: hidden;
  max-width: 97.1rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-container .send__message__border {
    width: 90%;
  }
}
.page-container .send__message__border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 150%;
  background-color: linear-gradient(to right, #92110d, #bdbdbd) 1;
  background: rgb(63, 11, 9);
  background: linear-gradient(115deg, rgb(63, 11, 9) 0%, rgb(98, 90, 90) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3f0b09", endColorstr="#625a5a", GradientType=1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: animatedgradient 5s ease alternate infinite;
  background-size: 300% 300%;
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.page-container .send__message__wrapper {
  background-size: cover;
  padding: 7.5rem 5rem 4.2rem 5.6rem;
  width: 100%;
  border-radius: 4rem;
  display: grid;
  grid-template-columns: 40% auto;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-container .send__message__wrapper {
    grid-template-columns: 100%;
  }
}
@media (max-width: 567px) {
  .page-container .send__message__wrapper {
    padding: 5rem 2rem 5rem 2rem;
  }
}
.page-container .send__message__wrapper:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.9;
  border-radius: 4rem;
  overflow: hidden;
}
.page-container .send__message__wrapper .send__message {
  color: linear-gradient(90deg, #A60D12 35.9%, #FFF 100%);
  position: relative;
  z-index: 1;
}
.page-container .send__message__wrapper .send__message .mob__send {
  font-size: 4.4rem;
  background: -webkit-linear-gradient(left, rgb(166, 13, 18), rgb(255, 255, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: none;
}
@media (max-width: 767px) {
  .page-container .send__message__wrapper .send__message .mob__send {
    display: block;
  }
}
@media (max-width: 375px) {
  .page-container .send__message__wrapper .send__message .mob__send {
    font-size: 3rem;
  }
}
.page-container .send__message__wrapper .send__message span {
  font-size: 4.4rem;
  background: -webkit-linear-gradient(left, rgb(166, 13, 18), rgb(255, 255, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-container .send__message__wrapper .send__message span .dummy {
  opacity: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .page-container .send__message__wrapper .send__message span {
    display: none;
  }
}
.page-container .send__message__wrapper .message__wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 10px;
}
.page-container .send__message__wrapper .message__wrap .name__input {
  width: 100%;
  margin-top: 1.8rem;
  overflow: hidden;
  background: linear-gradient(320deg, #121212 14.78%, #121212 95.73%);
  border-radius: 0.8rem;
}
.page-container .send__message__wrapper .message__wrap .name__input .user__img {
  box-shadow: -0.6rem -0.6rem 1.2rem 0rem #000000, inset 0rem 0rem 2.2rem 0rem #0c0d0e;
  background-color: #131314;
  border: 0.3rem solid #111214;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
  width: 5.2rem;
  height: 5.2rem;
  margin-right: 0.5rem;
}
.page-container .send__message__wrapper .message__wrap .name__input .user__img img {
  opacity: 0.3;
}
.page-container .send__message__wrapper .message__wrap .name__input .input-field {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 0.8rem;
  background: #121212;
  font-size: 1.6rem;
  color: rgb(255, 255, 255);
  padding: 14px 5px;
}
@media (max-width: 375px) {
  .page-container .send__message__wrapper .message__wrap .name__input .input-field {
    font-size: 1.4rem;
  }
}
.page-container .send__message__wrapper .message__wrap .name__input .input-field.message {
  height: 135px;
  border: none;
  resize: none;
}
.page-container .send__message__wrapper .message__wrap .name__input .input-field.message:focus, .page-container .send__message__wrapper .message__wrap .name__input .input-field.message:active, .page-container .send__message__wrapper .message__wrap .name__input .input-field.message:hover {
  border: none;
  box-shadow: none;
  outline: none;
}
.page-container .send__message__wrapper .message__wrap .error__msg {
  font-size: 1.6rem;
  color: rgb(230, 101, 75);
  padding-top: 0.3rem;
}
.page-container .send__message__wrapper .message__wrap .alert {
  width: 100%;
  background: #000000;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0px 0px 6px -1px rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}
.page-container .send__message__wrapper .message__wrap .alert .closebtn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}
.page-container .send__message__wrapper .message__wrap .alert #success_msg {
  color: #4fff4f;
}
@media (max-width: 580px) {
  .page-container .send__message__wrapper .message__wrap .alert #error_content ul {
    padding-left: 0;
  }
}
.page-container .send__message__wrapper .message__wrap .alert #error_content ul li {
  color: red;
}
.page-container .send__message__wrapper .message__wrap .submit {
  border-radius: 1.6rem;
  border: 0.2rem solid #CD1D22;
  background: linear-gradient(280deg, rgb(205, 29, 34) 0%, rgb(100, 10, 13) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cd1d22", endColorstr="#640a0d", GradientType=1);
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
  margin-top: 1.8rem;
  color: #ffffff;
  float: right;
}
.page-container .send__message__wrapper .message__wrap .submit:hover, .page-container .send__message__wrapper .message__wrap .submit:active, .page-container .send__message__wrapper .message__wrap .submit:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 767px) {
  .page-container .send__message__wrapper .message__wrap .submit {
    display: block;
    float: unset;
    margin: 20px auto 0 auto;
  }
}
@media (max-width: 567px) {
  .page-container .send__message__wrapper .message__wrap .submit {
    padding: 1rem 2rem;
  }
}
@media (max-width: 375px) {
  .page-container .send__message__wrapper .message__wrap .submit {
    font-size: 1.6rem;
  }
}

.chat {
  margin-top: 4.2rem;
  cursor: pointer;
  position: fixed;
  right: 2.5%;
  bottom: 10vh;
  z-index: 1;
}
.chat .chat__icon {
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  border: 0.1rem solid rgba(203, 29, 34, 0.5);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(208deg, rgba(255, 127, 127, 0.25) 12.85%, rgba(255, 127, 127, 0) 49.3%);
  box-shadow: 0rem 0.2rem 2.4rem 0rem rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(15.6242351532px);
          backdrop-filter: blur(15.6242351532px);
}
.chat .chat__icon:hover {
  box-shadow: 0px 2px 20px 0px #CB1C21;
  border-radius: 50%;
}

.aboutus__model {
  border-radius: 1rem;
  border: 0.1rem solid #5B080B;
  background: linear-gradient(270deg, rgb(205, 29, 34) 0%, rgba(205, 29, 34, 0.33) 0.01%, rgba(100, 10, 13, 0.65) 100%);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  padding: 2.2rem;
  min-height: 15rem;
  background-color: transparent !important;
}
.aboutus__model .modal-header {
  padding-top: 0;
}
@media (max-width: 375px) {
  .aboutus__model .modal-header .modal-title {
    font-size: 2rem;
  }
}
.aboutus__model .modal-body {
  padding-bottom: 0;
}
@media (max-width: 375px) {
  .aboutus__model .modal-body p {
    font-size: 1.4rem;
  }
}
.aboutus__model .btn-close {
  color: #ffffff !important;
  background-image: none;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutus__model .btn-close:focus {
  box-shadow: none;
}

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

.privacy__policy__wrapper {
  padding-top: 100px;
}
.privacy__policy__wrapper .page-container .privacy__heading {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
}
@media (max-width: 580px) {
  .privacy__policy__wrapper .page-container .privacy__heading {
    font-size: 2rem;
  }
}
.privacy__policy__wrapper .page-container .privacy__contents h4 {
  font-size: 2rem;
  margin-top: 25px;
}
@media (max-width: 580px) {
  .privacy__policy__wrapper .page-container .privacy__contents h4 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.privacy__policy__wrapper .page-container .privacy__contents p {
  font-size: 1.8rem;
  margin-top: 15px;
}
@media (max-width: 580px) {
  .privacy__policy__wrapper .page-container .privacy__contents p {
    font-size: 1.2rem;
  }
}
.privacy__policy__wrapper .page-container .privacy__contents ol {
  margin-top: 15px;
  width: 90%;
  margin: 0 auto;
}
.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;
}
@media (max-width: 580px) {
  .privacy__policy__wrapper .page-container .privacy__contents ol ul li {
    font-size: 1.2rem;
  }
}

.terms__and__conditions__wrapper {
  padding-top: 100px;
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__heading {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
}
@media (max-width: 580px) {
  .terms__and__conditions__wrapper .page-container .terms__and__conditions__heading {
    font-size: 2rem;
  }
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents h4 {
  font-size: 2rem;
  margin-top: 25px;
}
@media (max-width: 580px) {
  .terms__and__conditions__wrapper .page-container .terms__and__conditions__contents h4 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents p {
  font-size: 1.8rem;
  margin-top: 15px;
}
@media (max-width: 580px) {
  .terms__and__conditions__wrapper .page-container .terms__and__conditions__contents p {
    font-size: 1.2rem;
  }
}
.terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol {
  margin-top: 15px;
  width: 90%;
  margin: 0 auto;
}
.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;
}
@media (max-width: 580px) {
  .terms__and__conditions__wrapper .page-container .terms__and__conditions__contents ol ul li {
    font-size: 1.2rem;
  }
}

input:-webkit-autofill {
  /* Set the desired background color */
  background-color: #111111 !important;
  /* Additional styles, if needed */
  color: black !important;
}

.signin__wrapper {
  height: 100dvh;
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: #121212;
}
@media (max-width: 767px) {
  .signin__wrapper {
    display: block;
  }
}
.signin__wrapper .signin__left__wrapper {
  background: rgb(92, 20, 7);
  background: linear-gradient(180deg, rgb(92, 20, 7) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5c1407",endColorstr="#000000",GradientType=1);
}
@media (max-width: 767px) {
  .signin__wrapper .signin__left__wrapper {
    height: 150px;
  }
}
.signin__wrapper .signin__left__wrapper .welcome {
  font-size: 3.8rem;
  font-weight: 600;
  padding-bottom: 1rem;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__left__wrapper .welcome {
    font-size: 2.8rem;
  }
}
@media (max-width: 580px) {
  .signin__wrapper .signin__left__wrapper .welcome {
    font-size: 2rem;
  }
}
.signin__wrapper .signin__left__wrapper .signin__dazam {
  max-width: 400px;
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__left__wrapper .signin__dazam {
    max-width: 250px;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .signin__wrapper .signin__left__wrapper .signin__dazam {
    width: 80%;
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .signin__wrapper .signin__right__wrapper {
    position: relative;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content {
    margin-top: 2rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .signin__header, .signin__wrapper .signin__right__wrapper .signin__right__content .signup__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #ed373e 51.5%, #e44848 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 580px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .signin__header, .signin__wrapper .signin__right__wrapper .signin__right__content .signup__header {
    font-size: 2rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .send__message {
  color: linear-gradient(90deg, #A60D12 35.9%, #FFF 100%);
  position: relative;
  z-index: 1;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 15px;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input {
  width: 100%;
  margin-top: 1.6rem;
  position: relative;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input .user__img {
  position: absolute;
  top: 5px;
  left: 0px;
  box-shadow: -0.6rem -0.6rem 1.2rem 0rem #000000, inset 0rem 0rem 2.2rem 0rem #0c0d0e;
  background-color: #131314;
  border: 0.3rem solid #111214;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input .user__img.phone-icon img {
  opacity: 1;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input .user__img img {
  opacity: 0.3;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input .input-field {
  color: rgb(255, 255, 255) !important;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  border: none;
  width: 100%;
  padding: 1.6rem 5.6rem;
  border-radius: 0.8rem;
  background: #111111;
  box-shadow: inset -0.6rem -0.6rem 1.2rem 0rem #232222, inset 0rem 0rem 2.2rem 0rem #000000;
  border-radius: 0.8rem;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input .input-field:-webkit-autofill {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: white;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input.message {
  min-height: 13.5rem;
  border: none;
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input {
    font-size: 1.4rem;
  }
}
@media (max-width: 580px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input {
    font-size: 1.2rem;
  }
  .signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input ::-webkit-input-placeholder {
    font-size: 1.2rem;
  }
}
.parsley-errors-list .signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .name__input.filled {
  opacity: 1;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .message__wrap .visibility_off {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  font-size: 2rem;
  height: 100%;
  cursor: pointer;
  opacity: 0.3;
  height: 54px;
  display: flex;
  align-items: center;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .error-msg {
  color: rgb(230, 101, 75);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
}
@media (max-width: 380px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .error-msg {
    font-size: 1.2rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .forget-password {
  font-weight: 400;
  font-size: 1.4rem;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .forget-password a {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .forget-password {
    font-size: 1.2rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .user-availability {
  font-weight: 300;
  font-size: 1.2rem;
  display: none;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .user-availability span {
  font-weight: 400;
  color: rgb(127, 132, 147);
  font-size: 1.2rem;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .signup {
  border-radius: 0.8rem;
  border: 0.2rem solid #CD1D22;
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
  font-size: 1.8rem;
  padding: 1rem 3rem;
  margin-top: 2.5rem;
  color: #ffffff;
  width: 100%;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .signup:hover, .signin__wrapper .signin__right__wrapper .signin__right__content .signup:active, .signin__wrapper .signin__right__wrapper .signin__right__content .signup:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .signup {
    font-size: 1.4rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap input {
  opacity: 0;
  display: none;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap input:checked ~ label::before {
  background-color: #9b2a2a;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap input:checked ~ label::after {
  opacity: 1;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
}
@media (max-width: 580px) {
  .signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap label {
    font-size: 1.2rem;
  }
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__wrap label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #a60d12;
  background-color: #111111;
}
.signin__wrapper .signin__right__wrapper .signin__right__content .rememberme__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;
}
.signin__wrapper .signin__right__wrapper .already__link {
  font-weight: 400;
  font-size: 1.6rem;
  color: rgb(127, 132, 147);
}
@media (max-width: 1024px) {
  .signin__wrapper .signin__right__wrapper .already__link {
    font-size: 1.2rem;
  }
}
.signin__wrapper .signin__right__wrapper .already__link .sign-in {
  background: #640A0D;
  background: linear-gradient(to right, #640A0D 0%, #CD1D22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .signin__wrapper .signin__right__wrapper .already__link .sign-in {
    font-size: 1.3rem;
  }
}
@media (max-width: 360px) {
  .signin__wrapper .signin__right__wrapper .already__link .sign-in {
    font-size: 1.3rem;
  }
}
.signin__wrapper .terms-and-conditions {
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(127, 132, 147);
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .signin__wrapper .terms-and-conditions {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .signin__wrapper .terms-and-conditions {
    position: absolute;
    bottom: -50%;
    padding: 2rem;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .signin__wrapper .terms-and-conditions.login-terms {
    bottom: -72%;
  }
}
@media (max-width: 360px) {
  .signin__wrapper .terms-and-conditions.login-terms {
    bottom: -79%;
  }
}
.signin__wrapper .terms-and-conditions.otp-terms {
  bottom: -28%;
}
@media (max-width: 767px) {
  .signin__wrapper .terms-and-conditions.otp-terms {
    bottom: -53%;
  }
}
@media (max-width: 360px) {
  .signin__wrapper .terms-and-conditions.otp-terms {
    bottom: -69%;
  }
}
@media (max-width: 320px) {
  .signin__wrapper .terms-and-conditions.otp-terms {
    bottom: -69%;
  }
}
.signin__wrapper .terms-and-conditions.reset-terms {
  bottom: -28%;
}
@media (max-width: 767px) {
  .signin__wrapper .terms-and-conditions.reset-terms {
    bottom: 0;
    position: relative;
  }
}
.signin__wrapper .terms-and-conditions .privacy {
  background: #640A0D;
  background: linear-gradient(to right, #640A0D 0%, #CD1D22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .signin__wrapper .terms-and-conditions .privacy {
    font-size: 1.2rem;
  }
}
@media (max-width: 360px) {
  .signin__wrapper .terms-and-conditions .privacy {
    font-size: 1.2rem;
  }
}

.signup__wrapper {
  height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: #121212;
  overflow: hidden;
}
@media (max-width: 767px) {
  .signup__wrapper {
    display: block;
    overflow: hidden;
  }
}
.signup__wrapper .signup__left__wrapper {
  background: rgb(92, 20, 7);
  background: linear-gradient(180deg, rgb(92, 20, 7) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5c1407",endColorstr="#000000",GradientType=1);
}
@media (max-width: 767px) {
  .signup__wrapper .signup__left__wrapper {
    height: 20%;
  }
}
.signup__wrapper .signup__left__wrapper .welcome {
  font-size: 3.8rem;
  font-weight: 600;
  padding-bottom: 1rem;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__left__wrapper .welcome {
    font-size: 2.8rem;
  }
}
@media (max-width: 580px) {
  .signup__wrapper .signup__left__wrapper .welcome {
    font-size: 2.2rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .signup__left__wrapper .welcome {
    font-size: 2rem;
  }
}
.signup__wrapper .signup__left__wrapper .signin__dazam {
  max-width: 400px;
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__left__wrapper .signin__dazam {
    max-width: 250px;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .signup__left__wrapper .signin__dazam {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .signup__wrapper .signup__right__wrapper {
    position: relative;
  }
}
.signup__wrapper .signup__right__wrapper .signup__right__content {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content {
    padding: 1rem;
  }
}
.signup__wrapper .signup__right__wrapper .signup__right__content .signup__header {
  background: linear-gradient(to right, #a60d12 0%, #c0373b 49.5%, #f7878b 51.5%, #fab2b2 52%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 360px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content .signup__header {
    font-size: 2.5rem;
  }
}
.signup__wrapper .signup__right__wrapper .signup__right__content .send__message {
  color: linear-gradient(90deg, #A60D12 35.9%, #FFF 100%);
  position: relative;
  z-index: 1;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 15px;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input {
  width: 100%;
  margin-top: 1.8rem;
  background: #111111;
  box-shadow: inset -0.6rem -0.6rem 1.2rem 0rem #232222, inset 0rem 0rem 2.2rem 0rem #000000;
  border-radius: 0.8rem;
  position: relative;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input .user__img {
  position: absolute;
  height: 2.4rem;
  width: 2.4rem;
  top: 1.6rem;
  left: 2rem;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input .user__img img {
  opacity: 0.3;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input .input-field {
  color: rgb(255, 255, 255) !important;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  border: none;
  width: 100%;
  padding: 1.6rem 5.6rem;
  border-radius: 0.8rem;
  background: #111111;
  box-shadow: inset -0.6rem -0.6rem 1.2rem 0rem #232222, inset 0rem 0rem 2.2rem 0rem #000000;
  border-radius: 0.8rem;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input .input-field:-webkit-autofill {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: white;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input.message {
  min-height: 13.5rem;
  border: none;
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input {
    font-size: 1.4rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input {
    font-size: 1.2rem;
  }
  .signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input ::-webkit-input-placeholder {
    font-size: 1.2rem;
  }
}
.parsley-errors-list .signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .name__input.filled {
  opacity: 1;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .message__wrap .visibility_off {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  font-size: 2rem;
  height: 100%;
  cursor: pointer;
  opacity: 0.3;
  height: 54px;
  display: flex;
  align-items: center;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .error-msg {
  color: rgb(230, 101, 75);
  padding-top: 0.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
}
@media (max-width: 380px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content .error-msg {
    font-size: 1.2rem;
  }
}
.signup__wrapper .signup__right__wrapper .signup__right__content .user-availability {
  font-weight: 300;
  font-size: 1.2rem;
  padding-top: 0.5rem;
  display: none;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .user-availability span {
  font-weight: 400;
  color: rgb(127, 132, 147);
  font-size: 1.2rem;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .signup {
  border-radius: 0.8rem;
  border: 0.2rem solid #CD1D22;
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
  font-size: 1.8rem;
  padding: 1rem 3rem;
  margin-top: 3rem;
  color: #ffffff;
  width: 100%;
}
.signup__wrapper .signup__right__wrapper .signup__right__content .signup:hover, .signup__wrapper .signup__right__wrapper .signup__right__content .signup:active, .signup__wrapper .signup__right__wrapper .signup__right__content .signup:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__right__wrapper .signup__right__content .signup {
    font-size: 1.4rem;
  }
}
.signup__wrapper .signup__right__wrapper .already__link {
  font-weight: 400;
  font-size: 16px;
  color: rgb(127, 132, 147);
}
@media (max-width: 1024px) {
  .signup__wrapper .signup__right__wrapper .already__link {
    font-size: 1.2rem;
  }
}
.signup__wrapper .signup__right__wrapper .already__link .sign-in {
  background: #640A0D;
  background: linear-gradient(to right, #640A0D 0%, #CD1D22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .signup__wrapper .signup__right__wrapper .already__link .sign-in {
    font-size: 1.3rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .signup__right__wrapper .already__link .sign-in {
    font-size: 1.3rem;
  }
}
.signup__wrapper .terms-and-conditions {
  font-weight: 400;
  font-size: 1.4rem;
  color: rgb(127, 132, 147);
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .signup__wrapper .terms-and-conditions {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .signup__wrapper .terms-and-conditions {
    position: absolute;
    bottom: -20%;
    text-align: center;
  }
}
.signup__wrapper .terms-and-conditions .privacy {
  background: #640A0D;
  background: linear-gradient(to right, #640A0D 0%, #CD1D22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .signup__wrapper .terms-and-conditions .privacy {
    font-size: 1.2rem;
  }
}
@media (max-width: 360px) {
  .signup__wrapper .terms-and-conditions .privacy {
    font-size: 1.2rem;
  }
}

.message__wrap .mobile-num-verifivation {
  font-weight: 400;
  font-size: 1.6rem;
  padding-top: 4rem;
}
.message__wrap .mobile-num-verifivation span, .message__wrap .mobile-num-verifivation .otp__number {
  color: #cd1d22 !important;
  text-decoration: none;
}
@media (max-width: 360px) {
  .message__wrap .mobile-num-verifivation {
    padding-top: 2rem;
    font-size: 1.4rem;
  }
}
.message__wrap .otp-wrap .otp-container {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.message__wrap .otp-wrap .otp-container .otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 5px;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset -0.6rem -0.6rem 1.2rem 0rem #1b1b1b, inset 0rem 0rem 2.2rem 0rem #000000;
  -webkit-text-fill-color: #ffffff;
  background-color: #131314;
  border: 0.1rem solid #ffffff;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
  padding: 0;
  caret-color: red;
}
.message__wrap .otp-wrap .otp-container .otp-input:active, .message__wrap .otp-wrap .otp-container .otp-input:focus, .message__wrap .otp-wrap .otp-container .otp-input:focus-visible {
  border: 1px solid red;
}
.message__wrap .otp-wrap .otp-container .otp-input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  -webkit-text-fill-color: #ffffff;
}
.message__wrap .otp-wrap .otp-container .otp-input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  background-color: #000;
  color: #ffffff;
}
@media (max-width: 767px) {
  .message__wrap .otp-wrap .otp-container .otp-input {
    width: 45px;
    height: 45px;
    margin: 0;
    font-size: 1.6rem;
  }
}
@media (max-width: 360px) {
  .message__wrap .otp-wrap .otp-container .otp-input {
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 1.4rem;
  }
}
.message__wrap .otp-wrap .otp-container:focus {
  border-color: #007bff;
}
.message__wrap .otp-wrap .resend {
  font-weight: 600;
  font-size: 1.6rem;
  color: rgb(205, 29, 34);
  display: none;
  padding-top: 1.6rem;
  cursor: pointer;
}
@media (max-width: 425px) {
  .message__wrap .otp-wrap .resend {
    font-size: 14px;
  }
}
.message__wrap .otp-wrap .resend-otp {
  padding-top: 1.6rem;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 3rem;
}
.message__wrap .otp-wrap .resend-otp span {
  color: rgb(205, 29, 34);
  font-weight: 600;
}
@media (max-width: 320px) {
  .message__wrap .otp-wrap .resend-otp {
    font-size: 1.3rem;
  }
}
.message__wrap .otp-wrap .verification__btn {
  font-weight: 600;
  font-size: 1.6rem;
  border: 1px solid rgb(203, 28, 33);
  outline: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 8px;
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
  padding: 1rem 5rem;
  max-width: 375px;
  width: 100%;
}
.message__wrap .otp-wrap .verification__btn:hover, .message__wrap .otp-wrap .verification__btn:active, .message__wrap .otp-wrap .verification__btn:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.message__wrap .otp-wrap .verification__btn:not(:first-child) {
  margin-top: 1.6rem;
}
.message__wrap .otp-wrap .verification__btn.cancel {
  background: transparent;
}
.message__wrap .otp-wrap .verification__btn.cancel:hover {
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
}

.reset-password__definition {
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 360px) {
  .reset-password__definition {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.verification__btn {
  font-weight: 600;
  font-size: 1.6rem;
  border: 1px solid rgb(203, 28, 33);
  outline: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 8px;
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
  padding: 1rem 6rem;
  max-width: 375px;
  width: 100%;
}
.verification__btn:hover, .verification__btn:active, .verification__btn:focus {
  color: #ffffff;
  background: #670B0E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.verification__btn:not(:first-child) {
  margin-top: 1rem;
}
.verification__btn:not(:last-child) {
  margin-top: 5rem;
}
@media (max-width: 360px) {
  .verification__btn:not(:last-child) {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
}
.verification__btn.cancel {
  background: transparent;
}
.verification__btn.cancel:hover {
  background: rgb(104, 24, 13);
  background: linear-gradient(90deg, rgb(104, 24, 13) 0%, rgb(200, 55, 34) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#68180d",endColorstr="#c83722",GradientType=1);
}

.enter__number {
  margin-bottom: 0;
}
@media (max-width: 580px) {
  .enter__number {
    font-size: 1.4rem;
  }
}

.message__wrap .verify__continue {
  margin-top: 15px;
}
