/* Font Family */

@font-face {
    font-family: 'Poppins-Light';
    src: url('../../assets/webfonts/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../../assets/webfonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../../assets/webfonts/Poppins-Bold.ttf');
}

/* Pseudo Elements */

:root {
    --primary-clr: #ffac26;
    --secondary-clr: #144489;
    --bg-dark: #00002E;
    --bg-dark-2: #061241;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    cursor: pointer;
    z-index: 9999;
}

::-webkit-scrollbar-track {
    background: #f6f6f6;
    z-index: 9999;
    cursor: pointer;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    z-index: 9999;
    cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-clr);
    z-index: 9999;
    cursor: pointer;
}

::selection {
    background-color: var(--primary-clr);
    color: #fff;
}

-webkit-::selection {
    background-color: var(--primary-clr);
    color: #fff;
}

::-moz-selection {
    background-color: var(--primary-clr);
    color: #fff;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    /* Firefox */
}

/* General */

* {
    font-family: "Poppins-Light", sans-serif;
    outline: none !important;
    line-height: 1.4 !important;
}

a {
    text-decoration: none;
    color: var(--primary-clr);
    font-family: 'Poppins-Regular', sans-serif;
}

b,
.fw-bold {
    font-family: 'Poppins-Bold', sans-serifs;
	color: #ffc107;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-2);
    color: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.outside-gap {
    margin: 100px 0;
}

.inside-gap {
    padding: 100px 0;
}

.title-tag {
    color: var(--primary-clr);
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-clr);
    display: inline-block;
    margin-bottom: 10px;
}

.page-title {
    font-size: 40px;
    font-family: 'Poppins-Bold', sans-serif;
    line-height: 1.2 !important;
    text-transform: uppercase;
}

.section-title {
    font-size: 30px;
    font-family: 'Poppins-Bold', sans-serif;
    line-height: 1.2 !important;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/* Loader */

.main-loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-inner span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: var(--primary-clr);
    margin: 5px;
}

.loader-inner span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.loader-inner span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader-inner span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@-moz-keyframes bounce {

    0%,
    75%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }
}

@-webkit-keyframes bounce {

    0%,
    75%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }
}

@-o-keyframes bounce {

    0%,
    75%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {

    0%,
    75%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }
}

/* Back To Top */

.back-to-top {
    display: none;
    z-index: 999999;
    background-color: var(--primary-clr);
    border: 2px solid transparent;
    transition: 0.2s;
}

.back-to-top:hover {
    background-color: transparent;
    border-color: #fff;
    transition: 0.2s;
}

/* Form Elements */

.theme-btn,
.theme-outline-btn:hover {
     background: linear-gradient(to bottom right, #ebb93f 0%, rgb(110 54 1) 100%);
    color: #fff;
    border-width: 2px;
    padding: 15px 30px;
    font-family: 'Poppins-Regular', sans-serif;
    text-transform: capitalize;
}

.theme-btn:hover,
.theme-outline-btn {
    border: 2px solid var(--primary-clr);
    color: #fff;
    padding: 15px 30px;
    font-family: 'Poppins-Regular', sans-serif;
    text-transform: capitalize;
}

.form-control,
.form-select,
.custom-select {
    font-size: 18px;
    font-family: 'Poppins-Reguler', sans-serif;
    color: #fff !important;
}

.form-select,
.custom-select {
    color: var(--primary-clr);
}

/* Header & Footer */

header {
    z-index: 99999;
}

header.show-bg {
    background: var(--bg-dark-2);
    box-shadow: 0 0 10px 0 rgba(255,255,255, 0.5);
}

.nav-link,
header .theme-btn {
    color: #fff !important;
    font-size: 18px;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    border-color: var(--primary-clr);
}

.navbar-toggler {
    border-color: var(--primary-clr);
    border-width: 2px;
    padding: 6px 8px;
    z-index: 9;
}

.navbar-toggler-icon {
    background: #fff;
    width: 30px;
    height: 3px;
    display: block;
    margin: 6px 0;
}

.dropdown-menu {
    min-width: 200px;
    background-color: var(--bg-dark-2);
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--primary-clr);
}

footer {
    background: linear-gradient(180deg, var(--bg-dark-2) 50%, var(--bg-dark) 50%);
}

.footer-top-wrapper {
    padding: 60px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /*background: var(--bg-dark) url(../../assets/images/footer-bg.png) center center no-repeat;*/
    background-size: cover;
}

.social-media a {
    color: #fff;
    background: linear-gradient(45deg, #6e5301, transparent);
    height: 42px;
    width: 42px;
    border: 2px solid var(--primary-clr);
}

.social-media a:hover {
    background: transparent;
}

.footer-widget a {
    color: #fff;
}

.footer-widget a i {
    color: var(--primary-clr);
}

/* Home page */
.hero-banner {
    /*background: url(../../assets/images/hero-bg.png) no-repeat center center;*/
    background-size: cover;
    padding: 150px 0 100px 0;
}

.btc-trading-inner i {
    line-height: initial !important;
}

.btc-trading-inner.platform-1 i {
    color: #7a49ec;
    box-shadow: 0 0px 0px 8px #7a49ec40;
}

.btc-trading-inner.platform-2 i {
    color: #00e3c8;
    box-shadow: 0 0px 0px 8px #00e3c840;
}

.btc-trading-inner.platform-3 i {
    color: #3dc1fb;
    box-shadow: 0 0px 0px 8px #3dc1fb40;
}

.btc-trading-inner.platform-4 i {
    color: #ff9b41;
    box-shadow: 0 0px 0px 8px #ff9b4140;
}

.service-wrapper {
    background: linear-gradient(172deg, #c78212, transparent);
    padding: 100px 50px 50px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    margin-top: 80px;
}

.service-wrapper .service-icon {
    border: 4px solid #5b2900;
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    transition: 90ms;
}

.service-wrapper:hover .service-icon {
    transition: 90ms;
    transform: rotateY(180deg);
}

.service-wrapper h4 {
    font-family: 'Poppins-Bold', sans-serif;
}

.service-wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-wrapper a,
.blog-widget a {
    color: var(--primary-clr);
    font-family: 'Poppins-Regular', sans-serif;
}

.service-wrapper a i,
.blog-widget a i {
    transition: 90ms;
}

.service-wrapper a:hover i,
.blog-widget a:hover i {
    transform: rotate(90deg);
    transition: 90ms;
}

.benefit-wrapper {
    background: #000d19;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
    padding: 40px 10px;
}

.img-bg {
    background: #0C2655 url(../../assets/images/img-bg.png) center center no-repeat;
    background-size: cover;
}

.economice-panel, .rewards-widget, .chart-widget {
    background: #011427;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
    border: 0.5px solid;
    color: #ffbf00;
}

.rewards-widget {
    padding: 40px 30px;
}

.rewards-widget .rewards-tag {
    background: var(--bg-dark);
}

.rewards-widget h3 {
    font-size: 60px;
    line-height: 0.8 !important;
}

.rewards-widget h5 {
    font-size: 24px;
    font-family: 'Poppins-Regular', sans-serif;
}

.chart-widget {
    background: #1A5082;
    padding: 70px 50px;
    height: 100%;
}

.currency-converter {
    background-color: var(--secondary-clr);
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden;
}

.currency-converter-form {
    padding: 50px;
}

.currency-converter-result {
    background: var(--bg-dark);
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 50px 0;
}

.currency-converter-result h3 {
    background-color: var(--primary-clr);
    font-family: 'Poppins-Reguler', sans-serif;
}

.team-avatar i {
    background: var(--primary-clr);
    height: 40px;
    width: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    bottom: -20px;
    right: 20px;
    border-radius: 20px;
    transition: 90ms;
}

.team-avatar i:hover {
    transition: 90ms;
    transform: scale(1.2);
}

.journey-section {
    background-color: #010C35;
}

.journey-timeline {
    margin: 50px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    background: var(--primary-clr);
    width: 4px;
    height: 86%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.journey-dot {
    height: 50px;
    width: 50px;
    background: #fff;
    border: 10px solid var(--primary-clr);
    border-radius: 50px;
    z-index: 99;
}

.timeline-detail {
    padding: 30px 20px;
    border-radius: 10px;
    background-color: #030a27;
    border: 0.5px solid #ffc107;
    position: relative;
}

.timeline-detail::before {
    content: '';
    position: absolute;
    width: 25%;
    height: 4px;
    background: var(--primary-clr);
    left: -25%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
}

.flex-sm-row-reverse .timeline-detail::before {
    left: 100%;
}

.blog-widget {
    border-radius: 15px;
    background: rgba(17, 52, 101, 0.60);
    transition: 90ms;
    overflow: hidden;
}

.blog-widget:hover {
    background: rgba(17, 52, 101, 1);
    transition: 90ms;
}

.blog-widget .blog-category {
    box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.50);
}

.CTA-widget {
    background-color: var(--secondary-clr);
}

.page-title-section {
    padding-top: 120px;
    background: url(../../assets/images/page-title-bg.png) center center no-repeat;
    background-size: cover;
}

.about-company i {
    color: var(--primary-clr);
}

.vision-mission-card {
    background: var(--secondary-clr);
}

.statistics-card {
    border: 2px solid var(--primary-clr);
    transition: 90ms;
}

.statistics-card:hover {
    background-color: var(--primary-clr);
    transition: 90ms;
}

.make-different-widget {
    background: var(--secondary-clr);
}

.make-different-widget i {
    color: var(--primary-clr);
}

.app-CTA-widget {
    background: url(../../assets/images/app-CTA.png) center center no-repeat;
    background-size: cover;
}

.simple-step-section {
    background: url(../../assets/images/simple-step-bg.png) center center no-repeat;
    background-size: cover;
}

.simple-step-section .container .row {
    position: relative;
}

.simple-step-section .container .row::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: 15px;
    z-index: 0;
    opacity: 50%;
}

.simple-step-widget {
    background: #14386C;
    padding: 20px 40px 20px 20px;
    position: relative;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.simple-step-widget:hover {
    background-color: var(--secondary-clr);
}

.simple-step-widget h5 {
    font-family: 'Poppins-Regular', sans-serif;
}

.simple-step-widget a {
    font-size: 18px;
    color: var(--primary-clr);
}

.simple-step-number {
    background: var(--bg-dark-2);
    height: 32px;
    width: 32px;
    margin: auto;
    box-shadow: 0 0 9px #FFF;
    position: relative;
}

.why-choose-widget img {
    background: var(--primary-clr);
    border: 10px solid var(--primary-clr);
}

.boost-cta {
    background: url(../../assets/images/boost-cta-bg.png) center center no-repeat;
    background-size: cover;
}

.pricing-table-widget {
    border-radius: 10px;
    border: 2px solid var(--primary-clr);
    padding-top: 50px;
    position: relative;
    margin-top: 40px;
}

.monthly-plan {
    display: inline-block;
    padding: 5px 30px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: var(--secondary-clr);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    top: -40px;
}

.monthly-plan::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -22px;
}

.monthly-plan::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: var(--secondary-clr);
    left: 0;
    right: 0;
    margin: auto;
    bottom: -21px;
}

.plan-type {
    background: var(--secondary-clr);
    border: 1px solid #fff;
    padding: 10px 0;
}

.pricing-table-widget.recommendation {
    background: var(--secondary-clr);
    border-color: var(--secondary-clr);
}

.pricing-table-widget.recommendation .plan-type {
    background: var(--primary-clr);
}

.text-CTA {
    background: var(--secondary-clr);
}

.text-CTA h2 {
    padding-left: 20px;
    border-left: 4px solid var(--primary-clr);
}

.coins-perform-table {
    border-radius: 10px;
    overflow: hidden;
    background: var(--secondary-clr);
    min-width: 920px;
}

.coins-perform-table thead {
    background: var(--primary-clr);
}

td {
    padding: 15px 20px;
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 20px;
}

.coins-perform-table thead tr td~td,
.coins-perform-table tbody tr td~td {
    border-left: 1px solid #fff;
}

.text-success {
    color: #6AD33B !important;
}

.text-danger {
    color: #FF0505 !important;
}

.faq-form {
    background: var(--secondary-clr);
}

.accordion * {
    background: transparent;
    color: #fff;
}

.accordion-item {
    margin: 10px;
    border: 1px solid rgba(20, 68, 137, 0.80) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.accordion-button::after {
    border-radius: 20px;
    height: 30px;
    width: 30px;
    background-color: #fff;
    background-position: center center;
}

.contact-widget {
    background-color: var(--secondary-clr);
}

.contact-form {
    background: url(../../assets/images/contact-us-form-bg.png) center center no-repeat;
    background-size: cover;
}

.contact-form-widget .form-control {
    background-color: rgba(20, 68, 137, 0.8);
}

.google-map {
    height: 500px
}

.google-map iframe {
    height: -webkit-fill-available;
}

.search-form {
    background-color: var(--secondary-clr);
}

.blog-category-list li i,
.blog-category-list li span {
    color: var(--primary-clr);
}

.testimonial-content {
    background-color: var(--secondary-clr);
}

.testimonial-content::before {
    content: "";
    background-color: var(--secondary-clr);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    height: 20px;
    width: 30px;
    position: absolute;
    left: 30px;
    bottom: -20px;
}

.testimonial-content i,
.recent-post i,
.stardard-blog-content i {
    color: var(--primary-clr);
}

.stardard-blog {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.stardard-blog-content {
    padding: 40px 30px 30px 30px;
    border: 1px solid #fff;
    border-radius: 0 0 20px 20px;
}

.stardard-blog-date {
    height: 80px;
    width: 80px;
    background-color: var(--primary-clr);
    border: 5px solid var(--bg-dark-2);
    border-radius: 50px;
    top: -40px;
    right: 40px;
}

.pagination::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 25%;
}

.page-item-arrow a {
    background-color: var(--primary-clr);
    color: #fff;
    border-color: var(--primary-clr);
}

.page-link span {
    font-size: 30px;
}

.page-link {
    height: 50px;
    width: 50px;
    border-radius: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 2s ease-in-out infinite;
}
  @media (min-width: 992px) {
    .float-animation {
      max-width: 35%; /* Adjust as needed */
      margin: 0 auto;
      display: block;
    }