/* CSS Reset */
/* Box sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove margins and paddings */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr {
  margin: 0;
  padding: 0;
} 
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
/* Remove list styles (bullet points) */
ul, ol {
  list-style: none;
}
/* Remove default anchor (link) styles */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove underline from links */
a:hover {
  text-decoration: none;
}
/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
}
/* Remove default form field styles */
input, textarea, select, button {
 /* appearance: none;
  */
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}
/* Reset images to be displayed as blocks */
img {
  display: block;
  max-width: 100%;
}
/* Remove default table border spacing */
table {
  border-collapse: collapse;
  width: 100%;
}
/* Reset form elements */
input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="tel"], input[type="url"], input[type="search"], input[type="date"], input[type="time"], input[type="file"], textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 5px 10px;
  outline: none;
}
/* Reset button styles */
button {
  cursor: pointer;
}
@font-face {
  font-family: 'Covered';
  font-style: normal;
  font-weight: 400;
  src: url('./asset/CoveredByYourGrace-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('./asset/Poppins-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('./asset/Poppins-Medium.ttf') format('truetype'), ;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('./asset/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: normal;
  src: url('./asset/Poppins-Regular.ttf') format('truetype');
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  font-family: 'Poppins';
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #575757;
}
::-webkit-scrollbar-thumb {
  background: #3d9475;
  border-radius: 50px; 
}
::-webkit-scrollbar-thumb:hover {
  background: #1088c5;
} 

header {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: fixed;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  top: 1vw;
  z-index: 9999999;
}
.logo {
  flex: 1;
}
.logo img {
  height: 55px;
  width: auto;
  background: #fff;
  border-radius: 52px;
  padding: 9px;
  box-shadow: 0 4px 20px 0px rgb(0 0 0 / 25%);
}
body.dark .logo img{
  background: #242526;
}
.parent {
  flex: 4.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav {
  position: relative;
  display: flex;
  justify-content: space-between;
 /* Distribute the nav items equally within the parent */
  align-items: center;
  height: 55px;
  overflow: hidden;
  box-shadow: 0 4px 20px 0px rgb(0 0 0 / 25%);
  background-color: #fff;
  border-radius: 100px;
}
nav li {
  font-family: Poppins;
  font-weight: 300;
  list-style: none;
  padding: 10px 2vw;
  font-size: clamp(1vw,16px,2vw);
  color:#A5A5A5;
  vertical-align: middle;
}
nav li > a{
  text-decoration: none;
}
nav > .indicator{
  position: absolute;
  width: 3vw;
  height: 2px;
  background: #39a37d;
  bottom: 1.25vh;
  display: none;
  left: 2vw;
}
.parent {
  display: flex;
  align-items: center;
}
.parent i {
  margin-right: 10px;
  cursor: pointer;
  color: #39A37D;
}
.subparent {
  display: flex;
  align-items: center;
}
.subparent i {
  font-size: clamp(2.2vw,24px,2.5vw);
  cursor: pointer;
  color: #39A37D;
}
ul.social {
  list-style: none;
  display: flex;
  height: 55px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 20px 0px rgb(0 0 0 / 25%);
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  align-content: center;
  margin-left: 1vw;
}
ul.social li {
  margin: 0;
  padding: 0;
  flex: 1;
}
ul.social li a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 20px 18px;
}
ul.social li a i {
  display: block;
  margin: auto;
  color: #39A37D;
  font-size: clamp(1.5vw,18px,2vw);
}
nav li.active {
  color:#232323;
}
.banner-area {
  position: relative;
  z-index:2;
}
.video-container {
  width: 100vw;
  height: 100vh;
  background-image: url('./img/headerbg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url('./img/headerbg.png');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('./img/headerbg.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 2;
}
.headerTitleCont {
  z-index: 51;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: start;
  justify-items: start;
  align-content: start;
  text-align: left;
  align-items: start;
  width: 50vw;
  margin-left: 80px;
  top: 50%;
  transform: translateY(-60%);
}
/* h3 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 7vw;
  color: #ffffff;
  letter-spacing: 3px;
}
*/
h4 {
  font-family: "Covered";
  font-weight: normal;
  font-size: clamp(3vw,4vw,5vw);
  color: #009387;
  line-height: 3vh;
  letter-spacing: 1px;
}
/* h5 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 3vw;
  color: #ffffff;
  line-height: 15vh;
  letter-spacing: 2px;
}
h6 {
  font-family: Poppins;
  font-weight: normal;
  font-size: 1.5vw;
  letter-spacing: 2px;
  color: #afafaf;
  margin-top: -1vh;
  margin-bottom: 2vh;
}
*/
.headerTitleCont >div {
  display: block;
}
.headerTitleCont > div > span {
  display: block;
  font-family: Poppins;
  font-weight: bold;
  font-size: clamp(1.4vw,1.6vw,3vw);
  color: #ffffff;
  margin-bottom: 2vh;
}
.headerTitleCont > div > div {
  width: 100%;
  display: flex;
}
.headerTitleCont > div > a {
  display: flex;
  width: 20vw;
  height: 6vh;
  background: rgba(57, 163, 125, 0.50);
  flex: 1;
  margin-right: 25px;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 50px;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  font-family: Poppins;
  padding: 0 18px;
  font-size: 1.2vw;
  text-decoration: none;
  margin-top: 2vh;
  border: 2px solid #39A37D;
}
.headerTitleCont > div > a > i {
  color: #ffffff;
  font-size: 2vw;
}
.phoneImage{
  position: absolute;
  right: 0;
  bottom: -18%;
  width: 33vw; 
}
.poweredByHead {
  display: flex;
  justify-content: start;
  align-content: center;
  align-items: center;
}
.poweredByHead > img {
  position: relative;
  margin-top: -10%;
}
.poweredByHead > div {
  position: relative;
  font-family: Poppins;
  font-weight: bold;
  font-size: clamp(2.5vw,4vw,15vw);
  width: 77%;
  text-align: center;
  overflow: hidden;
}
.poweredByHead > div:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  border-top: 1px dashed #39A37D;
  width: 100%;
  transform: translateY(-50%);
  z-index: -1;
}
.poweredByHead > div > div {
  background-color: #ffffff;
  width: 26vw;
  margin: auto;
  margin-right: 40%;
}
.poweredByHead > div > div > span {
  color:#39A37D;
}
.poweredByCont {
  width: 100vw;
  height: 50vh;
  background-image: url('./img/Rectangle 1171.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url('./img/Rectangle 1171.png');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('./img/Rectangle 1171.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: -8%;
  display: flex;
  flex-direction: column;
  padding-top: 8vh;
}
.poweredByCont > div {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
.poweredByCont > div > div {
  background: #ffffff;
  height: 75px;
  margin: 0 3vw;
  flex-shrink: 0;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.poweredByCont > div > div >img {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 1vh 2vw;
  max-height: 70px;
}
@keyframes scrollRight {
  0%, 100% {
      transform: translateX(0);
 }
  50% {
      transform: translateX(-60vw);
 }
}
@keyframes scrollLeft {
  0%, 100% {
      transform: translateX(-60vw);
 }
  50% {
      transform: translateX(0);
 }
}
.poweredByCont > div:first-child {
  animation: scrollRight 40s linear infinite;
}
.poweredByCont > div:last-child {
  animation: scrollLeft 40s linear infinite;
}
.moreThanJustWalletCont {
  position: relative;
}
.moreThanJustWalletCont > .header {
  margin-left: 6vw;
  margin-top: 4vh;
}
.moreThanJustWalletCont > .header > h3 {
  color:#39A37D;
  font-size: 5vw;
}
.moreThanJustWalletCont > .header > h3 >span {
  color:#2C2C2C;
}
.moreThanJustWalletCont > .header > h5 {
  color:#2C2C2C;
  font-size: 2.75vw;
  margin-top: -7vh;
}
.bscNetworkPerspective {
  position: absolute;
  top: 18vh;
  width: 25vw;
}
.underPoweredVector {
  position: absolute;
  top: 12vh;
  height: 18vw;
  width: 80vw;
  z-index: -1;
}
.splitCont {
  z-index: 4;
  display: flex;
  position: relative;
  top: 20vh;
  width: 90vw;
  margin: auto;
}
.splitCont > img {
  height:45vh;
}
.splitCont > div {
  display: flex;
  flex-direction: column;
  align-content: stretch;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.splitCont > div > div:nth-child(1) {
  font-family: Poppins;
  font-weight: bold;
  padding: 0 18px;
  font-size: 3.75vw;
}
.splitCont > div > div:nth-child(2) {
  font-family: Poppins;
  font-weight: 400;
  padding: 0 18px;
  font-size: 2.25vw;
  margin-top: -2vh;
  line-height: 1.3;
}
.splitCont > div > div:nth-child(3) {
  font-family: Poppins;
  font-weight: normal;
  padding: 0 18px;
  font-size: 1.3vw;
  line-height: 4vh;
  color: #8c8c8c;
  margin-top: 2vh;
  flex: 1;
}
.splitCont > div > button {
  border-radius: 50px;
  background: white;
  color: #39A37D;
  border: 2px solid #39A37D;
  padding: 1.5vh 4vw;
  margin-left: 1.2vw;
  margin-bottom: 1.8vw;
  transition: .5s ease-in-out;
  display: flex;
  gap: 1vw;
  font-family: Poppins;
  font-weight: normal;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}
.splitCont > div > button:hover, .splitCont > div > button:focus {
  background: #39A37D;
  color: #fff;
}
.usdc {
  position: absolute;
  top: 100%;
  width: 17vw;
  right: 0;
}
.revolutionizeCont{
  position: relative;
}
.revolutionizeCont > img:nth-child(3) {
  position: absolute;
  bottom: 2vh;
  left: 5vh;
  z-index: -1;
}
.revolutionizeCont > img:nth-child(2) {
  position: absolute;
  top: 18vh;
  right: 5vw;
  width: 30vw;
}
.detailsCont {
  width: 100vw;
  height: 105vh;
  background-image: url(./img/revolutionizebg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url(./img/revolutionizebg.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(./img/revolutionizebg.png);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  padding-top: 8vh;
}
.detailsCont >div {
  width: 60vw;
  overflow: hidden;
  position: relative;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 2vw;
  transform: translateY(-60%);
}
.detailsCont >div >div:nth-child(1){
  font-family: Poppins;
  font-weight: bolder;
  font-size: 4vw;
  letter-spacing: 2px;
}
.detailsCont >div >div:nth-child(2){
  font-family: Poppins;
  font-weight: bold;
  font-size: 2.75vw;
  margin-top: -3vh;
  color:#3c4144;
}
.detailsCont >div >div:nth-child(3){
  font-family: Poppins;
  font-weight: normal;
  font-size: 1.75vw;
  margin-top: -1vh;
  color:#5f6a70;
}
.detailsCont >div >div:nth-child(4){
  font-family: Poppins;
  font-weight: normal;
  font-size: 1.25vw;
  color:#727f86;
}
.detailsCont >div >div:nth-child(5){
  font-family: Poppins;
  font-weight: normal;
  font-size: 1.25vw;
  margin-top: 1vh;
  color: #5e686e;
  margin-bottom: 2vh;
}
.detailsCont >div >div:nth-child(6) > span {
  display: block;
  font-family: Poppins;
  font-weight: bold;
  font-size: 2vw;
  color: #000000;
  margin-bottom: 2vh;
}
.detailsCont >div >div:nth-child(6) >div {
  display: block;
}
.detailsCont >div >div:nth-child(6) > div {
  width: 100%;
  display: flex;
}
.detailsCont >div >div:nth-child(6) > div > a > i {
  color: #ffffff;
  font-size: 2vw;
}
.amazingFeatures {
  position: relative; 
}
.amazingFeatures > img:first-child {
  position: absolute;
  z-index: -1;
}
.amazingFeatures > h3 {
  color: #2C2C2C;
  font-size: clamp(3vw,5vw,15vw);
  text-align: center;
  margin-top: -5vh;
}
.amazingFeatures > h3 > span {
  color: #39A37D;
}
.interactiveSlides {
  display: flex;
  justify-content: center;
  position: relative;
  transition: .5s ease-in-out;
}
.interactiveSlides > div {
  display: flex;
  position: relative;
  flex: 0 0 100vw;
  transition: transform 0.5s ease;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.interactiveSlides > div > img {
  width:60vw;
}
.interactiveCont > div {
  display: block;
  background: #0683c4;
  position: absolute;
  border-radius: 25px;
  transition: .3s ease-in-out;
  overflow:hidden;
  overflow-y: auto;
  opacity: 0;
  cursor: pointer;
}
.ethBottomSwiper {
  position: absolute;
  bottom: 0;
  width: 13vw;
}
.swiperCont{    
  width: 35vw;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: rotate(90deg);
  right: -14vw;
  display: flex;
}
.swiperCont > div:not(:last-child),.swiperCont > div:not(:first-child) {
  background: #D9D9D9;
  display: flex;
  border-radius: 50px;
  flex: 1;
  margin: 5px 8px;
  transition: .3s ease-in-out;
}
.swiperCont > div.active {
  background: #39A37D;
  flex: 3;
}
.swiperCont > div:last-child,.swiperCont > div:first-child {
  background: #39A37D;
  border:1px solid #FFFFFF;
  border-radius: 50%;
  margin: 5px 8px;
  color: #fff;
  aspect-ratio: 1;
  width: 50px;
  height: 50px;
  margin-top: -1.5vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  transition: .5s ease-in-out;
  flex: inherit;
  cursor: pointer;
}
.swiperCont > div:last-child:hover,.swiperCont > div:first-child:hover {
  background: #FFFFFF;
  border:1px solid #39A37D;
  color:#39A37D;
}
.experience{
  text-align: left;
  margin-top: 35vh;
}
.experience h2 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 3.1vw;
  letter-spacing: 2px;
  text-align: justify;
  width: 85vw;
  margin: auto;
}
.experience h2 span{
  font-weight: bold;
  font-size: 12vw;
  display: block;
  color: #39A37D;
  margin-top: -7vh;
  letter-spacing: 20px;
  position: relative;
}
.experience h2 span::after{
  content: "";
  position: absolute;
  bottom: -45%;
  left: 6%;
  background-image: url(./img/line.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 240px;
  z-index: -1;
}
.headerTitleCont h3{  
  font-size: clamp(3vw,7vw,7.5vw);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
.headerTitleCont h6{
  font-size: clamp(1vw,1.4vw,2vw);
  color: #afafaf;
  font-weight: 400;
  margin-bottom: 3vh;
} 
.apps-links a{
  margin-right: 20px;
} 
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.footer-area{
  background-image: url(./img/footer-back.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: #fff;
}
.footer-top-area {
  padding-top: 140px;
  padding-bottom: 50px;
}
.footer-bottom-area {
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 50%);
}
.footer-flex-content{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.fix::before{
  content: "";
  display: table;
  clear: both;
}
.footer-apps-link{
  display: flex;
  flex-flow: column;
  gap: 3vw;
}
.footer-menu {
  width: 45%;
}  
.footer-menu{
  display: flex;
  justify-content: space-between;
}
.footer-menu h3{
  font-size: 20px;
  opacity: .65;
  font-weight: 400;
  margin-bottom: 15px;
}
.footer-menu ul li a{
  font-size: 19px;
  display: inline-block;
  padding: 7px 0;
}
.footer-apps-link h3{
  font-size: 32px;
  font-weight: 400;
  margin-top: 35px;
  margin-bottom: 10px;
}
.footer-apps-link a{
  display: inline-block;
}
.news-letter-area{
  text-align: center;
}
.news-letter-area h1{
  font-size: 128px;
  color: #2C2C2C;
  text-transform: uppercase;
  font-weight: 700;
}
.news-letter-area h1 strong{
  color: #39A37D;
}
.news-letter-area p{
  color: #000000;
  font-size: 20px;
  opacity: .5;
  margin-bottom: 30px;
}
.news-letter-area .container{
  max-width: 1000px;
  position: relative;
}
.news-letter-area .container::before{
  content: "";
  background-image: url(./img/newsletter-icon.png);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -35%;
  right: -17%;
  width: 230px;
  height: 230px;
  z-index: 1;
}
.news-letter-area form{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.news-letter-area input{
  background-color: transparent;
  border: 0px solid #39A37D;
  height: 85px;
  font-weight: 500;
  font-size: 20px;
  padding-left: 20px;
  border-radius: 50px;
  width: 100%;
  background-image: url(./img/news-latter.png);
  background-repeat: no-repeat;
  background-size: 97% 100%;
  padding-right: 10%;
}
.news-letter-area button{
  background-color: #39A37D;
  font-size: 20px;
  color: #000000;
  height: 74px;
  width: 180px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: -35px;
}
.footer-right-area ul{
  display: flex;
  justify-content: end;
}
.footer-right-area ul li a{
  margin-left: 20px;
  font-size: 30px;
  line-height: 1;
}
.footer-d-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.experience img{
  max-width: 100%;
  width: 100%;
  margin-top: -235px;
}
.headerTitleCont h5{
  font-size: clamp(2vw,3.25vw,5vw);
  color: #fff;
  margin-top: 25px;
  margin-bottom: 0px;
}
.m-0{
  margin: 0px!important;
}
.experience{
  position: relative;
}
.exper-bottom-logo{
  position: absolute;
  right: 0px;
  bottom: 13%;
  z-index: -1;
}
.multi-chain-area {
  font-size: 40px;
  position: relative;
  min-height: 100vh;
  background-image: url(./img/shap1.png);
  background-size: 100% 100%;
  background-position: center center; 
}
.multi-chain-area p{
  margin-bottom: 2vh;
  font-weight: bold;
}
.multi-chain-area ul{
  margin-left: 125px;
} 
.multi-chain-area ul li::before{
  content: "";
  background-image: url(./img/angul.png);
  background-repeat: no-repeat;
  left: -22px;
  top: 5px;
  position: absolute;
  width: 15px;
  height: 15px;
  background-size: contain;
}
.multi-chain-area h2{
  font-size: clamp(3vw,5.5vw,7.5vw);
  color: #2C2C2C;
  font-weight: 700;
}
.multi-chain-area h3{
  font-size: clamp(3vw,5vw,7.5vw);
  font-weight: 700; 
  letter-spacing: 5px;
  margin-bottom: 5vh;
}
.multi-chain-area h3 span{
  color: #39A37D;
}
.multi-mobile-area {
  position: absolute;
  right: 0px;
  top: 15%;
}
.partner-top-logo{
  margin-bottom: 65px;
  animation: scrollRight 40s linear infinite;
  display: flex;
  flex-direction: column;
}
.solanaPartners{
  position: absolute;
  width: 16vw;
}
.partner-middle-logo{
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 65px;
  position: relative;
  animation: scrollLeft 40s linear infinite;
  display: flex;
  flex-direction: column;
} 
.partner-body {
  margin-top: -10vh;
  padding-top: 220px;
  background-image: url(./img/shap2.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  position: relative;
  background-image: url(./img/shap2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url(./img/shap2.png);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(./img/shap2.png);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.partner-top-logo .container{
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
.partner-title h3{
  font-size: clamp(3vw,5vw,15vw);
  color: #2C2C2C;
  font-weight: 700;
}
.partner-title h3 span{
  color: #39A37D;
}
.partner-bottom {
  background-image: url(./img/shap4.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 75%;
  position: relative;
  z-index: 0;
}
.partner-bottom .container{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partner-bottom-right{
  text-align: right;
  width: 40%;
}
.partner-bottom-left h3{
  font-size: 40px;
  color: #000000;
  font-weight: 600;
  position: relative;
  display: flex;
  column-gap: 10px;
}
.partner-bottom-left h3 img {
  width: 50px;
  height:50px;
}
.partner-bottom-left h5{
  font-size: 36px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}
.partner-bottom-left p{
  font-size: 24px;
  opacity: .5;
  margin: 20px 0;
}
.partner-bottom-left a{
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
}
.partner-bottom-right img{
  display: inline;
}
.partner-bottom-left {
  max-width: 700px;
  width: 60%;
}
.partner-bottom-heading h3{
  font-size: clamp(3.5vw,5vw,15vw);
  color: #2C2C2C;
  font-weight: 700;
  padding-bottom: 40px;
  margin: -1vw 0;
}
.partner-bottom-heading h3 span{
  color: #39A37D;
}
.partner-bottom-heading{
  position: relative;
}
.partner-bottom-heading:before {
  content: "";
  background-image: url(./img/Polygon_perspective_matte.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 250px;
  height: 410px;
}
.profit-area { 
  background-image: url(./img/shap5.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  position: relative; 
  margin-top: -10%;
} 
.btcOracle{
  position: absolute;
  bottom: -10vh;
  z-index: -1;
  width: 21vw;
}
.profit-area h3{
  font-size: clamp(4vw,5vw,15vw);
  font-weight: 700;
  color: #2C2C2C;
  line-height: 1;
}
.profit-area h3 span{
  color: #39A37D;
  margin-left:12vw;
}
.profit-area p{
  font-size: 24px;
  color: #1F2122;
  opacity: .5; 
}
.profit-form-area {
  margin-top: 65px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.profit-form-area label{
  color: #000000;
  font-size: clamp(1vw,2.5vw,10vw);
  font-weight: normal;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.profit-left-area {
  width: 50%;
}
.profit-right-area {
  width: 50%;
  display: flex;
}
.single-input-area{
  width: 50%;
  padding-left: 30px;
}
.select-area{
  background-color: #0181C3;
  border-radius: 50px;
  position: relative;
}
.select-area::before{
  content: "";
  position: absolute;
  right: 70px;
  top: 5%;
  width: 1px;
  height: 90%;
  background-color: #fff;
}
.select-area::after{
  content: "\f078";
  font-family: "fontawesome";
  position: absolute;
  top: 0px;
  right: 23px;
  font-size: 30px;
  color: #fff;
  height: 100%;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.option-area select{
  height: 8vh;
  color: #fff; 
  font-size: clamp(1vw,2vw,5vw);
  border: 0px;
  max-width: 330px;
  width: 100%;
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  padding-right: 55px;
  z-index: 8;
}
.option-area select option{
  color: #000;
}
.option-area select::before{
  content: "";
  position: absolute;
  right: 70px;
  top:0px;
  height: 100%;
  width: 1px;
  background: #fff;
}
.option-area {
  width: 50%;
}
.profile-form-bottom-area{
  position: relative;
  display: flex;
  justify-content: end;
  top: 5vh;
}
.single-cal-result{
  box-shadow: 0px 0px 20px 0px #00000033;
  background: #39A37D;
  color: #fff;
  text-align: center;
  max-width: 530px;
  width: 100%;
  border-radius: 50px;
  padding: 10px;
  margin-left: 30px;
}
.single-cal-result h5{
  color: #fff;
  font-size: clamp(1vw,2.1vw,4vw);
  border-bottom: 1px solid rgb(255 255 255 / 50%);
  padding-bottom: 10px;
  font-weight: normal;
}
.single-cal-result p{
  font-size: clamp(1vw,2.1vw,4vw);
  color: #fff;
  margin-top: 10px;
  opacity: 1;
}
.single-input-area input{
  box-shadow: 0px 0px 20px 0px #00000033;
  height: 106px;
  width: 100%;
  border: 0px;
  border-radius: 100px;
  text-align: center;
  font-size: 40px;
  background-color: #fff;
}
.cout-options{
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #00000033;
  padding: 0px 25px;
  border-radius: 80px;
  display: flex;
  align-items: center;
}
.count-number {
  font-size: clamp(3vw,4vw,10vw);
  line-height: 1;
  width: 50%;
}
.nft-fution-area {
  padding-top: 100px; 
  position: relative;
}
.nft-fution-area::after{
  content: "";
  background-image: url(./img/shap6.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  top: 15vh;
  height: 93%;
  width: 100%;
  background-position: left center;
  z-index: -1;
  background-size: contain;
}
.nft-fution-area h2{
  color: #2C2C2C;
  font-size: clamp(2vw,4vw,8vw);
  font-weight: 600;
  margin-bottom: 10px;
}
.nft-fution-area h2 span{
  color: #39A37D;
}
.nft-fution-body{
  display: flex;
  align-items: center;
  position: relative;
}
.single-fution-tab h5{
  font-size: clamp(1vw,2vw,5vw);
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}
.single-fution-tab p{
  font-size: clamp(1vw,1.5vw,5vw);
  color: #1F2122;
  margin-bottom: 10px;
}
.single-fution-tab p:nth-child(2n+1){
  opacity: .7;
}
.nft-fution-left-area {
  width: 50%; 
}
.nft-fution-right-area {
  width: 50%;
  margin-left: 20px; 
}
.nft-fution-left-area img {  
  width: clamp(20vw,35vw,40vw);
}
.tab-link{
  text-align: center;
  margin-bottom: 50px;
}
.tab-link ul{
  border-radius: 50px;
  border: 2px solid #39A37D;
  display: inline-block;
}
.tab-link ul li {
  display: inline;
}
.tab-link ul li a{
  color: #39A37D;
  font-size: clamp(1vw,1.5vw,5vw);
  padding: 1.5vh 50px;
  display: inline-block;
  text-align: center;
}
.tab-link ul li.active a{
  background-color: #39A37D;
  color: #ffffff;
  border-radius: 50px;
}
.tab-pane{
  display: none;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}
.tab-pane.active{
  display: block;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
}



.slider-container {
  perspective: 100vw;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  justify-content: center;
}
.slider-slide span {
  position: relative;
}

.slider-slide {
  width: 200px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: transparent; 
  position: relative;
  transform-origin: center;
  transition: transform 0.5s, z-index 0.5s;
}
.slider-slide.active:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2vh;
  transform: translatex(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  clear: both; 
}
.road-map-area h2{
  font-size: 96px;
  color: #2C2C2C;
}
.road-map-area h2 span{
  color: #39A37D;
}
.single-road-block ol{
  list-style: auto;
  color: #000000;
  font-size: 36px;
  padding-left: 70px;
}
.road-content {
  border-left: 3px solid #39A37D;
  padding: 40px 0;
}
.single-road-map-step{
  display: flex;
  flex-direction: column-reverse;
}
.single-road-map-step .single-road-block:last-child{
  border-bottom: 5px solid rgb(57 163 125 / 50%);
  ;
}
.single-road-map-step .single-road-block:first-child{
  border-top: 5px solid rgb(57 163 125 / 50%);
  ;
}
a.know-more{
  border: 3px solid #39A37D;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 30px;
  color: #39A37D;
  font-size: 32px;
}
.single-road-map-step .single-road-block:last-child .road-content{
  float: right;
  max-width: 900px;
  position: relative;
  padding-bottom: 150px;
}
.single-road-map-step .single-road-block:first-child .road-content{
  float: left;
  max-width: 900px;
  position: relative;
  padding-top: 150px;
}
.phase{
  color: #000000;
  font-size: 36px;
  font-weight: 700;
}
.single-road-map-step .single-road-block:last-child .road-content a.know-more{
  position: absolute;
  top: -60px;
  left: -50px;
}
.single-road-map-step .single-road-block:first-child .road-content a.know-more{
  position: absolute;
  bottom: -59px;
  left: -50px;
}
.single-road-map-step .single-road-block:last-child .road-content .phase{
  position: absolute;
  left: -60px;
  bottom: -110px 
}
.single-road-map-step .single-road-block:first-child .road-content .phase{
  position: absolute;
  top: -110px;
  left: -50px;
}
.road-map-area {
  padding-bottom: 110px;
  position: relative;
}
.slider-arrow-area button{
  margin: 10px;
  display: inline-block;
  cursor: pointer;
  color: #000000;
  font-size: 30px;
}
.road-content::after{
  content: "";
  position: absolute;
  background-color: #39A37D;
  border: 25px solid #9CD1BE;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.single-road-map-step .single-road-block:last-child .road-content::after{
  bottom: -50px;
  left: -45px;
}
.single-road-map-step .single-road-block:first-child .road-content::after{
  left: -45px;
  top: -50px;
}
.discover-area h2{
  font-size: clamp(4vw,5vw,15vw);
  color: #2C2C2C;
  font-weight: 700;
}
.discover-area h3{
  font-size: clamp(4vw,5vw,15vw);
  color: #39A37D;
  font-weight: 500;
}
.discover-area h3 span{
  color: #0181C3;
}
.single-discover {
  background-color: rgb(57 163 125 / 75%);
  font-size: clamp(1.25vw,18px,4vw);
  color: #f9f9f9;
  border-radius: 20px;
  border: 2px solid #39A37D;
  padding: 20px;
  position: relative;
  z-index: 2;
  width: 32%;
  height: 250px;
  overflow: hidden;
} 
.single-discover > span{  
  font-size: clamp(1.4vw,18px,4vw);
  display: block;
  text-align: center;
  font-weight: bold;
}
.discover-area{
  background-image: url(./img/back2.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 300px;
} 
.discover-body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center; 
  margin: auto;
  position: relative;
  column-gap: 1%;
  row-gap: 1vh;
}
.discover-area::before {
  content: "";
  position: absolute;
  bottom: -19vh;
  right: -8vw;
  background-image: url(./img/Ripple_perspective_matte.png);
  background-repeat: no-repeat;
  width: 315px;
  height: 525px;
  transform: scale(.6);
}
.slider-tab-nav{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  vertical-align: middle;
  justify-items: center;
  transition: .5s ease-in-out;
}
.slider-tab-nav button{
  width: 250px;
  aspect-ratio: 371/509;
  flex-shrink: 0;
}
.slider-tab-nav button span{ 
  font-weight: 500;
  display: inline-block; 
  color: #fff; 
  left: 0px;
  bottom: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgb(1 129 195 / 75%); 
  border-radius: 50px;
  width: 100%;
  padding: 1vh 1vw;
  font-size: 1.2vw;
}
.titles {
  padding-bottom: 135px;
  overflow: hidden;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.titles div{
  display: inline-block;
  background-color: #0181C3;
  border-radius: 30px;
  color: #fff;
  padding: 5px 35px;
  font-size: 2.5vw;
}
.titles div:first-child{
  float: left;
}
.titles div:last-child{
  background-color: #39A37D;
  float: right;
} 
.buttonWrapper button span{
  font-size: clamp(3vw,30px,1.5vw);
  text-align: center;
} 
.buttonWrapper button:nth-child(4) span {
  background: rgb(110 110 110 / 75%); 
}
.buttonWrapper button:nth-child(5) span,.buttonWrapper button:nth-child(6) span,.buttonWrapper button:nth-child(7) span{    
  background: rgb(57 163 125 / 75%); 
}
.buttonWrapper button img{
  position: relative;
  transition: .4s ease-in-out;
}
.buttonWrapper button:nth-child(2) img, .buttonWrapper button:nth-child(6) img{
  transform: scale(1.1);
}
.buttonWrapper button:nth-child(3) img, .buttonWrapper button:nth-child(5) img{
  transform: scale(1.2);
}
.buttonWrapper button:nth-child(4) img {
  transform: scale(1.3); 
}   
.tab-slider-area{
  background-image: url(./img/back6.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 125%;
  display: inline-block;
  width: 100%;
  padding-top: 150px;
  margin-top: -31px;
  position: relative;
}
.slider-display-area{
  display: flex;
  align-items: center;
  padding-top: 5vw;
  margin-bottom: 5vw;
  gap: 2vw;
  justify-content: space-around;
}
.left-tab-slider{
  width: 50%;
}
.right-tab-slider{
  width: 40%; 
}
.right-tab-slider iframe {
  aspect-ratio: 668.8/407;
  width: 100%;
}
.whitelist-buttons button{
  font-size: 1.75vw;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  padding: 5px;
}
.whitelist-left-button{
  width: 40%;
}
.whitelist-right-button{
  width: 60%;
  padding-left: 5%;
}
.whitelist-buttons{
  display: flex;
}
.mintContWL {  
  width: 100%;
  display: flex;
  padding: 15px 30px;
  background: #60a180;
  align-items: center;
  align-content: center;
  border-radius: 20px;
  margin: 30px 0;
}
.mintContWL h5{
  font-weight: bold;
  font-size: 24px;
  color: white;
}
.mintContWL >div:nth-child(1){
  flex: 2;
}
.mintContWL >div:nth-child(1) > div {
  font-size: 20px;
  color: white;
  font-weight: lighter;
  margin-bottom: 15px;
}
.mintContWL >div:nth-child(1) > input {
  background: #232323;
  width: 200px;
  padding: 20px;
  font-size: 30px;
  color: white;
  border-radius: 20px;
  border: 1px solid white;
  outline: none;
}
.mintContWL >div:nth-child(2){ 
  flex: 1;
  display: flex;
  flex-flow: column;
}
.mintContWL >div:nth-child(2) > div { 
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding-left: 10px;
  margin-top: 10px;
}
.mintContWL >div:nth-child(2) > span { 
  font-weight: bold;
  background: #232323;
  width: 200px;
  padding: 20px;
  font-size: 22px;
  color: white;
  border-radius: 20px;
}
.whitelist-left-button button {
  background-color: #39A37D;
  border: 2px solid #39A37D;
  color: #fff;
  transition: .3s ease-in-out;
} 
.whitelist-right-button button:first-child{
  border: 2px solid #39A37D;
  color: #39A37D;
  margin-bottom: 20px;
  transition: .3s ease-in-out;
}
.whitelist-right-button button:last-child{
  border: 2px solid #39A37D;
  color: rgb(255 255 255 / 50%);
  background-color: rgb(57 163 125 / 50%);
  transition: .3s ease-in-out;
}
.whitelist-left-button button:hover,.whitelist-right-button button:hover  {
  border: 2px solid #ffffff;
  transition: .3s ease-in-out;
}
.range-area h5{
  font-size: 1.7vw;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.range{
  height: 10px;
  background-color: hsl(158deg 48% 43% / 50%);
  border-radius: 30px;
  position: relative;
}
.range span{
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0px;
  top:0px;
  background-color: #39A37D;
  border-radius: 30px;
}
.subscribed p{
  margin-top: 15px;
}
.subscribed p:first-child{
  float: left;
  font-size: 1.3vw;
  color: #fff; 
}
.subscribed p:last-child{
  float: right;
  font-size: 1.3vw; 
  color: #fff; 
}
.count-number input{
  border: 0px;
  width: 100%;
}
.scroll-to-top {
  position: relative;
}
.btn-position {
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 20;
}
.btn-style {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  color: #000;
  cursor: pointer;
  animation: movebtn 3s ease-in-out infinite;
  transition: all 0.5s ease-in-out;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.single-tab-slider{
  display: none;
}
.single-tab-slider.active{
  display: block;
}
.road-map-body{
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  list-style: none;
  padding-top: 70px;
  padding-bottom: 70px;
}
.slide {
  width: 100%;
  height: 100%;
  flex: 1 0 100%;
}
.icon-style:hover {
  animation: none;
  background: #fff;
  color: #551b54;
  border: 2px solid #551b54;
}
.slider-arrow-area{
  position: absolute;
  right: 20px;
  bottom: 20px;
}


@keyframes movebtn {
  0% {
      transform: translateY(0px);
 }
  25% {
      transform: translateY(20px);
 }
  50% {
      transform: translateY(0px);
 }
  75% {
      transform: translateY(-20px);
 }
  100% {
      transform: translateY(0px);
 }
}
.partner-middle-logo .container{
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
.content {
  display: none;
  padding: 10px 20px;
}
.content.active {
  display: block;
}
.buttonWrapper button{
  position: relative;
}
.buttonWrapper button::before{
  content: "";
  position: absolute;
  left: 0px;
  top:0px;
  width: 100%;
  height: 100%;
  z-index: 99;
} 
body.dark{
  background-color: #242526;
  color: #fff;
}
body.dark .poweredByHead > div > div {
  background-color: #242526;
}
body.dark .poweredByHead > div > div > span {
  color: #fff;
}
body.dark .poweredByHead > div > div > span{
  color: #39A37D;
}
body.dark .poweredByCont{
  background-image: url(./img/dark-back-1.png);
  -webkit-mask-image: inherit;
  -webkit-mask-size: inherit;
  -webkit-mask-repeat: inherit;
  padding-bottom: 30px;
}
body.dark .poweredByCont > div > div{
  background-color: #fff;
}
body.dark .moreThanJustWalletCont > .header > h3 >span {
  color: #fff;
}
body.dark .moreThanJustWalletCont > .header > h5 {
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(2) {
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(3){
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(4) {
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(5){
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(5){
  color: #fff;
}
body.dark .detailsCont >div >div:nth-child(6) > span{
  color: #fff;
}
body.dark .detailsCont{
  background-image: url(./img/dark-back-2.png);
  -webkit-mask-image: inherit;
  -webkit-mask-size: inherit;
  -webkit-mask-repeat: inherit;
}
body.dark .amazingFeatures > h3{
  color: #fff;
}
body.dark .multi-chain-area h2{
  color: #fff;
}
body.dark .multi-chain-area{
  background-image: url(./img/dark-back-3.png);
}
body.dark .multi-chain-area ul li{
  position: relative;
}
body.dark .multi-chain-area ul li::before,body .multi-chain-area ul li::before{
  content: "";
    position: absolute;
    left: -31px;
    top: 50%;
    font-family: "fontawesome";
    color: #0181C3;
    font-size: 24px;
    background-image: url(./img/angul.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    transform: translateY(-70%);
}
.multi-chain-area ul li {
  position: relative;
}
body.dark .partner-title h3{
  color: #fff;
}
body.dark .partner-title h3 span{
  color: #39A37D;
}
body.dark .partner-body{
  background-image: url(./img/dark-back-5.png);
}
body.dark .partner-bottom{
  background-image: url(./img/dark-back-6.png);
}
body.dark .partner-bottom-left h3{
  color: #fff;
}
body.dark .partner-bottom-left h5{
  color: #fff;
}
body.dark .partner-bottom-heading h3 {
  color: #fff;
}
body.dark .partner-bottom-heading h3 span{
  color: #39A37D;
}
body.dark .discover-area{
  background-image: none;
}
body.dark .discover-area h2{
  color: #fff;
}
body.dark .single-discover{
  color: #fff;
}
body.dark .profit-area h3{
  color: #fff;
}
body.dark .profit-area{
  background-image: url(./img/dark-back-7.png);
}
body.dark .profit-form-area label{
  color: #fff;
}
body.dark .nft-fution-area h2{
  color: #fff;
}
body.dark .road-map-area h2{
  color: #fff;
}
body.dark .single-road-block ol{
  color: #fff;
}
body.dark .news-letter-area h1{
  color: #fff;
}
body.dark .news-letter-area h1 strong{
  color: #39A37D;
}
body.dark .phase{
  color: #fff;
}
body.dark .news-letter-area p{
  color: #fff;
}
body.dark .news-letter-area button{
  color: #fff;
}
body.dark .slider-arrow-area button{
  color: #fff;
}
body.dark .nft-fution-area h2 span{
  color: #39A37D;
}
body.dark .road-map-area h2 span{
  color: #39A37D;
}
body.dark .single-fution-tab p {
  color: #fff;
}
body.dark .range-area h5 {
  color: #fff;
}
body.dark .single-fution-tab h5 {
  color: #fff;
}
body.dark .nft-fution-area::after {
  background-image: url(./img/dark-back-8.png);
}
body.dark nav{
  background-color: #242526;
}
body.dark ul.social{
  background-color: #242526;
}
body.dark nav li.active {
  color: #fff;
}
.mobile-button {
  display: none;
} 
.partner-top-logo div div, .partner-middle-logo div div{
  margin-left: 10px;
  margin-right: 10px;
  width: auto;
  height: 75px;
  background: #ffffff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0
}
.partner-top-logo div div img,.partner-middle-logo div div img {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 1vh 2vw;
  max-height: 70px;
}

.mobilePolygonNetworkPerspective{
  display: none;
 }

@media only screen and (min-width: 1921px){
  .poweredByHead > img {
    width: clamp(5vw,18vw,30vw);
  }
  .titles div {
    font-size: 2vw;
  }
  .buttonWrapper button span{
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1920px){
  .titles div {
    font-size: 2vw;
  }
  .buttonWrapper button span{
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 1600px){
  .nft-fution-area::after {
    top: 8vh; 
    width: 50%;
  }
}
@media only screen and (max-width: 1500px) {
  .subscribed p:first-child,.subscribed p:last-child {
    font-size: 1.6vw;
  }
  .range-area h5 {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 1400px) {
  .poweredByHead > div {    
    bottom: clamp(-5vh,-5vh,-15vh);
  }
  .titles div {
    font-size: 3vw;
  }
  .buttonWrapper button span{
    font-size: 2vw;
  }
  .apps-links a {
      max-width: 40%;
 }
  .multi-chain-area {
      font-size: 30px;
 }
  .multi-chain-area h3 { 
      margin-bottom: 25px;
 } 
 .profile-form-bottom-area{
  top:2vh;
 } 
 .multi-chain-area .container{
    margin-top: 15vh;
  }
  .revolutionizeCont > img:nth-child(3) {
    width: clamp(13vw,5vw,17vw);
    left: 2vw;
    bottom: 5vh;
  } 
}
@media only screen and (max-width: 1300px){
  .headerTitleCont > div > a {    
    width: 30vw;
    font-size: 2vw;
  }
  .nft-fution-area::after {
    top: 8vh;
  } 
  .poweredByCont {    
    margin-top: -10%;
  }
  .poweredByHead > img{
    width: clamp(5vw,22vw,30vw);
  }
  .splitCont{
    margin-bottom:15vh;
  }
  .splitCont > img {
    height:25vw;
  }
  .usdc { 
    top: 44vw;
    width: 22vw; 
  }
  .multi-mobile-area img {
    width: clamp(26vw,28vw,40vw);
    margin-right: 3vw;
  }
  .detailsCont >div >div:nth-child(1) {    
    font-size: 5vw;
  }
  .detailsCont >div >div:nth-child(2) {    
    font-size: 3vw;
  }
  .detailsCont >div >div:nth-child(3) {    
    font-size: 2vw;
  }
  .detailsCont >div >div:nth-child(4), .detailsCont >div >div:nth-child(5) {    
    font-size: 1.5vw;
  }
  .revolutionizeCont > img:nth-child(2) { 
    width:37vw;
  }
  .subscribed p:first-child,.subscribed p:last-child {
    font-size: 1.75vw;
  }
  .range-area h5 {
    font-size: 2.25vw;
  }
}
@media only screen and (min-width: 1300px){
  ul.social,.logo img,nav {
    height:6vh;
  }  
  .logo img {    
    padding: 5px;
  } 
  
}

@media only screen and (max-width: 1150px){
  .profit-area h3 {    
    font-size: 6vw;
  }
  .revolutionizeCont > img:nth-child(2) {
    width: 41vw;
    right: 1vw;
  }
  .titles div {
    font-size: 3.75vw;
  }
  .buttonWrapper button span{
    font-size: 2.75vw;
  }
}

@media only screen and (max-width: 1150px){
  .partner-bottom-heading h3 {
    font-size: 6vw;
  }
  .parent {
    flex:9;
  }
  .partner-bottom-right img{
    width: 25vw;
    padding: 15vh 0;
  }
  .partner-bottom-heading:before{
    content: "";
    background-image: url(./img/Polygon_perspective_matte.png);
    background-repeat: no-repeat;
    position: absolute; 
    right: 0px;
    bottom: 10vh;
    width: 20vw;
    background-size: contain;
    aspect-ratio: 250/410;
  }
  .nft-fution-right-area {
    margin-left: unset;
  } 
}  

@media only screen and (min-width: 991px){
  .phoneImage {
    width: clamp(600px,36vw,36vw);
  }  
  .headerTitleCont {
    top: 53%;
  }
  .underPoweredVector.mobileVec {
    display: none;
  }
}
 
@media only screen and (max-width: 991px){
  .headerTitleCont > div > a {    
    width: 32vw;
    font-size: 2.5vw;
  }
  .headerTitleCont > div > a > i {
    color: #ffffff;
    font-size: 2.5vw;
  }
  .subscribed p:first-child,.subscribed p:last-child {
    font-size: 3vw;
  }
  .range-area h5 {
    font-size: 4vw;
  }
  .nft-fution-area::after {    
    background-position: left 28vw;
  }
  .logo{
    width: 45px;
    height: 45px;
    display: block;
  }
  .logo img{
    height: 45px;
    width: auto;
  }
  .profit-area h3 {
    font-size: 8vw;
  }
  .single-discover{
    width: 49%;
  }
  .btcOracle {
    display: none;
  }
  .phoneImage {
      bottom: 0;
 } 
  .poweredByCont {
      padding-top: 35px;
 }
 .splitCont > div {
  margin-top: 20px;
  align-items: start;
  text-align: left;
}
.splitCont > div > div:nth-child(1) {    
  font-size: 6vw;
}
.splitCont > div > div:nth-child(2) { 
  font-size: 3vw;
}
.splitCont > div > div:nth-child(2) >br { 
  display: none;
}
.splitCont > div > div:nth-child(3){
    margin-top: 10px;
    line-height: 1.5;
    font-size: 2.2vw;
}
  .splitCont {
      display: inherit;
      width: 100%;
      text-align: center;
 }
  .splitCont > img {
      margin-left: auto;
      margin-right: auto;
      width: 75%;
      height: auto;
 }
    
  .splitCont > div > div:nth-child(2) {
      margin-top: 0;
 }
 
  .detailsCont >div >div:nth-child(2) {
      margin-top: 0;
 }
  .detailsCont >div >div:nth-child(3) {
      margin-top: 0;
 }
  .usdc{
    top: unset;
    width: 22vw;
 } 
  .ethBottomSwiper{
      display: none;
 }
  .revolutionizeCont > img:nth-child(3) {
   display: none;
 }
  .experience h2 span {
      font-size: 7vw;
      margin-top: -24px;
      letter-spacing: 0px;
 }
  .multi-chain-area h3 {
      font-size: 6vw;
      margin-bottom: 0;
 }
  .multi-chain-area h2 {
      font-size: 7vw;
 }
 .multi-chain-area p {
  margin-bottom: 2vh;
  font-weight: bold;
  font-size: 4vw;
}
  .multi-mobile-area {
      position: inherit;
      right: auto;
      top: auto;
      width: 100%;
      text-align: center;
 }
  .multi-mobile-area img{
      display: inline-block;
      width: 50vw;
 }
  .multi-chain-area {
      font-size: 25px;
      margin-top: -140px;
 }
  .multi-chain-area ul {
      margin-left: 30px;
      margin-bottom: 30px;
      box-shadow: 0px 4px 50px 0px #0000001A;
      background-color: #fff;
      border-radius: 20px;
      padding: 16px 35px;
 }
  .multi-chain-area ul li{
      position: relative;
 }
  .partner-title h3 {
      font-size: 70px;
 }
  .partner-body {
    padding-top: 26vh;
 }
  .partner-middle-logo {
      flex-wrap: inherit;
      padding-bottom: 50px;
 }
  .partner-top-logo {
      margin-bottom: 50px;
 }
  .partner-bottom .container {
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    align-items: center;
 }
  .partner-bottom-left { 
    flex: 3;
 }
 .partner-bottom {
  top: -10vh;
 }
 .solanaPartners {
    position: absolute;
    width: 16vw;
    right: 0;
    transform: rotate(-90deg);
    top: 45vh;
  }
  .partner-bottom-right {
    text-align: center; 
    margin-left: auto;
    margin-right: auto;
    flex: 1;
 } 
  .partner-bottom-heading h3 {
    margin-top: -20vw;
      font-size: 8vw;
 }
 .tab-slider-area {
  margin-top: -7vw;
  z-index: 0;
 }
 .partner-body{
  z-index: 1;
 }
  .partner-bottom-heading:before {
      width: 150px;
      height: 310px;
      background-size: contain;
      display: none;
 }
  .titles a {
      font-size: 20px;
 }
  .titles {
      padding-bottom: 85px;
      max-width: 100%;
 }
  .slider-tab-nav button span {
    font-size: 2.5vw;
    bottom: -30px;
 }
 
  .buttonWrapper button:first-child span, .buttonWrapper button:last-child span{
      font-size: 16px;
 }
  .buttonWrapper button:nth-child(6) span, .buttonWrapper button:nth-child(2) span{
      font-size: 18px;
 } 
  .buttonWrapper button.active span {
      
 }
  .buttonWrapper button.active::after {
      bottom: -145px;
 }
  .slider-display-area {
      flex-direction: column-reverse;
      flex-wrap: wrap;
 }
  .right-tab-slider {
    width: 100%; 
    display: flex;
    justify-content: center;
 }
 .whitelist-left-button button,.whitelist-buttons button {  
  font-size: 4vw;
 }
  .left-tab-slider {
      width: 100%;
      margin-top: 50px;
 } 
  .discover-area h2 {
      font-size: 8vw;
 }
  .discover-area h3 {
      font-size: 7vw;
 } 
  .discover-area::before{
      max-width: 150px;
      background-size: contain;
      bottom: -100%;
 }
  .discover-area {
      padding-bottom: 100px;
      display: inline-block;
      width: 100%;
 }
  .profit-area {
      margin-top: 0;
      padding-bottom: 10vh;
 }
 .cout-options {
  padding:0;
 }
 .profit-form-area label {  
  font-size: clamp(2vw,3vw,10vw);
  font-weight: bold;
 } 
 .single-cal-result p{
  font-size: clamp(4vw,5vw,10vw);
 }
  .profit-left-area, .profit-right-area{
      width: 100%;
      margin: 15px 0;
 } 
  .profit-area::before{
      display: none;
 } 
  .nft-fution-area h2{
      font-size: 65px;
 }
  .nft-fution-body{
      flex-wrap: wrap;
 }
  .nft-fution-area {
      padding-top: 5dvh;
      padding-bottom: 50px;
 }
  .nft-fution-left-area, .nft-fution-right-area{
      width: 100%;
 }
  .nft-fution-left-area{
      text-align: center;
 }
  .nft-fution-left-area img{
      display: inline-block;
      width: 75vw;
 }
 .tab-link ul li a{
  font-size:3vw;
  padding: 1.5vh 11vw;
 }
 .single-fution-tab h5{
  font-size: 5vw;
 }
 .single-fution-tab p{
  font-size: 2.75vw;
 }
 
  .tab-link {
      text-align: center;
      margin-bottom: 50px;
      margin-top: 50px;
 }
  .road-map-area h2 {
      font-size: 65px;
 }
  .news-letter-area h1 {
      font-size: 70px;
 }
  .footer-menu ul li a {
      font-size: 15px;
 }
  .mobile-button{
      position: absolute;
      right: 20px;
      top:20px;
      display: block;
 }
  .mobile-button button{
      background: #fff;
      display: flex;
      align-items: center;
      width: 40px;
      height: 40px;
      text-align: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 3vw;
 }
  nav{
      display: inherit;
      height: auto;
      border-radius: 0px;
 }
  header{
      display: inherit;
 }
  .subparent{
      margin-top: 20px;
 }
  .detailsCont >div >div:nth-child(6) > div {
      justify-content: center;
 }
  .footer-logo{
    display: none;
  }
  .footer-menu {
    flex: 1;
  }
  .footer-apps-link {
    display: flex;
    flex-flow: column;
    gap: 3vw;
    justify-content: center;
    align-items: center;
    margin-left: 3vw;
}
  .underPoweredVector.mobileVec {
    display: block;
    position: absolute;
    top: 14vh;
    height: 20vw;
    width: 70vw;
    z-index: -1;
    transform: rotate(15deg);
  }
  .underPoweredVector {
    display: none;
  }
  .bscNetworkPerspective {
    z-index: -1;
    top: unset;
    bottom: 0;
    max-width: unset;
 }
  .mobilePolygonNetworkPerspective{
    display: block;
    position: absolute;
    right: 0;
    width: 20%;
    z-index: 5;
  }
  .parent {
    height: 103vh;
    background: #fff; 
    right: -6%; 
    position: absolute;
    width: 50vw;
    top: -27px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;    
    transform: translateX(110%);
    transition: .75s ease-in-out;
    overflow: hidden;
    box-shadow: -19px 20px 20px 0px rgb(0 0 0 / 20%)
  }
  .headerTitleCont {
    width: 60vw;
  }
  .headerTitleCont h3 {    
    font-size: clamp(5vw,9vw,9.5vw);
  }  
  .headerTitleCont h4 {    
    font-size: clamp(4vw,6vw,6.5vw);
  }  
  .headerTitleCont h5 {    
    font-size: clamp(3vw,4.5vw,5vw);
  }
  .headerTitleCont h6 {    
    font-size: clamp(1.5vw,2vw,2.5vw);
  }
  .dark .parent{
    background:#242526;
  }
  .parent.show {
    transform: translateX(0%);
  }
  .parent nav{
    margin-top: 20vh;
    flex-flow: column;
    align-items: start;
    background-color: transparent !important;
    box-shadow:unset;
  }
  .parent nav li {
    font-family: Poppins;
    font-weight: 300;
    list-style: none;
    padding: 10px 2vw;
    width: 100%;
    font-size: 3vw;
    color: #A5A5A5;
    vertical-align: middle;
  }
  .subparent {
    margin-top: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .subparent > i {
    position: absolute; 
    top: 50px;
    left: -50vw;
    transition-delay: 500ms;
    transition: .5s ease-in-out;
  }
  .parent.show .subparent > i {     
    left: 5vw;
    font-size: 4vw;
  }
  ul.social {
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    left: 50%;
    transform: translateX(-46%);
    flex-direction: row;
    width:46vw;
  }
  ul.social li a i {
    font-size: 4vw;
  }
  .phoneImage {
    width: clamp(475px,36vw,36vw);
  }
}
@media only screen and (max-width: 900px){ 
  .interactiveSlides > div > img{
    width:100vw;
  }
  .amazingFeatures > h3{
    font-size:8vw;
  }

  .headerTitleCont {  
    margin-left: 10px;
  }
  .phoneImage {
    width: clamp(375px,36vw,36vw);
    bottom: 10vh;
  }
  .detailsCont >div >div:nth-child(4), .detailsCont >div >div:nth-child(5) {
    font-size: 2vw;
  }
  .detailsCont >div >div:nth-child(3) {
    margin-top: 0;
  }
  .detailsCont >div >div:nth-child(2) {
    margin-top: 0;
  }
  .detailsCont >div >div:nth-child(1) {
    font-size: 6vw;
  }
  .detailsCont {
    padding-top: 0  ;
  }
}
@media only screen and (max-width: 800px){
  .slider-tab-nav button {
    width: 200px;
  }
  .interactiveSlides > div > img {
      width: 100vw;
  }
  .detailsCont {
    height: 95vw;
    margin-top: 0px;
  }
  .detailsCont >div {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .revolutionizeCont > img:nth-child(2) {
    position: inherit;
    top: auto;
    right: auto;
    height: auto;
    bottom: auto;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .detailsCont >div >div:nth-child(1) {
    font-size: 11vw;
  }
  .detailsCont >div >div:nth-child(2) {
    font-size: 5vw;
    margin-top: -3vh;
  }
  .detailsCont >div >div:nth-child(3) {
    font-size: 3.25vw;
  }
  .detailsCont >div >div:nth-child(5) {
    font-size: 2.25vw;
  }
  .bscNetworkPerspective {
    width: 18vw;
    z-index: -1;
    top: unset;
    bottom: -1vh;
  }
  .splitCont > img { 
    width: 95%; 
}
  .headerTitleCont{    
    width: 100vw !important;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 0 1vw;
    margin-top: 2vh;
    margin-left: 0px;
    text-align: center;
  }
  .headerTitleCont >div {
    padding: 0 13vw;
  }
  .headerTitleCont > div > a {
    width: 100%;
    height: 40px;
    font-size: 3vw;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 2vw;
}
.headerTitleCont > div > a > i {
    font-size: 4vw;
} 
  .headerTitleCont h3 {    
    letter-spacing: 2px;
    font-size: 11vw;
  }
  .headerTitleCont h4 {
    font-size: 7vw;
  }
  .headerTitleCont h5 {
    font-size: 6vw;
    margin-bottom: 1vh;
    margin-top: 1vh;
  }
  .headerTitleCont h6 {
    font-size: 3vw;
  }
  .headerTitleCont > div > span {    
    text-align: left;    
    font-size: 2.75vw;
    font-weight: normal;
}
  .splitCont > div {
    margin-top: 30px;
    align-items: start;
    text-align: left;
}
  .splitCont > div > div:nth-child(1) {    
    font-size: 7vw;
  }
  .splitCont > div > div:nth-child(2) { 
    font-size: 3vw;
  }
  .splitCont > div > div:nth-child(2) >br { 
    display: none;
  }
  .splitCont > div > div:nth-child(3){
      margin-top: 10px;
      line-height: 1.5;
      font-size: 2.2vw;
  }
  .moreThanJustWalletCont > .header > h3 {
    font-size: 7vw;
  }
  .moreThanJustWalletCont > .header > h5 {
    margin-top: -2vh !important;
  }
  .poweredByHead > div {
    width: 100%;
  }
  .poweredByHead > div:before {    
    border-top: 1px solid #0181C3;
  }
  .single-cal-result h5 {
    font-size: 4vw;
  }  
  .profit-form-area label {
    font-size: 4vw;
  }  
  .profit-area h3 {
    font-size: 10vw;
  }
  .profit-area p {
    font-size: 3.5vw; 
    text-align: center;
  } 
  .video-container {
      height: 75vh;
 }
  .phoneImage{
      display: none;
 }
  .apps-links a {
      margin-right: 10px;
      max-width: 30%;
 }
  .poweredByCont{
      margin-top: 5vh;
 }
  
  .detailsCont >div >div:nth-child(6) > div {
      justify-content: center;
 }
  .amazingFeatures {
      padding-top: 70px;
 }
  .swiperCont {
    width: 50%;
    transform: unset;
    top: 13.75vw;
    right: 50%;
    z-index: 1;
    transform: translateX(50%);
 }
 .swiperCont > div:last-child, .swiperCont > div:first-child {
  display: none;
 }
  .experience img {
      margin-top: 0;
 }
  .experience h2 span {
      font-size: 7vw;
      margin-top: -10px;
 } 
   
  .multi-mobile-area {
      position: inherit;
      right: auto;
      top: auto;
      width: 60%;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
 }
 .partner-title h3 {
  z-index: 1;
  font-size: 8vw;
  top: 5vw;
  position: relative;
} .partner-body {
  padding-top: 35vw;
}
  .partner-middle-logo {
      padding-top: 20px;
 }
  .partner-body::before{
      max-width: 50px;
      background-size: contain;
 }
  .partner-bottom-left h3{
      font-size: 32px;
 }
  .partner-bottom-left p{
      font-size: 15px;
 }
  .partner-bottom-left h5{
      font-size: 20px;
 }
  .partner-bottom-left a {
      width: 40%;
 }
  .partner-bottom-left {
      width: 100%;
      margin-top: 50px;
      margin-bottom: 50px;
 }
  .partner-bottom-heading:before{
      display: none;
 } 
  .slider-tab-nav button span {
      font-size: 3vw;
 }
  .buttonWrapper button:first-child span, .buttonWrapper button:last-child span {
      font-size: 8px;
 }
  .slider-tab-nav button span {
      bottom: -20px;
 }
  .buttonWrapper button:nth-child(6) span, .buttonWrapper button:nth-child(2) span {
      font-size: 10px;
 } 
  .buttonWrapper button.active span { 
 } 
  .buttonWrapper button.active::after {
      bottom: -88px;
 }
  .buttonWrapper button.active::after {
      height: 30px;
      font-size: 25px;
 }
  .slider-display-area {
      padding-top: 90px;
 } 
  .discover-area::before, .discover-area::after{
      display: none;
 }
  .discover-area {
      padding-top: 20px;
 } 
  .profit-form-area {
      margin-top: 5px;
 } 
  .option-area select {
      height: 50px;
      font-size: 16px;
      padding-left: 26px;
      padding-right: 30px;
 }
  .select-area::after {
      right: 10px;
      font-size: 15px;
 }
  .select-area::before {
      right: 35px;
 }
  .cout-options {
      padding: 10px 10px;
 }
  .single-input-area input {
      font-size: 20px;
      height: 50px;
 }
  .single-input-area {
      padding-left: 10px;
      padding-right: 10px;
 }
  .single-cal-result h5 {
    font-size: clamp(3vw,2.1vw,8vw);
 }
  .single-cal-result{
      margin-left: 15px;
      margin-right: 15px;
 }
  .nft-fution-area h2{
      font-size: 7vw;
 }
  .nft-fution-area {
      padding-top: 0;
 }  
  .road-map-area h2{
      font-size: 28px;
 }
  a.know-more {
      border: 1px solid #39A37D;
      padding: 10px 40px;
      font-size: 12px;
 }
  .single-road-block ol {
      font-size: 12px;
      padding-left: 35px;
 }
  .phase {
      font-size: 14px;
 }
  .single-road-map-step .single-road-block:first-child .road-content .phase {
      left: 0px;
 }
  .single-road-map-step .single-road-block:last-child .road-content .phase {
      left: 0px;
      bottom: -110px;
 }
  .single-road-map-step .single-road-block:last-child .road-content a.know-more {
      top: -18px;
      left: -2px;
 }
  .single-road-map-step .single-road-block:first-child .road-content a.know-more {
      bottom: -21px;
      left: -3px;
 }
  .single-road-map-step .single-road-block:last-child .road-content::after{
      display: none;
 }
  .single-road-map-step .single-road-block:first-child .road-content::after{
      display: none;
 }
  .news-letter-area h1 {
      font-size: 28px;
 }
  .news-letter-area p {
      font-size: 15px;
 }
  .news-letter-area input {
      font-size: 12px;
      padding-left: 20px;
      height: 50px;
 }
  .news-letter-area button {
      font-size: 14px;
      height: 50px;
 }
  .news-letter-area .container::before{
      max-width: 100px;
      background-size: contain;
      right: 0px;
      bottom: -100%;
 }
  .road-map-area {
      padding-bottom: 0px;
 }
  .footer-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
 }
 .footer-flex-content {
  padding-top: 10vw;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.footer-menu h3,.footer-menu ul li a {
  font-size: 3vw;
}
  .footer-apps-link {
    width: 75%;
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-top: 6vw;
    flex-flow: row;
    margin-left: 0;
 }
  .footer-apps-link a {
      width: 45%;
 } 
  .footer-left-area p{
      font-size: 10px;
 } 
  header{
      z-index: 99909;
 } 
  .headerTitleCont > div > div {
      justify-content: center;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
 }
  .apps-links a {
    width: 100%;
    flex: 1;
    max-width: 100%;
    background: #000;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    justify-items: center;
 }
 .apps-links a img {
  height: 4.5vh;
  margin: auto;
 } 
  .poweredByCont > div > div >img,.partner-top-logo div div img, .partner-middle-logo div div img {
      padding: 0vh 2vw;
      max-height: 50px;
 }
  .poweredByCont {
      height: 30vh;
 }
  .splitCont > img {
      height: auto;
 }
  .exper-bottom-logo{
      max-width: 150px;
 }
  .partner-top-logo {
      margin-bottom: 20px;
 }
  .news-letter-area .container {
      max-width: 90%;
 }
 .poweredByCont > div > div, .partner-top-logo div div, .partner-middle-logo div div {
      height: 75px;
 }
 
 .poweredByHead > img{
  display: none;
}
.footer-logo {
  padding:25px;
  display: block;
}
.tab-link ul li a {
  font-size: 5vw;
}
.nft-fution-area::after {
  background-position: left 15vw;
}
.single-fution-tab p {
  font-size: 3.5vw;
}
.titles div {
   font-size: 4vw;
}
.tab-slider-area {
  margin-top: -11vw; 
}
}

@media only screen and (max-width: 700px){

  .footer-apps-link{
    width: 100%;
  }
  .footer-menu h3,.footer-menu ul li a {
    font-size: 4vw;
  }
  .subscribed p:first-child,.subscribed p:last-child {
    font-size: 4vw;
  }
  .range-area h5 {
    font-size: 6vw;
  }
  .partner-bottom-heading h3 {
    font-size: 9vw;
    margin-top: -28vw; 
}
}
@media only screen and (max-width: 650px){
  .mintContWL {    
    flex-flow: column;
  }
  .mintContWL>div:nth-child(1) {
    flex: 2;
    width: 100%;
  }
  .mintContWL>div:nth-child(2) {
      flex: 1;
      display: flex;
      flex-flow: column;
      width: 100%;
      margin-top: 15px;
      align-items: flex-end;
  }

}
@media only screen and (max-width: 600px){
  .mobilePolygonNetworkPerspective {
    top: 15vh;
  }
  
 .single-fution-tab h5{
  font-size: 6vw;
 }
 .single-fution-tab p{
  font-size: 4vw;
 }
 .single-discover {
  width: 100%;
  font-size: 4vw;
  }
  .footer-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
  }
  .footer-menu-block:nth-child(4) h3 {
    display: none;
  }
  .footer-menu h3,.footer-menu ul li a {
    font-size: 6vw;
  }
  .footer-flex-content {
    padding-top: 45vw;

  } 
}
@media only screen and (max-width: 500px){ 
  .single-discover { 
    font-size: 5vw;
}
  .single-cal-result h5 {
      font-size: 3.5vw;
  }
  .discover-area h2 {
      font-size: 10vw;
  }
  .discover-area h3 {
      font-size: 8vw;
  }
  .profit-area p {
    font-size: 4.5vw; 
    text-align: center;
  }
  .profit-form-area label {
    font-size: 5vw;
  }
  .moreThanJustWalletCont > .header > h3 {
    font-size: 10vw;
  }
  .moreThanJustWalletCont > .header > h5{
    font-size: 6vw;
  }
  .poweredByHead > div {
    font-size: 6vw;
  }
  .poweredByHead > div > div{    
    width: 45vw;
    margin: auto;
  }
  .splitCont  {    
    margin-top: -5vh;
  }
  .splitCont > div > div:nth-child(2) { 
    font-size: 4vw;
  } 
  .splitCont > div > div:nth-child(3){ 
      font-size: 3vw;
  } 
  .nft-fution-area h2 {
    font-size: 8vw;
  }
  .slider-tab-nav button {
    width: 150px;
  }
  .subscribed p:first-child,.subscribed p:last-child {
    font-size: 4.75vw;
  }
  .range-area h5 {
    font-size: 7vw;
  }
  .partner-bottom-heading h3 { 
    margin-top: -32vw; 
  }
}