* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'NeueHaasDisplayBold';
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

:root {
    --primary: #141527;
    --black: #000000;
    --white: #ffffff;
    --orange: #EB802C;
}


/******************************* common_css *******************************/

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
    padding: 0;
}

.cust_container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 15px;
}


/******************************* end_common_css *******************************/


/******************************* header_css *******************************/

.header_section {
    padding-top: 34px;
    width: 100%;
    height: 100%;
}

.home_section {
    position: relative;
    z-index: 1;
}

.home_section::after {
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/home_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header_menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    margin: 0 25px;
    transition: all .5s;
}

.header_menu a:hover {
    color: var(--orange);
}

.get_started_btn a {
    text-decoration: none;
    color: var(--black);
    background-color: var(--orange);
    font-size: 20px;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 30px;
}

.toggle_icon {
    width: 30px;
    cursor: pointer;
    margin-left: 10px;
    display: none;
}

.menu_close {
    width: 30px;
    display: none;
}

.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    z-index: 100;
    background-color: var(--primary);
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fixed.service_section_height {
    padding: 20px 0 !important;
}


/******************************* end_header_css *******************************/


/******************************* home_css *******************************/

.home_content {
    padding-top: 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.home_content_left_section {
    width: 100%;
    max-width: 520px;
}

.home_content_left_section h5 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.home_content_left_section h3 {
    font-size: 80px;
    color: var(--white);
}

.home_content_left_section h3 span {
    color: var(--orange);
}

.home_content_right_top_section_box_img {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home_box_img_content {
    position: absolute;
    bottom: 30px;
    text-align: center;
}

.home_box_img_content h3 {
    color: var(--white);
    font-size: 128px;
    line-height: 1;
}

.home_box_img_content p {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    font-size: 24px;
}

.home_content_right_top_section_box {
    display: flex;
    align-items: flex-start;
    column-gap: 27px;
}

.home_content_right_bottom_section_box {
    display: flex;
    align-items: flex-start;
    column-gap: 27px;
}

.margin-100 {
    margin-top: -100px;
}

.margin-11 {
    margin-top: 11px;
}

.overflow_class {
    overflow: hidden;
}


/******************************* end_home_css *******************************/


/******************************* auth_section *******************************/

.user_auth_section {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.auth_left_section {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth_right_section {
    width: 55%;
    height: 100%;
    background-image: url("../img/signin.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.auth_form_section {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.form_contant h3 {
    color: var(--white);
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
}

.form_label {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 7px;
}

.form_box {
    margin-bottom: 16px;
}

.form_box:last-child {
    margin-bottom: 0;
}

.form_box_section {
    margin-top: 46px;
}

.input_form {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
    border: 0;
    background-color: #D9D9D9;
}

.input_form::placeholder {
    font-family: 'NeueHaasDisplayLight';
}

.form_contant .form-check-input {
    width: 20px;
    height: 20px;
    background-color: #D9D9D9;
    border: 2px solid #D9D9D9;
    cursor: pointer;
}

.form_contant .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.form_contant .form-check-label {
    font-family: 'NeueHaasDisplayLight';
    color: var(--orange);
    margin-left: 6px;
    margin-top: 2px;
}

.forgot_pwd a {
    font-family: 'NeueHaasDisplayLight';
    color: var(--orange);
    text-decoration: none;
}

.form_action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.form_btn {
    padding: 12px 0;
    width: 100%;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign_in {
    background-color: var(--orange);
    color: var(--white);
}

.google_connect {
    margin: 25px 0 0;
}

.new_account {
    font-size: 16px;
    text-align: center;
    color: var(--white);
    margin-top: 50px;
}

.new_account a {
    color: var(--white);
    transition: all .5s;
}

.new_account a:hover {
    color: var(--orange);
}

.signin_img {
    width: 100%;
}

.mt-40 {
    margin-top: 40px;
}

.date:focus {
    outline: none;
    border-color: #5D9CF5;
}

.ui-datepicker {
    width: 280px;
    padding: 5px;
    background: #D9D9D9;
    border-radius: 4px;
    box-shadow: 0 4px 40px -8px rgba(0, 0, 0, .2);
    opacity: 0;
}

@media screen and (max-width: 580px) {
    .ui-datepicker {
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100%;
        border-radius: 0px;
    }
}

.ui-datepicker.active {
    opacity: 1;
}

.ui-datepicker-header {
    height: 40px;
    padding: 3px;
    margin-bottom: 10px;
}

.ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    line-height: 34px;
}

.ui-datepicker-month,
.ui-datepicker-year {
    -webkit-appearance: none;
    border: 0;
    background: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #141527;
    margin: 0 1px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    text-indent: 9999px;
    overflow: hidden;
    border-radius: 3px;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: var(--primary);
}

.ui-datepicker-prev {
    float: left;
}

.ui-datepicker-prev:after {
    transform: rotate(45deg);
    margin-left: 15px;
}

.ui-datepicker-next {
    float: right;
}

.ui-datepicker-next:after {
    transform: rotate(-135deg);
    margin-left: 13px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
    content: '';
    position: absolute;
    display: block;
    margin-top: -10px;
    width: 6px;
    height: 6px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    pointer-events: none;
}

.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

.ui-datepicker-calendar thead tr th {
    width: 40px;
    padding-bottom: 6px;
}

.ui-datepicker-calendar thead tr th span {
    font-family: 'NeueHaasDisplayThin';
    display: block;
    width: 100%;
    padding: 0;
    color: #141527;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
}

.ui-datepicker-calendar tbody tr td {
    padding-right: 3px;
    padding-bottom: 3px;
}

.ui-datepicker-calendar tbody tr td:first-child {
    padding-left: 3px;
}

.ui-state-default {
    font-family: 'NeueHaasDisplayThin';
    display: block;
    text-decoration: none;
    color: #141527;
    height: 34px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 34px;
}

.ui-state-default:hover {
    background: var(--orange);
    text-decoration: none;
    color: white;
    border-radius: 100%;
}

.ui-state-highlight {
    color: var(--white);
    background-color: var(--orange);
    border-radius: 100%;
}

.ui-state-active:not(.ui-state-highlight) {
    color: white;
    background: #5D9CF5;
}

.ui-datepicker-unselectable .ui-state-default {
    color: rgba(255, 255, 255, .2);
    pointer-events: none;
}


/******************************* end_auth_section *******************************/


/******************************* services *******************************/

.service_section_height {
    height: auto;
    position: absolute;
    z-index: 1;
    padding: 34px 0;
}

.get_started_btn_white a {
    font-family: 'NeueHaasDisplayMediu';
    padding: 10px 30px !important;
    color: var(--white);
}

.other_bg {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("../img/service_bg.png");
}

.service_section {
    padding: 130px 0;
}

.service_contaner {
    text-align: center;
}

.service_contaner h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 65px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.service_contaner p {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 18px;
    width: 100%;
    max-width: 870px;
    margin: 20px auto 30px;
}

.service_box {
    padding: 34px 48px;
    border: 1px solid #555663;
    background-color: #2B2C3C;
    border-radius: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
}

.service_second_contant {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.service_box h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.service_list {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.service_list_box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.service_list_box:last-child {
    margin-bottom: 0;
}

.service_list_box img {
    margin-top: 5px;
}

.service_list_box p {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    font-size: 18px;
    margin-left: 10px;
    width: 100%;
    max-width: 375px;
}

.try_now_btn {
    display: block;
    border: 1px solid var(--orange);
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: all .5s;
}

.try_now_btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

.outer_par {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    margin-top: 5px;
}

.common_challenges {
    color: var(--white);
    font-size: 18px;
    margin-top: 18px;
}

.service_second_section {
    position: relative;
    z-index: 0
}

.service_second_section::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/blur.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.bg_blur_center {
    position: absolute;
    top: 0;
    right: 0;
}

.bg_blur_center img {
    width: 10%;
}


/******************************* end_services *******************************/


/******************************* footer *******************************/

.footer_section {
    background-color: #1C1E31;
    padding: 60px 0 0;
    margin-top: 140px;
}

.footer_box p {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    font-size: 14px;
    margin-top: 16px;
    width: 100%;
    max-width: 190px;
}

.footer_links h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.footer_links ul li {
    list-style-type: none;
    margin-bottom: 17px;
}

.footer_links ul li a {
    font-family: 'NeueHaasDisplayLight';
    text-decoration: none;
    color: var(--white);
    transition: all .5s;
}

.footer_links ul li a:hover {
    color: var(--orange);
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-bottom: 1px solid #494B5A;
    padding-bottom: 62px;
}

.live_chat_left_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.live_chat_div {
    padding: 15px 17px;
    border-radius: 30px;
    background-color: #282C4B;
    margin-top: 15px;
}

.live_chat_div_text {
    margin-left: 8px;
}

.live_chat_div_text h4 {
    color: var(--white);
    font-size: 18px;
}

.live_chat_div_text h5 {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    font-size: 14px;
}

.social_section {
    margin-top: 26px;
}

.social_section a {
    margin: 0 10px 0 0;
}

.cust_position {
    position: relative;
    right: 60px;
}

.subscribe_div {
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 40px;
    margin-top: 15px;
}

.subscribe_input {
    border: 0;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: var(--white);
}

.subscribe_input::placeholder {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
}

.subscribe_btn {
    background-color: var(--orange);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 30px;
    border: 0;
}

.sub_footer {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sub_footer_left p {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
}

.underline {
    text-decoration: underline;
}


/******************************* end_footer *******************************/


/******************************* pricing_table *******************************/

.pricing_table_contant table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.pricing_table {
    margin-top: -50px;
}

.pricing_table_contant table thead tr th {
    color: var(--white);
    font-size: 35px;
    border-right: 1px solid #676873;
    border-top: 1px solid #676873;
    background-color: rgb(43 44 60 / 29%);
    padding: 20px;
}

.pricing_table_contant table th:first-child {
    border-top-left-radius: 30px;
    border-left: 1px solid #676873;
    width: 350px;
}

.pricing_table_contant table th:last-child {
    border-top-right-radius: 30px;
}

.plan_text {
    font-family: 'NeueHaasDisplayRoman';
    background-color: var(--orange);
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    padding: 4px 26px;
    border-radius: 30px;
}

.pricing_table_contant table tbody tr td {
    font-family: 'NeueHaasDisplayRoman';
    padding: 21px 34px;
    font-size: 18px;
    color: var(--white);
    border-right: 1px solid #676873;
    border-top: 1px solid #676873;
}

.pricing_table_contant table tbody tr td:first-child {
    border-left: 1px solid #676873;
}

.pricing_table_contant table tbody tr:last-child td {
    border-bottom: 1px solid #676873;
}

.pricing_table_contant table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

.pricing_table_contant table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}


/******************************* end_pricing_table *******************************/


/******************************* usdt_css *******************************/

.usdt_box {
    width: 100%;
    padding: 52px 30px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px);
}

.usdt_title h3 {
    font-family: 'NeueHaasDisplayMediu';
    text-align: center;
    font-size: 45px;
    margin-bottom: 46px;
}

.amount_send_box {
    background-color: rgba(217, 217, 217, 0.1);
    padding: 20px 28px;
    border-radius: 20px;
    text-align: left;
}

.amount_send_box h4 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 16px;
    margin-bottom: 22px;
}

.amount_send_box h2 {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 65px;
}

.amount_calc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 20px;
    margin: 20px 0;
}

.amount_calc .amount_send_box {
    width: 100%;
}

.amount_calc h4 {
    background-color: #483C3C;
    padding: 6px 14px;
    border-radius: 5px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 5px;
}

.custom-dropdown .selected {
    font-family: 'NeueHaasDisplayRoman';
    font-size: 20px;
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown_label {
    display: flex;
    flex-direction: row;
}

.dropdown_label img {
    margin-right: 14px;
}

.custom-dropdown .arrow {
    width: 0;
    height: 0;
    margin-left: 7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid white;
    /* change color here */
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.custom-dropdown.open .arrow {
    transform: rotate(-180deg);
}

.custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 6px;
    background-color: #D9D9D9;
    z-index: 10;
    max-height: 180px;
    overflow-y: auto;
    margin-top: 10px;
}

.custom-dropdown .dropdown-options li {
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}

.custom-dropdown .dropdown-options li:hover {
    background-color: #f0f0f0;
}

.custom-dropdown.open .dropdown-options {
    display: block;
}

.usdt_box .get_started_btn_white {
    text-align: left;
    margin-top: 25px;
}

.usdt_box .get_started_btn_white a {
    padding: 10px 40px !important;
}


/******************************* end_usdt_css *******************************/


/******************************* calculator_css *******************************/

.calculator_section {
    margin-top: -80px;
    text-align: left;
}

.calculator_title h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 24px;
    margin-bottom: 8px;
}

.calculator_main_box {
    width: 100%;
    padding: 50px 55px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px);
}

.calculator_box .selected {
    font-family: 'NeueHaasDisplayRoman';
    background-color: rgba(217, 217, 217, 0.1);
    padding: 24px 30px;
    border-radius: 20px;
    font-size: 18px;
}

.calculator_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 27px;
    margin-bottom: 27px;
}

.calculator_content .calculator_box {
    width: 100%;
}

.calculator_content .custom-dropdown .dropdown-options {
    border-radius: 20px;
}

.cust_input {
    width: 100%;
    outline: none;
    box-shadow: none;
    font-family: 'NeueHaasDisplayRoman';
    background-color: rgba(217, 217, 217, 0.1);
    padding: 24px 30px;
    border-radius: 20px;
    font-size: 18px;
    color: var(--white);
    box-shadow: none;
    border: 0;
}


/******************************* end_calculator_css *******************************/


/******************************* Referral_css *******************************/

.referral {}

.referral_box {
    width: 100%;
    padding: 36px 42px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px);
}

.referral_box h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 24px;
}

.referral_box p {
    font-family: 'NeueHaasDisplayThin';
    color: var(--white);
}

.referral_code_box {
    padding: 25px 28px;
    font-family: 'NeueHaasDisplayRoman';
    background-color: rgba(217, 217, 217, 0.1);
    border-radius: 20px;
    font-size: 18px;
    margin-top: 15px;
}

.referral_code_box h4 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 18px;
}

.referral_code_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.join_button {
    font-family: 'NeueHaasDisplayMediu';
    width: 100%;
    border: 0;
    background-color: var(--orange);
    color: var(--white);
    padding: 25px;
    border-radius: 50px;
    font-size: 24px;
    margin-top: 25px;
}

.code_copy_icon {
    cursor: pointer;
}

.referral_information {
    display: flex;
    gap: 20px;
}

.w-40 {
    width: 40%;
}


/******************************* end_referral_css *******************************/


/******************************* trading_css *******************************/

.join_us_information {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.max556 {
    max-width: 556px !important;
}

.join_us_box h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 55px;
    width: 100%;
    max-width: 365px;
}

.join_text span {
    font-family: 'NeueHaasDisplayRoman';
    font-size: 18px;
    color: var(--white);
}

.join_text {
    margin-top: 15px;
}

.join_text_box {
    margin-bottom: 15px;
}

.join_text_box img {
    margin-right: 5px;
}

.work_section {
    padding: 92px 0;
    background-color: #202031;
    margin-top: 140px;
}

.work_box {
    text-align: center;
}

.work_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.work_title h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 55px;
}

.work_inner_content {
    margin-top: 43px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 19px;
}

.work_box {
    background-color: rgba(217, 217, 217, 0.1);
    padding: 30px 34px;
    border: 1px solid #555563;
    border-radius: 30px;
}

.work_box h3 {
    color: var(--white);
    font-size: 22px;
    margin-top: 22px;
}

.graph_section {
    margin-top: 150px;
}

.graph_content {
    background-color: rgba(217, 217, 217, 0.1);
    padding: 30px 34px;
    border: 1px solid #555563;
    border-radius: 30px;
}

.graph_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.graph_title h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
}

.graph_button {
    font-family: 'NeueHaasDisplayMediu';
    padding: 10px 27px;
    border-radius: 30px;
    border: 1px solid var(--orange);
    background: #3B2C2D;
    color: var(--white);
    font-size: 18px;
    display: inline-block;
    margin: 0 0 0 20px;
}

.graph_button_section {
    margin-top: 40px;
}

.graph_button_section button {
    font-family: 'NeueHaasDisplayMediu';
    padding: 14px 36px;
    border-radius: 30px;
    width: 100%;
    max-width: 250px;
    border: 0;
    font-size: 18px;
    margin: 0 16px 0 0;
}

.graph_button_section button:nth-child(1) {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.graph_button_section button:nth-child(2) {
    background-color: var(--orange);
    color: var(--white);
}


/******************************* end_trading_css *******************************/


/******************************* contact_css *******************************/

.contact_section {
    width: 100%;
    padding: 24px 22px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px);
    margin-top: -80px;
    display: flex;
    flex-direction: row;
    column-gap: 52px;
}

.contact_box label {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.contact_right_box {
    width: 100%;
}

.contact_input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 20px;
    border: 1px solid #494D5B;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--white);
}

.contact_input::placeholder {
    font-family: 'NeueHaasDisplayMediu';
}

.contact_box {
    margin-bottom: 27px;
}

.contact_left_box {
    width: 100%;
}

.contact_left_box img {
    width: 100%;
}


/******************************* end_contact_css *******************************/


/******************************* forex_css *******************************/

.forex_market_section {
    width: 100%;
    padding: 24px 22px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px);
    margin-top: -80px;
}

.forex_market_three_boxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

.forex_market_box {
    font-family: 'NeueHaasDisplayBold';
    border: 1px solid #444654;
    padding: 30px 40px;
    border-radius: 20px;
    width: 100%;
    color: #9798AF;
    position: relative;
}

.forex_market_box {
    font-size: 18px;
}

.forex_market_box span {
    font-family: 'NeueHaasDisplayRoman';
    position: absolute;
    top: 0;
    color: var(--white);
    font-size: 14px;
    transform: translate(0%, -50%);
    background: linear-gradient(-180deg, #222431 0%, #222632 1%, #1E202E 100%);
    padding: 2px 10px;
}

.forex_table table {
    width: 100%;
}

.forex_table table thead tr th {
    color: var(--white);
    text-transform: uppercase;
    padding: 16px 40px 0;
}

.forex_table table tbody tr td h3 {
    font-family: 'NeueHaasDisplayRoman';
    font-size: 14px;
    color: var(--white);
    padding-bottom: 4px;
}

.forex_table table tbody tr td {
    background-color: #2B2C3C;
    padding: 16px 40px;
}

.forex_table table tbody tr td h4 {
    font-family: 'NeueHaasDisplayRoman';
    color: #9798AF;
    font-size: 12px;
}

.forex_table table tbody tr td h2 {
    font-family: 'NeueHaasDisplayRoman';
    font-size: 14px;
    color: var(--white);
}

.forex_table table {
    border-collapse: separate;
    border-spacing: 0 10px;
    /* 10px vertical space */
}

.forex_table table tbody tr td:nth-child(1) {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.forex_table table tbody tr td:nth-child(5) {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.cancel_btn {
    font-family: 'NeueHaasDisplayRoman';
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, .2);
    padding: 5px 20px;
    border-radius: 30px;
    color: var(--white);
}

.timeline {
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    margin: auto;
    background-color: #2B2C3C;
    overflow: hidden;
}

.hours {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    font-size: 12px;
    margin-bottom: 15px;
    color: #aaa;
}

.hours span {
    text-align: center;
}

.bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline .row {
    position: relative;
    height: 40px;
}

.bar {
    position: absolute;
    height: 40px;
    background: #f47c2c;
    border-radius: 8px;
    line-height: 40px;
    color: #fff;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
}

.timeline_note {
    font-family: 'NeueHaasDisplayRoman';
    color: #9798AF;
    font-size: 12px;
}

.forex_bottom_section {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}

.forex_bottom_box {
    width: 100%;
    padding: 24px 22px;
    border-radius: 30px;
    border: 1px solid #414251;
    background-color: rgb(43 44 60 / 29%);
    backdrop-filter: blur(10px)
}

.forex_bottom_box h3 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 15px;
}

.forex_bottom_box p {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    font-size: 18px;
}

.forex_bottom_list_name {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 22px;
}

.forex_bottom_list_name img {
    margin-top: 10px;
}

.forex_bottom_list_name span {
    font-family: 'NeueHaasDisplayLight';
    color: var(--white);
    margin-left: 10px;
}


/******************************* end_forex_css *******************************/


/******************************* student_dashboard *******************************/

.student_dashbaord_toggle {
    display: none;
}

.dashboard_header_menu a {
    margin: 0 10px;
    padding: 18px 18px;
    position: relative;
}

.dashboard_header_menu a:hover {
    background-color: var(--orange);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: var(--white);
}

.dashboard_header_menu a.active {
    background-color: var(--orange);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.dashboard_header_menu a.active:hover {
    color: var(--white);
}

.student_header {
    height: auto;
}

.student_header.fixed {
    padding: 10px;
}

.tooltip_box {
    width: 100%;
    max-width: 393px;
    text-align: center;
    position: absolute;
    padding-top: 50px;
    display: none;
    width: max-content;
    left: 0;
}

.dashboard_header_menu a:hover .tooltip_box {
    display: block;
}

.tooltip_box::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid #eb802c;
    position: absolute;
    top: 25%;
    left: 15%;
}

.tooltip_top_content {
    padding: 10px;
    background-color: var(--orange);
    border-radius: 10px;
    position: relative;
}

.tooltip_box h4 {
    font-family: 'NeueHaasDisplayMediu';
    font-size: 16px;
    color: var(--white);
}

.tooltip_bottom_content {
    padding: 10px;
    background-color: #D9D9D9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tooltip_bottom_content a {
    color: var(--orange);
    text-decoration: none;
}

.t_skip {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    cursor: pointer;
}

.dahboard_main_wrapper {
    background-color: #1D1D2C;
    margin-top: 30px;
    padding: 10px 0;
}

.course_input {
    font-family: 'NeueHaasDisplayThin';
    width: 100%;
    padding: 8px 16px;
    background-color: #141527;
    color: var(--white);
    border-radius: 30px;
    border: 0;
    box-shadow: none;
    outline: none;
}

.dashboard_second_section {
    width: 100%;
    padding: 25px 25px;
    background-image: url("../img/mlp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    margin: 30px 0;
}

.dashboard_second_section h4 {
    font-family: 'NeueHaasDisplayThin';
    color: var(--white);
    font-size: 16px;
}

.dashboard_second_section h3 {
    font-family: 'NeueHaasDisplayBold';
    color: var(--white);
    font-size: 64px;
}

.start_course_section {
    width: 100%;
    max-width: 184px;
    padding: 2px 2px 2px 10px;
    background-color: var(--white);
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.start_course_section h4 {
    font-family: 'NeueHaasDisplayThin';
    color: #141527;
    font-size: 14px;
}

.third_title {
    display: flex;
    align-items: center;
}

.third_title h3 {
    color: var(--white);
    text-transform: uppercase;
    margin-left: 10px;
    font-size: 32px;
}

.third_slider {
    background-color: #141527;
    border-radius: 15px;
    padding: 8px 10px;
    margin-top: 5px;
    position: relative;
    z-index: 0;
}

.slider_content {
    margin-top: 10px;
}

.slider_content h4 {
    font-family: 'NeueHaasDisplayRoman';
    background-color: var(--orange);
    font-size: 12px;
    border-radius: 8px;
    padding: 5px 7px;
    display: inline-block;
}

.slider_content h3 {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 24px;
    margin: 5px 0;
}

.slider_content h5 {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 12px;
    margin-bottom: 5px;
}

.slider_content .progress {
    height: 8px;
    border-radius: 30px;
}

.slider_content .progress-bar {
    background-color: #492CEB;
}

.dashboard_fourth_section {
    margin: 20px 0;
}

.dashboard_fourth_section h3 {
    color: var(--orange);
}

.dashboard_fourth_table {
    margin-top: 8px;
}

.dashboard_fourth_table table {
    width: 100%;
}

.dashboard_fourth_table table thead tr th {
    font-family: 'NeueHaasDisplayBold';
    color: var(--white);
    font-size: 16px;
    background-color: #141527;
    padding: 13px 40px;
}

.dashboard_fourth_table table thead tr th:nth-child(1) {
    border-top-left-radius: 30px;
}

.dashboard_fourth_table table thead tr th:nth-child(5) {
    border-top-right-radius: 30px;
}

.dashboard_fourth_table table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

.dashboard_fourth_table table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

.table_img {
    width: 50px;
}

.dashboard_fourth_table table tbody tr td {
    padding: 13px 40px;
    color: var(--white);
    background-color: #1B1A1F;
}

.status {
    font-family: 'NeueHaasDisplayRoman';
    padding: 5px 7px;
    border-radius: 8px;
}

.status_red {
    background-color: #EB322C;
}

.status_orange {
    background-color: var(--orange);
}

.dashboard_left_section {
    width: 75%;
}

.dashboard_right_section {
    width: 25%;
}

.dashboard_inner_content {
    display: flex;
    flex-direction: row;
    column-gap: 45px;
}

.notification {
    position: relative;
}

.notification h5 {
    color: var(--white);
    background-color: var(--orange);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    font-size: 8px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    position: absolute;
    top: 0;
    transform: translate(150%, 60%);
}

.dashboard_right_top_left_icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
    padding-right: 30px;
    border-right: 1px solid var(--white);
}

.dashboard_right_top_section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.dashboard_right_second_box {
    border-radius: 16px;
    background-color: #141527;
    padding: 16px 22px;
    margin-top: 28px;
}

.dashboard_right_second_box h3 {
    text-align: center;
    color: var(--white);
    font-size: 24px;
}

.profile {
    text-align: center;
    margin: 8px 0;
}

.profile h3 {
    margin-top: 20px;
}

.profile p {
    font-family: 'NeueHaasDisplayLight';
    font-size: 14px;
    color: var(--orange);
}

.balance_box {
    background-color: #1D1D2C;
    border-radius: 16px;
    padding: 10px 20px;
    margin-top: 17px;
}

.balance_box h4 {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 16px;
}

.balance_box h3 {
    text-align: left;
    font-size: 40px;
    margin-top: 2px;
}

.mentor_box {
    margin-top: 10px;
    border-radius: 16px;
    background-color: #1D1D2C;
    padding: 16px 22px;
}

.mentor_box h4 {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 16px;
}

.mentor_box_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.mentor_box_title a {
    font-family: 'NeueHaasDisplayRoman';
    color: var(--white);
    font-size: 16px;
}

.mentor_content {
    margin-top: 15px;
}

.mentor_name {
    font-family: 'NeueHaasDisplayMediu';
    color: var(--white);
    font-size: 16px;
    margin-left: 8px;
}

.mentor_inner_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #141527;
    border-radius: 30px;
    padding-right: 14px;
    margin-bottom: 16px;
}

.mentor_inner_section:last-child {
    margin-bottom: 0;
}


/******************************* end_student_dashboard *******************************/

.stragy_creator h3 {
    max-width: 900px;
}

.bons_section {
    width: 100%;
    height: auto;
    background-image: url("../img/bons_bg.svg");
    padding: 90px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
    margin-top: 100px;
    border-radius: 50px;
}

.bons_section h3 {
    font-size: 56px;
}

.bons_section p {
    font-family: 'NeueHaasDisplayRoman';
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
}

.view_pricing {
    background-color: transparent !important;
    color: var(--white);
    border: 1px solid var(--white);
    margin: 0 10px;
}

.forex_education {
    background-color: transparent;
    margin-top: -100px;
    padding-bottom: 0;
}

.forex_education .work_inner_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.forex_education .work_box h3 {
    font-size: 20px;
}

.forex_education .work_box {
    width: 380px;
}


/******************************* responsive *******************************/

@media (max-width: 1399.98px) {
    .header_section {
        padding-top: 20px;
    }
    .header_menu a {
        margin: 0 20px;
    }
    .home_section::after {
        width: 100%;
    }
    .work_section {
        margin-top: 100px;
        padding: 60px 0;
    }
    .graph_section {
        margin-top: 50px;
    }
    .dashboard_inner_content {
        column-gap: 24px;
    }
    .dashboard_second_section {
        margin: 20px 0;
    }
}

@media (max-width: 1199.98px) {
    .header_section {
        padding-top: 15px;
    }
    .header_menu a {
        margin: 0 15px;
        font-size: 18px;
    }
    .get_started_btn a {
        font-size: 18px;
        padding: 6px 12px;
    }
    .home_content {
        padding-top: 40px;
    }
    .home_content_left_section h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .home_content_left_section h3 {
        font-size: 70px;
    }
    .home_box_img_content h3 {
        font-size: 110px;
    }
    .home_box_img_content p {
        font-size: 20px;
    }
    .home_box_img_content {
        bottom: 20px;
    }
    .home_content_right_top_section_box,
    .home_content_right_bottom_section_box {
        column-gap: 15px;
    }
    .service_section {
        padding: 100px 0;
    }
    .service_contaner h3 {
        font-size: 50px;
        max-width: 600px;
    }
    .footer_section {
        padding: 40px 0 0;
        margin-top: 100px;
    }
    .footer_content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .pricing_table_contant table thead tr th {
        padding: 12px;
        font-size: 28px;
    }
    .pricing_table_contant table tbody tr td {
        padding: 16px 14px;
    }
    .usdt_box {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .amount_send_box {
        padding: 15px 18px;
        border-radius: 10px;
    }
    .calculator_main_box {
        padding: 20px 20px;
        border-radius: 20px;
    }
    .calculator_title h3 {
        font-size: 22px;
    }
    .calculator_box .selected {
        padding: 15px 18px;
        border-radius: 10px;
    }
    .cust_input {
        padding: 15px 18px;
        border-radius: 10px;
    }
    .calculator_content {
        column-gap: 20px;
        margin-bottom: 20px;
    }
    .referral_box {
        padding: 20px 20px;
        border-radius: 20px;
    }
    .join_us_box h3 {
        font-size: 46px;
    }
    .work_section {
        margin-top: 50px;
        padding: 40px 0;
    }
    .work_title h3 {
        font-size: 42px;
    }
    .work_inner_content {
        margin-top: 28px;
    }
    .work_box {
        padding: 20px 20px;
        border-radius: 10px;
    }
    .graph_section {
        margin-top: 30px;
    }
    .graph_content {
        border-radius: 20px;
    }
    .contact_section {
        padding: 18px 18px;
        column-gap: 26px;
        border-radius: 20px;
    }
    .contact_box {
        margin-bottom: 16px;
    }
    .forex_market_box {
        padding: 20px 20px;
    }
    .forex_market_box h3 {
        font-size: 20px;
    }
    .forex_table table thead tr th {
        padding: 10px 20px 0;
    }
    .forex_table {
        white-space: nowrap;
    }
    .dashboard_second_section {
        margin: 20px 0;
        padding: 18px 18px;
    }
    .bons_section {
        margin-top: 50px;
    }
}

@media (max-width: 991.98px) {
    .header_menu {
        /* display: none; */
        position: fixed;
        top: 0;
        left: -100%;
        transition: all .5s;
        background-color: var(--primary);
        width: 300px;
        height: 100vh;
        z-index: 100;
        padding-top: 30px;
        white-space: nowrap;
        border-right: 1px solid;
    }
    .header_menu a {
        display: block;
        padding: 10px 5px;
        border-bottom: 1px solid #ffffff14;
        margin: 0;
    }
    .menu_close {
        display: inline-block;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .header_logo img {
        width: 140px;
    }
    .get_started_btn a {
        font-size: 16px;
    }
    .home_section::after {
        width: 100%;
    }
    .home_content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .overflow_class {
        overflow: auto;
    }
    .home_content_left_section h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .home_content_left_section h3 {
        font-size: 50px;
        line-height: 1;
    }
    .home_content_left_section {
        padding-bottom: 20px;
    }
    .toggle_icon {
        display: inline-block;
    }
    .auth_right_section {
        display: none;
    }
    .auth_left_section {
        width: 100%;
    }
    .form_box_section {
        margin-top: 20px;
    }
    .form_contant h3 {
        font-size: 22px;
        margin-top: 16px;
    }
    .form_label {
        font-size: 20px;
    }
    .form_action {
        margin: 20px 0;
    }
    .service_contaner h3 {
        font-size: 40px;
        max-width: 500px;
    }
    .service_contaner p {
        font-size: 16px;
        margin: 10px auto 20px;
    }
    .service_box {
        padding: 10px 10px;
        border-radius: 10px;
    }
    .service_box h3 {
        font-size: 20px;
    }
    .service_list {
        margin-top: 12px;
    }
    .service_list_box p {
        font-size: 16px;
    }
    .service_list_box {
        margin-bottom: 14px;
    }
    .footer_content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .cust_position {
        right: 0;
    }
    .footer_box {
        margin-bottom: 20px;
    }
    .pricing_table {
        margin-top: 0;
    }
    .pricing_table_contant table thead tr th {
        font-size: 20px;
    }
    .pricing_table_contant table th:first-child {
        width: auto;
    }
    .plan_text {
        font-size: 14px;
        padding: 2px 18px;
    }
    .pricing_table_contant table tbody tr td {
        font-size: 14px;
    }
    .service_section {
        padding: 100px 0 50px;
    }
    .usdt_box {
        padding: 30px 10px;
        border-radius: 10px;
    }
    .usdt_box h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .amount_send_box h4 {
        margin-bottom: 10px;
    }
    .amount_send_box h2 {
        font-size: 50px;
    }
    .calculator_section {
        margin-top: 0;
    }
    .calculator_title h3 {
        font-size: 20px;
    }
    .w-40 img {
        width: 100%;
    }
    .referral_information {
        align-items: flex-start;
    }
    .join_button {
        padding: 16px;
        margin-top: 14px;
    }
    .join_us_information {
        flex-direction: column;
        row-gap: 20px;
    }
    .join_us_box .carton {
        width: 70% !important;
        display: flex;
        margin: auto;
    }
    .join_us_box h3 {
        max-width: 100%;
    }
    .work_section {
        margin-top: 30px;
        padding: 30px 0;
    }
    .work_title h3 {
        font-size: 32px;
    }
    .work_inner_content {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 19px;
    }
    .graph_content {
        padding: 20px 10px;
    }
    .graph_button {
        margin: 0 0 0 10px;
        padding: 8px 27px;
        font-size: 16px;
    }
    .graph_button_section button {
        padding: 12px 32px;
        font-size: 16px;
        margin: 0 10px 0 0;
    }
    .contact_section {
        margin-top: 0;
        flex-direction: column;
        row-gap: 20px;
    }
    .forex_market_section {
        margin-top: 0;
    }
    .forex_market_three_boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
    .hours span {
        margin: 0 10px;
    }
    .forex_bottom_section {
        flex-direction: column;
        row-gap: 20px;
    }
    .forex_bottom_box {
        border-radius: 20px;
        padding: 16px 22px;
    }
    .student_dashbaord_toggle {
        display: block;
    }
    .student_header .header_menu {
        padding-top: 60px;
    }
    .dashboard_header_menu a.active {
        border-radius: 0;
    }
    .tooltip_box {
        display: none !important;
    }
    .dashboard_second_section {
        margin: 15px 0;
        padding: 16px 16px;
        border-radius: 10px;
    }
    .dashboard_second_section h3 {
        font-size: 50px;
    }
    .dahboard_main_wrapper {
        margin-top: 15px;
    }
    .dashboard_inner_content {
        flex-direction: column;
    }
    .dashboard_left_section {
        width: 100%;
    }
    .dashboard_right_section {
        width: 100%;
    }
    .dashboard_right_top_section {
        justify-content: space-between;
    }
    .bons_section {
        padding: 40px 0;
    }
    .bons_section h3 {
        font-size: 42px;
    }
    .bons_section p {
        margin: 10px auto;
    }
}

@media (max-width: 575.98px) {
    .home_content_right_top_section_box_img {
        width: 100%;
    }
    .home_content_right_top_section {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .home_content_right_top_section_box,
    .home_content_right_bottom_section_box {
        display: flex;
        flex-direction: row;
        row-gap: 10px;
    }
    .home_content_right_top_section_box img,
    .home_content_right_bottom_section_box img {
        width: 100%;
    }
    .margin-100 {
        margin-top: -80px;
    }
    .margin-11 {
        margin-top: -10px;
    }
    .home_box_img_content h3 {
        font-size: 60px;
    }
    .home_box_img_content p {
        font-size: 16px;
    }
    .service_contaner h3 {
        font-size: 30px;
    }
    .service_second_contant {
        flex-direction: column;
    }
    .try_now_btn {
        padding: 8px;
    }
    .footer_section {
        padding: 30px 0 0;
        margin-top: 50px;
    }
    .footer_content {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer_box p {
        max-width: 100%;
    }
    .footer_content {
        padding-bottom: 12px;
    }
    .sub_footer {
        flex-direction: column;
        row-gap: 10px;
        padding: 10px 0;
    }
    .amount_calc {
        flex-direction: column;
        row-gap: 20px;
    }
    .amount_send_box h2 {
        font-size: 30px;
    }
    .amount_send_box {
        padding: 15px 10px;
        border-radius: 5px;
    }
    .custom-dropdown .selected {
        font-size: 18px;
    }
    .calculator_content {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .calculator_content .calculator_box {
        margin-bottom: 20px;
    }
    .calculator_content .calculator_box:last-child {
        margin-bottom: 0;
    }
    .referral_information {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .referral_box {
        padding: 10px 10px;
        border-radius: 10px;
    }
    .referral_box h3 {
        font-size: 20px;
    }
    .referral_code_box {
        border-radius: 10px;
        font-size: 18px;
        padding: 16px 16px;
    }
    .join_button {
        padding: 12px;
        margin-top: 14px;
        font-size: 18px;
    }
    .join_us_box h3 {
        font-size: 32px;
    }
    .join_text_box {
        margin-bottom: 10px;
    }
    .work_section {
        margin-top: 20px;
        padding: 20px 0;
    }
    .work_box {
        padding: 20px 10px;
    }
    .work_box h3 {
        font-size: 18px;
    }
    .work_inner_content {
        row-gap: 15px;
        column-gap: 15px;
    }
    .graph_title {
        flex-direction: column;
        align-items: flex-start;
    }
    .graph_button {
        margin: 0 10px 10px 0;
    }
    .graph_title h3 {
        margin-bottom: 10px;
    }
    .contact_section {
        padding: 12px 12px;
        column-gap: 26px;
        border-radius: 10px;
    }
    .contact_left_box img {
        width: 50%;
        display: flex;
        margin: auto;
    }
    .forex_market_three_boxes {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }
    .forex_market_section {
        border-radius: 20px;
    }
    .forex_market_box {
        padding: 18px 16px;
    }
    .forex_market_box h3 {
        font-size: 16px;
    }
    .forex_market_section {
        padding: 24px 10px;
    }
    .timeline {
        overflow: auto;
        margin-top: 20px;
    }
    .bar {
        width: fit-content !important;
    }
    .hours span {
        margin: 0 10px;
    }
    .forex_bottom_box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .forex_bottom_list_name {
        margin-bottom: 12px;
    }
    .dashboard_fourth_table {
        white-space: nowrap;
    }
    .dashboard_fourth_table table thead tr th,
    .dashboard_fourth_table table tbody tr td {
        padding: 6px 20px;
    }
    .dashboard_right_second_box {
        margin-top: 12px;
    }
    .profile img {
        width: 150px;
    }
    .bons_section {
        margin-top: 30px;
        border-radius: 30px;
    }
}

@media (max-width: 425.98px) {
    .home_content_left_section h3 {
        font-size: 40px;
    }
    .auth_form_section {
        max-width: 350px;
    }
    .new_account {
        margin-top: 30px;
    }
    .google_connect {
        margin: 15px 0 0;
    }
    .form_contant h3 {
        font-size: 20px;
        margin-top: 8px;
    }
    .service_contaner h3 {
        font-size: 24px;
    }
    .get_started_btn_white a {
        padding: 8px 20px !important;
    }
    .calculator_main_box {
        padding: 15px 10px;
        border-radius: 10px;
    }
    .join_us_box h3 {
        font-size: 28px;
    }
    .work_inner_content {
        grid-template-columns: repeat(1, 1fr);
    }
    .work_title h3 {
        font-size: 28px;
    }
    .graph_button_section button {
        max-width: 200px;
    }
    .graph_button_section button {
        max-width: -webkit-fill-available;
        margin-bottom: 10px;
    }
    .graph_section {
        margin-top: 20px;
    }
    .forex_bottom_box {
        border-radius: 20px;
        padding: 16px 15px;
    }
    .forex_bottom_box h3 {
        font-size: 20px;
    }
    .third_title h3 {
        font-size: 22px;
    }
    .dashboard_right_top_left_icons {
        border-right: 0;
    }
    .notification img {
        width: 25px;
    }
    .email img {
        width: 32px;
    }
    .notification h5 {
        transform: translate(130%, 60%);
    }
    .dashboard_right_second_box {
        padding: 12px 10px;
    }
    .profile img {
        width: 120px;
    }
    .balance_box,
    .mentor_box {
        border-radius: 10px;
    }
    .balance_box h3 {
        font-size: 32px;
    }
    .mentor_box {
        padding: 16px 12px;
    }
    .balance_box {
        padding: 10px 12px;
    }
}

@media (max-width: 375px) {
    .margin-100 {
        margin-top: -70px;
    }
    .work_title h3 {
        font-size: 20px;
    }
}


/******************************* end_responsive_css *******************************/