/* Common CSS */

body,html{
    width: 100%;
    height: 100%;
    font-family:'Montserrat-Regular';
    color:#515151;
}

.btn_solid, .btn_outline {
    font-size: 14px;
    width: 115px;
    height: 40px;
    margin-bottom: 7px;
    padding: 10px;
    margin:0 5px;
}

.btn_solid{
    background-color:#0054A6;
    color: #ffffff;
    transition-duration:0.5s;
}

.btn_outline span.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dc3545;
    display: inline-block;
    position: relative;
    left: -3px;
    animation: fadeinout 0.9s infinite;
}

@keyframes fadeinout{
  0%{
    opacity:0;
  }
  50%
  {
    opacity:1;
  }
  100%
  {
    opacity:0;
  }
}

.btn_solid:hover{
    background-color:#ffffff;
    color: #0054A6;
    border:1px solid #0054A6;
}

.btn_outline {
    border: 1px solid #0054A6;
    color: #0054A6;
    margin-left: 0;
    transition-duration:0.5s;
}

.btn_outline:hover {
    background-color:#0054A6;
    border: 1px solid #0054A6;
    color: #ffffff;
}

.section_title{
    font-size: 32px;
    font-family: 'Montserrat-SemiBold';
    color: #515151;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
}

.section_title span.highlight_text{
    color: #0054A6;
    border-bottom: 5px solid #0054A6;
}


/* Font Face css */

@font-face {
    font-family: 'Montserrat-Thin';
    src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family:'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Black';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
}



/* Header CSS */

.header_bar{
    background-color: #DDEEFF;
    padding: 10px 0;
}

.index_ul {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 5px;
}

.index_ul > li{
    color:#515151;
    font-family: 'Montserrat-Bold';
    font-size: 14px;
}

.index_ul > li > span.profit_green{
    color:#1BAC4B;
}

.index_ul > li > span.loss_red{
    color:#EA2629;
}

.support_contact {
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
}

.support_text{
    font-size: 14px;
    margin-bottom: 0;
}

/* Header menu */

.navbar {
    display: block;
    padding-bottom: 0;
}

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9);
    margin-bottom: 5px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #515151;
    font-size: 14px;
    font-family: 'Montserrat-Medium';
    padding: 5px 0;
    margin: 0 10px;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #0054A6;
    font-family: 'Montserrat-Bold';
    border-bottom: 3px solid;
}

.sub_menu_content{
    background-color: #0054A6;
    padding: 10px 0;
}

.sub_menu_content ul{
    margin-bottom: 0;
    padding-left: 0;
}

.sub_menu_content ul li a{
    color:#ffffff;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;
    padding-bottom:10px;
}

.sub_menu_content ul li a.active{
    border-bottom:2px solid #ffffff;
}


/* Home banner section */

.home_banner {
    background: url(../imgs/Banner_image.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.banner_content{
    text-align: center;
    color: #ffffff;
}

h1.title{
    font-size: 45px;
    font-family: 'Montserrat-Bold';
    line-height: 65px;
}

h2.sub_title{
    font-size: 30px;    
    line-height: 65px;
    margin-bottom: 30px;
}

/* Offer section */

.offer_section{
    padding: 50px 0;
}

.card {
    background-color: #DDEEFF;
    text-align: center;
    border-radius: 5px;
    padding: 20px;
    padding-top: 30px;
    min-height:300px;
    margin-bottom: 30px;
    display: block;
}

.img_block{
    width: fit-content;
    margin: auto;
    margin-bottom:5px;
}

address{
    margin-bottom:5px;
}

.social_ul li img{
    width:30px;
    height:30px;
}

.social_ul li {
    margin-right: 10px;
}

.card_title{
    font-size: 16px;
    font-family: 'Montserrat-SemiBold';
    margin-bottom: 20px;
}

.card_text{
    font-size: 12px;
}

/* Our Service */

.our_service_section{
    background-color: #DDEEFF;
    padding: 100px 0;
}

.section_text{
    text-align: center;
    margin-bottom: 30px;
}

.card_box{
    background-color: #ffffff;
    padding:30px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 5px;
    min-height: 210px;
    display: flexbox;
    align-content: center;
    vertical-align: middle;
}

.card_box .card_title{
    font-size: 20px;
    font-family: 'Montserrat-SemiBold';
}

/* stock_market_section */

.stock_market_section{
    padding: 100px 0;
}

.icon_box{
    margin-right: 20px;
}

.content_box{
    margin-top: 30px;
}

.content_box h4{
    font-family: "Montserrat-SemiBold";
}

/* Open account section */

.open_acc_section{
    padding: 30px;
    background-color: #DDEEFF;
}

.open_acc_section h2{
    font-family: 'Montserrat-SemiBold';
    color:#0054A6;
    margin-bottom: 20px;
}

.btn_solid.open_acc {
    width: auto;
    display: block;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #0054A6;
    color: #0054A6;
    font-family: 'Montserrat-Medium';
    width: 180px;
}

/* Download App */

.download_section{
    background-color: #0054A6;
    padding: 100px 0;
    color:#ffffff;
}

.download_title{
    text-align: center;
    margin-bottom: 50px;
}

.download_box{
    text-align: center;
}

.btn_solid.white_button{
    background-color: #ffffff;
    width: 200px;
    color: #0054A6;
    font-family:'Montserrat-SemiBold';
}


/* Footer Section */

.footer_section{
    padding:75px 0;
}

.company_contact p {
    font-family: 'Montserrat-SemiBold';
    margin-bottom: 5px;
}

.company_contact p span{
    font-family:'Montserrat-Regular';
}

.company_contact a{
    color:#515151;
    text-decoration: none;
}

.footer_title {
    font-size: 18px;
    font-family: 'Montserrat-SemiBold';
    text-align: center;
}

.footer_link a{
    font-size: 14px;
    color:#515151;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: block;
}

.company_profile .img_block, .navbar-brand img{
    width:100px;
}

/* Attention content */

.attendtion_box {
    font-size: 12px;
    background-color: #D9D9D9;
    padding: 20px;
    margin-top: 30px;
    color: #000000;
    margin-bottom: 50px;
    overflow: hidden;
}

.attendtion_box h5{
    font-size:13px;
}

.attendtion_box ul li {
    margin-bottom: 0;
    line-height: 20px;
    white-space: nowrap;
    animation-name: rightToLeft;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
/*.attendtion_box ul li:before{*/
/*    content:"\f30b";*/
/*    top: 0px;*/
/*}*/

  
@keyframes rightToLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.classify_text{
    font-size: 12px;
}

/* Copyright section */

.copyright_section{
    background-color: #4F4F4F;
    color:#ffffff;
    text-align: center;
    padding:15px;
    font-size: 12px;
}

/* Trading page */

/* subpage_banner */

.subpage_trading_banner{
    background: url(../imgs/Trading_banner.png) no-repeat;
    background-size: cover;
    background-position: center;
    height:40%;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.trading_section{
    padding:100px 0;
}

.trading_section .content_box{
    background-color: #EBEBEB;
    margin-bottom: 30px;
    padding: 30px;
}

/* Education page */

.subpage_education_banner{
    background: url(../imgs/Education.png) no-repeat;
    background-size: cover;
    background-position: center;
    height:40%;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.education_section{
    padding: 100px 0;
}

.education_section .content_box {
    display: flex;
    align-content: center;
    vertical-align: middle;
    align-items: center;
}

.education_section h4{
    color: #0054A6;
    font-family:'Montserrat-Bold';
    text-transform: uppercase;
    font-size:30px;
}

.education_section p{
    font-size: 16px;
}

/* Download page */

.subpage_download_banner{
    background: url(../imgs/download_banner.png) no-repeat;
    background-size: cover;
    background-position: center;
    height:40%;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.download_tab_section{
    padding:100px 0;
}

.download_tab .nav{
    width:250px;
    background-color: #DDEEFF;
    margin-right:20px;
}

.download_tab .nav-tabs li button.nav-link{
    width: 250px;
    text-align: left;
    padding:10px 20px;
}

/* Contact Us page */

.subpage_contact_banner{
    background: url(../imgs/Contact_banner.png) no-repeat;
    background-size: cover;
    background-position: center;
    height:40%;
    width: 100%;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.space-30{
    margin-top: 30px !important;
}

.contact_section{
    padding:100px 0;
}

.contact_section .content_box{
    margin-top: 10px;
}

.contact_section .content_box p{
    margin-bottom: 0;
}

.contact_section .text_box a{
    color: #515151;
    text-decoration: none;
}

.counter{
    float: right;
    background-color: #ffffff;
    padding: 0 10px;
    border-radius: 5px;
    color: #0054A6;
    font-family:'Montserrat-Medium';
} 

.download_tab .nav-tabs .nav-link{
    font-size: 14px;
    font-family:'Montserrat-Medium';
}

.download_tab .nav-tabs .nav-link.active{
    background-color: #ffffff;  
    font-family:'Montserrat-Bold';
    color: #0054A6;      
}

.download_tab .nav-tabs .nav-link.active .counter{
    background-color: #0054A6;    
    color: #ffffff;
}

.download_tab .tab-content{
    display: block;
    width: 100%;
}

.doc_box{
    border:1px solid #DEDEDE;
    width: 100%;
    vertical-align: middle;
    border-radius: 5px;
    padding:5px 10px;
    position: relative;
    margin-bottom: 15px;
}

.download_button {
    position: absolute;
    right: 0;
    top: 3px;
}

.date_time_text{
    margin-bottom: 0;
}

.doc_box .img_block{
    margin-bottom: 0;
}

.doc_box .text_box h5{
    font-size: 16px;
    font-family:'Montserrat-Bold';
}

.doc_box .text_box p{
    font-size: 12px;
    color:#ADADAD;
}

.construction_section{
    padding:50px 0;
}

/* New Css */

.navbar .dropdown button{
    background-color:#fff;
    border:1px solid #0054A6;
    color: #0054A6;
}

/*12/13/2022*/

.global.footer_section{
    padding:0;
}

/* About us */

.about_us{
    padding:50px 0;
}

.about_us .sub_title{
    font-size: 20px;
    line-height: 36px;
}

.why_sec{
    padding:50px 0;
}

.why_sec h3{
    color: #0054A6;
    font-family:'Montserrat-Bold';
    margin-bottom: 50px;
}

.why_sec h4{
    font-size: 16px;
    line-height: 36px;
    text-align: center;
}

.why_sec .content_box {
    padding: 15px;
    background-color: #dee2e6;
    border-radius: 5px;
    margin: 0 7.5px;
    width: 20%;
    text-align: center;
}

.w_100{
    width:100px;
    margin: 0 auto;
}

/* our team section */

.our_team{
    position: relative;
    padding:50px 0;
}

.our_team .content_box{
    position: absolute;
    text-align: center;
    top: 40%;
    left: 0;
    right: 0;
    margin:0 auto;
    width: 100%;
    color: #ffffff;
}

.our_team h4{
    font-family:'Montserrat-Bold';
    margin-bottom: 50px;
}

.our_team p{
    font-size: 18px;
}

/* future section */

.future_sec .title{
    font-family:'Montserrat-Bold';
    margin-bottom: 50px;
    color: #0054A6;
}


.slider_content{
    text-align: center;
    padding:10px;
}

.slider_content h5{
    margin:10px 0;
    font-family:'Montserrat-Bold';    
}

.carousel-control-next, .carousel-control-prev{
    width:0;
}

.carousel-control-next{
    right:-15px;
}

.carousel-control-prev{
    left:-15px;
}

/*faq section*/

.faq_sec, .dos_donts, .privacy_sec{
    padding:50px 0;
}

#checkdv_1{
    display:none !important;
}

/* Media Query */

@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 960px) {
    .buttons_div{
        margin-bottom:20px;    
    }
    
    h1.title {
        font-size: 32px;
        line-height: 45px;
    }
    
    h2.sub_title {
        font-size: 26px;
        line-height: 37px;
    }
    
    .offer_section, .our_service_section, .stock_market_section {
        padding: 50px 0;
    }
    
    .card_box {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .card_box .card_title {
        font-size: 16px;
    }
    
    /*.img_block{*/
    /*    width:100%;*/
    /*}*/
    
    .section_title, .open_acc_section h2, .download_title {
        font-size: 24px;
    }
    
    address, .company_profile{
        font-size:14px;
    }
    
    .footer_title {
        font-size: 14px;
    }
    
    /*Subpages css*/
    
    .subpage_trading_banner {
        height: 20%;
    }
    
}

@media only screen and (max-width: 767px){
    .download_box{
        margin-bottom:30px;
    }
}

.risk_section{
    padding:50px 0;
    background-color:#f3f3f3;
}

.risk_ul li{
    padding-left:20px;
    position:relative;
}

.risk_ul li::before {
    /*font-family:"Font Awesome 5 Free";*/
    font-weight: 900;
    content: "";
    background-image: url(../imgs/checkmark.png);
    background-size: 15px;
    font-size: 14px;
    width: 15px;
    height: 15px;
    color: #0a58ca;
    position: absolute;
    left: 0px;
    top: 3px;
}

.form_box{
    position:relative;
}

.form_loader {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 100%;
    width: 100%;
    background: rgb(255 255 255 / 10%);
    text-align: center;
}

.form_loader img {
    width: 100%;
    margin: 0 auto;
    mix-blend-mode: multiply;
}

.pos_box{
    position:relative;
}

.pos_box a{
    position:absolute;
    z-index:11;
    right:0;
    top:0;
}

.pos_box a img {
    width: 30px;
    height: 30px;
}

/*inner tab download file*/

.download_tab .nav.inner_tabs {
    width: auto;
    background-color: #ffffff;
}

.download_tab .nav.inner_tabs.nav-tabs li button.nav-link {
    width: 80px;
    text-align: center;
    padding: 10px 20px;
    margin:0 10px;
    margin-bottom:15px;
    border:1px solid #0054A6;
    border-radius:5px;
}

.download_tab .nav.inner_tabs.nav-tabs .nav-link.active {
    background-color: #0054A6;
    font-family: 'Montserrat-Bold';
    color: #fff;
    border: 1px solid #0054A6;
}


