/* ======================= */
/*       Font Faces        */
/* ======================= */

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

.font--poppins-thin {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
}

.font--poppins-extralight {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}

.font--poppins {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.font--poppins-medium {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.font--poppins-semibold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.font--poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.font--poppins-extrabold {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
}

.font--poppins-black {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}


/* ======================= */
/*      Custom Colors      */
/* ======================= */

.text--new-green {
  color: #00D7B5;
}

.text--off-white {
  color: #BDCBE1;
}

.text--light-red {
  color: #EE5751;
}

.text--new-gray {
  color: #E5E5E5;
}

.text--light-gray {
  color: #858585;
}

.text--deep-gray {
  color: #626262;
}

.text--zinc {
  color: #222222;
}

.text--default-blue {
  color: #0047AB;
}


.text--default-blue-imp {
  color: #0047AB !important;
}

.bg--default-blue {
  background-color: #0047AB;
}

.bg--max-lg-default-blue {
  background-color: #0047AB;
}

.bg--new-bg {
  background-color: #E9F2FF;
}

.bg--new-bg-dark--sky {
  background-color: #C6DDFF;
}

.border--new-bg-dark-sky {
  border: 1.3px solid #C6DDFF;
}

.bg--new-green {
  background-color: #00D7B5;
}

.border--new-green {
  border: 1px solid #00D7B5;
}

.border--new-border {
  border: 2px solid #E9F2FF;
}

.border--top-new-green {
  border-top: 2px solid #00D7B5;
}

.border--top-sm-new-green {
  border-top: 2px solid #00D7B5;
}

.border--left-md-new-green {
  border-left: none;
}

.border--bottom-sm-new-green {
  border-bottom: 2px solid #00D7B5;
}


/* ======================= */
/*   Font Sizes */
/* ======================= */
.font--xs {
  font-size: .8rem;
}

.font--xxs {
  font-size: .7rem;
}

.font--s {
  font-size: .9rem;
}

.font--5xl {
  font-size: 5rem;
}

.font--4xl {
  font-size: 4rem;
}

.font--3xl {
  font-size: 3rem;
}

.font--xxl {
  font-size: 2rem;
}

.font--xl {
  font-size: 1.5rem;
}

.font--lg {
  font-size: 2.5rem;
}


/* ======================= */
/*      Height & Width     */
/* ======================= */

.w-30 {
  width: 30%;
}

.w-54 {
  width: 54%;
}

.w-60 {
  width: 60%;
}

.w-67 {
  width: 67%;
}

.w-70 {
  width: 70%;
}

.w-90 {
  width: 90%;
}

.w-96 {
  width: 96%;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.h-11x-rem {
  height: 11.5rem;
}


/* ======================= */
/*       Line Height       */
/* ======================= */

.lh-3 {
  line-height: 3;
}


/* ======================= */
/*   Padding & margin      */
/* ======================= */

.mb-5x {
  margin-bottom: 5rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mt-30 {
  margin-top: 30rem;
}

.p-1xxl {
  padding: .45rem .45rem;
}

.py-2x {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.py-2xs {
  padding-top: .65rem;
  padding-bottom: .65rem;
}

.pb-6 {
  padding-bottom: 6rem;
}



/* ======================= */
/*   Font Weights  */
/* ======================= */

.font--weight-900 {
  font-weight: 900;
}

.font--weight-200 {
  font-weight: 200;
}

.font--weight-600 {
  font-weight: 600;
}


/* ======================= */
/*        Buttons          */
/* ======================= */
.button {
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.button:active {
  transform: scale(0.95);
}

.button--register {
  border: 1px solid white !important;
  background-color: white;
  color: #00D7B5 !important;
  box-shadow: 0px 2px 0px 0px white;
}

.button--register:hover {
  border: 1px solid #00D7B5;
  background-color: #00D7B5;
  color: #0047AB !important;
  transform: translate(2px, -2px);
  transition: all 0.3s ease-in-out;
}

.button--get-started {
  text-transform: uppercase;
  color: white;
  background-color: #00D7B5;
  border-radius: 8px;
  border: none;
  padding: 20px 60px;
}

.button--get-started:hover {
  background-color: #08b49a;
}

.button--learn-more {
  text-transform: uppercase;
  color: #00D7B5;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #00D7B5;
  padding: 20px 60px;
}

.button--join-dubapay {
  text-transform: uppercase;
  color: white;
  background-color: #00D7B5;
  border-radius: 8px;
  border: none;
  padding: 1.3rem 3.5rem;
}




/* ======================= */
/*        Header           */
/* ======================= */

.header-logo {
  height: 3rem;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0 !important;
  box-shadow: none;
}

.header__divider {
  height: 1.5px;
  background-color: #00D7B5;
}

.nav-link {
  transition: color 0.3s, background-color 0.3s;
}

.nav-link.active {
  color: #00D7B5 !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #00D7B5;
}

.nav-link:not(.active):hover {
  color: #00D7B5 !important;
}

.custom-hover:hover {
  color: #00D7B5 !important;
  background-color: #173170;
  border: 1px solid #00D7B5;
  box-shadow: 0px 2px 0px 0px #00D7B5;
  transform: translate(2px, -2px);
  transition: all 0.3s ease-in-out;
}



/* ======================= */
/*      Hero Section       */
/* ======================= */

/* .hero__small-image {
  height: 5rem;
  width: auto;
  top: -2%;
  right: 0%;
} */

/* ============================= */
/*        Slider Section         */
/* ============================= */

.slider__swiper {
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.slider__swiper-slide {
  background-position: center;
  background-size: cover;
  width: 27.5%;
  height: 250px;
  position: relative;
  transition: width 0.3s ease-in-out;
}

/* .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
} */

/* .slide-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
} */

.slider__swiper-slide.swiper-slide-prev {
  width: 25% !important;
}

.slider__swiper-slide.swiper-slide-next {
  width: 25% !important;
}

.slider__swiper-slide.swiper-slide-active {
  width: 45.2% !important;
}

/* .swiper-slide.swiper-slide-active .slide-content {
  display: block;
} */

.slider__swiper-slide .description {
  display: none;
}

.slider__swiper-slide.swiper-slide-active .description {
  display: block;
}

.slider__swiper-slide.swiper-slide-active {
  width: 40%;
}

.slider__bitcoin-bg {
  border-radius: 15px;
  background: linear-gradient(180deg, #24BCD3 50%, #0D5FA4 96.56%);
  position: relative;
}

.slider__magnifying-bg {
  border-radius: 15px;
  background: var(--Cart2-bg, linear-gradient(180deg, #03DCBB 0%, #326D8F 100%));
  position: relative;
}

.slider__gear-bg {
  border-radius: 15px;
  background: linear-gradient(180deg, #9AA1FA 50%, #0D5FA4 96.56%);
  position: relative;
}

.slider__swiper-slide .slider__bitcoin-img {
  height: 40%;
  width: 50%;
  object-fit: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

.slider__swiper-slide.swiper-slide-active .slider__bitcoin-img {
  height: 50%;
  width: 40%;
  object-fit: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}

.slider__details-btn {
  right: 10%;
  bottom: 6%;
}

.slider__swiper-slide.swiper-slide-active .slider__details-btn {
  right: 5%;
  bottom: 7%;
  background-color: #00D7B5;
  border-radius: 100%;
  padding: 7px;
  height: 34px;
  width: 33px;
}

/* ----------------- */
/* Text slider */
/* ----------------- */

.text__swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text__swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text__swiper--next-btn.swiper-button-next:after {
  font-size: 1.5rem !important;
  background-color: #00D7B5;
  color: white;
  border-radius: 100%;
  padding: 8px 14px;
  font-weight: 900;
}

.text__swiper--prev-btn.swiper-button-prev:after {
  font-size: 1.5rem !important;
  background-color: #00D7B5;
  color: white;
  border-radius: 100%;
  padding: 8px 14px;
  font-weight: 900;
}

/* Text Slider End */

.slider__small-img {
  height: 4rem;
  width: 4rem;
}

.custom--border-top {
  border-top: 2px solid #C6DDFF;
}

.custom-divider {
  height: 1.7px;
  background-color: #C6DDFF;
}



/* ========================== */
/*     Why DubaPay Section    */
/* ========================== */
.why-dubapay__divider {
  height: 1.5px;
  background: #E9F2FF;
}

.why-dubapay__divider--dark {
  height: 2px;
  background: #C6DDFF;
}

.why-dubapay__left-img,
.why-dubapay__right-img {
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}



/* ================================= */
/*     Business Type Card Section    */
/* ================================= */

.type-card--active-shadow {
  border: 2px solid #C6DDFF;
  height: 20rem;
  /* transition: all 0.3s ease; */
}

.type-card--active-shadow:hover {
  box-shadow: 0px 3px 7.8px -2px #00D7B5;
}

.type-card__active-name {
  display: none;
}

.type-card--active-shadow:hover .type-card__active-name {
  display: block;
}

.type-card--active-shadow:hover .type-card__inactive-name {
  display: none;
}

.type-card__active-img {
  display: none;
}

.type-card--active-shadow:hover .type-card__active-img {
  display: block;
}

.type-card--active-shadow:hover .type-card__inactive-img {
  display: none;
}

.type-card__read-btn {
  display: none;
}

.type-card--active-shadow:hover .type-card__read-btn {
  display: block;
}

/* small screen image */
.type-card--small-img {
  width: 10rem;
  height: 7rem;
}

.crypto-price__icon {
  height: 20px;
}


/* ============================== */
/*         Footer Style           */
/* ============================== */

.footer--map-position {
  top: 28%;
  left: 53%;
}

.footer__social-button {
  width: 40px;
}

.footer__social-button:hover {
  background-color: #00D7B5 !important;
}

.footer--divider {
  height: .5px;
  background-color: #5791E1;
}

/* -----------Short Footer------------ */
.short-footer a:not(:first-child) {
  border-left: 1px solid lightgray;
  padding-left: 8px;
  margin-left: 8px;
}

/* ======================== */
/*         Common           */
/* ======================== */

.serial__img-tag {
  height: 120px;
  width: fit-content;
}

.rotate-18x {
  rotate: 18.6deg;
}

.top-42 {
  top: 42%;
}

.top-45 {
  top: 45%;
}

.top-46 {
  top: 46%;
}

.top-48 {
  top: 48%;
}

.left-2 {
  left: 2%;
}

.left-10 {
  left: 10%;
}

.left-36 {
  left: 36%;
}

.left-40 {
  left: 40%;
}

.left-44 {
  left: 44%;
}

.left-46 {
  left: 46%;
}

.left-48 {
  left: 48%;
}

.list-style-tick li::marker {
  content: "✔";
  padding-right: 1rem;
  font-size: 1rem;
}

.text-justify {
  text-align: justify;
}

/* ============================== */
/*           Wallet               */
/* ============================== */

.wallet__img--small-screen {
  height: 6rem;
  top: 41px;
  right: 18px;
}

.custom-list li::marker {
  list-style-type: disc;
  color: #00D7B5;
  font-size: 1.3rem;
}

.list-style-bold li::marker {
  font-weight: bold;
}

.list-lower-alpha {
  list-style-type: lower-alpha;
}

/* ======================================== */
/*      Annual Percentage Yield (APY)       */
/* ======================================== */

.annual-percent__img--small {
  height: 7rem;
  top: 41px;
  right: 10%;
}


/* ======================================== */
/*            Digital Gold Vault            */
/* ======================================== */

.gold-vault__img--small {
  height: 7rem;
  top: 41px;
  right: 10%;
}


/* ======================================== */
/*            Digital Gold Vault            */
/* ======================================== */

.api-gateway__img-small {
  height: 8rem;
  top: -2px;
  right: 10%;
}


/* ======================================== */
/*             Terms & Condition            */
/* ======================================== */

.border-left-3 {
  border-left: 3px solid #00D7B5;
}


/* ======================================== */
/*           Register with Email            */
/* ======================================== */

.bot-detect {
  height: 44px;
  width: 302px;
}


/* ========================================== */
/*           Accordion Custimization          */
/* ========================================== */

/* custom accordion */
.custom-accordion .accordion-button::after {
  display: none !important;
}

.custom-accordion .custom-accordion__icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button[aria-expanded="true"] .custom-accordion__icon {
  transform: rotate(180deg);
}

.custom-accordion .accordion-button.collapsed {
  background-color: #E9F2FF;
  color: #222222;
}

/* nestec accordion inside custom accordion or bs accordion */
.nested-accordion .accordion-button::after {
  display: none !important;
}

.nested-accordion .accordion-button::after {
  display: none !important;
}

.nested-accordion__icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.nested-accordion .accordion-button:not(.collapsed) {
  background-color: #E9F2FF !important;
  color: #222222 !important;
}

/* terms and condition accordion */
.terms-con--accordion .accordion-item {
  border-top: 0px solid #E9F2FF;
  border-right: 0px solid #E9F2FF;
  border-bottom: 1.6px solid #E9F2FF;
  border-left: 0px solid #E9F2FF;
}

.navbar-accordion .accordion-item {
  border-top: 0px solid #E9F2FF;
  border-right: 0px solid #E9F2FF;
  border-bottom: 1.2px solid #E9F2FF;
  border-left: 0px solid #E9F2FF;
}

/* ========================================== */
/*           Table Custimization          */
/* ========================================== */

.custom--table {
  border-collapse: separate !important;
  border-spacing: 4px 3px;
  width: 100%;
}

/* Header styling */
.custom--table th {
  border-top: 2px solid #C6DDFF;
}

.custom--table th:first-child {
  border-left: 2px solid #C6DDFF;
  border-top-left-radius: 10px;
}

.custom--table th:last-child {
  border-right: 2px solid #C6DDFF;
  border-top-right-radius: 10px;
}

/* Body styling */

.custom--table tr td:first-child {
  border-left: 2px solid #C6DDFF;
}

.custom--table tr td:last-child {
  border-right: 2px solid #C6DDFF;
}

/* Last row styling */
.custom--table tbody tr:last-child td {
  border-bottom: 2px solid #C6DDFF;
}

.custom--table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.custom--table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}




/* ========================================== */
/*         DubaPay Products & Services        */
/* ========================================== */

.currency__white-border {
  border-bottom: 3px solid white;
}

/* ======================================== */
/*           Fees and APY            */
/* ======================================== */

.fee-box {
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #004aad;
}

/* ======================================== */
/*           My Dubapay Profile            */
/* ======================================== */

.sidebar--dubatab {
  min-height: 100vh;
  padding: 20px;
  border-radius: 10px;
}

.sidebar--dubatab a {
  display: block;
  padding: 10px;
  color: #0047AB;
  ;
  text-decoration: none;
  position: relative;
  font-weight: bold;
}

.sidebar--dubatab a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #00c8c8;
  /* Your underline color */
  transition: width 0.3s ease-in-out;
}

.sidebar--dubatab a.active::after {
  width: 60%;
}

.content--dubatab {
  padding: 20px;
  border-radius: 10px;
  min-height: 100vh;
}

.table-container--dubatab {
  padding: 20px;
  border-radius: 10px;
}

/* after fixing all we have to remove this class !important */
.notification-icon--dubatab {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #C6DDFF;
  padding: 6px;
  background-color: white;
}

.icon-bg__dubatab {
  width: 100%;
  height: 100%;
}

.icon-bell__dubatab {
  position: absolute;
  top: 7px;
  right: 3px;
  width: 15px;
  height: 15px;
}

.profile-dubatab {
  border-color: transparent !important;
  box-shadow: none !important;
}

.profile-dubatab .fa-chevron-down {
  font-size: 14px;
}

.profile-dubatab:focus,
.profile-dubatab:active,
.profile-dubatab.show {
  border-color: transparent !important;
  box-shadow: none !important;
}

.profile-dropdown {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 10px;
}

.profile-dropdown p {
  font-weight: bold;
}

.barrr--dropdown {
  background-color: white;
  color: #0047AB;
}

.calendar--Img {
  height: 25px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* ======================================== */
/*      Dubapay Products and Services       */
/* ======================================== */

.swap-asset__small-img {
  height: 7rem;
}

/* ======================================== */
/*          Dubapay profle sidebar          */
/* ======================================== */

.sidebar--dubatab a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.sidebar--dubatab a:not(.active):hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  transform: translateX(5px);
}

.barrr--dropdown li a.active {
  background-color: #007bff !important;
  color: #fff !important;
}

.dubapay-profle--dropdown li a.active {
  background-color: #007bff !important;
  color: #fff !important;
}

.profile-dropdown a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.profile-dropdown a:not(.active):hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  transform: translateX(3px);
}

/* ============================== */
/*          Coming Soon           */
/* ============================== */

.coming-soon {
  min-height: 100vh;
}