/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #5faee3;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #000000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top em {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #57aae1;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .back-to-top {
        margin-right: 25px;
    }
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s;
    padding: 22px 0;
    background: #fff;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #222222;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a em,
.navbar a:focus em {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #000000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #000000;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #4aa3df;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a em {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #000000;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/


.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    margin-right: 30px;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
/* new added */
.navbar-mobile ul {
    display: block;
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    margin:4rem 50px 0px 50px;
    height:90vh;
    border-radius: 10px;
    width:100%;
    box-sizing: border-box;
    padding-top: 20px;
}

/*
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
*/

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #000000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #000000;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: auto !important;
    margin-top: 70px;
    font-family: 'Montserrat', sans-serif;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 50px;
    font-weight: 800;
    line-height: 55px;
    color: black;
    /* margin-top: 53px; */
    display: flex;
    align-items: center;
}

#hero h1 img {
    margin-top: 69px;
    margin-left: -13px;
}

#hero h2 {
    color: #484848;
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    height: 60px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 15px;
    transition: 0.5s;
    color: #000000;
    border: 2px solid #000000;
    box-sizing: border-box;
}

#hero .btn-get-started p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-top: 4px;
    margin-left: 10px;
}

.know_more {
    background: #000000;
    width: 180px;
    margin-bottom: 4px;
}

.know_more p {
    color: #fff;
}

.download_app {
    width: 213px;
}

.download_app p {
    margin-left: 0px;
   
}

/* gold class add */
.gold{
    font-family: 'Montserrat', sans-serif;
}

.live_gold_price h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-top: 100px;
    margin-left: 10px;
}

.live_gold_price h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-left: 10px;
}

.live_gold_price h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.live_gold_price span {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #E90F29;
}

.live_gold_price a {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #0E5ACB;
}

#hero .btn-get-started:hover {
    background: #000000;
    color: #fff;
}

#hero .animated {
    width: 700px;
    margin-left: -88px;
    margin-top: -120px;
}

.price
{
    font-size: 400px;
}
/* media query add  row1*/

@media (max-width: 1200px) {
    .row1 {
         display: flex;
         justify-content: start;
         grid-column-gap: 30px;
    }
}


@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }

}

@media (max-width: 768px) {
    #hero {
        margin-top: 20px;
        margin-left: 30px;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h1 img {
        width: 35px;
        margin-bottom: 27px;
        margin-left: -7px;
    }
    #hero .hero-img img {
        margin-top: 10px;
        width: 70%;
    }
    .know_more {
        width: 190px;
        font-size: 16px;
        text-align: center;
    }
    .know_more p {
        position: relative;
        left:-10px;
        margin-left: 16px;
    }
    #hero .animated {
        width: 100%;
        margin-top: 5px;
    }
    .live_gold_price h6 {
        margin-top: 20px;
    }
    .live_gold_price a img {
        margin-top: 10px;
    }
    .download_app {
        width: 190px;
        font-size: 16px;
    }
    #hero .btn-get-started
    {
        padding: 10px 10px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
 
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
    
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    height: auto !important;
}

.section-bg {
    background-color: #f7fbfe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #222222;
}

.section-title h2::before,
.section-title h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #000000;
    display: inline-block;
}

.section-title h2::before {
    margin: 0 15px 10px 0;
}

.section-title h2::after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin: 15px 0 0 0;
}


/*--------------------------------------------------------------
# Start Support
--------------------------------------------------------------*/
.support {
    padding: 60px 0px;
    overflow: hidden;
    height: auto !important;
    background: #FFFCF1;
}

.support-title {
    text-align: left;
    padding-bottom: 30px;
}

.support-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 43px;
    color: #000000;
    position: relative;
}

.support-title h2 span {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 43px;
    color: #FDCE20;
    position: relative;
}

.support-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #666666;
    position: relative;
}

.support-title p {
    margin: 15px 0 0 0;
}

.rows {
     display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.icon
{
    display: grid;
    grid-row-gap: 10px;
}
.support-img
{
    background-color: #fff;
    width: 200px;
    border-radius: 8px;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px 0px;

}
.support .retailers {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border-radius: 8px;
    width: 225px;
    height: 221px;
    margin-left: 20px;
}

.support .manufactures {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border-radius: 8px;
    width: 225px;
    height: 221px;
    margin-left: 20px;
}

.support .suppliers {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border-radius: 8px;
    width: 225px;
    height: 221px;
    margin-left: 20px;
}

.support .wholesalers {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border-radius: 8px;
    width: 225px;
    height: 221px;
    margin-left: 20px;
}

.support .bullions {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    border-radius: 8px;
    width: 225px;
    height: 221px;
    margin-left: 20px;
    margin-top: 20px;
}

.support .icon-box .icon img {
    padding-top: 15px;
}

.retailers img {
    position: relative;
    width: 100px;
    margin-left: 33px;
}

.manufactures img {
    width: 120px;
    margin-left: 22px;
}

.manufactures h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 5px;
}

.suppliers img {
    width: 128px;
    margin-left: 16px;
}

.suppliers h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 8px;
}

.wholesalers img {
    width: 142px;
    margin-left: 10px;
}

.wholesalers h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 8px;
}

.bullions img {
    width: 120px;
    margin-left: 24px;
}

.bullions h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 6px;
}

.support .retailers h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 10px;
}


@media (max-width: 768px) {
   
    .support {
        height: auto !important;
      
    }
    .support .icon-box .icon img {
        width: 65%;
        margin-left: 37px;
    }
    .support .icon-box {
        width: 80%;
        margin-left: 35px;
        height: 300px;
    }
    .manufactures h4 {
        margin-top: 4px;
    }
    .suppliers h4 {
        margin-top: 4px;
    }
    .wholesalers h4 {
        margin-top: 15px;
    }
    .bullions h4 {
        margin-top: 15px;
    }
}


/*--------------------------------------------------------------
#  End Support
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Start stakeholder
--------------------------------------------------------------*/

.stakeholder {
    padding: 160px 0;
    overflow: hidden;
    height: 700px !important;
    background: url(../img/stakeholder/bg1.png);
}

.stakeholder-title {
    text-align: left;
    padding-bottom: 30px;
}

.stakeholder-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 43px;
    color: #FFFFFF;
    position: relative;
}

.stakeholder-title h2 span {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 43px;
    color: #FDCE20;
    position: relative;
}

.stakeholder .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
    height: 85px;
    border-radius: 8px;
    background: #f6f6f6;
}

.stakeholder .icon-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-left: 10px;
}

.stakeholder .icon-box:hover {
    background: #eef7fc;
}

@media (max-width: 1024px) {
    .stakeholder {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .stakeholder {
        height: auto !important;
    }
    .stakeholder .icon-box {
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 667px) {
    .stakeholder {
        height: auto !important;
    }
}


/*--------------------------------------------------------------
# End stakeholder
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
    padding: 60px 0;
    overflow: hidden;
    height: auto !important;
}

.features .combine_image {
    width: 100%;
    margin-top: 50px;
}

.features .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #222222;
}

.features .content p {
    margin-bottom: 0;
}

.features .content .count-box {
    margin-top: 40px;
    width: 100%;
}

.features .content img {
    margin-top: 20x;
    width: 100%;
}

.features .content .count-box .metalprocess {
    padding: 20px 0;
    width: 100%;
}

.features .content .count-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    line-height: 41px;
    font-weight: 700;
    font-size: 34px;
    color: #222222;
}

.features .content .count-box h3 span {
    color: #FDCE20;
}

.features .content .count-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #666666;
}

.features .content .count-box .metalprocess img {
    display: block;
    font-size: 36px;
    color: #000000;
    float: left;
    line-height: 0;
    width: 65px;
    height: 65px;
}

.features .content .count-box .metalprocess span {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    margin-left: 10px;
}

.features .content .count-box .metalprocess p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #999999;
    margin-left: 80px;
}

@media (max-width: 1024px) {
    .features {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .features img {
        width: 100%;
    }
}

@media (max-width: 667px) {
    .features {
        height: auto !important;
    }
}


/*--------------------------------------------------------------
# End Features
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# GST Verified section
--------------------------------------------------------------*/

.features_gst {
    padding: 60px 0;
    overflow: hidden;
    height: auto !important;
}

.features_gst .combine_image {
    margin-top: 50px;
    margin-left: 180px;
    object-fit: contain;
}

.features_gst .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #222222;
}

.features_gst .content p {
    margin-bottom: 0;
}

.features_gst .content .count-box {
    margin-top: 40px;
    width: 100%;
}

.features_gst .content img {
    margin-top: 20x;
    width: 100%;
}

.features_gst .content .count-box .metalprocess {
    padding: 20px 0;
    width: 100%;
}

.features_gst .content .count-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    line-height: 41px;
    font-weight: 700;
    font-size: 34px;
    color: #222222;
}

.features_gst .content .count-box h3 span {
    color: #FDCE20;
}

.features_gst .content .count-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #666666;
}

.features_gst .content .count-box .metalprocess img {
    display: block;
    font-size: 36px;
    color: #000000;
    float: left;
    line-height: 0;
    width: 65px;
    height: 65px;
}

.features_gst .content .count-box .metalprocess span {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    margin-left: 10px;
}

.features_gst .content .count-box .metalprocess p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #999999;
    margin-left: 75px;
}

@media (max-width: 1024px) {
    .features_gst {
        height: auto !important;
    }
    .features_gst .content img {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .features_gst img {
        width: 200px;
        margin-right: 130px;
    }
}

@media (max-width: 667px) {
    .features_gst {
        height: auto !important;
    }
}


/*--------------------------------------------------------------
# End GST Verified section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #FFFCF1;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #222222;
    font-size: 14px;
}

#footer .footer-links {
    text-align: right;
}

#footer .footer-links a {
    color: #222222;
    padding-left: 15px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    color: #000000;
}

.address {
    text-align: left;
    margin-top: 10px;
}

.company {
    text-align: left;
}

.contact {
    text-align: left;
    margin-top: -23px;
}

.get_app {
    text-align: left;
    margin-top: -23px;
}

.get_app h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin-left: 40px;
}

@media (max-width: 768px) {
    #footer .footer-links {
        text-align: left;
    }
    .address {
        margin-top: 10px;
    }
    .company {
        margin-top: 10px;
    }
    .contact {
        margin-top: 10px;
    }
    .get_app {
        margin-top: 10px;
    }
}


/*--------------------------------------------------------------
# End Footer
--------------------------------------------------------------*/