* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    font-family: 'WorkSans-Medium';
}


:root {
    --primary: #683b91;
    --primary-number: #12B76A;
    --hover : #42265c;
    --light-primary : #683b9112;
    --secondary: #252B37;
    --tertiary: #535862;
    --white: #FFFFFF;
    --black: #181D27;
    --dark-black:#010205;
    --light-text : #717680;
    --primary-red:#D92D20;
    --box:#F5F5F5;
    --progress:#D9D9D9;
    --box-color:#FDFDFD;
    --border:#E9EAEB;
}



/************************************ common_css ***************************************/
h1,h2,h3,h4,h5,h6,ul,p{
    margin: 0;
    padding: 0;
}
.cust_container {
    width: 100%;
    max-width: 1262px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.common_title{
    text-align: center;
}
.common_title p{
    color: var(--primary);
    background-color: var(--light-primary);
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    padding: 8px 14px;
}
.common_title h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 40px;
    width: 100%;
    max-width: 683px;
    margin: 16px auto;
}
.common_title h1{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 40px;
    width: 100%;
    max-width: 683px;
    margin: 16px auto;   
}
.common_title h4{
    color: var(--tertiary);
    font-size: 18px;
    width: 100%;
    max-width: 457px;
    margin: auto;
}
.mt-70{
    margin-top: 70px;
}
.mt-40{
    margin-top: 40px;
}
.footer_title{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 16px;
}
.w-880{
    width: 100%;
}
.common_box{
    padding: 24px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.p-10{
    padding: 10px;
}

/************************************ end_common_css ***************************************/

/************************************ header_css ***************************************/
.header_menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header{
    margin-top: 35px;
}
.logo{
     height: 60px;
}
.menu a{
    text-decoration: none;
    font-size: 18px;
    color: var(--secondary);
    margin: 0 20px 0 0;
    transition: all .5s;
}
.menu a:hover{
    color: var(--hover);
}
.menu a:last-child{
    margin: 0;
}

.menu a.active {
    font-family: 'WorkSans-SemiBold';
    color: var(--primary);
}
.header_btn a{
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 8px;
    margin: 0 0 0 16px;
    transition: all .5s;
}
.header_btn a:nth-child(1){
    background-color: var(--light-primary);
    color: var(--primary);
}
.header_btn a:nth-child(2){
    background-color: var(--primary);
    color: var(--white);
}
.header_btn a:nth-child(2):hover{
    background-color: var(--hover);
}
.toggle_btn{
    width: 30px;
    cursor: pointer;
    display: none;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.sticky{
    margin-top: 0;
    padding: 10px 0;
}
.header {
    transition: all 0.3s ease-in-out;
}
.search-form{
    width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
}
.search-input{
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0 10px 0 5px;
}
.search_icons{
    width: 20px;
    opacity: 0.5;
    cursor: pointer;
}
/************************************ end_header_css ***************************************/

/************************************ index ***************************************/
.score_board{
    margin-top: 16px;
}
.score_content{
    background-color: var(--secondary);
    padding: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    white-space: nowrap;
    height: fit-content;
}
.score_content h3{
    color: var(--white);
    font-size: 16px;
    padding: 0 20px 0 0;
}
.percentage{
    color: var(--primary-number);
}
.percentage_red{
    color: var(--primary-red);
}
/************************************ end_index ***************************************/

/************************************ second_section ***************************************/
.second_section{
    margin-top: 45px;
}
.second_section_body_content h5{
    color: var(--primary);
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.second_section_body_content h1{
    font-family: 'WorkSans-SemiBold';
    margin: 24px 0;
    font-size: 68px;
    color: var(--secondary);
    width: 100%;
    max-width: 675px;
}
.second_section_body_content p{
    font-size: 18px;
    color: var(--tertiary);
    width: 100%;
    max-width: 502px;
}
.open_account_btn{
    margin-top: 40px;
}
.open_account_btn a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    transition: all .5s;
}
.open_account_btn a:hover{
    background-color: var(--hover);
}
.second_section_content{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.second_section_body_first_content{
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.second_section_body_first_content img{
    width: 100%;
    max-width: 300px;
}
.second_section_body_first_content_box{
    padding: 38px 25px;
    border-radius: 20px;
    background-color: var(--box);
}
.second_section_body_first_content_box h4{
    font-family: 'WorkSans-SemiBold';
    color: var(--dark-black);
    font-size: 80px;
}
.second_section_body_first_content_box p{
    width: 100%;
    max-width: 210px;
    font-size: 16px;
    color: var(--tertiary);
}
.second_section_progress{
    background-color: var(--progress);
    border-radius: 0;
    margin-top: 60px;
}
.second_section .progress-bar{
    background-color: var(--black);
}
.second_section_body_second_content{
    width: 100%;
    background-image: url("../img/bg.png");
    padding: 50px 33px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    background-size: 100% 100%;
    margin-top: 24px;
}
.second_section_body_second_content_title{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.line{
    width: 54px;
    height: 2px;
    background-color: var(--white);
    margin-right: 14px;
}
.second_section_body_second_content_title h4{
    color: var(--white);
    font-size: 14px;
}
.second_section_body_second_content h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--white);
    font-size: 30px;
    width: 100%;
    max-width: 280px;
    padding: 32px 0 60px;
}
.graph{
    width: 100%;
    max-width: 225px;
}
/************************************ end_second_section ***************************************/

/************************************ third_section ***************************************/

.third_body_section{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.third_section_box{
    padding: 16px 16px;
    border-radius: 8px;
    background-color: var(--box-color);
    border: 1px solid var(--border);
}
.third_section_box a{
    text-decoration: none;
    display: flex;
    align-items: center;
}
.box_logo img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.box_content{
    margin-left: 16px;
}
.box_content h3{
    color: var(--secondary);
    font-size: 18px;
}
.box_content h4{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 16px;
    margin-top: 8px;
}
.plus{
    font-family: 'WorkSans-Medium';
    font-size: 14px;
}
.day{
    color: var(--light-text);
}
.view_more_btn{
    margin-top: 40px;
    text-align: center;
}
.view_more_btn a{
    padding: 12px 20px;
    border: 1px solid #D5D7DA;
    color: var(--tertiary);
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
}
.third_section_bg{
    background-color: var(--light-primary);
    border-radius: 28px;
    padding: 35px 35px;
}
.third_section_bg .third_section_box{
    background-color: transparent;
    border: 1px solid #A4A7AE;
}
/************************************ end_third_section ***************************************/


/************************************ forth_section ***************************************/
.forth_content{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.forth_box{
    padding: 56px 32px;
    background-image: linear-gradient(to bottom right, transparent 0%, #EDF2F8 40%, #EDF2F8 100%);
    border-radius: 16px;
}
.forth_box:hover{
    outline: 1px solid var(--primary);
}
.forth_box_icon{
    text-align: center;
}
.forth_box_icon img{
    width: 140px;
    height: 140px;
    border-radius: 100%;
}
.forth_box_content{
    text-align: center;
}
.forth_box_content h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--black);
    font-size: 24px;
    margin-bottom: 8px;
}
.forth_box_content p{
    color: var(--light-text);
    font-size: 16px;
    width: 100%;
    max-width: 340px;
    margin: auto;
}
/************************************ end_forth_section ***************************************/

/************************************ fifth_section ***************************************/
.fifth_section{
    background-color: var(--light-primary);
    padding: 80px 0;
}

.fifth_content_number{
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: auto;
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.fifth_content_box{
    text-align: center;
    position: relative;
    z-index: 1;
}
.fifth_content_box::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    z-index: -1;
}
.fifth_content_box:last-child::after{
    content: none;
}
.fifth_content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    position: relative;
    column-gap: 40px;
    width: 85%;
    margin: 60px auto 0;
}
.fifth_box_text{
    margin-top: 24px;
}
.fifth_box_text h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--black);
    text-align: left;
}
.fifth_box_text p{
    width: 100%;
    color: var(--light-text);
    font-size: 16px;
    margin: 8px auto 0;
    text-align: left;
}
.box_number{
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.logn_arrow_box{
    position: absolute;
    top: 20%;
    right: 15%;
    transform: translate(100%);
}
.fifth_content_number img{
    width: 60px;
}
/************************************ end_fifth_section ***************************************/

/************************************ sixth_section ***************************************/
.testmonial_section{
    margin-top: 48px;
    overflow: hidden;
    height: fit-content;
}
.testimonail_box{
    padding: 24px 24px;
    background-color: var(--box-color);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 10px;
}
.testimonail_box p{
    color: var(--secondary);
    font-size: 18px;
    width: 100%;
    max-width: 352px;
}
.testimonail_profile{
    margin-top: 32px;
}
.testimonail_profile img{
    width: 58px;
    height: 58px;
    border-radius: 100%;
    margin-right: 16px;
}
.testimonail_profile h4{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 18px;
}
.testimonail_profile h5{
    color: var(--light-text);
    font-size: 14px;
}
.testimonail_profile{
    display: flex;
    flex-direction: row;
    align-items: center;
}

/************************************ end_sixth_section ***************************************/

/************************************ seventh_section ***************************************/
.seventh_section{
    padding: 40px 0;
    background-color: #FAFAFA;
}
.seventh_section_content{
    width: 100%;
    max-width: 837px;
    margin: 60px auto 0;
}
.seventh_section_content .accordion-item{
    background-color: transparent;
    border: 0;
}
.seventh_section_content .accordion-button{
    background-color: transparent;
    border-bottom: 1px solid #E9EAEB;
    color: var(--secondary);
    outline: none;
    box-shadow: none;
    font-size: 18px;
    padding-left: 0;
    padding-right: 0;
   
}
.seventh_section_content .accordion-body{
    border-bottom: 1px solid #E9EAEB;
    color: var(--light-text);
    padding-left: 0;
    padding-right: 0;
  
}
.seventh_section_content .accordion-button:not(.collapsed){
    color: var(--primary);
}
.seventh_section_content .accordion-button::after{
    background-image: url("../images/Accordion_icon_down.png");
}
.accordion-button:not(.collapsed)::after{
    background-image: url("../images/Accordion_icon_up.png");
}
.seventh_section_content .accordion{
    --bs-accordion-btn-icon-width: 2rem;
}
/************************************ end_seventh_section ***************************************/

/************************************ eight_section ***************************************/
.eight_section_content{
    padding: 64px 64px 0;
    background: var(--primary);
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.eight_left_section{
    padding-top: 50px;
}
.eight_left_section h3{
    color: var(--white);
    font-size: 40px;
    width: 100%;
    max-width: 450px;
}
.eight_left_section a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--white);
    color: var(--primary);
    font-size: 18px;
    border-radius: 8px;
    padding: 12px 20px;
    margin-top: 40px;
}
.mobile{
    width: 100%;
    max-width: 320px;
}
.qr{
    width: 140px;
    height: 140px;
    border-radius: 24px;
    margin-bottom: 20px;
}
.qr_blur{
    position: relative;
}
.qr_blur::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.9);
}
.eight_mobile_section{
    display: flex;
    flex-direction: row;
    column-gap: 80px;
}
.qr_section{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qr_section h4{
    color: var(--white);
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}
/************************************ end_eight_section ***************************************/

/************************************ footer_section ***************************************/

.footer_content p{
    width: 100%;
    max-width: 286px;
    color: var(--tertiary);
    font-size: 16px;
    margin: 16px 0;
}
.social_icon{
    margin-top: 8px;
}
.social_icon img{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    margin: 0 12px 0 0;
}
.footer_links{
    margin-top: 16px;
}
.footer_links a{
    display: block;
    margin-bottom: 8px;
    color: var(--tertiary);
    text-decoration: none;
}
.footer_main_content{
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
}
.address_box{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px;
}
.address_box img{
    width: 25px;
}
.address_box span{
    color: var(--tertiary);
    padding-left: 6px;
    width: 100%;
    display: inline-block;
    max-width: 315px;
}
.bottom_footer{
    padding: 18px 0;
    background-color: #FAFAFA;
    border-top: 1px solid #A4A7AE;
    margin-top: 30px;
    text-align: center;
}
.bottom_footer p{
    font-size: 16px;
}
.bottom_footer p span{
    color: var(--primary);
}
/************************************ end_footer_section ***************************************/

/************************************ details_first_section ***************************************/

.details_first_left_img img{
    width: 60px;
}
.details_first_right_text{
    padding-left: 16px;
}
.total_views{
    margin-bottom: 10px;
}
.details_first_right_text h1{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 20px;
    margin-right: 10px;
    width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.details_first_left_top_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 10px;
}
.details_first_left_top_content_one{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.details_first_right_text h4{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 16px;
}
.chart_section{
    margin-top: 30px;
}
.tabs_btn{
    border: 1px solid var(--border);
}
.tabs_btn button{
    border: 0;
    background-color: transparent;
    padding: 8px 12px;
    border-right: 1px solid var(--border);
}
.tabs button.active {
    background-color: var(--secondary);
    color: var(--white);
}
.buy_sell_box{
    /* padding: 10px 10px; */
    border: 1px solid var(--border);
    border-radius: 8px;
}
.details_first_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}
.details_first_left_content{
    flex-grow: 1;
    flex-shrink: 0;
}
.details_first_right_content{
    flex-grow: 10;
    width: 40%;
}
.buy_sell_box .nav-pills .nav-link{
    color: var(--light-text);
    border-radius: 0;
    margin: 0 15px 0 0;
}
.buy_sell_box .nav-pills .nav-link.active{
    font-family: 'WorkSans-SemiBold';
    background-color: transparent;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);

}
.buy_sell_box .nav-pills{
    border-bottom: 1px solid var(--border);
}
.buy_sell_content{
    padding: 10px;
}
.buy_sell_content h2{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 18px;
}
.buy_sell_content h4{
    margin-top: 5px;
    font-size: 16px;
    color: var(--light-text);
}
.form_section{
    margin-top: 20px;
}
.form_box label{
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}
.form_input_box{
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    outline: none;
    box-shadow: none;
}
.form_input_box::placeholder{
    font-size: 14px;
}
.form_box{
    margin-bottom: 15px;
}
.buy_btn{
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    background-color: var(--primary);
    color: var(--white);
    border: 0;
    font-size: 18px;
    transition: all .5s;
}
.buy_btn:hover{
    background-color: var(--hover);
}
.total_views{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.view-box{
    border: 1px solid var(--black);
    padding: 2px 5px;
    border-radius: 5px;
}
.total_views .view-icon{
    width: 20px;
    
}
/************************************ end_details_first_section ***************************************/


/************************************ details_second_section ***************************************/
.details_second_content h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 16px;
}
.details_second_content p{
    color: var(--secondary);
    font-size: 16px;
}
.read_more_text{
    color: var(--primary);
    text-decoration: none;
}
.read_more_text:hover{
    color: var(--primary);
}
/************************************ end_details_second_section ***************************************/

/************************************ details_third_section ***************************************/
.details_third_left_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 18px;
}
.details_third_left_box:last-child{
    margin-bottom: 0;
}
.details_third_left_box h4{
    color: var(--light-text);
    font-size: 16px;
}
.details_third_left_box h4:nth-child(2){
    color: var(--secondary);
}
.flex-end h4{
    color: var(--secondary);
}
.flex-end{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.flex-end span{
    color: var(--light-text);
    font-size: 14px;
}
.details_third_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.details_third_box{
    flex-grow: 1;
    flex-shrink: 0;
}
.details_third_box:nth-child(1){
    padding-right: 50px;
    padding-left: 0;
    border-right: 2px dashed var(--border);
}
.details_third_box:nth-child(2){
    padding-left: 50px;
    padding-right: 0;
}
/************************************ end_details_third_section ***************************************/

/************************************ details_fourth_section ***************************************/
.details_fourth_content{
    white-space: nowrap;
}
.details_fourth_content .nav-pills .nav-link{
    color: var(--light-text);
    border-radius: 0;
    padding-top: 0;
    margin: 0 40px 0 0;
}

.details_fourth_content .nav-pills .nav-link.active{
    font-family: 'WorkSans-SemiBold';
    background-color: transparent;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.details_fourth_content ul{
    border-bottom: 1px solid var(--border);
}

.financials_content h4{
    font-family: 'WorkSans-SemiBold';
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 24px;
}
.details_fourth_content .table thead tr{
    background-color: #F5F5F5;
}
.details_fourth_content .table thead tr th{
    font-family: 'WorkSans-SemiBold';
    color: var(--light-text);
}

.details_fourth_content .table thead tr th:nth-child(1){
    color: var(--secondary);
}
.details_fourth_content .table tbody tr{
    border-color: transparent;
}
.details_fourth_content .table tbody tr td{
    font-family: 'WorkSans-Medium';
    color: var(--light-text);
}
.details_fourth_content .table tbody tr td:nth-child(1){
    color: var(--secondary);
    font-family: 'WorkSans-SemiBold';
}
.details_fourth_content .table tbody tr:nth-child(even){
    background-color: #FAFAFA;
}
.details_fourth_content .table tbody tr:last-child td{
    padding-bottom: 0;
}
.table_tab_section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.two_tab_section ul{
    border: 0;
}
.details_fourth_content .two_tab_section .nav-pills .nav-link.active{
    background-color: var(--light-primary);
    border: 0;
}
.details_fourth_content .two_tab_section .nav-pills .nav-link{
    padding: 8px 14px;
    border-radius: 30px;
    margin: 0;
}
.org_linkdin{
    width: 30px;
}
/************************************ end_details_fourth_section ***************************************/

/************************************ details_fifth_section ***************************************/
.details_fifth_content .nav-pills .nav-link{
    color: var(--light-text);
    padding: 8px 40px;
}
.details_fifth_content .nav-pills .nav-link.active{
    background-color: var(--light-primary);
    color: var(--primary);
}
.details_fifth_content ul{
    display: flex;
    justify-content: space-evenly;
}
.progress_section{
    padding-top: 10px;
}
.progress_title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.progress_title h3{
    color: var(--secondary);
    font-size: 16px;
}
.progress_section .progress-bar{
    background-color: var(--primary);
}
.progress_section .progress{
    background-color: #F5F5F5;
}
.progress_box{
    margin-bottom: 16px;
}
.progress_box:last-child{
    margin-bottom: 0;
}
/************************************ end_details_fifth_section ***************************************/

/************************************ details_sixth_section ***************************************/
.details_sixth_section ul{
    border-bottom: 1px solid var(--border);
}
.details_sixth_section .nav-pills .nav-link{
    color: var(--light-text);
    border-radius: 0;
}
.details_sixth_section .nav-pills .nav-link.active{
    background-color: transparent;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.details_sixth_content{
    margin-top: 18px;
}
.revenue_tab{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.revenue_yearly_tab ul{
    border: 0;
}
.revenue_yearly_tab .nav-pills .nav-link.active{
    background-color: var(--light-primary);
    color: var(--primary);
    border: 0;
    border-radius: 30px;
}
/************************************ end_details_sixth_section ***************************************/

/************************************ details_fifth_section ***************************************/
.details_fifth_content_header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    padding: 10px 75px;
}
.details_fifth_content_header h3{
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 18px;
}
.details_fifth_content_header h3:last-child{
    color: var(--light-text);
}
.details_year h4{
    margin-top: 16px;
    color: var(--light-text);
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.date_section{
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
}
.date_section span{
    display: block;
    color: var(--light-text);
}
.details_fifth_main_left_bottom_content{
    padding-left: 24px;
}
.details_fifth_main_left_bottom_content h3{
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 8px;
}
.details_fifth_main_left_bottom_content p{
    color: var(--light-text);
    font-size: 16px;
}
.details_fifth_main_left_content{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.details_fifth_main_left_content a{
    text-decoration: none;
}
.download_report{
    background-color: transparent;
    border: 0;
}
.details_fifth_main_body_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    padding-right: 10px;
    border-bottom: 1px solid var(--border);
}
.details_fifth_main_body_content:last-child{
    border-bottom: 0;
    padding-bottom: 0px;
}
.details_fifth_main_content{
    max-height: 400px;
    overflow: auto;
}
.details_fifth_main_content::-webkit-scrollbar {
    width: 10px;
}

.details_fifth_main_content::-webkit-scrollbar-track {
    background: #E9EAEB;
}

.details_fifth_main_content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #A4A7AE;
}

.join_text{
    color: var(--white);
    font-size: 18px;
    padding-top: 10px;
}
  
/************************************ end_details_fifth_section ***************************************/

/************************************ about_us ***************************************/
.about_title{
    text-align: left !important;
}
.about_title h3{
    margin-left: 0 !important;
}
.about_section p{
    margin-bottom: 15px;
}
.about_ul{
    padding-left: 40px;
}
.about_ul li{
    margin-bottom: 10px;
}
/************************************ end_about_us ***************************************/

/************************************ contact_us ***************************************/

.contact_form{
    background-color: var(--white);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 50px auto;
}
.contact_section{
    background-color: var(--primary);
    padding: 50px 0;
    margin-top: 30px;
}
.input_box label{
    color: var(--light-text);
    margin-bottom: 10px;
}
.error-message{
    color: red !important;
}
.inputClass{
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #bbbbbb;
    box-shadow: none;
    outline: none;
    border-radius: 5px;
}
.form_box{
    flex-direction: row;
    justify-content: space-between;
}
.input_box{
    width: 100%;
    /* margin: 0 10px; */
}
.submit_btn{
    padding: 9px;
    background-color: var(--primary);
    color: var(--white);
    border: 0;
    width: 100%;
}
.contact_section h3{
    text-align: center;
    color: var(--white);
    font-size: 38px;
}
/************************************ end_contact_us ***************************************/

/************************************ SEBI ***************************************/
.more_details_text{
    display: flex;
    flex-direction: row;
    padding-bottom: 30px;
}
.sebi_title{
    padding-left: 10px;
}
.sebi_title h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.sebi_title h5{
    font-size: 16px;
}
.unlisted_shares_news_section{
    padding: 50px 0;
}
.unlisted_shares_news_section h2{
    text-align: center;
    font-family: 'WorkSans-SemiBold';
    color: var(--secondary);
    font-size: 40px;
    width: 100%;
    max-width: 683px;
    margin: 16px auto;
}
.unlisted_shares_news_inner_section{
    margin-top: 30px;
}
.unlisted_shares_news_inner_section{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 10px;
}
.unlisted_shares_news_box_img{
    height: 250px;
    overflow: hidden;
}
.unlisted_shares_news_box_img img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.unlisted_shares_news_box_date_section{
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.unlisted_shares_news_box_date_section h4{
    font-size: 20px;
}
.eye{
    align-items: center;
    background: #e7e7e7;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 0 0 6px;
}
.eye svg{
    width: 20px;
    stroke: var(--black);
}
.heart{
    width: 20px;
}
.unlisted_view_details a{
    text-decoration: none;
    color: var(--dark-black);
    transition: all .5s;
    font-size: 18px;
    padding-bottom: 5px;
}
.unlisted_view_details a:hover{
    color: var(--hover);
}
.unlisted_view_details p{
    color: var(--light-text);
}
.unlisted_shares_news_box{
    padding: 5px 10px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
    transition: all .5s;
}
.unlisted_shares_news_box:hover{
    margin-top: -10px;
}
.search-results{
    border:1px solid #ccc; 
    display:none; 
    position:absolute; 
    background:#fff; 
    width:400px; 
    z-index:1000;
    margin-top: 5px;
    border-radius: 5px;
    padding: 5px;
}
.search-results a{
    text-decoration: none;
    font-size: 14px;
    color: var(--black);
}
.search-results div:hover{
    background-color: #f8f8f8;
}
/************************************ end_SEBI ***************************************/


/************************************ media ***************************************/

@media (max-width: 1399.98px) {
    .header {
        margin-top: 20px;
    }
   
    .menu a {
        margin: 0 30px 0 0;
    }
    .header_btn a{
        padding: 10px 20px;
    }
    .second_section {
        margin-top: 20px;
    }
    .second_section_body_content h1{
        margin: 0;
        max-width: 590px;
        font-size: 60px;
    }
    .open_account_btn {
        margin-top: 20px;
    }
    .testimonail_box{
        padding: 16px 16px;
    }
    .testimonail_box p {
        font-size: 16px;
    }
    .testimonail_profile{
        margin-top: 18px;
    }
    .seventh_section_content {
        margin: 40px auto 0;
    }
    .mt-40 {
        margin-top: 20px;
    }
    .details_first_content {
        gap: 20px;
    }
}

@media (max-width: 1199.98px) {
    .header {
        margin-top: 12px;
    }
    
    .menu a {
        margin: 0 25px 0 0;
    }
    .header_btn a{
        border-radius: 5px;
        font-size: 16px;
    }
    .header_btn a:nth-child(2){
        margin: 0 10px;
    }
    .mt-70 {
        margin-top: 40px;
    }
    .common_title h3 {
        margin: 10px auto;
        font-size: 34px;
    }
    .common_title h1 {
        margin: 10px auto;
        font-size: 34px;
    }
    .common_title h4 {
        font-size: 16px;
    }
    .third_body_section {
        margin-top: 20px;
        gap: 14px;
    }
    .third_section_box {
        padding: 10px 10px;
    }
    .forth_content {
        margin-top: 30px;
    }
    .forth_box {
        padding: 32px 32px;
    }
    .fifth_section {
        padding: 40px 0;
    }
    .fifth_box_text {
        margin-top: 12px;
    }
    .fifth_box_text h3 {
        font-size: 20px;
    }
    .fifth_box_text p {
        font-size: 14px;
        max-width: 300px;
        margin: 8px auto 0;
    }
   
    .seventh_section_content {
        margin: 30px auto 0;
    }
    .eight_section_content {
        padding: 50px 50px 0;
    }
    .w-880{
        max-width: 100%;
    }
    .contact_section {
        padding: 20px 0;
    }
    .contact_form {
        margin: 20px auto;
    }
}

@media (max-width: 991.98px) {
    .menu{
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        background-color: var(--white);
        width: 300px;
        height: 100vh;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        transition: all .5s;
        white-space: nowrap;
        z-index: 10;
    }
    .menu a{
        display: block;
        padding: 10px 10px;
        border-bottom: 1px solid var(--border);
        margin: 0;
    }
    .toggle_btn{
        display: inline-block;
    }
    
    .header_btn a {
        padding: 8px 16px;
    }
    .header_btn a:nth-child(2) {
        margin: 0 6px;
    }
    .score_content{
        padding: 10px 0;
    }
    .second_section_content{
        flex-direction: column;
        align-items: flex-start;
    }
    .second_section_body_content h1 {
        max-width: 100%;
        font-size: 50px;
    }
    .open_account_btn {
        margin-top: 14px;
    }
    .second_section_body_content{
        width: 100%;
    }
    .second_section_body_first_content{
        justify-content: center;
    }
    .second_section_body_second_content h3{
        padding: 32px 0 18px;
    }
    .mt-70 {
        margin-top: 20px;
    }
    .common_title p{
        padding: 4px 14px;
    }
    .common_title h3 {
        margin: 6px auto;
        font-size: 30px;
    }
     .common_title h1 {
        margin: 6px auto;
        font-size: 30px;
    }
    .third_body_section{
        grid-template-columns: repeat(2, 1fr);
    }
    .forth_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .forth_box {
        padding: 20px 20px;
    }
    .forth_box_content h3 {
        font-size: 22px;
    }
    .logn_arrow_box {
        transform: translate(80%);
    }
    .fifth_section {
        padding: 20px 0;
    }
    .testmonial_section{
        margin-top: 20px;
    }
    .testimonail_box{
        margin: 0 4px;
    }
    .seventh_section_content {
        margin: 20px auto 0;
    }
    .eight_section_content {
        padding: 30px 30px 0;
        flex-direction: column;
        align-items: center;
    }
    .eight_left_section{
        text-align: center;
        padding-bottom: 30px;
        padding-top: 0;
    }
    .eight_left_section a{
        margin-top: 10px;
    }
    .eight_mobile_section {
        column-gap: 50px;
    }
    .footer_main_content{
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .footer_box{
        margin-bottom: 20px;
    }
    .details_first_content{
        flex-direction: column;
    }
    .details_first_right_text h1 {
        font-size:18px;
        margin-bottom: 6px;
    }
    .details_first_right_text h4 {
        font-size: 14px;
    }
    .details_first_left_img img {
        width: 50px;
        height: 50px;
    }
    .details_first_right_text {
        padding-left: 8px;
    }
    .details_second_content h3{
        font-size: 20px;
        margin-bottom: 8px;
    }
    .details_second_content p {
        font-size: 14px;
    }
    .common_box {
        padding: 18px 18px;
    }
    .table_tab_section{
        flex-direction: column;
    }
    .two_tab_section{
        margin-top: 20px;
    }
    .financials_content {
        padding-top: 10px;
    }
    .fifth_content{
        width: 100%;
    }
    .box_number{
        right: 0px;
    }
    .contact_section h3 {
        font-size: 30px;
    }
    .details_first_right_content{
        width: 100%;
    }
    .details_third_content{
        flex-direction: column;
    }
    .details_third_box:nth-child(2){
        padding-left: 0;
        padding-top: 20px;
    }
    .details_third_box:nth-child(1){
        padding-bottom: 20px;
        padding-right: 0;
        border-bottom: 2px dashed var(--border);
        border-right: 0;
    }
    .details_first_left_top_content{
        flex-direction: column;
        align-items: flex-start;
    }
    .details_first_left_top_content_one {
        margin-top: 10px;
    }
    .unlisted_shares_news_inner_section{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {
   
    .header_btn a {
        padding: 5px 8px;
        font-size: 14px;
    }
    .second_section_body_content h5 {
        font-size: 16px;
    }
    .second_section_body_content h1 {
        font-size: 34px;
    }
    .second_section_body_content p {
        font-size: 16px;
    }
    .open_account_btn a {
        padding: 8px 20px;
    }
    .second_section_body_first_content{
        flex-direction: column;
        align-items: center;
    }
    .second_section_body_first_content_box{
        width: 100%;
        padding: 14px 25px;
    }
    .second_section_progress {
        margin-top: 16px;
    }
    .second_section_body_first_content_box h4 {
        font-size: 60px;
    }
    .second_section_body_first_content_box p{
        max-width: 100%;
    }
    .second_section_body_first_content {
        gap: 10px;
    }
    .second_section_body_second_content {
        margin-top: 10px;
    }
    .second_section_body_second_content h3{
        font-size: 24px;
    }
    .common_title h3 {
        font-size: 28px;
    }
    .common_title h1 {
        font-size: 28px;
    }
    .third_body_section {
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
    }
    .view_more_btn {
        margin-top: 25px;
    }
    .view_more_btn a {
        padding: 10px 20px;
    }
    .third_section_bg{
        padding: 20px 20px;
    }
    .forth_content {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .forth_box {
        border-radius: 8px;
    }
    .fifth_content {
        grid-template-columns: repeat(1, 1fr);
    }
    .fifth_content_box{
        margin-bottom: 20px;
    }
    .logn_arrow_box{
        display: none;
    }
    .seventh_section_content .accordion-button{
        font-size: 16px;
    }
    .seventh_section_content .accordion-body{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .seventh_section_content .accordion-button{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .eight_section_content {
        padding: 20px 0 0;
        border-radius: 16px;
    }
    .eight_left_section h3 {
        font-size: 30px;
    }
    .eight_left_section a{
        padding: 10px 20px;
        font-size: 16px;
    }
    .eight_mobile_section {
        column-gap: 20px;
    }
    .qr {
        width: 120px;
        height: 120px;
    }
    .footer_main_content {
        grid-template-columns: repeat(2, 1fr);
    }
    .bottom_footer {
        margin-top: 0;
        padding: 14px 0;
    }
    .bottom_footer p{
        font-size: 14px;
    }
    .mt-40 {
        margin-top: 10px;
    }
    .details_first_left_top_content{
        flex-direction: column;
    }
    .chart_section {
        margin-top: 10px;
    }
    .details_first_left_top_content_one{
        margin-top: 10px;
    }
    .form_box {
        margin-bottom: 8px;
    }
    .buy_btn {
        padding: 6px;
    }
    .details_second_content h3 {
        font-size: 18px;
    }
    .details_third_content{
        flex-direction: column;
    }
    .details_third_box:nth-child(1){
        padding-right: 0;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 2px dashed var(--border);
    }
    .details_third_box:nth-child(2){
        padding-left: 0;
        padding-top: 20px;
    }
    .details_fourth_content .nav-pills .nav-link{
        margin: 0 40px 10px 0;
    }
    .details_fifth_content .nav-pills .nav-link {
        padding: 8px 20px;
    }
    .progress_box .progress{
        height: 10px;
    }
    .revenue_tab{
        flex-direction: column;
        align-items: flex-start;
    }
    .revenue_yearly_tab{
        margin-top: 20px;
    }
    .details_year h4{
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .details_fifth_main_left_bottom_content {
        padding-left: 14px;
    }
    .details_fifth_main_left_bottom_content h3 {
        font-size: 16px;
        margin-bottom: 2px;
    }
    .details_fifth_main_left_bottom_content p {
        color: var(--light-text);
        font-size: 14px;
    }
    .details_fifth_content_header{
        padding: 10px 30px;
    }
    
    .details_fifth_main_body_content{
        flex-direction: column;
        align-items: flex-start;
    }
    .download_report{
        margin-top: 10px;
    }
    .fifth_content_box::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 4px;
        height: 100%;
        background-color: var(--primary);
        z-index: -1;
    }
    .box_number{
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 0px;
    }
    .fifth_content_number{
        border-radius: 10px;
    }
    .fifth_box_text p{
        margin: 10px 0;
        max-width: 100%;
    }
    .fifth_content_number{
        padding: 14px;
    }
    .fifth_content_number img {
        width: 50px;
    }
    .logo {
        height: 40px;
    }
    .contact_form {
        padding: 10px;
    }
    .total_views{
        flex-direction: column;
        align-items: flex-start;
    }
    .unlisted_shares_news_inner_section{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 425.98px) {
    .second_section_body_content h1 {
        font-size: 24px;
    }
    .second_section_body_first_content_box {
        border-radius: 10px;
    }
    .second_section_body_first_content_box h4 {
        font-size: 50px;
    }
    .second_section_body_second_content {
        padding: 20px 10px 0;
    }
    .second_section_body_second_content h3 {
        font-size: 18px;
    }
    .eight_mobile_section{
        flex-direction: column;
    }
    .qr_section{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .qr_section h4 {
        margin-top: 10px;
    }
    .footer_main_content {
        grid-template-columns: repeat(1, 1fr);
    }
    .common_box {
        padding: 12px 12px;
    }
    .details_third_left_box h4 {
        font-size: 14px;
    }
    .details_third_left_box {
        margin-bottom: 12px;
    }
    .details_fifth_content .nav-pills .nav-link {
        padding: 8px 16px;
    }
    .header_btn a {
        font-size: 12px;
    }
    .header_btn a:nth-child(2) {
        margin: 0 2px;
    }
    .toggle_btn {
        width: 30px;
    }
    .score_content h3 {
        font-size: 14px;
    }
}

/************************************ end-media ***************************************/