/*
=====================
############################
CSS Table Of Content
############################

1. Normalize
2. 


=====================
*/




/*
=====================
CSS Normalize 
=====================
*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sansation';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

input:focus {
    outline: 0;
}

a {
    text-decoration: none;
}

.sec-pb-1 {
    padding-bottom: 96px !important;
}

.mb-5 {
    margin-bottom: 56px !important;
}

.pb-5 {
    padding-bottom: 56px !important;
}

.pt-5 {
    padding-top: 56px !important;
}

.mt-md-80 {
    margin-top: 0; /* Default for small screens */
  }
  
  /* Apply 80px margin-top for screens 768px and up */
  @media (min-width: 768px) {
    .mt-md-80 {
      margin-top: -170px;
    }
  }
  .padding-block {
    padding-block: 0; /* Default for small screens */
  }
  
  /* Apply 80px padding-block for screens 768px and up */
  @media (min-width: 768px) {
    .padding-block {
      padding-block: 190px;
    }
  }

  /* CSS for the numbered overlay */
.card-numbered {
    position: relative;
  }
  
  .number-overlay {
    position: absolute;
    top: 90%; /* Vertical alignment */
    right: 15px; /* Position it to the right */
    transform: translateY(-50%); /* Center vertically */
    font-size: 72px; /* Size of the number */
    color: rgba(255, 255, 255, 0.2); /* Light white color */
    font-weight: 700; /* Bold font */
    z-index: 1; /* Make sure it's on top */
  }
  
/*
=====================
CSS Font
=====================
*/
@font-face {
    font-family: 'Sansation';
    src: url('../fonts/SansationRegular.woff2') format('woff2'),
        url('../fonts/SansationRegular.woff') format('woff'),
        url('../fonts/SansationRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansation';
    src: url('../fonts/SansationBold.woff2') format('woff2'),
        url('../fonts/SansationBold.woff') format('woff'),
        url('../fonts/SansationBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sansation';
    src: url('../fonts/SansationLight.woff2') format('woff2'),
        url('../fonts/SansationLight.woff') format('woff'),
        url('../fonts/SansationLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Semibold.woff2') format('woff2'),
        url('../fonts/SFRounded-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Regular.woff2') format('woff2'),
        url('../fonts/SFRounded-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.font-SFRounded {
    font-family: 'SFRounded';
}

/*
=====================
CSS Bootstrap
=====================
*/

.container {
    max-width: 1248px;
}

:root {
    --bs-primary: #0291D1;
    --bs-secondary: #1A252A;
    --bs-black: #121212;
    --bs-info: #BEFBB6;
    --bs-success: #0C9D7D;
    --bs-warning: #E34446;
    --bs-gray: #8F92A1;
}

/* Background */
.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-black {
    background-color: var(--bs-black) !important;
}

.bg-info {
    background-color: var(--bs-info) !important;
}

/* Color */
.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-black {
    color: var(--bs-black) !important;
}

.text-info {
    color: var(--bs-info) !important;
}

.text-success {
    color: var(--bs-success) !important;
}

.text-warning {
    color: var(--bs-warning) !important;
}

.text-gray {
    color: var(--bs-gray) !important;
}

/* Component */


.btn {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: .938rem;
    --bs-btn-border-radius: 5px;
    --bs-btn-font-weight: 500;
}

.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-info);
    --bs-btn-hover-border-color: var(--bs-info);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-info);
    --bs-btn-active-border-color: var(--bs-info);
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

.shadow {
    box-shadow: 0px 0px 9.2px 0px #0291D10F;
}

.font-sm {
    font-size: 14px !important;
}

/*
=====================
CSS Mobile Memu
=====================
*/
.mobile-navbar-container{
    padding: 24px;
    width: 280px;
    position: fixed !important;
    top: 0;
    left: -100%;
    bottom: 0;
    transition: left 300ms ease-in-out;
    background-color: var(--bs-black);
    z-index: 999;
}
.mobile-navbar-container.show{
    left: 0;
}
.mobile-navbar-container .mobile-logo img{
    height: 40px;
}

.mobile-navbar-menu li{
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #0291D16B;
}
.mobile-navbar-menu li a{
    color: var(--bs-white);
}
.language-selection a{
   width: 24px;
   height: 24px;
   background-color: #3C3C3C;
   font-size: 14px; 
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 4px;
   border-radius: 5px;
}
.language-selection .select-lang{
    background-color: var(--bs-info);
    color: var(--bs-black);
}
.mobile-links-menu li a{
   display: block;
   padding: 6px 0; 
   color: var(--bs-white);
   opacity: 0.5;
}
.mobile-links-menu li a:hover{
    opacity: 1;
    font-weight: 700;
}
/*
=====================
CSS Header
=====================
*/
.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
}
.navbar-toggler .navbar-toggler-icon{
   width: 1.2em;
   background-image: url(../image/mobile-bar.svg);
}
.navbar-toggler.show .navbar-toggler-icon {
    background-image: url(../image/mobile-close.svg);
}
@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        width: 100%;
        background: var(--bs-success);
        z-index: 111;
        padding: 15px;
    }
}

.header-affix {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
}

.header-navbar {
    border-radius: 32px;
    border-bottom: 1px solid #0291D1
}
.header-navbar .navbar-nav li a:hover{
    color: var(--bs-primary) !important;
}
.header-navbar .navbar-brand img{
    height: 50px;
}
.header-navbar .lang-btn {
    background-color: transparent;
    border: 0;
}
.dropdown-menu{
    background: var(--bs-secondary);
    box-shadow: 0px 1px 18.6px 0px #0291D100;
    border-radius: 8px;
    width: 230px;
    padding: 16px;
    color: var(--bs-white);
    right: 0 !important;
    left: auto !important;
} 
.dropdown-menu[data-bs-popper]{
    top: 182%;
}
.dropdown-item { 
    padding: 8px 12px;
    color: var(--bs-white);
    border-radius: 8px;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-black);
    background-color: var(--bs-info);
}
.z-100 {
    z-index: 100;
}

/*
=====================
CSS Hero 
=====================
*/
.hero-section {
    padding-top: 196px;
    padding-bottom: 300px;
}
.play-btn:hover img,
.apps-btn:hover img{
    box-shadow:0px 0px 9.2px 16px #0291d12e;
}
.hero-dots {
    max-width: 1060px;
}

.hero-image::before {
    content: "";
    width: 236px;
    height: 267px;
    border-radius: 16px;
    background-color: #BEFBB6;
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.hero-image {
    width: 220px;
    margin-top: 140px;
}

.left-image {
    transform: rotate(-15deg);
}

.right-image {
    transform: rotate(15deg);
}

.hero-content {
    max-width: 750px;
}

/*
=====================
CSS Feature 
=====================
*/
.section-title {
    max-width: 600px;
}

.feature-wrapper {
    max-width: 1060px;
    margin-bottom: 70px;
}

.feature-image {
    max-width: 780px;
    margin-bottom: -120px;
}

/*
=====================
CSS About 
=====================
*/
.about-content::before {
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 4px;
    background-color: var(--bs-info);
}

/*
=====================
CSS Howtosell 
=====================
*/
.counter-box {
    width: 190px;
}

.counter-box.ms-5 {
    margin-left: 80px !important;
}

.howtosell-shape {
    max-width: 1060px;
    bottom: -300px;
}

.sellcrypto-box {
    width: 300px;
    padding: 15px 0;
}

.sellcrypto-box .crypto-logo img {
    width: 48px;
    height: 48px;
}

/*
=====================
CSS Howtowork
=====================
*/
.howtowork-wrapper {
    max-width: 1060px;
    padding-bottom: 120px !important;
}

.howtowork-stepline::before {
    content: "";
    width: 70%;
    height: 1px;
    border-bottom: 1px dashed #BEFBB6;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -48px;
}

.howtowork-step {
    width: 56px;
    height: 56px;
    background-color: var(--bs-secondary);
    border: 1px dashed #BEFBB6;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
}

/*
=====================
CSS Service
=====================
*/
.service-image::before {
    content: "";
    width: 236px;
    height: 267px;
    border-radius: 16px;
    background-color: #BEFBB6;
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.service-image {
    width: 220px;
}

.service-image-big::before {
    width: 435px;
}
.service-image-big {
    width: 420px;
}

.service-wrapper {
    max-width: 1060px;
}

/*
=====================
CSS  Download
=====================
*/
.download-wrapper::before {
    content: "";
    width: 100%;
    height: 60%;
    background-color: var(--bs-secondary);
    border-radius: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.download-wrapper::after {
    content: "";
    width: 100%;
    height: 60%;
    background-image: url(../image/yellow_dotes4.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.download-wrapper {
    max-width: 1060px;
}

/*
=====================
CSS Testimonial 
=====================
*/
.testimonial-box .author img {
    width: 56px;
    height: 56px;
}

.testimonial-box::before {
    content: "";
    width: 118px;
    height: 118px;
    background-image: url(../image/qoute-image.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 10px;
    margin: auto;
    z-index: 1;
    opacity: 0.1;
}

.custom-padding {
    padding-right: 2rem; /* Or any desired padding */
}

/*
=====================
CSS  Faq
=====================
*/
.faq-accordion {
    max-width: 1060px;
}

.faq-accordion .accordion-button {
    font-size: 24px;
    font-weight: 700;
    background-color: var(--bs-info) !important;
    box-shadow: none !important;
    border-radius: 24px !important;
}

.faq-accordion .accordion-item,
.accordion-item:first-of-type {
    border-radius: 24px !important;
}

.faq-accordion .accordion-item {
    background-color: var(--bs-info) !important;
    margin-bottom: 16px;
    padding: 15px 0;
}

.faq-accordion .accordion-body {
    padding-top: 0 !important;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    background-image: url(../image/faq-arrow.svg);
}

/*
=====================
CSS Footer
=====================
*/

.footer-back.show{
    display: block !important;
}
.footer-links li{ 
    position: relative;
}
.footer-links li:not(:last-child) {
    margin-right: 1.5rem;
}
.footer-links li:not(:last-child)::before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: var(--bs-white);
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.5;
}
/*
=====================
CSS Responsive
=====================
*/
@media only screen and (max-width: 768px) {
    .header-navbar .navbar-brand img{
        height: 40px;
    }
    .hero-image {
        width: 180px;
    }
    .hero-image::before {
        width: 196px;
    }
    .feature-wrapper{
        padding: 30px !important;
        margin-bottom: 0;
    }
    .sellcrypto-box {
        width: 200px;
        padding: 6px 0;
    }
    .sellcrypto-box  p, .font-sm {
        font-size: 10px !important;
    }
    .sellcrypto-box .crypto-logo img {
        width: 32px;
        height: 32px;
    }
    .howtowork-wrapper {
        padding: 30px !important;
    }
    .howtowork-stepline::before {
        display: none !important;
    }
    .howtowork-step {
        position: static !important;
    }
    .download-wrapper{
        padding: 30px !important;
    }
   .download-image{
      max-width: 400px;
   }

   .faq-accordion .accordion-button {
        font-size: 18px;
    }





}
@media only screen and (max-width: 992px) {
    .sec-pb-1 {
        padding-bottom: 60px !important;
    }
    
    .mb-5 {
        margin-bottom: 26px !important;
    }
    
    .pb-5 {
        padding-bottom: 26px !important;
    }
    
    .pt-5 {
        padding-top: 26px !important;
    }
    .header-navbar{
        border-bottom: 0 !important;
    }
    .header-section{
        background-color: var(--bs-black);
        border-bottom: 1px solid var(--bs-primary) !important;
    }
    .hero-section {
        padding-top: 125px;
        padding-bottom: 60px;
    }
    .hero-image.left-image{
        position: static !important;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px !important;
    }
    .hero-image.right-image{
        display: none !important;
    }
    .feature-image {
        margin-bottom: 0;
    }
    .service-image{
        width: 180px;
        margin: auto;
        margin-top: 24px;
    }
    .service-image::before {
        width: 196px;
    }
    .service-image-big {
        width: 275px;
    }
    .service-image-big::before {
        width: 290px;
    } 
    .counter-box {
        width: 100%;
    }
    .counter-box.ms-5 {
        margin-left: 0px !important;
    }
.play-btn img,
.apps-btn img{
   height: 40px;
}

.download-wrapper::before {
    height: 100%;
}

.download-wrapper::after {
    height: 100%;
}




















}