body {
    background: #fff;
    font-family: Arial, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    font-size: 14px;
    color: #1a191f;
    overflow-x: hidden
}

a {
    color: inherit
}

.noPadding {
    padding: 0
}

.noMargin {
    margin: 0
}

.paddingTop10 {
    padding-top: 10px
}

.paddingBottom10 {
    padding-bottom: 10px
}

.paddingLeft10 {
    padding-left: 10px
}

.paddingRight10 {
    padding-right: 10px
}

.paddingTop15 {
    padding-top: 15px
}

.paddingBottom15 {
    padding-bottom: 15px
}

.paddingRight15 {
    padding-right: 15px
}

.paddingLeft15 {
    padding-left: 15px
}

.paddingTopBottom15 {
    padding-top: 15px;
    padding-bottom: 15px
}

.marginTop10 {
    margin-top: 10px
}

.marginBottom10 {
    margin-bottom: 10px
}

.marginLeft10 {
    margin-left: 10px
}

.marginRight10 {
    margin-right: 10px
}

.marginTop15 {
    margin-top: 15px
}

.marginBottom15 {
    margin-bottom: 15px
}

.marginLeft15 {
    margin-left: 15px
}

.marginRight15 {
    margin-right: 15px
}

.marginTopBottom15 {
    margin-top: 15px;
    margin-bottom: 15px
}

.floatLeft {
    float: left
}

.floatRight {
    float: right
}

.floatNone {
    float: none
}

li,
ul {
    padding: 0;
    margin: 0
}

.listItems li {
    line-height: 2
}

.designedBy {
    text-align: right
}

.footerLinks li {
    list-style: none
}

.hamburger {
    border: none !important;
    background: transparent !important;
    padding: 6px 8px;
    position: relative;
    width: 44px;
    height: 40px;
    cursor: pointer
}

.ham-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    left: 9px;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.ham-bar--top {
    top: 10px
}

.ham-bar--mid {
    top: 19px;
    opacity: 1
}

.ham-bar--bot {
    top: 28px
}

.hamburger.active .ham-bar--top {
    transform: translateY(9px) rotate(45deg);
    background-color: #fff
}

.hamburger.active .ham-bar--mid {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger.active .ham-bar--bot {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #fff
}

.mobile-nav-wrapper {
    background: #20acb9;
    box-shadow: 0 2px 10px #0000001a;
    position: sticky;
    top: 0;
    z-index: 1040
}

.mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px
}

.mobile-logo img {
    height: 45px;
    width: auto
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008c;
    z-index: 1041;
    opacity: 0;
    transition: opacity .35s ease
}

.mobile-overlay.active {
    display: block;
    opacity: 1
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 270px;
    height: 100%;
    background: #fff;
    z-index: 1042;
    box-shadow: -5px 0 20px #00000026;
    transition: right .38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

.mobile-sidebar.active {
    left: 0
}

.mobile-sidebar-header {
    background: linear-gradient(135deg, #20acb9, #19818b);
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sidebar-logo {
    height: 40px;
    width: auto
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    position: relative;
    padding: 0
}

.sidebar-close span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 6px;
    transition: transform .3s ease
}

.sidebar-close span:first-child {
    top: 16px;
    transform: rotate(45deg)
}

.sidebar-close span:last-child {
    top: 16px;
    transform: rotate(-45deg)
}

.mobile-nav-links {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex: 1
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .35s ease, transform .35s ease
}

.mobile-sidebar.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0)
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(1) {
    transition-delay: .08s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(2) {
    transition-delay: .14s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(3) {
    transition-delay: .2s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(4) {
    transition-delay: .26s
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(5) {
    transition-delay: .32s
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #1E2939;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color .2s
}

.mobile-nav-links li a:hover {
    background: #f9f0f0;
    color: #f98b00
}

.mobile-nav-links li a i {
    width: 18px;
    text-align: center;
    color: #f98b00;
    font-size: 16px
}

.navbar-nav .dropdown-toggle::after {
    content: '\25BC';
    font-size: 10px;
    margin-left: 8px
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    content: '\25B2'
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    list-style: none;
    background-color: #094b7f;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
    margin: 0
}

.navbar-nav .dropdown-menu li {
    background-color: #d8b573;
    height: auto
}

.navbar-nav .dropdown-menu li a {
    padding: 10px 20px;
    color: #fff;
    line-height: 20px;
    font-size: small;
    text-align: left;
    background-color: #211f20
}

.navbar-nav .dropdown-menu li a:hover,
.navbar-nav .dropdown-menu li a:focus {
    background-color: #d8b573;
    color: #fff !important;
    background-image: none
}

.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block
}

.navbar-nav .dropdown:hover .dropdown-menu:hover {
    display: block
}

.navbar-nav .dropdown:hover:not(:hover)>.dropdown-menu {
    display: none
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.active>a {
    background: #eacc90 !important;
    color: #64081f !important;
    text-shadow: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #64081f
}

.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a:hover {
    background: #eacc90 !important;
    color: #64081f !important
}

a:hover {
    color: inherit
}

hr {
    border-color: #6b6b6b
}

.logo img {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%
}

.logoContainertop {
    background-image: linear-gradient(to right, #b78732, #c29740, #cda74f, #d8b75e, #e3c76e, #e3c76e, #e3c86f, #e3c86f, #d9b95f, #cea950, #c49a42, #b98b33)
}

.logoContainer {
    background: #20acb9
}

.menu {
    list-style: none
}

.menu li {
    position: relative;
    float: left
}

.menu a {
    display: block;
    padding: 8px 20px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 28px;
    font-size: 15px;
    text-align: center;
    position: relative
}

.menu .active a,
.menu li a:hover {
    background: transparent !important;
    color: #ffffff !important;
    position: relative;
    border: none !important;
    outline: none !important;
    box-shadow: none !important
}

.menu .active a::after,
.menu li a:hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10px;
    right: 10px;
    height: 6px;
    background: #eacc90;
    border-radius: 10px
}

.menu .dropdown>a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px
}

.menu .dropdown:hover>a::after {
    content: '\f0d8'
}

.menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1000
}

.menu .dropdown-menu li {
    float: none
}

.menu .dropdown-menu a {
    padding: 10px 20px;
    background: linear-gradient(0deg, #e5ca85ff 0%, #fdf9c9ff 45%, #fee179ff 100%);
    color: #1a191f;
    text-align: left
}

.menu .dropdown-menu a:hover {
    background: #1a191f;
    color: #FFF !important
}

.menu .dropdown:hover .dropdown-menu {
    display: block
}

.android {
    float: left
}

.ios {
    float: left
}

.ios img {
    margin-left: 0
}

.flog {
    margin-top: 0;
    padding: 20px;
    background: #f3da73;
    color: #90171c;
    border-radius: 10px;
    text-align: center;
    font-weight: 700
}

.phone_top {
    text-align: left;
    font-size: 20px;
    color: #fff;
    margin-top: -10px
}

.phone_top img {
    display: initial
}

.phone_top a {
    color: #004c8a;
    font-weight: 700
}

.flog1 {
    margin-top: 8px
}

.phone_top h3 {
    font-size: 20px
}

.newyork,
.newyork1 {
    color: #a21c1d;
    margin-left: 5px;
    float: left
}

.london,
.london1 {
    color: #a21c1d;
    margin-left: 5px;
    float: left
}

.india {
    color: #a21c1d;
    margin-left: 7px;
    float: left
}

.newyork img,
.newyork1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.london img,
.london1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.india img,
.india1 img {
    margin-top: 0;
    float: left;
    margin-left: 5px;
    margin-bottom: 10px
}

.india_time,
.london_time,
.newyork_time {
    margin-left: 5px;
    color: #fff;
    position: relative;
    top: 5px
}

.marquee_top {
    margin-top: 10px;
    margin-bottom: 20px
}

.latestUpdatesContainer p {
    margin-top: 5px;
    margin-bottom: 5px
}

.marquee {
    font-weight: 700;
    font-size: 17px;
    color: #333;
}

.mobile {
    margin-top: 13px;
    color: #fff;
    justify-content: flex-end
}

.app_head h4 {
    color: #014d8b;
    font-weight: 700
}

.mobile p {
    font-size: 12px;
    margin-left: 10px
}

.headertable1 {
    background: #094b7f;
    color: #fff;
    border-radius: 10px
}

.headertable1 th {
    text-align: center;
    color: #fff;
    font-size: 16px;
    border-radius: 10px
}

.headertable2 th {
    background: #e9e9eb;
    color: #f98b00;
    text-align: center;
    font-size: 14px;
    line-height: 2 !important
}

.headertable2 th:first-child {
    border-top-left-radius: 5px;
    text-align: center
}

.headertable2 th:last-child {
    border-top-right-radius: 5px
}

.table_responstive1 tbody tr:nth-child(odd) {
    background-color: #cfeafa
}

.table2 {
    background: #f3da73
}

.table3 {
    background: #070707
}

.table4 {
    background: #070707
}

.table1 td {
    font-size: 15px;
    border-top: #ddd;
    text-align: center;
    color: #333
}

.table1 td:first-child {
    text-align: center;
    color: #1a191f;
}

.commodity {
    box-shadow: #63636333 0 2px 8px 0
}

.table2 td {
    font-size: 19px;
    font-weight: 700;
    color: #9f1c21;
    border-top: none !important
}

.table3 td {
    font-size: 19px;
    font-weight: 700;
    color: #fff
}

.table4 td {
    font-size: 19px;
    font-weight: 700;
    border-top: none !important;
    color: #521540;
    border-bottom: none;
    border-top: none !important
}

.table3 img {
    width: 35px
}

.ratevalue2 {
    font-size: 16px !important
}

.ratevalue3 {
    font-size: 24px !important
}

.ratevalue4 {
    font-size: 14px !important
}

.table>thead>tr>th {
    border-bottom: none
}

.table-responsivetop2 {
    margin-top: 14px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    vertical-align: middle
}

.booking_contacttop {
    margin-top: 35px;
    margin-bottom: 35px
}

.booking_contact {
    background: #fff;
    border-radius: 10px;
    box-shadow: #0000001a 0 4px 12px;
    margin-top: 25px;
    margin-bottom: 20px;
    padding: 25px 7px 15px;
    min-height: 180px
}

.booking_contact h4 {
    color: #510404;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
    margin-top: 5px
}

.booking_contact1 {
    border: none;
    text-align: center
}

.booking_contact1 a {
    color: #1E2939;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 2px
}

.booking_contact1 a:hover {
    color: #510404
}

.icon_box {
    background: transparent;
    color: #1E2939;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #1E2939;
    font-size: 15px;
    flex-shrink: 0
}

.booking_center_link {
    display: inline-flex !important
}

.booking_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0
}

.booking_item {
    flex: 0 0 50%;
    padding: 5px 10px
}

.booking_item.full {
    flex: 0 0 100%;
    text-align: center
}

.booking_item.full a {
    justify-content: center
}

.news_msg {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4
}

.booking_contact p {
    font-size: 15px;
    position: relative;
    top: 8px;
    color: #000;
    margin-bottom: 10px
}

.booking_contact img {
    display: inline
}

.graph_img img {
    width: 100%;
    margin-top: 13px
}

.booking_contact i {
    font-size: 14px
}

.news_event {
    text-align: center
}

.news_event marquee {
    height: 145px !important;
    margin-top: 37px
}

.news_event h4 {
    font-weight: 700
}

.news_event hr {
    width: 22%;
    margin-top: 0;
    margin-bottom: 10px;
    border-color: #fff
}

.disclaimer strong {
    color: #610922;
    font-size: 18px
}

.disclaimer p {
    line-height: 2;
    color: #000;
    margin-top: 10px
}

.footer_bottom {
    background: #fbb929;
    color: #ddc561
}

.copyright {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff
}

.terms {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
    text-align: center
}

.powerdby {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
    text-align: right
}

.disclaimer {
    margin-top: 20px;
    margin-bottom: 20px
}

.footer {
    background: #03005A;
    color: #fff
}

.liverate_flag {
    width: 20%;
    margin-left: 19px
}

.liverate_flag1 {
    width: 10%;
    margin-left: 19px
}

.table-responsivetop1 {
    margin-top: 5px
}

.contact_liverate_top {
    color: #fff;
    background: #014d8b;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 10px
}

.contact_liverate1 {
    text-align: center
}

.contact_liverate1 h3 {
    line-height: 1.5
}

.address_home {
    color: #fff;
    background: #d8b573;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px
}

.address_live {
    text-align: center
}

.address_live h3 {
    line-height: 1.5
}

.banner img {
    width: 100%
}

.body_contant {
    padding-bottom: 10px;
    padding-top: 10px;
    background: #e4dee2
}

textarea,
textarea:hover,
textarea:active {
    border-radius: 0 5px 5px 0;
    border: 1px solid #eee;
    margin: 0;
    width: 80%;
    height: 130px;
    float: left;
    padding: 8px 15px !important;
    margin-bottom: 13px
}

.form-groupinput {
    border: 1px solid #ddd;
    color: #000;
    padding: 0 15px;
}

.contentform input:hover,
.contentform input:active {
    border-radius: 0 5px 5px 0;
    border: 1px solid #eee
}

.captcha {
    width: 57% !important;
    color: #5a5252;
}

.icon-case {
    width: 10%;
    float: left;
    border-radius: 5px 0 0 5px;
    background: #311d3c;
    position: relative;
    text-align: center;
    line-height: 40px;
    color: #fff
}

.form-group {
    overflow: hidden;
    clear: both
}

.bouton-contact {
    background-color: #521d6d;
    color: #fff;
    text-align: center;
    width: 25%;
    border: 0;
    padding: 7px;
    cursor: pointer;
    font-size: 18px
}

form {
    border-radius: 5px;
    max-width: 700px;
    width: 100%;
    margin: 5% auto;
    overflow: hidden
}

.contact_us {
    margin-top: 0;
    margin-bottom: 10px
}

.getintouchTitle {
    font-size: 20px;
    text-align: center;
    background: #311d3c;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 29px
}

.contact1,
.email,
.location {
    font-weight: 700;
    border: #250b01 1px solid;
    padding-top: 5px;
    padding-right: 10px;
    margin-bottom: 3px;
    color: #000;
    font-size: 16px;
    line-height: 1.8
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 #0003;
    padding: 12px 16px;
    z-index: 1
}

.dropdown:hover .dropdown-content {
    display: block
}

.right_side {
    margin-top: 5px
}

.gold_live {
    float: left
}

.gold_live1 {
    float: left
}

.table_title {
    margin-left: 10px;
    position: relative;
    top: 11px
}

.liverate_bottom {
    margin-top: 10px
}

.contact_liverate h2 {
    font-weight: 700;
    font-size: 25px;
    color: #fff
}

.contact_liverate h4 {
    font-size: 24px
}

.contact_liverate h4::after {
    content: "";
    position: absolute;
    left: 63px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 74px
}

.contact_liverate h4::before {
    content: "";
    position: absolute;
    right: 63px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 74px
}

.goldRate {
    background: #014d8b;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 5px;
    border-radius: 10px
}

.goldRateData {
    background: #014d8b;
    font-size: 25px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-radius: 10px
}

.text-large1 span {
    font-size: 24px
}

.text-large1 {
    font-size: 30px
}

.goldRateData th {
    text-align: center
}

.address_live h4::after {
    content: "";
    position: absolute;
    left: 50px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 42px
}

.address_live h4::before {
    content: "";
    position: absolute;
    right: 45px;
    width: 22%;
    border-top: 2px solid #fff;
    top: 42px
}

.address_live1 h3 {
    font-size: 22px;
    text-align: center;
    line-height: 1.7
}

.disclaimer_top {
    background: #d8b573;
    padding: 15px;
    margin-top: 10px
}

.rate_fontsize {
    font-size: 40px;
    border-top: none !important
}

.flag1 {
    position: relative;
    top: 7px
}

.online {
    text-align: center
}

.booking_contact1 .lbma {
    width: 100%;
    line-height: 1.3
}

.lbma-rate {
    font-size: 20px
}

.lbma th {
    text-align: center;
    top: 6px;
    position: relative
}

.lbma tr span {
    font-size: 12px
}

.lbma1 {
    height: auto
}

.gallery {
    margin-top: 20px;
    margin-bottom: 20px
}

.footer_top {
    background-image: linear-gradient(to right, #b78732, #c29740, #cda74f, #d8b75e, #e3c76e, #e3c76e, #e3c86f, #e3c86f, #d9b95f, #cea950, #c49a42, #b98b33);
    color: #000
}

.widget {
    margin-bottom: 10px
}

.policies {
    color: #000
}

.contact_footer {
    color: #000
}

.terms_footer {
    margin-left: 85px
}

.contact_fot img {
    display: inline
}

.widget-address address {
    line-height: 2
}

.policies1 a {
    color: #000
}

.more1 {
    color: #1a191f !important;
    background: #fdf8c8;
    padding: 4px 20px;
    border-radius: 5px;
    float: right
}

.policies1 {
    list-style-type: none;
    margin-left: 100px !important;
    line-height: 3
}

.contact_footer1 {
    margin-left: 33px
}

ul li::marker {
    content: none
}

.table_5 {
    background: #094b7f
}

.table_5 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 3;
    padding-left: 10px
}

.table_6 {
    background: #616264
}

.table_6 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 3;
    padding-left: 10px
}

.bankdetail_body1 {
    margin-top: 30px;
    margin-bottom: 30px
}

.bank_logo {
    margin-top: 4%
}

.banner_info img {
    width: 100%
}

.bankdetail_body {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%
}

.top-div {
    width: 50%;
    margin-left: auto;
    margin-right: auto
}

.form-group {
    overflow: hidden;
    clear: both
}

.form-group {
    color: #000
}

.form-group {
    margin-bottom: 15px
}

.icon-case {
    width: 10%;
    float: left;
    border-radius: 5px 0 0 5px;
    background: #d9ae4e;
    position: relative;
    text-align: center;
    line-height: 44px;
    color: #fff
}

i {
    color: #121111
}

.contentform i {
    color: #fff
}

.bouton-contact {
    background-color: #1f1673;
    color: #FFF;
    text-align: center;
    width: 25%;
    border: 0;
    padding: 7px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px
}

.contentform i {
    color: #fff
}

.getintouchTitle {
    height: 35px;
    background-color: #d9ae4e;
    color: #fff;
    line-height: 35px;
    font-weight: 700;
    font-size: 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center
}

.getintouchTitle span {
    margin-left: 13px
}

.getintouchTitle1 {
    margin-top: -1px;
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #0b4d89;
    border-image: initial;
    border-radius: 3px
}

.getintouchTitle1 span {
    margin-left: 35px;
    line-height: 1.6
}

#captchaimg {
    padding-left: 10px;
    margin-top: -4px
}

.location,
.contact,
.email,
.contact1 {
    border: #0e0e0e 1px solid;
    padding-top: 5px;
    padding-right: 25px;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #000;
    font-size: 14px
}

.location p,
.contact p,
.email p,
.contact1 p {
    margin-left: 10%;
    font-size: 14px;
    line-height: 1.9
}

.contactus {
    padding-top: 22%
}

.contact_us {
    margin-bottom: 10px
}

.aboutus_adv {
    margin-top: 20px;
    margin-bottom: 20px
}

.aboutus_adv img {
    width: 100%
}

.readhome {
    text-align: right
}

.readhome button {
    background: #0e0e0e;
    padding: 5px 24px;
    border-radius: 5px;
    border: 1px solid #0e0e0e;
    color: #fff;
    font-size: 16px
}

.readhome button:hover {
    background: #322727;
    border: 1px solid #0e0e0e
}

.booking_contact1 marquee {
    margin-top: 25px
}

.table_responstive1 {
    color: #fff
}

.contactus h3 {
    margin-bottom: 38px
}

.body_contant1 p {
    line-height: 2
}

.apply-box {
    max-width: 100%;
    padding: 20px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 4px 3px 5px #0101011a
}

.title_small {
    font-size: 20px;
    color: #ff4500
}

.form_container {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px
}

.form_control {
    display: flex;
    flex-direction: column
}

.textarea_control {
    grid-column: 1 / span 2
}

.textarea_control textarea {
    width: 100%
}

.apply-box label {
    font-size: 15px;
    margin-bottom: 5px
}

.apply-box input,
.apply-box select,
.apply-box textarea {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    width: 95%;
    height: auto;
    margin-bottom: 0
}

.apply-box input:focus,
.apply-box textarea:focus,
.apply-box select:focus {
    outline-color: #ddd
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.button_container button {
    background: #0e0e0e;
    border: transparent solid 2px;
    padding: 6px 50px;
    color: #fff;
    border-radius: 5px;
    transition: .3s ease-in;
    cursor: pointer
}

.apply-box h1 {
    margin-top: 0;
    text-align: center;
    font-size: 22px
}

.apply-box h1:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #211f20;
    margin: 15px auto 0;
    border-radius: 3px
}

.bank_logo img {
    width: 100%
}

@media screen and (max-width:550px) {
    .textarea_control {
        grid-column: 1 / span 1
    }
}

section {
    display: flex;
    flex-direction: column;
    width: 100%
}

.disclosure {
    margin-bottom: 16px;
    background: #27272a;
    border-radius: 4px;
    box-shadow: #00000026 0 3px 3px 0;
    line-height: 2;
    letter-spacing: 1px
}

.disclosure-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    color: #f4f4f5;
    padding: 5px 18px 4px
}

.disclosure-button:hover {
    color: #fafafa
}

.disclosure-icon {
    width: 16px;
    height: 16px;
    transition: transform .3s ease
}

.disclosure-panel {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    color: #a1a1aa;
    padding: 0 18px 4px;
    border-top: 4px solid #fce1b2
}

.disclosure.open .disclosure-panel {
    display: block
}

.disclosure.open .disclosure-icon {
    transform: rotate(180deg)
}

.account_head h1 {
    margin-top: 0;
    text-align: center;
    font-size: 24px;
    color: #683534;
    font-weight: 700
}

.account_head h1:after {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background: #211f20;
    margin: 15px auto 0;
    border-radius: 3px
}

.account_head h5 {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px
}

.account_head {
    margin-top: 40px
}

.registration-list {
    color: #fff;
    line-height: 2.5;
    font-size: 14px
}

.career {
    margin-top: 12%
}

.hover-effect::before {
    right: 0;
    opacity: .7;
    top: 0
}

.hover-effect::after {
    bottom: 0;
    opacity: .7;
    left: 0
}

.hover-effect::before,
.hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important
}

.hover-effect:hover::after,
.hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%
}

.nameproduct {
    text-align: center;
    background: #0e0e0e;
    padding: 10px;
    color: #fff
}

.disclosure-panel p {
    color: #fff;
    font-size: 14px
}

.market_liverate1 p {
    font-size: 15px;
    position: relative;
    top: 10px;
    left: 0;
    color: #fff
}

.market_liverate1 {
    border-top: 0;
    margin-top: -10px;
    margin-bottom: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 150px;
    background: #52153f
}

.liverate_product img {
    border-radius: 10px;
    width: 100%
}

.top-banner img {
    width: 100%;
    margin-bottom: 20px
}

.gallery img {
    border-radius: 10px
}

.policiesmbl {
    line-height: 2
}

.tablefirst {
    border-radius: 10px;
    margin-left: 2%;
    margin-top: 32px;
    margin-bottom: 30px;
    border: 1px solid #dbbd6e
}

.mainprotit1 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 2
}

.mainprogold1 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding-top: 10px;
    line-height: 1.7;
    padding-bottom: 10px
}

.mainprogold2 {
    font-size: 17px;
    font-weight: 700;
    color: #64081F;
    text-align: center;
    padding-top: 10px;
    line-height: 1.7;
    padding-bottom: 10px
}

.mainprogold1 td:nth-child(2) {
    border-right: 1px solid #dbbd6e
}

.mainprogold1 td {
    white-space: nowrap
}

.highlow {
    font-size: 16px
}

.rate {
    font-size: 34px;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    font-feature-settings: tnum;
    text-align: center
}

.tabw2 {
    width: 50%;
    vertical-align: middle
}

.mainprotit {
    background: #fff;
    font-size: 20px;
    margin: 15px 0 7px;
    padding: 10px;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 550;
    color: #1d1d1b
}

.mainprogold {
    color: #1d1d1b;
    font-size: 24px;
    margin-bottom: 15px;
    padding: 6px 10px;
    text-transform: uppercase;
    border-radius: 20px;
    vertical-align: middle
}

.mainprotit1 td {
    background: #64081f;
    color: #364153;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.bank_gst_pan {
    padding: 11px;
    background: #153846;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 17px;
    float: right
}

.table5 {
    background: #03005a;
}

.table5 td {
    text-align: left;
    color: #fff;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 2.5;
    padding: 8px
}

.table6 {
    background: #e2e2ed
}

.table6 td {
    text-align: left;
    color: #0b1f51;
    font-size: 14px;
    vertical-align: middle !important;
    font-weight: 700;
    line-height: 2.5;
    padding: 8px
}

.gst {
    margin-top: 10px;
    margin-bottom: 20px
}

.bank_img {
    text-align: center
}

.bank_img img {
    width: 100%;
    margin-top: 20%
}

.bankdetail_body1 {
    margin-bottom: 30px
}

.aboutus {
    line-height: 2
}

.aboutus_head {
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

.aboutus_content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}

.aboutus_content p {
    margin-bottom: 20px;
    font-size: 14px;
}

.heading h1 {
    font-size: 24px;
}

.bannerhome p {
    color: #444;
}

.for_booking {
    margin-top: -10px
}

.livetitle {
    color: #1E2939;
    font-size: 21px;
    font-weight: 600
}

.news {
    background: rgba(54, 201, 215, 0.9);
    min-height: 220px
}

.news h4,
.abouthome h4 {
    color: #fff;
    margin-bottom: 15px
}

.abouthome {
    background: rgba(227, 69, 84, 0.83);
    text-align: center;
    min-height: 280px
}

.abouthome p {
    color: #fff
}

.readmorelive {
    background: #fff;
    padding: 12px 32px;
    color: #e6515f;
    font-size: .875em;
    transition: .5s ease;
    -o-transition: .5s ease;
    -webkit-transition: .5s ease;
    text-transform: uppercase;
    position: relative;
    top: 26px;
    border-radius: 7px
}

.abouthome img {
    width: 17%
}

@media (min-width:992px) {
    .flex-row-custom {
        display: flex;
        flex-wrap: wrap
    }

    .flex-col-custom {
        display: flex;
        margin-top: 40px
    }
}

.fields-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%
}

.fields-left h4 {
    font-size: 1.3em;
    font-weight: 400;
    color: #e34554;
    margin: 15px 0 0 0
}

.fields-left p {
    font-size: 1em;
    margin-top: 1.6%;
    line-height: 1.9em;
    color: #999;
    flex-grow: 1
}

.fields-left .btn-bottom-right {
    margin-top: auto;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: right
}

.btn-bottom-right .btn-primary {
    text-shadow: none
}

.animate {
    opacity: 0;
    visibility: hidden;
    animation-fill-mode: forwards
}

.animate.is-visible {
    visibility: visible
}

.animate.fade-up.is-visible {
    animation-name: genericFadeInUp;
    animation-duration: .8s;
    animation-timing-function: ease-out
}

.animate.fade-in.is-visible {
    animation-name: genericFadeIn;
    animation-duration: .8s;
    animation-timing-function: ease-out
}

.animate.slide-left.is-visible {
    animation-name: genericSlideInLeft;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.animate.slide-right.is-visible {
    animation-name: genericSlideInRight;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.animate.zoom-in.is-visible {
    animation-name: genericZoomIn;
    animation-duration: .6s;
    animation-timing-function: ease-out
}

.delay-1.is-visible {
    animation-delay: .1s
}

.delay-2.is-visible {
    animation-delay: .2s
}

.delay-3.is-visible {
    animation-delay: .3s
}

.delay-4.is-visible {
    animation-delay: .4s
}

.delay-5.is-visible {
    animation-delay: .5s
}

.delay-6.is-visible {
    animation-delay: .6s
}

@keyframes genericFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes genericFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes genericSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes genericSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes genericZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #1e293966
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 10px 10px #1e293900
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #1e293900
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1)
    }

    15% {
        transform: scale(1.05)
    }

    30% {
        transform: scale(1)
    }

    45% {
        transform: scale(1.05)
    }

    60% {
        transform: scale(1)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.icon_box {
    animation: iconPulse 2s infinite;
    border-radius: 50%
}

.pre-footer {
    background: #f7f7f7;
    padding: 35px 0;
    border-bottom: 2px solid #e34554
}

.pre-footer-item h4 {
    color: #e34554;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 0
}

.pre-footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.pre-footer-item ul li {
    font-size: 15px;
    color: #4a4a4a;
    padding: 2px 0
}

.pre-footer-item ul li.time-ist {
    color: #8a7044;
    padding-left: 15px;
    font-size: 14px
}

.pre-footer-email {
    font-size: 15px;
    margin-bottom: 15px;
    color: #888
}

.pre-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease
}

.pre-footer-socials a:hover {
    background: #e34554
}

.pre-footer-socials i {
    color: #fff
}

@media screen and (max-width:767px) {
    .pre-footer-item {
        margin-bottom: 20px
    }
}

.trader_online_btn {
    display: inline-block;
    position: relative;
    animation: heartbeat 1.5s infinite;
    background: #e34554;
    color: #fff;
    padding: 8px 46px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
}

.trader_online_btn span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    animation: blinker 1s linear infinite
}

.trader {
    margin-top: 15px;
    text-align: center;
    margin-bottom: 15px
}

.trader_online_btn:hover {
    color: #fff
}

.main-header {
    background: #03005A
}

.company-name-desktop {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 42px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    padding: 0
}

.logo-img {
    max-height: 80px;
    width: 22%;
    position: relative;
    top: 10px
}

.logo {
    max-height: 80px;
    width: auto
}

.header-app-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    transition: all 0.3s;
    text-decoration: none
}

.header-app-icons a:hover {
    background: #d2a13a;
    color: #03005A
}

.marquee-navbar {
    background: linear-gradient(135deg, #d2a13a, #e6c875, #d2a13a);
    /*padding: 8px 0;*/
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-align: center
}

.marquee p {
    margin-bottom: 0px;
}

.custom-navbar {
    background: #03005A;
    border-top: none;
    padding: 10px 0
}

.company-name-mobile {
    color: #ffffff;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-left: 10px
}

.mnt-panel {
    margin-bottom: 20px;
    margin-top: 20px
}

.header-app-icons {
    margin-top: 15px
}

.main-bg {
    margin-top: 20px
}

.mnt-panel-header {
    background-color: #03005A;
    color: #fff;
    border-radius: 6px;
    padding: 15px 15px;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 15px
}

.mnt-panel-body {
    background-color: transparent
}

.mnt-table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0px 12px !important
}

.mnt-table thead th {
    background-color: #03005A;
    color: white
}

.mnt-table thead th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
    padding-left: 20px
}

.mnt-table thead th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.mnt-table tbody tr {
    background-color: transparent !important
}

.mnt-table tbody td {
    padding: 8px;
    text-align: center;
    font-weight: bold;
    color: #1a191f;
    background-color: #f2f2f2;
    border-top: 1px solid #d2a13a !important;
    border-bottom: 1px solid #d2a13a !important;
    border-left: none;
    border-right: none
}

.mnt-table.solid-left tbody td:first-child {
    background-color: #03005A !important;
    color: #fff !important;
    border-top: 1px solid #03005A !important;
    border-bottom: 1px solid #03005A !important;
    border-left: 1px solid #03005A !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
    padding-left: 20px
}

.mnt-table.solid-left tbody td:last-child {
    border-right: 1px solid #d2a13a !important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.mnt-table.normal-left tbody td:first-child {
    border-left: 1px solid #d2a13a !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
    padding-left: 20px
}

.mnt-table.normal-left tbody td:last-child {
    border-right: 1px solid #d2a13a !important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.mnt-b-no {
    border: 0 !important
}

/* Gold/Yellow highlight for GOLD rate rows in MCX table */
.mnt-table tbody tr.gold-row {
    background: linear-gradient(135deg, #d2a13a, #e6c875, #d2a13a) !important;
    border-radius: 6px
}

.mnt-table tbody tr.gold-row td {
    background: transparent !important;
    border-top: 1px solid #d2a13a !important;
    border-bottom: 1px solid #d2a13a !important;
    color: #1a191f;
    font-weight: bold
}

.mnt-table tbody tr.gold-row td:first-child {
    border-left: 1px solid #d2a13a !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.mnt-table tbody tr.gold-row td:last-child {
    border-right: 1px solid #d2a13a !important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

/* Keep gold style for solid-left commodity table GOLD rows */
.mnt-table.solid-left tbody tr.gold-row td:first-child {
    background: transparent !important;
    color: #1a191f !important;
    border-top: 1px solid #d2a13a !important;
    border-bottom: 1px solid #d2a13a !important;
    border-left: 1px solid #d2a13a !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.mnt-table.solid-left tbody tr.gold-row td:last-child {
    border-right: 1px solid #d2a13a !important;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

/* Silver/Navy highlight for SILVER rate rows in MCX table — title cell only */
.mnt-table tbody tr.silver-row td:first-child {
    background: #03005A !important;
    color: #fff !important;
    border-top: 1px solid #03005A !important;
    border-bottom: 1px solid #03005A !important;
    border-left: 1px solid #03005A !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    font-weight: bold
}

.mobile-highlow {
    color: #a90000;
    font-size: 11.5px;
    margin-top: 4px;
    font-weight: 700
}

/* Dark navy-blue style for SILVER & INR name cells */
.silver-inr-name {
    background-color: #03005A !important;
    color: #fff !important;
    border-top: 1px solid #03005A !important;
    border-bottom: 1px solid #03005A !important;
    border-left: 1px solid #03005A !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
    padding-left: 20px;
    font-weight: bold;
}

.contentform input {
    width: 80%;
    height: 45px;
}