@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth !important;
}

@media (min-width: 640px) {
  .body {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (min-width: 768px) {
  .body {
    padding-left: 0;
    padding-right: 0;
  }
}

.image-container {
  position: relative;
}

.shadow-icon {
  box-shadow: 0 0 44px 0 rgba(255, 255, 255, 0.11);
}

.text-gradient {
  background: linear-gradient(180deg, #ffffff, #bbbbbb) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent;
}
.text-gradient-1 {
  background: linear-gradient(180deg, #ffffff 47%, #bbbbbb 75%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent;
}

.icon-stroke-platinum {
  background: #bbbbbb;
  background: linear-gradient(
    to top right,
    #494949 0%,
    #ffffff 49%,
    #494949 100%
  ) !important;
}

a:hover,
a:active {
  text-decoration: underline !important;
  text-decoration-color: #eac374 !important;
  text-underline-offset: 4px !important;
  color: #eac374 !important;
}

.card-image {
  position: absolute;
  top: -0px;
  right: 0;
  width: 36%;
  transform: rotate(-12deg);
  transition: transform 0.3s ease;
}

.dashboard-card-image {
  opacity: 0;
  transition: transform 0.3s ease;
}

.headline-gradient {
  background: linear-gradient(46% 100%, #ffffff, #bbbbbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.line-gradient {
  background: linear-gradient(to top, #acabab 0%, rgba(255, 255, 255, 0) 100%);
}

.gradient-text {
  background: linear-gradient(180deg, #484848, #969696);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes rise {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-80px);
    opacity: 1;
  }
}

.image-animation {
  animation: rise 3s ease-out forwards;
}

.globe-rotation {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.interactive-btn {
  width: 125px;
  height: 53px;
}

.interactive-btn .btn-bg {
  width: 117px;
  height: 45px;
}

.interactive-btn .arrow-icon,
.interactive-btn .arrow-icon-mobile {
  width: 45px;
  height: 45px;
}

.interactive-btn .money {
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .interactive-btn {
    width: 95px;
    height: 40px;
  }
  .interactive-btn .btn-bg {
    width: 87px;
    height: 32px;
  }
  .interactive-btn .arrow-icon,
  .interactive-btn .arrow-icon-mobile {
    width: 33px;
    height: 33px;
  }
  .interactive-btn .money {
    width: 25px;
    height: 25px;
    margin: 0 auto;
  }
}

.glow-effect {
  position: absolute;
  height: 2px; /* Fixed height */
  width: 20px; /* Initially hidden */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8)
  );
  visibility: hidden; /* Hidden initially */
  transform: translateY(calc(-50% + 1px)); /* Center alignment adjustment */
}

.step-item {
  position: relative;
}

.custom-button-next,
.custom-button-prev {
  width: 68px !important;
  height: 32px !important;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0 !important;
}

.custom-button-next {
  background-image: url("../assets/left-default.png") !important;
  transform: rotate(180deg);
}

.custom-button-prev {
  background-image: url("../assets/left-default.png") !important;
}

.custom-button-next:hover,
.custom-button-next:active {
  background-image: url("../assets/left-active.png") !important;
  transform: rotate(180deg);
}

.custom-button-prev:hover,
.custom-button-prev:active {
  background-image: url("../assets/left-active.png") !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.custom-button-next {
  right: 0px !important;
  top: 64% !important;
}

.custom-button-prev {
  left: 0px !important;
  top: 64% !important;
}

.swiper-pagination {
  margin-bottom: 24px !important;
  z-index: 0 !important;
}

@media (max-width: 639.5px) {
  .custom-button-next {
    right: 0px !important;
    top: 100% !important;
  }

  .custom-button-prev {
    left: 0px !important;
    top: 100% !important;
  }
}
@media (min-width: 768px) {
  .custom-button-next,
  .custom-button-prev {
    display: none !important;
  }
}

/* footer styles */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-text {
  animation: fadeIn 2s ease-out 0.5s forwards;
}
.letter-space {
  letter-spacing: 0.02em !important;
}

.how-it-works {
  border-radius: 10px; /* Rounded corners */
  filter: grayscale(100%); /* Slight grayscale effect */
}

.comity-heading {
  font-size: 39.5px;
}

@media (min-width: 400px) {
  .comity-heading {
    font-size: 42.5px;
  }
}

@media (min-width: 425px) {
  .comity-heading {
    font-size: 44.5px;
  }
}

@media (min-width: 450px) {
  .comity-heading {
    font-size: 47.5px;
  }
}

@media (min-width: 640px) {
  .comity-heading {
    font-size: 70px;
    line-height: 107px;
  }
}

@media (min-width: 675px) {
  .comity-heading {
    font-size: 76px;
    line-height: 107px;
  }
}

@media (min-width: 768px) {
  .comity-heading {
    font-size: 88px;
    line-height: 140px;
  }
}

@media (min-width: 950px) {
  .comity-heading {
    font-size: 100px;
    line-height: 150px;
  }
}

@media (min-width: 1050px) {
  .comity-heading {
    font-size: 120px;
    line-height: 190px;
  }
}

@media (min-width: 1330px) {
  .comity-heading {
    font-size: 160px;
    line-height: 224px;
  }
}

.comity-heading-wrapper {
  position: relative;
  overflow: hidden;
}

.comity-heading-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #070606 0%,
    #070606 50%,
    transparent 100%
  );
  z-index: 1;
}

/* Animation Keyframes */
@keyframes reveal-animation {
  0% {
    transform: translateX(0%); /* Start fully covering text */
  }
  100% {
    transform: translateX(100%); /* Fully reveal text */
  }
}

@media (max-width: 768px) {
  .d-card {
    height: 57px;
    object-fit: contain;
  }
}

.button-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* main page */

.main-hero-overlay {
  width: calc(100% + 3.5rem);
  margin-left: -1.75rem;
  overflow: hidden;
}

.main-slider-container-mob {
}

.main-slider-container-tab {
}

.main-cards-title {
  span {
    display: block;
  }
}

.main-cards-wrapper {
  padding-top: 110px;
}

.main-cards-inner-wrapper {
  top: 40px;
}

.main-cards-bg {
  width: calc(100% + 3.5rem);
  margin-left: -1.75rem;
  max-width: calc(100% + 3.5rem);
}

.main-card-back {
  width: 160%;
  max-width: 200px;
}

.main-card-front {
  width: 160%;
  max-width: 200px;
}

.finance-cards {
  padding: 20px;
}

.finance-cards-one {
  padding-top: 5px;

  img {
    object-fit: contain;
  }
}

@media (min-width: 430px) {
  .finance-cards-one {
    padding-top: 20px;

    img {
      object-fit: cover;
    }
  }
  .finance-cards-one-img-mob {
    display: none;
  }
  .finance-cards-one-img-tab {
    display: block;
  }
}

@media (min-width: 640px) {
  .main-hero-overlay {
    width: calc(100% + 4.5rem);
    margin-left: -2.25rem;
  }

  .main-cards-title {
    span {
      display: inline;
    }
  }

  .main-cards-wrapper {
    padding-top: 200px;
  }

  .main-slider-container-mob {
    display: none;
  }

  .main-slider-container-tab {
    display: block;
  }

  .finance-cards {
    padding: 25px;
  }
}

@media (min-width: 768px) {
  .main-hero-overlay {
    width: 100%;
    margin-left: 0;
  }

  .main-cards-wrapper {
    padding-top: 0px;
  }

  .main-cards-inner-wrapper {
    top: 0;
  }

  .main-cards-bg {
    width: 100%;
    margin-left: 0;
    max-width: 100%;
  }

  .main-card-back {
    width: 100%;
    max-width: 550px;
  }

  .main-card-front {
    width: 100%;
    max-width: 550px;
  }
}

/* fees page */

.fees-hero-section {
  padding-top: 122px;
}

.fees-hero-section-wrapper {
  width: calc(100% + 3.5rem);
  margin-left: -1.75rem;
  overflow: hidden;
}

.fees-hero-section-container {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.fees-hero-title {
  font-family: Poppins;
  font-size: 35px;
  font-weight: 600;
  line-height: 38.5px;
  text-align: center;
  margin-bottom: 20px;
}

.fees-hero-text {
  font-family: Poppins;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: #afafaf;
}

.fees-hero-button {
  display: block;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  background: #eac374;
  border-radius: 50px;
  max-width: 289px;
  width: 289px;
  margin: 35px auto 0;
  cursor: pointer;
  z-index: 9;
  padding: 15px;
}

.fees-hero-button:hover {
  background: #fbc75d;
}

.fees-hero-image-wr {
  position: relative;
  margin-top: 45px;
  width: calc(100% + 1.75rem + 1.75rem);
  margin-left: -4.75rem;
  z-index: 2;
}

.fees-hero-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 450px;
  height: 450px;
  border-radius: 450px;
  background: linear-gradient(
    180deg,
    rgba(99, 70, 64, 0.15) 5%,
    rgba(255, 255, 255, 0.15) 100%
  );
  filter: blur(111px);
}

.fees-hero-image {
  max-width: 113%;
  width: 113%;
}

.fees-hero-payments-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.fees-hero-payments-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fees-hero-payments-item:not(:last-child) {
  margin-bottom: 25px;
}

.fees-hero-payments-image-wrp {
  padding: 10px;
  margin-bottom: 4px;
}

.fees-hero-payments-image {
  width: 25px;
  height: 25px;
}

.fees-hero-payments-text {
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
}

.fees-card-section {
  padding-bottom: 80px;
}

.fees-card-main-title {
  color: #e9c274;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 40px;
}

.fees-card-list {
  background: #ffffff1f;
  border-radius: 20px;
}

.fees-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 12px;
}

.fees-card-item:nth-of-type(even) {
  padding: 13px 12px;
  background: #0a0a0a;
}

.fees-card-title {
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
  margin-right: 32px;
}

.fees-card-value {
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
  width: 41px;
  min-width: 41px;
}

.transaction .fees-card-value {
  width: 90px;
  min-width: 90px;
}

.transaction-fees {
  padding-bottom: 0;
}

.transaction-fees .fees-card-value {
  width: 65px;
  min-width: 65px;
}

@media (min-width: 640px) {
  .fees-hero-section {
    padding-top: 203px;
  }

  .fees-hero-section-wrapper {
    width: calc(100% + 4.5rem);
    margin-left: -2.25rem;
  }

  .fees-hero-section-container {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .fees-hero-title {
    font-size: 62px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 5px;
  }

  .fees-hero-text {
    font-size: 17px;
    line-height: 140%;
  }

  .fees-hero-button {
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.32px;
    border-radius: 50px;
    max-width: 189px;
    width: 189px;
    margin: 45px auto 0;
    padding: 17px 0;
  }

  .fees-hero-image-wr {
    margin-top: 60px;
    margin-left: -2.75rem;
    min-width: 601px;
    max-width: 1006px;
  }

  .fees-hero-image {
    max-width: 100%;
    width: 100%;
  }

  .fees-hero-bg {
    top: -50%;
    right: -50%;
    width: 650px;
    height: 650px;
    border-radius: 650px;
  }

  .fees-hero-payments-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 99px;
    padding-bottom: 99px;
  }

  .fees-hero-payments-item {
    display: flex;
    flex-direction: column;
    width: 160px;
    min-width: 160px;
  }

  .fees-hero-payments-item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .fees-hero-payments-image-wrp {
    padding: 10px;
    margin-bottom: 12px;
  }

  .fees-hero-payments-image {
    width: 25px;
    height: 25px;
  }

  .fees-hero-payments-text {
    text-align: center;

    span {
      display: block;
    }
  }

  .fees-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
  }

  .fees-card-main-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 110%;
  }

  .fees-card-list {
    background: #ffffff1f;
    border-radius: 12px;
    padding: 15px;
    max-width: 750px;
    width: 100%;
  }

  .fees-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17.5px 20px;
  }

  .fees-card-item:nth-of-type(even) {
    padding: 17.5px 20px;
    background: #0a0a0a;
    border-radius: 12px;
  }

  .fees-card-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
  }

  .fees-card-value {
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
  }

  .transaction .fees-card-value {
    width: 100px;
  }

  .transaction-fees {
    padding-bottom: 20px;
  }

  .transaction-fees .fees-card-value {
    width: 65px;
  }
}

.text-linkTitle1 {
  line-height: 140%;
}

@media (min-width: 768px) {
  .fees-hero-section-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .fees-hero-section-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1250px) {
  .fees-hero-section {
    padding-top: 219px;
  }

  .fees-hero-section-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .fees-hero-section-container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-top-wrapper {
    margin-right: 51px;
  }

  .fees-hero-title {
    font-size: 82px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 10px;
  }

  .fees-hero-text {
    line-height: 138%;
  }

  .fees-hero-button {
    font-size: 16px;
    border-radius: 25px;
    max-width: 169px;
    width: 169px;
    padding: 17px 0;
  }

  .fees-hero-image-wr {
    min-width: 1006px;
    margin: 82px auto 0;
    margin-left: 80px;
  }

  .fees-hero-image {
    max-width: 100%;
    width: 100%;
  }

  .fees-hero-bg {
    top: -50%;
    right: -15%;
    width: 728px;
    height: 728px;
    border-radius: 728px;
  }

  .fees-hero-payments-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 180px;
    width: 1050px;
    margin: 0 auto;
  }

  .fees-hero-payments-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .fees-hero-payments-item:not(:last-child) {
    margin-right: 0;
  }

  .fees-hero-payments-image-wrp {
    margin-bottom: 0;
    margin-right: 12px;
  }

  .fees-hero-payments-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 140%;

    span {
      display: inline;
    }
  }

  .fees-card-section {
    padding-bottom: 180px;
  }

  .fees-card-main-title {
    font-size: 62px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 60px;
  }

  .fees-card-list {
    border-radius: 25px;
    padding: 25px;
    max-width: none;
    width: 1050px;
  }

  .fees-card-item {
    padding: 20px 80px 20px 20px;
  }

  .fees-card-item:nth-of-type(even) {
    padding: 20px 80px 20px 20px;
  }

  .fees-card-title {
    font-size: 17px;
  }

  .fees-card-value {
    font-size: 17px;
  }

  .transaction .fees-card-value {
    width: 110px;
  }

  .transaction-fees {
    padding-bottom: 102px;
  }

  .transaction-fees .fees-card-value {
    width: 65px;
  }
}
