@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf');
    font-weight: normal;
    font-style: normal
}

:root {
    --base-color: #0057ff;
    --dark-gray: #101a1d;
    --dark-color: #000000;
    --light-color: #ffff;
    --medium-gray: rgba(255, 255, 255, 0.5);
    --extra-medium-gray: #223035;
    --light-gray: #19272b;
    --very-light-gray: #38464a;
    --font-style: 'Open Sans';
    --main-gredients: linear-gradient(150deg, #efe484 0%, #c49729 100%);
}

body {
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    position: relative;
    background: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 0px;
    font-size: 16px;
    font-weight: 400;
    color: #e5e5e5;
}


.all-h4-light {
    color: var(--light-color);
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--font-style);
}

.all-h4-dark {
    color: var(--dark-color);
    text-transform: capitalize;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 5px;
    /* font-family: var(--font-style); */
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 100;
}

.all-h2-light {
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 8px;
    margin-top: 10px;
    letter-spacing: 0px;
    background: var(--main-gredients);
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--font-style);
}

.all-h2-dark {
    color: var(--dark-color);
    text-transform: capitalize;
    font-size: 40px;
    font-family: var(--font-style);
    margin-bottom: 5px;
    margin-top: 10px;
    line-height: 40px;
    letter-spacing: 2px;
}

img {
    max-width: 100%;
}

button:focus,
input:focus {
    outline: none;
}

/***** ----- preloader part end ----- *****/

/***** ----- btn style start ----- *****/
.btn{
    background-size: 200% 100%;
    background-position: 0 0;
    text-transform: math-auto;
    padding: 10px 15px 10px;
    border-radius: 10px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 1s ease;
    color: var(--light-color);
    font-size: 15px;
    font-weight: 700;
} 
.btn:before{
    content:"";
    inset: 0;
    z-index: -1;
    /* border-radius: inherit; */
    background-image: linear-gradient(274deg, #000000 21%, #e6b339ad 50%, #352d01 80%);
    background-size: 250%;
    background-position: left;
    position: absolute;
    transition: all 0.5s;
    border: 1px solid #ffffff1f;
    border-radius: 5px;
} 
.btn::after{
    content:"";
    border-radius: 10px;
    position: absolute;
    transition: all 0.5s;
    inset: -1px;
    z-index: -2;
    /* border-radius: inherit; */
    /* background-image: linear-gradient(90deg, #E6B339 10.35%, #E6B339 92.29%); */
} 
.btn:hover {
    color: var(--light-color);
}
@media only screen and (max-width: 767px){ 

}
 

.section-title {
    padding: 0px 0 20px;
    text-align: center;
    margin: 0;
}


/*  ================================ 1. Header Area ================================ */
.main-header {
    position: fixed;
    z-index: 3;
    background: hsl(0deg 0% 100% / 2%);
    backdrop-filter: blur(21.30136871px);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.main-header.scrolled {
    /* background: hsl(0deg 0% 100% / 5%); */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(5px); */
}

.header-btn{
    display: flex;
    gap: 12px;
}
.navbar .logo img {
    width: 90px;
}
.main-header::before {
    /* content: ""; */
    position: absolute;
    left: 0;
    top: 0;
    background: var(--base-color);
    width: 90%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(100% 0, 100% calc(100% - 90px), calc(100% - 70px) 100%, 0 100%, 0 0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0px;
    color: #fff;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.navbar .logo h4 {
    font-size: 30px;
    font-weight: bold;
    color: var(--light-color);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    padding: 0 20px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    /* font-family: var(--font-style); */
    letter-spacing: 2px;
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.right-button {
    position: relative;
    transition: 300ms ease-in-out;
    color: var(--light-color);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    /* font-family: var(--font-style); */
    width: max-content;
    line-height: 20px;
    animation: 0.5s fadeInLeft both;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 85px;
        left: 0;
        background: var(--light-color);
        text-align: center;
        height: auto;
        padding: 5px 0px;
    }

    .nav-links.active {
        display: block;
        color: var(--base-color) !important;
    }

    .hamburger {
        display: block;
        background: var(--main-gredients);
        padding: 0px 8px;
        z-index: 0;
        width: 40px;
        text-align: center;
        border-radius: 5px;
        height: 40px;
        line-height: 40px;
        color: var(--dark-color);
    }
}

.active {
    color: #d5b54c !important;!i;!;
}

.all-span {
    background: var(--main-gredients);
    background-clip: text;
    color: transparent;
}


/*  ================================  2. slider area Start ================================ */
.hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner .right-button{
    /* margin: auto; */
}

.main-banner {
    padding: 200px 0px 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 800px;
}
/* .main-banner::before {
    content: "";
    background-color: #977017;
    height: 432px;
    width: 987px;
    opacity: .6;
    position: absolute;
    top: -225px;
    right: -590px;
    filter: blur(170px);
    z-index: -1;
    border-radius: 100%;
} */
.main-h1 {
    text-transform: capitalize;
    font-size: 40px;
    font-family: var(--font-style);
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 15px;
    color: var(--light-color);
    line-height: 1.3;
}
.slider-table
{
}
.slider-table-cell {
    position: relative;
    z-index: 99;
}

.slider-table-cell h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin: 10px 0;
    font-family: 'Shadows Into Light', cursive;
    text-transform: capitalize;
}

.slider-table-cell p {
    margin: 10px 0px 0px;
    text-transform: capitalize;
    color: var(--light-color);
}


/* crousel css start from here  */
.main-banner-2 {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}
 
.owl-item.active .slide-content {
    animation: slideFromBottom 1s ease-out;
}

@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content {
    background: var(--main-gredients);
    /* color: white; */
    padding: 8px;
    /* text-align: center;
    font-size: 24px; */
    border-radius: 10px;
    /* height: 330px; */
    display: flex;
    align-items: center;
    justify-content: center; 
}
.slide-content img{
    border-radius: 10px;
}
/* Custom Nav Arrows */
    .owl-nav {
        display: flex;
        justify-content: space-around;
        position: absolute;
        width: 100%;
        bottom: -1%;
    }

    .owl-nav button {
        background: rgba(0, 0, 0, 0.5);
        color: white !important;
        border: none;
        padding: 10px 15px;
        font-size: 30px !important;
        font-weight: 700 !important;
        cursor: pointer;
        border-radius: 50%;
    }

.owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Custom Numbered Pagination */
.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    background: #888 !important;
    color: #fff !important;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin: 5px 10px;
    display: inline-block;
    border-radius: 50%;
    transition: 0.3s;
    font-family: Arial, sans-serif;
}

.owl-dots .owl-dot.active {
    background: var(--main-gredients) !important;
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
}

/*  ================================  2. slider area End  ================================ */


.top-tioker{
    position: relative;
    /* padding: 15px 0px 6px; */
    /* background: transparent; */
    /* z-index: 2; */
    /* margin-top: -121px; */
}
/*  ================================ 3. About Area Start ================================ */
.about-area {
    position: relative;
    padding: 120px 0px 60px;
    z-index: 1;
    overflow: hidden;
}
.about-area::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(..//img/bg/white-bg.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: brightness(0.5);
  }
.about-area::after {
    /* content: ""; */
    display: block;
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .5;
    position: absolute;
    top: 0px;
    left: -590px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
}
.about-area .right-button {
    color: var(--light-color);
}
.about-area  .all-h2-light{border-left: 4px solid #eadb79;padding-left: 15px;} 
.about-img {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-right: 70px;
}

.about-img .img-1 {
    /* width: 500px; */
} 

.about-right {  
padding: 40px 25px; 
border-radius: 10px; 
border: 3px dotted var(--base-color); 
position: relative; 
z-index: 1; 
margin-top: 95px;
}  
.about-area .about-bg .vision{
    margin-top: 25px;
}
.about-area .about-bg .all-h4-light{
    border: 1px solid #ffffff4a;
    width: max-content;
    padding: 10px 21px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.about-area .about-bg {
    /* padding: 40px 30px; */
    /* background: #ffffff1c; */
    /* border-radius: 10px; */
    position: relative;
    /* background: hsl(0deg 0% 12.16%); */
    /* border-color: #4a4a4a47; */
    z-index: 1;
}
/* .about-area .about-bg::before {
  content: '';
  position: absolute;
  left: 40px;
  top: -70px;
  width: 90px;
  height: 128px;
  background: url(../img/about/arrow-left.png);
  background-repeat: no-repeat;
  filter: invert(1);
}
.about-area .about-bg::after {
    content: '';
    position: absolute;
    right: 40px;
    top: -70px;
    width: 90px;
    height: 128px;
    background: url(../img/about/arrow-right.png);
    background-repeat: no-repeat;
    filter: invert(1);
} */
.about-area .section-title {
    text-align: left;
    padding-bottom: 0;
}

/*  ================================ 3. About Area End ================================ */

/*  ================================  4. services-area Start ================================ */
.services-area .right-button{
    margin: auto;
}
.services-area {
    position: relative;
    padding: 60px 0px 60px;
    z-index: 1;
    overflow: hidden;
}
.services-area::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(..//img/bg/white-bg.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: brightness(0.5);
  }
.services-area::before {
    content: "";
    display: block;
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .5;
    position: fixed;
    top: 50%;
    left: -590px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
}
   
.service-box{
    padding: 20px 15px;
    border: 0.1px solid rgb(255 179 0 / 19%);
    border-radius: 4px;
    /* box-shadow: 0px 1px 20px 0px rgb(255 181 0 / 18%); */
    /* background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */
    text-align: center;
    background: hsl(0deg 0% 12.16%);
    border-color: #4a4a4a47;
    transition: all .3s ease-in-out;
}  
.service-box:hover{
    transition: all .3s ease-in-out;
    border: 1px solid #d2b14785;
}  
.services-img{
    width: 100px;
    /* height: 100px; */
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: inset 0 0 10px 5px #000; */
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
    margin: auto;
    /* background: hsl(0deg 0% 100% / 7%); */
    border-color: #4a4a4a47;
} 
.services-img img{
    width: 70px;
} 
 
 

/*  ================================  4. services-area End ================================ */


 
/*  ================================  7. How-it-work Start ================================ */

.How-it-work {
    padding: 60px 0px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.How-it-work::after{
    content: "";
    position: absolute;
    left: 15px;
    top: 100px;
    right: 0;
    bottom: 0;
    background: url(..//img/logo/logo.png);
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: contain;
    margin: auto;
    z-index: 1;
    border-radius: 10px;
    background-repeat: no-repeat;
  }
.How-it-work::before {
    /* content: ""; */
    background-color: #977017;
    height: 400px;
    width: 900px;
    opacity: .6;
    position: absolute;
    top: -1px;
    right: -590px;
    filter: blur(170px);
    z-index: -1;
    border-radius: 100%;
} 
.How-it-work .right-button{
    margin: auto;
}
.process-content {
    padding: 25px 90px 25px 20px;
    /* margin-top: 15px; */
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background: hsl(0deg 0% 12.16%);
    border-color: #4a4a4a47;
    overflow: hidden;
} 
.process-circle-1{
    content: "";
    position: absolute;
    right: -130px;
    bottom: -130px;
    background: transparent;
    width: 250px;
    height: 250px;
    border: 20px solid #e0c8638a;
    border-radius: 10%;
    z-index: -1;
    opacity: 0.1;
}
.process-circle-2{
    content: "";
    position: absolute;
    left: -130px;
    bottom: -130px;
    background: transparent;
    width: 250px;
    height: 250px;
    border: 20px solid #e0c8638a;
    border-radius: 10%;
    z-index: -1;
    opacity: 0.1;
}
.process-circle-3{
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    background: transparent;
    width: 250px;
    height: 250px;
    border: 20px solid #e0c8638a;
    border-radius: 10%;
    z-index: -1;
    opacity: 0.1;
}
.process-circle-4{
    content: "";
    position: absolute;
    left: -130px;
    top: -130px;
    background: transparent;
    width: 250px;
    height: 250px;
    border: 20px solid #e0c8638a;
    border-radius: 10%;
    z-index: -1;
    opacity: 0.1;
}

.con-1 .process-card_number {
    right: 0;
}

.con-3 .process-card_number {
    right: 0;
    bottom: 0;
    top: auto;
    border-radius: 15px 0px 0px 0px;
}

.process-content.text-2 {
    text-align: end;
    padding: 25px 20px 25px 90px;
}
.process-content.text-4 {
    text-align: end;
    padding: 25px 20px 25px 90px;
}
.text-2 .process-card_number   {
    left: 0;
    border-radius: 0px 0px 16px 0px;
}
.text-4 .process-card_number   {
    left: 0;
    border-radius: 0px 15px 0px 0px;
    bottom: 0;
    top: auto;
}

.process-card p {
    /* color: var(--dark-color); */
}
.process-card_icon img {
    width: 50px;
}

.process-card-area .process-line {
    position: absolute;
    left: 0;
    top: 155px;
    width: 72%;
    height: 3px;
    background: #eef1f7;
    margin: auto;
    right: 0;
}

.process-card {
    position: relative;
    /* text-align: center; */
}

.process-card_icon {
    /* display: inline-block; */
    /* margin-bottom: 30px; */
    position: relative;
    background: #098574;
    padding: 10px;
    border-radius: 50px;
}
.process-icon{
    position: relative;
    background: hsl(0deg 0% 100% / 11%);
    padding: 8px;
    border-radius: 50px;
    width: 60px;
    /* margin: auto; */
    text-align: end;
    display: inline-block;
    margin-bottom: 5px;
}
.process-card_icon:after {
    content: '';
    /* position: absolute; */
    left: 50%;
    bottom: -25px;
    width: 12px;
    height: 10px;
    /* border-top: solid 10px #ffffff; */
    /* border-left: solid 10px transparent; */
    /* border-right: solid 10px transparent; */
    /* transform: translate(-50%, 0); */
}

.process-card_number {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    /* -webkit-text-stroke: 3px #ffffff; */
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--font-style);
    background: var(--main-gredients);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 0px 0px 0px 15px;
}

.process-card .box-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 22px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}



.outer-box {
    position: relative;
    padding: 60px 40px 60px;
    border-radius: 30px;
    background: #232530a3;
    border: 2px solid #ffffff0f;
    overflow: hidden;
    z-index: 1;
}

.outer-box::before {
    content: "";
    position: absolute;
    left: -6%;
    bottom: -6%;
    background: var(--base-color);
    width: 250px;
    height: 250px;
    background-position: top;
    background-size: cover;
    z-index: -1;
    background-repeat: no-repeat;
    filter: blur(20px);
    opacity: 0.2;
    border-radius: 50%;
}

.outer-box::after {
    content: "";
    position: absolute;
    right: -6%;
    top: -6%;
    background: var(--base-color);
    width: 250px;
    height: 250px;
    background-position: top;
    background-size: cover;
    z-index: -1;
    background-repeat: no-repeat;
    filter: blur(20px);
    opacity: 0.2;
    border-radius: 50%;
}

/*  ================================  7. How-it-work End ================================ */

/*  ================================ 5. why-choose-area Start  ================================ */
.why-choose-area {
    padding: 60px 0px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.why-choose-area::before{
    /* content: ""; */
    background-color: #977017;
    height: 400px;
    width: 900px;
    opacity: .6;
    position: absolute;
    top: -1px;
    right: -590px;
    filter: blur(170px);
    z-index: -2;
    border-radius: 100%;
} 
.why-choose-area .right-button {
    margin: auto;
}
.why-choode-content{
    
margin-bottom: 20px;
} 
.why-choose-img{
    position: relative;
    z-index: 1;
}
 
/*  ================================ 5. why-choose-area End  ================================ */
 
/*  ================================  6. key-featurtes Start ================================ */
.key-featurtes {
    position: relative;
    padding: 60px 0px 60px;
    z-index: 1;
    overflow: hidden;
}
.key-featurtes::before {
    /* content: ""; */
    display: block;
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .5;
    position: absolute;
    top: -0px;
    left: -590px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
}
.key-featurtes::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(..//img/bg/white-bg.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: brightness(0.5);
}
.key-featurtes .section-title {
    text-align: left;
} 
.main-key-features {
    position: relative;
    z-index: 1;
} 
.features {
    position: relative;
    box-shadow: 0 1px 3px rgb(255 255 255 / 42%);
    background: hsl(0deg 0% 12.16%);
    padding: 20px 80px 20px 15px;
    z-index: 1;
    width: 100%;
    margin-bottom: 20px;
} 
.features:hover p,
.features:hover h4
{
    /* color: var(--light-color); */
}
.features:hover img{
    filter: none;
} 
.key-featurtes .right-button {
    margin: inherit;
}
.key-featurtes .main-features-img{
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.key-featurtes .main-features-img img{
    height: 500px;
    object-fit: contain;
} 
.features .features-img {
    width: 65px;
    /* margin: 0 auto; */
    /* margin-bottom: 15px; */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translatey(-50%);
}
  

/*  ================================  6. key-featurtes End ================================ */

 

/*  ================================ 10.  Faq-area start ================================ */

.Faq-area {
    padding: 60px 0px 60px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.Faq-area::before {
    /* content: ""; */
    display: block;
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .5;
    position: absolute;
    top: -0px;
    left: -590px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
}
.Faq-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(..//img/bg/white-bg.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: brightness(0.5);
}
.faq-img {
    position: relative;
    text-align: center;
}
.faq-img-1 {
    position: relative;
    filter: grayscale(1);
}
.faq-img-2 {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}
.Faq-area .right-button{
    margin: auto;
}

#accordion .accordion-item {
    border: none;
    box-shadow: none;
    margin: 0 0 15px 0px;
    border-radius: 10px;
}

#accordion .accordion-header {
    padding: 0;
    border-radius: 30px;
}

#accordion .accordion-button {
    padding: 12px 15px 12px 15px;
    background: var(--main-gredients);
    font-size: 18px;
    color: var(--light-color);
    border: 1px solid transparent;
    position: relative;
    transition: all 0.3s ease 0s;
    /* font-family: var(
    --font-style); */
    letter-spacing: 1px;
    font-weight: 700;
    background: hsl(0deg 0% 12.16%);
    border-color: #4a4a4a47;
}

#accordion .accordion-button.collapsed {
    /* background: var(--main-gredients); */
    color: var(--light-color);
    border: 1px solid #ddd;
    /* border-radius: 10px; */
    background: hsl(0deg 0% 12.16%);
    border-color: #4a4a4a47;
}

#accordion .accordion-button::after,
#accordion .accordion-button.collapsed::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    font-size: 20px;
    color: #fff;
    text-align: center;
    border: 1px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.58);
    position: absolute;
    top: 50%;
    right: -20px;
    transition: all 0.3s ease 0s;
    transform: translatey(-50%);
}

#accordion .accordion-button.collapsed::after {
    content: "\f105";
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    color: #fff;
    border: 2px solid #ffffff;
    box-shadow: none;
}

#accordion .accordion-body {
    padding: 20px 25px 10px 9px;
    background: #000000;
    font-size: 14px;
    color: #8c8c8c;
    line-height: 25px;
    border-top: none;
    position: relative;
}

#accordion .accordion-body
    p {
    /* padding-left: 20px; */
    /* border-left: 4px dashed var(--base-color); */
}

/*  ================================ 10.  Faq-area End ================================ */

 

/*  ================================ 10.  Contact Us Area End ================================ */
 

/**(************** .footer-area******************* */
.footer-area {
    padding: 60px 0px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-area::before {
    /* content: ""; */
    display: block;
    background: #977017;
    height: 500px;
    width: 700px;
    opacity: .5;
    position: absolute;
    top: -1px;
    left: -250px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
}
.footer-area::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(..//img/bg/white-bg.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: -1;
    filter: brightness(0.5);
}
/* @keyframes rotate360 {
    0% {
      transform: rotateZ(-80deg);
    }
    50% {
      transform: rotateZ(80deg);
    }
    100% {
      transform: rotateZ(-80deg);
    }
  }
  @keyframes borderRotate {
    100% {
      transform: rotate(1turn);
    }
  } */
/* .footer-area::after {
    content: "";
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: url(../img/bg/trading-bg.jpg);
    z-index: -2;
    opacity: 0.2;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.footer-content{ 
    margin-top: 30px;
}
.bg-trans {
    background-color: transparent !important;
}

.footer-logo img{width: 170px;}
.footer-logo{
    text-align: center;
}
/****************** copy-right **********************/
.copy-right{
    position: relative;
    color: var(--light-color);
    letter-spacing: 1.5px;
    padding: 15px 0px;
    font-size: 16px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    font-weight: 700;
    margin-bottom: 50px;
    z-index: 12;
    background: #ffffff1c;
}

.copy-right-text {
   
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links
    li a {
    color: var(--light-color);
    font-weight: 700;
    font-size: 16px;
    padding: 0px 20px;
    /* font-family: var(--font-style); */
    /* background: hsl(0deg 0% 100% / 11%); */
    /* border-color: #4a4a4a47; */
    border-radius: 4px;
}
    @media (max-width:500px) {
    .footer-menu ul {
        display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
    }
}

.all-btn {
    margin-top: 25px;
    display: flex;
    justify-content: START;
    gap: 7px;
}

/*  ================================ footer css End  ================================ */



/******************************* jump to top Buttton************************/

#jump-button {
    display: inline-block;
    background: var(--base-color);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  #jump-button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
  }
  #jump-button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #jump-button:active {
    background-color: #555;
  }
  #jump-button.show {
    opacity: 1;
    visibility: visible;
  }
  
/******************************* jump to top Buttton************************/
.em_bar_bg {
    height: 5px;
    width: 100px;
    background: var(--dark-color);
    margin: 7px auto 0px;
    position: relative;
    margin-left: unset;
    border-radius: 30px;
    animation: 0.5s fadeInLeft both;
    float: right;
    margin-left: 15px;
}
.em_bar_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--base-color);
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}
    @keyframes fadeInLeft {
    0% {
        opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)}

    to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)}
}
    @keyframes MOVE-BG {
    from {
      -webkit-transform: translateX(0);
    transform: translateX(0);
    }
    to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
    }
  } 
/*  ================================ 10.  Faq-area End ================================ */


/*  ================================  11.Contact Us Area strat ================================ */

.contact-area {
    z-index: 1;
    position: relative;
    padding: 60px 0px 60px;
    overflow: hidden;
}

.contact-area .right-button {margin: auto;}

.contact-area::before {
    content: "";
    display: block;
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .5;
    position: absolute;
    top: -0px;
    right: -590px;
    z-index: -1;
    filter: blur(170px);
    border-radius: 500px;
} 

.contact-form-area {
    background: var(--dark-color);
    backdrop-filter: blur(2px);
    padding: 35px 25px 25px 25px;
    border-radius: 20px;
    border: 1px solid #ffffff5e;
    text-align: center;
}

.contact-info-content {
    position: relative;
}

.contact-info-content h2 {
    font-size: 26px;
    text-transform: capitalize;
}

.contact-info-content p {
    margin: 10px 0 0;
}

.form-content {
    position: relative;
    margin-bottom: 20px;
}

.form-content span {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--base-color);
    height: 100%;
    border-right: 1px solid #ffffff3d;
    width: 40px;
    line-height: 57px;
    text-align: center;
}

.form-content span i {
    font-size: 20px;
    color: #ffffff9e;
}

.form-content input {
    height: 50px;
    border: 0.5px solid #ffffff5e;
    padding: 10px 10px 10px 50px;
    background: #000000 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: none;
    border: 0.5px solid #ffffff5e;
    box-shadow: none !important;
}

textarea {
    height: 150px !important;
    margin: 0 0 30px;
    padding: 15px 10px !important;
    border: 0.5px solid #ffffff5e !important;
    background: #000000 !important;
    color: #fff !important;
}

.submit-btn a {
    margin: auto;
}

.contact-img {
    position: relative;
}

.con-img-1 {
    position: relative;
    filter: grayscale(1);
}

/*  ================================ 10.  Contact Us Area End ================================ */


/*  ================================ 12. Footer Area ================================ */


.Community-area {
    padding: 60px 0px 60px;
    z-index: 1;
    position: relative;
    margin-top: 1px;
    overflow: hidden;
} 
.Community-area::before {
    /* content: ""; */
    background-color: #977017;
    height: 400px;
    width: 900px;
    opacity: .6;
    position: absolute;
    top: -1px;
    right: -590px;
    filter: blur(170px);
    z-index: -1;
    border-radius: 100%;
}
.Community-area p{
    /* color: var(--dark-color); */
}
.join-comunity {
    padding: 60px 400px 60px 30px;
    position: relative;
    border: 2px solid #ffffff14;
    border-radius: 30px;
    z-index: 1;
    background: #1f1f1f;
    border-color: #4a4a4a47;
}
.join-comunity .section-title{
    text-align: left;
} 
.join-img img {
    position: absolute;
    content: "";
    right: 0px;
    bottom: 0;
    width: 500px;
    height: auto;
    z-index: -1;
    /* object-fit: contain; */
    } 
/* 
.join-comunity::after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: url(../img/bg/grid.png);
    background-position: center;
    z-index: -2;
    opacity: 0.2;
    background-size: cover;
    filter: contrast(0.5);
    background-repeat: no-repeat;
} */
 
.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
 

.socials a {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.socials a i {
    font-size: 20px;
    transition: color .4s ease;
    border: 5px Double #ffffff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    line-height: 40px;
    color: var(--dark-color);
    background: var(--main-gredients);
}

.socials a:hover i {
    color: #fff;
}


/******************************* jump to top Buttton************************/

#jump-button {
    display: inline-block;
    background: var(--main-gredients);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  #jump-button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
  }
  #jump-button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #jump-button:active {
    background-color: #555;
  }
  #jump-button.show {
    opacity: 1;
    visibility: visible;
  }
  
/******************************* jump to top Buttton************************/
.em_bar_bg {
    height: 5px;
    width: 100px;
    background: var(--light-color);
    margin: 7px auto 0px;
    position: relative;
    margin-left: unset;
    border-radius: 30px;
    animation: 0.5s fadeInLeft both;
    float: right;
    margin-left: 15px;
}
.em_bar_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-gredients);
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes MOVE-BG {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(88px);
              transform: translateX(88px);
    }
  }

  /*////////////////////////////////// Forex-Heatmap////////////////////////// */
  .Forex-Heatmap{
    position: relative;
    padding: 60px 0px 60px;
    z-index: 1;
    overflow: hidden;
  }
  .Forex-Heatmap::before {
    content: "";
    background: #977017;
    height: 400px;
    width: 900px;
    opacity: .6;
    position: fixed;
    top: 0px;
    right: -590px;
    filter: blur(170px);
    z-index: -1;
    border-radius: 100%;
}
  .Forex-Heatmap .right-button{
  margin: auto;
  }

.tradingview-widget-container{
    width: 100% !important;
} 
.ticker-wrapper{
    position: fixed;
    overflow: hidden;
    width: 100%;
    padding: 15px 0px 8px;
    height: 60px;
    left: 0;
    /* top: 0; */
    bottom: 0;
    z-index: 999;
}
.single-ticker{
    position: absolute;
    bottom: -30px;
    left: 0px;
    right: 0px;
    margin: auto;
}

 .active-btn{
    background-size: 200% 100%;
    background-position: 0 0;
    text-transform: math-auto;
    padding: 10px 15px 10px;
    border-radius: 10px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 1s ease;
    color: var(--light-color);
    font-size: 15px;
    font-weight: 700;
 } 
 .accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow:none;
}
.btn:focus {
    z-index: 3;
    outline: 0;
    box-shadow:none;
}