@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
}

a:hover {
    color: inherit;
}

body {
    font-family: var(--roboto) !important;
    overflow-x: hidden;
}

:root {
    --primary: #ffcc00;
    --dark: #212223;
    --roboto: "Roboto", sans-serif;
    --inter: "Inter", sans-serif;
    --bg: #f8f8ff;
}

.header {
    background-color: #000;
    padding: 20px 0px;
}

.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .navbar {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.navbar li {
    list-style: none;
    height: 100%;
}

.navbar li.active a {
    color: var(--primary);
}

.navbar a {
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}

.navbar a.active {
    color: var(--primary);
}

.menuBtn {
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 3;
    display: none;
}

.menuBtn::before,
.menuBtn::after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    -webkit-transition: -webkit-transform 0.5s 0.75s;
    transition: -webkit-transform 0.5s 0.75s;
    -o-transition: transform 0.5s 0.75s;
    transition: transform 0.5s 0.75s;
    transition: transform 0.5s 0.75s, -webkit-transform 0.5s 0.75s;
    background-color: #fff;
    border-radius: 2px;
}

.menuBtn::before {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.menuBtn::after {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}

.menuActive .menuBtn::before,
.menuActive .menuBtn::after {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    -o-transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.5s 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    visibility: hidden;
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.menuActive .menu {
    visibility: visible;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.menuClose {
    position: relative;
    width: 30px;
    height: 30px;
}

.menuClose::before,
.menuClose::after {
    content: "";
    width: 100%;
    border-radius: 2px;
    background-color: #000;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.menuActive .menuClose::before,
.menuActive .menuClose::after {
    -webkit-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.menuActive .menuClose::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menuActive .menuClose::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar .btnWrapper {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.navbar .btn {
    border-radius: 30px;
    height: 45px;
    max-width: 100%;
    width: 130px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.navbar .btn:hover {
    color: #fff;
}

.menu .wrapper {
    padding: 15px 0px;
}

.navbar .btn.signUp {
    border: 1px solid #fff;
}

.navbar .btn.login {
    background-color: var(--primary);
    color: #000;
    border: 1px solid transparent;
}

.authLayout {
    background-color: #f8f8ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

.authLayout .authCard {
    background-color: #fff;
    padding: 25px;
    width: 100%;
    max-width: 500px;
}

.authLayout .authCard .heading {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    padding-bottom: 20px;
}

.formLabel {
    color: #000;
    margin-bottom: 5px;
}

.formInput {
    height: 50px;
    display: block;
    width: 100%;
    border: 1px solid #000;
    padding: 10px 15px;
    border-radius: 10px;
}

input:focus-visible {
    outline: none;
}

.form-check-input {
    background-color: #928f8f !important;
    border: none !important;
}

.form-check-input:checked {
    border-color: #928f8f !important;
}

.form-check-label {
    color: #716f6f;
}

.form-check-input:focus {
    box-shadow: none !important;
}

.forgotPassword {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.forgotPassword a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.authCard .btn {
    width: 100%;
    color: #000;
    outline: none;
    border: none;
    border-radius: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

.authCard .btn.login {
    background-color: var(--primary);
}

.authCard .btn.signup {
    background-color: #f5f5f5;
}

.socialBtn {
    width: 100%;
    color: #fff;
    outline: none;
    border: none;
    border-radius: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    background-color: #3479ea;
}

.already {
    text-align: center;
    color: #716f6f;
}

.already a {
    color: #716f6f !important;
}

.pageTitle {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
}

.pageDesc {
    font-size: 16px;
    color: #fff;
    padding-top: 10px;
}

.hero {
    background-color: #212223;
    padding-top: 80px;
}

.hero .heading {
    color: var(--primary);
    text-align: center;
    font-size: 55px;
    font-weight: 600;
}

.hero .desc {
    color: #b9b9b9;
    font-size: 22px;
    text-align: center;
    max-width: 80%;
    margin-inline: auto;
}

.aboutApp {
    padding: 100px 0px 40px 0px;
    background-color: #f8f8ff;
}

.aboutApp .heading {
    color: #111;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

.aboutApp .desc {
    color: #6f6c6c;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 30px;
}

.themeBtn {
    background-color: var(--primary);
    border-radius: 3px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #000;
    height: 50px;
    font-weight: 500;
    width: 100%;
    max-width: 200px;
    justify-content: center;
    padding: 10px 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.aboutApp .appImg {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.counterSection {
    background-color: #262729;
    padding: 20px 0px;
}

.counter {
    color: var(--primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    font-family: var(--inter) !important;
}

.counterSection .desc {
    color: #fff;
    text-align: center;
    font-family: var(--inter) !important;
}

.indicator {
    padding-top: 100px;
}

.indicatorRight {
    margin-left: -50px;
    padding-top: 30px;
}

.indicator .heading {
    color: #111;
    font-size: 36px;
    font-weight: 600;
}

.indicator .desc {
    color: #6f6c6c;
    padding-bottom: 30px;
}

.indicator .btnWrapper {
    display: flex;
    justify-content: flex-end;
}

.trade {
    background: url("../../assets/images/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 100px 0px 200px 0;
}

.trade .heading {
    text-align: center;
    color: #111;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 40px;
}

.trade .heading span {
    color: var(--primary);
}

.tradeStats .box {
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
}

.tradeStats .box .number {
    color: var(--primary);
    font-family: var(--inter) !important;
    font-weight: 600;
    font-size: 36px;
}

.tradeStats .box .desc {
    color: #797a7c;
    font-weight: 500;
    font-size: 18px;
}

.whyChoose .box {
    border-radius: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
    padding: 50px 0px;
}

.whyChoose .box .heading {
    color: #111;
    font-size: 40px;
    text-align: center;
    max-width: 80%;
    margin-inline: auto;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 30px;
}

.whyChoose .box .heading span {
    color: var(--primary);
}

.whyChoose .box .desc {
    color: #797a7c;
    font-size: 22px;
    text-align: center;
    max-width: 80%;
    margin-inline: auto;
    padding-bottom: 50px;
}

.textualInfo h2 {
    font-size: 26px;
    margin: 20px 0px 10px 0px;
}

.tabs {
    padding-top: 60px;
}

.tabs .box {
    border: 1px solid #6c6969;
    border-radius: 10px;
    padding: 30px;
}

.tabs .nav-tabs .nav-link {
    font-weight: 500;
    background-color: var(--primary);
    border: 1px solid #fdfd96;
    color: #000;
    border-radius: 0;
}

.tabs .nav-tabs .nav-link:hover {
    border: 1px solid #fdfd96;
}

.tab-content > .active {
    padding-top: 10px;
}

.react-tabs__tab-list {
    border-bottom: 0 !important;
}

.tabs .nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: var(--primary);
}

.tools {
    padding-top: 100px;
}

.sectionHeading {
    color: var(--primary);
    text-align: center;
    font-size: 40px;
    padding-bottom: 50px;
    font-weight: 500;
}

.tools .box {
    text-align: center;
    padding: 30px 20px;
}

.tools .box .imgWrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 10px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools .box p {
    color: #797a7c;
}

.tools .row .col-md-4 {
    border-left: 1px solid #9f9e9e;
    border-bottom: 1px solid #9f9e9e;
}

.tools .row .col-md-4:first-child,
.tools .row .col-md-4:nth-child(4) {
    border-left: none;
}

.tools .row .col-md-4:nth-child(4),
.tools .row .col-md-4:nth-child(5),
.tools .row .col-md-4:nth-child(6) {
    border-bottom: none;
}

.tools .box .name {
    font-size: 22px;
    font-weight: 700;
    padding: 15px 0px;
}

.tools .box .imgWrapper img {
    max-width: 100%;
    max-height: 100%;
}

.faqs.section_pad {
    padding: 70px 0px 40px 0px;
}

.faq-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-row {
    border: 1px solid #6c6969 !important;
    border-radius: 10px;
    padding: 5px 15px !important;
}

.faq-row .icon-wrapper {
    background-color: #1d1e1e;
    border-radius: 50%;
    max-width: 27px !important;
    max-height: 27px !important;
}

.faq-row .row-title-text {
    font-weight: 500;
    font-size: 16px;
}

.faq-row .icon-wrapper svg {
    fill: #fff !important;
}

footer {
    background-color: #212223;
    padding: 50px 0px;
    border-bottom: 10px solid var(--primary);
}

.footer ul li {
    list-style: none;
}

footer .desc {
    color: #797a7c;
    font-size: 14px;
    padding-top: 20px;
}

.signalApp {
    background-color: #212223;
    padding-top: 50px;
}

.signalApp .wrapper {
    padding-bottom: 50px;
    text-align: center;
}

.signalApp .heading {
    color: var(--primary);
    font-family: var(--inter) !important;
    font-size: 30px;
    font-weight: 700;
}

.signalApp .desc {
    color: #fff;
    font-family: var(--inter) !important;
}

.signalApp .heroImg {
    position: relative;
    top: 100px;
    z-index: 1;
}

.trading {
    background-color: var(--bg);
    padding: 200px 0 100px 0px;
}

.trading .heading {
    color: #000;
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 20px;
    line-height: 1;
}

.trading .heading span {
    color: var(--primary);
}

.trading .subHeading {
    color: #797a7c;
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
    padding-bottom: 30px;
}

.trading .btnWrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.AppInfo {
    padding-top: 100px;
}

.AppInfo .box {
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    border-radius: 20px;
}

.AppInfo .box .imgWrapper {
    width: 100%;
    text-align: center;
}

.AppInfo .box .imgWrapper img {
    max-width: 100%;
    max-height: 100%;
}

.AppInfo .box .heading {
    color: #111;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    padding-bottom: 20px;
}

.AppInfo .box .desc {
    color: #6f6c6c;
    padding-bottom: 20px;
}

.bg {
    padding: 60px 0px 60px;
    background-color: #212223;
    position: relative;
}

.pageBg {
    background-color: var(--bg);
    padding: 70px 0px;
}

.pageBg .desc {
    text-align: center;
}

.pageHeading {
    color: #000;
    font-weight: 500;
    font-size: 35px;
    text-align: center;
    padding: 50px 0 20px;
}

.react-dropdown-select {
    min-height: 53px !important;
    border-color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    min-width: 250px;
}

.react-dropdown-select:focus-within,
.react-dropdown-select:hover {
    box-shadow: none !important;
    border-color: var(--primary) !important;
}

.react-dropdown-select-input {
    font-size: 16px !important;
    margin-left: 0 !important;
}

.react-dropdown-select-input::placeholder {
    color: #000;
}

.react-dropdown-select-dropdown-handle {
    transition: transform 0.3s;
}

.react-dropdown-select-dropdown-handle svg {
    width: 25px !important;
    height: 25px !important;
}

.react-dropdown-select-dropdown {
    box-shadow: none !important;
    border-radius: 10px !important;
}

.searchBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    padding: 60px 30px 40px 30px;
    background-color: #fff;
    border-radius: 20px;
}

.searchBox select {
    padding-inline: 10px;
    width: 240px;
    background-color: #f5f5f5;
    min-height: 52px !important;
    border-radius: 10px !important;
    border-color: transparent !important;
    outline: none;
    border-right: 10px solid transparent;
}

.clearBtn {
    position: absolute;
    top: 15px;
    right: 30px;
    border: 1px solid var(--primary);
    color: #000;
    background-color: var(--primary);
    padding: 5px 15px;
    border-radius: 4px;
}

.footer .heading {
    font-size: 18 px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer img {
    margin-bottom: 20px;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer ul li a {
    color: rgba(121, 122, 124, 1);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #fff;
}

.listingWrapper {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.18);
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
}

.listingBox {
    padding: 20px 30px;
    border: 1px solid #d6d7db;
    border-radius: 10px;
    margin-bottom: 20px;
}

.listingWrapper .listingBox:last-child {
    margin-bottom: 0;
}

.listingBox .innerBox {
    position: relative;
    text-align: center;
}

.listingBox .innerBox .wrapper {
    max-width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.listingBox .innerBox h3 {
    text-align: left;
    font-size: 16px;
    margin-top: 15px;
}

.listingBox .innerBox::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background-color: #d6d7db;
}

.listingBox .innerBox.noAfter::after {
    display: none;
}

.listingBox .icon {
    width: 30px;
    height: 30px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.listingBox .icon svg {
    stroke: #fff;
}

.listingBox .brokerDetail {
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #d6d7db;
}

.additionalImg img {
    width: 100%;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.brokerDetail ul {
    padding-inline-start: 17px;
}

.brokerDetail .heading {
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: 600;
}

.listingBox .innerBox.noAfter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.listingBox .innerBox .imgBox {
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.18);
    background-color: #d9d9d9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listingBox .innerBox .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.listingBox .innerBox .themeBtn {
    border-radius: 30px;
    max-width: 170px;
    height: 43px;
    font-size: 14px;
    margin-bottom: 10px;
}

.listingBox .innerBox .themeBtn.read {
    background-color: #000;
    color: #fff;
}

.listingBox .innerBox .title {
    font-size: 14px;
}

.listingBox .innerBox .value {
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.style-module_starRatingWrap__q-lJC {
    display: block !important;
    border: 1px solid #f5f5f5;
    border-radius: 50px;
    margin-right: 30px;
    padding: 7px 20px;
}

.reviewDetail {
    border-bottom: 10px solid var(--primary);
}

.reviewDetail .imgWrapper {
    width: 180px;
    height: 180px;
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    border-radius: 20px;
    margin-right: 20px;
    position: relative;
}

.shadowBox {
    box-shadow: 0px 30px 46px 26px rgba(255, 193, 7, 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 60px;
}

.reviewDetail .imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.reviewDetail .imgWrapper .reviewBox {
    position: absolute;
    top: -16px;
    background-color: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 20px;
    padding: 5px 12px;
    display: flex;
    column-gap: 5px;
    font-size: 14px;
    right: -25px;
}

.reviewDetail .btnWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.reviewDetail .btnWrapper p {
    color: #fff;
    font-size: 14px;
}

.reviewDetail .btnWrapper a {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    font-weight: 500;
    align-items: center;
    color: #000;
    white-space: nowrap;
    column-gap: 10px;
}

.reviewDetail .btnWrapper svg path {
    fill: #000;
}

.info .boxWrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
}

.info .boxWrapper .upperBox {
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 5px solid #fff;
    padding: 20px 40px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.upperBox .stats {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
    padding-bottom: 15px;
}

.upperBox .stats:last-child {
    padding-bottom: 0;
}

.upperBox .stats .label {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.upperBox .stats .label img {
    flex: 1;
    width: 17px;
    height: 17px;
}

.upperBox .br-1 {
    border-right: 2px solid #e1e1e1;
}

.upperBox .stats .label span {
    font-weight: 600;
    font-size: 15px;
}

.prosBox {
    padding: 20px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100%;
}

.prosBox .textWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    font-size: 20px;
    font-weight: 700;
    background-color: #f5f5f5;
    border-radius: 10px;
    border: 5px solid #fff;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    margin-bottom: 20px;
}

.prosBox .textWrapper .icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.prosBox .textWrapper .icon.add {
    background-color: #4caf50;
}

.prosBox .pros {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 7px;
}

.prosBox .pros svg {
    width: 18px;
    height: 18px;
    stroke: #4caf50;
}

.prosBox .pros.red svg {
    stroke: #cb1c20;
}

.prosBox ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.prosBox .textWrapper .icon.minus {
    background-color: #cb1c20;
}

.prosBox .textWrapper .icon svg {
    stroke: #fff;
}

.boxWrapper .heading {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 20px;
}

.postsWrapper {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    padding: 50px 30px;
    flex-wrap: nowrap;
    overflow-y: auto;
}

.postsWrapper::-webkit-scrollbar {
    display: none;
}

.postsWrapper .blogCard {
    flex: 0 0 280px;
    max-width: 280px;
    height: 330px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    padding: 30px 20px;
    position: relative;
}

.postsWrapper .blogCard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.postsWrapper .blogCard .title {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postsWrapper .blogCard .text {
    color: #eee;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postsWrapper.loading .blogCard .heading {
    height: 50px;
    background-color: #6c6969;
    margin-bottom: 10px;
    border-radius: 5px;
}

.postsWrapper.loading .blogCard .subHeading {
    height: calc(100% - 60px);
    background-color: #6c6969;
    border-radius: 5px;
}

.priceBox {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.priceBox .name {
    color: var(--primary);
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
}

.priceBox .price {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    padding-bottom: 10px;
}

.priceBox .priceText {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
    padding-bottom: 10px;
}

.priceBox .priceText svg {
    min-width: 24px;
}

.priceBox .btnWrapper {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.tradeNow {
    margin-bottom: 0;
    padding-left: 0;
    max-width: 800px;
    margin-inline: auto;
    padding-bottom: 30px;
}

.tradeNow li {
    list-style: none;
    display: flex;
    column-gap: 10px;
    padding-bottom: 10px;
}

.tradeNow li svg {
    min-width: 20px;
}

.copytrading .priceBox .name {
    color: #000;
    font-size: 20px;
}

.copytrading .priceBox p {
    color: #716f6f;
    text-align: center;
    font-weight: 300;
}

.otherHeading {
    padding: 20px 0px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.pb-200 {
    padding-bottom: 180px;
}

.mergeBox {
    margin-top: -100px;
    padding-bottom: 100px;
    background-color: var(--bg);
}

.faqLoader {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faqLoader .faq {
    padding: 5px 15px;
    height: 56px;
    border: 1px solid #f3f3f3;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faqLoader .faq .text {
    height: 24px;
    width: 250px;
    background-color: #f3f3f3;
}

.faqLoader .faq .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f3f3f3;
}

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

.loaderWrapper .loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #f5f5f5;
    border-top: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rating {
    border: 1px solid #d6d7db;
    max-width: 170px;
    margin-inline: auto;
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.rating .stars {
    display: flex;
}

.ratingStar {
    font-size: 20px;
}

.rating .ratingNum {
    padding-left: 10px;
    font-weight: 500;
}

.vh100 {
    min-height: 100vh;
}

.css-1aarvou-DropdownHandleComponent {
    margin: 0 0 5px 5px !important;
}

.pagination .page-link {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.pagination .page-link:focus {
    box-shadow: none;
}

.pagination .active > .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.faq-row-wrapper {
    background-color: transparent !important;
}

.faq-row {
    background-color: #fff;
    height: fit-content;
}

.css-b62m3t-container {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
}

.css-13cymwt-control {
    width: 100%;
    min-height: 52px !important;
    border-radius: 10px !important;
    border-color: #000 !important;
}

.css-art2ul-ValueContainer2 {
    padding-left: 15px !important;
}

.css-1xc3v61-indicatorContainer {
    padding-right: 15px !important;
}

.css-1jqq78o-placeholder {
    color: #000 !important;
}

.css-tj5bde-Svg {
    fill: #000 !important;
    cursor: pointer;
}

.css-t3ipsp-control {
    border-color: var(--primary) !important;
    box-shadow: none !important;
    width: 100%;
    min-height: 52px !important;
    border-radius: 10px !important;
    border-color: #000 !important;
}

.css-1u9des2-indicatorSeparator {
    display: none !important;
}

.textualInfo img {
    width: 100%;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
}

.video iframe {
    width: 100%;
    height: 500px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
}

.postDetail .topBox {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
}

.postDetail .boxWrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 13px 0px rgba(0, 0, 0, 0.1);
}

.postDetail .topBox .title {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 40px;
}

.postDetail .topBox .desc {
    color: #fff;
    font-weight: 300;
    padding-right: 20px;
    text-align: left;
}

.postDetail .topBox img {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
    object-fit: contain;
}

.postDetail .detailBox {
    padding: 30px;
}

.pageContent {
    padding-top: 50px;
}

.pageContent h6 {
    font-weight: 600;
    margin-top: 25px;
}

.faq-body .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.faq-body .accordion-button:focus {
    box-shadow: none;
}

.faq-body .accordion-body {
    padding: 0 15px 15px 15px;
}

.faq-body .accordion-button {
    padding: 15px;
    font-weight: 500;
    border-radius: 10px !important;
    justify-content: space-between;
    column-gap: 10px;
}

.faq-body .accordion-item {
    border: 1px solid #6c6969;
    border-radius: 10px !important;
    height: fit-content;
}

.icon.accordion-button .accordion-icon {
    width: 30px;
    height: 30px;
}

.accordion-button .accordion-icon {
    transition: transform 0.2s ease-in-out;
    background-color: #1d1e1e;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button .accordion-icon i {
    font-size: 14px;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.faq-body .accordion-item:not(:first-of-type) {
    border-top: 1px solid #6c6969;
}

.faq-body .accordion-button::after {
    display: none;
}
