@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 
font-family: "Geist", sans-serif;
font-family: "Inter", sans-serif;
font-family: "Poppins", sans-serif;
font-family: "Albert Sans", sans-serif;
*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    scroll-padding: 7rem;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
::-moz-selection {
    background-color: #007d9d;
    color: #fff;
    text-shadow: none;
}
::selection {
    background-color: #000;
    color: #fff;
    text-shadow: none;
}
:root {
    --black:#1E1E1E;
    --white:#ffff;
    --gray:#414141;
    --olive:#000030;
    --inter:"Inter", sans-serif;
    --geist:"Geist", sans-serif;
    --poppins:"Poppins", sans-serif;
    --albert:"Albert Sans", sans-serif;
    --default-trans:all 0.3s ease-in-out;
}
body {
    margin: 0 !important;
    padding: 0 !important;
    padding-right: 0 !important;
    font-size: 16px;
    outline: none;
    overflow-x: hidden !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
    color: var(--white) !important;
    font-family: var(--poppins) !important;
    position: relative;
    background: #030303 !important;
}
.container{
    margin: 0 auto !important;
    padding: 0 15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--poppins) !important;
    font-weight: 600 !important;
}
b{
    font-weight: 700 !important;
}
ul {
    list-style: none;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto !important;
    display: block;
}

a,
button,
input {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
}

.bg_cover {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* DEFAULT CSS SETTING END */

/* SLICK SLIDER CSS START */

.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* SLICK SLIDER CSS END */

#preloader {
    background: #ffffff;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.loader_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* HEADER START */
header {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    transition: var(--default-trans);
}
.sticky {
    transition: var(--default-trans);
}
.header_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding: 25px 35px;
    border: 1px solid #3C2D18;
    background: #040301;
    border-radius: 1000px;
    margin-top: 30px;
    transition: var(--default-trans);
}
.sticky .header_wrapper {
    margin-top: 5px;
}
.nav-mail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.nav_and_mail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_and_mail .nav_sec {
    margin: 0;
    padding: 0;
}
.nav_and_mail .nav_sec ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0px;
    gap: 25px;
}
.nav-mail i {
    font-size: 30px;
    font-weight: 400 !important;
    display: inline-block;
    color: var(--white);
}
.nav-mail span, .nav-mail b,.nav-mail a{
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
    display: block;
    color: var(--white);
}
.nav-mail b{
    font-size: 16px;
}
.nav-mail a{
    transition: var(--default-trans);
    margin-top: 15px;
}
.nav-mail a:hover{
    color: var(--olive);
}
.nav_and_mail .nav_sec ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0px;
    position: relative;
}
.nav_and_mail .nav_sec ul li a {
    display: block;
    position: relative;
    color: #fff;
    z-index: 99;
    text-align: left;
    transition: var(--default-trans);
    vertical-align: middle;
    text-transform: capitalize;
    line-height: 100%;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    border-radius: 1000px;
    border: 1px solid transparent;
}
.nav_and_mail .nav_sec ul li.active>a,.nav_and_mail .nav_sec ul li a:hover{
    color: #0E0E0E;
    border: 1px solid #E9D46D;
    background: linear-gradient(180deg, #EBD56F 0%, #B1853E 100%);
}


.nav_and_mail .nav_sec ul li.active>a:before,
.nav_and_mail .nav_sec ul li.current-menu-item>a:before {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.nav_and_mail .nav_sec ul li:hover>a::before,
.nav_and_mail .nav_sec ul li.active>a::before,
.nav_and_mail .nav_sec ul li.current-menu-item>a {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.nav_and_mail .nav_sec ul li.cmn-btn{
    display: none !important;
}
.nav_and_mail .nav_sec ul li ul {
    position: absolute;
    left: 0px;
    width: 210px;
    background-color: #313131;
    background-color: white;
    box-shadow: 0 .25rem 2.5rem rgba(26, 26, 37, .15);
    border: none;
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 180%;
    transition: 0.3s;
    pointer-events: none;
    z-index: 111;
    border-radius: 7px;
    overflow: hidden;
    padding: .625rem;
}
.nav_and_mail .nav_sec ul li:hover ul {
    display: block;
    top: 110%;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.nav_and_mail .nav_sec ul li ul li {
    width: 100%;
    margin: 0;
    padding: 0;
}
.nav_and_mail .nav_sec ul li ul li+li {
    border-top: 1px solid var(--olive);
}
.nav_and_mail .nav_sec ul li ul li a {
    margin: 0;
    padding: 7px 10px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    color: var(--black);
}
.nav_and_mail .nav_sec ul li ul li a:hover {
    color: #0E0E0E !important;
    background: linear-gradient(180deg, #EBD56F 0%, #B1853E 100%) !important;
}
.nav_and_mail .nav_sec ul li ul li a:hover::before {
    opacity: 1;
    background-position: left;
    background-size: contain;
    bottom: -5px;
}
.nav_and_mail .nav_sec ul li ul li.active>a{
    color: var(--olive);
}
span.toggle-menu {
    display: none;
}
.nav_and_mail .nav_sec ul li .arw-nav {
    width: 15px;
    height: 8px;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 999;
    cursor: pointer;
    background: url(images/arw.png) no-repeat center;
    background-size: contain;
}
/* HEADER END */


/* banner start  */
.banner {
    position: relative;
    padding-top: 250px;
    padding-bottom: 265px;
}
.banner::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 580px;
    content: "";
    background: url(images/banner_wave.png) no-repeat center;
    background-size: cover;
}
.scroll_sec {
    position: absolute;
    font-family: var(--inter) !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #292929;
    right: -40px;
    bottom: -100px;
    z-index: 9;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: row-reverse;
}
.scroll_sec svg{
    transform: rotate(90deg);
}
.banner>img{
    position: absolute;
    right: 0;
    top: 0;
}
.banner_text{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.banner_text h4{
    font-size: 48px;
    line-height: 100%;
    padding-left: 175px;
    background: -webkit-linear-gradient(180deg, #FFFFFF 25.69%, #E0E0E0 77.08%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.banner_text h2{
    font-size: 230px;
    line-height: 120%;
    background: -webkit-linear-gradient(360deg, #DEDEDE 16.51%, #FFFFFF 83.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-top: -70px;
  padding-left: 270px;
}
.banner_text h3 {
    position: relative;
    font-size: 52px;
    line-height: 100%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 25.69%, #E0E0E0 77.08%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -50px;
    padding-left: 355px;
    padding-bottom: 10px;
}
.banner_text h1 {
    position: relative;
    font-size: 420px;
    line-height: 120%;
    background: -webkit-linear-gradient(270deg, #F5E17B 6.13%, #BB9447 92.03%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 650px;
    margin-top: -320px;
    letter-spacing: -35px;
    z-index: 1;
}
.banner_text h5 {
    position: relative;
    font-size: 50px;
    line-height: 120%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 0%, #DEDEDE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 295px;
    z-index: 1;
    margin-top: -70px;
}
.banner_text h6 {
    position: relative;
    font-size: 80px;
    line-height: 120%;
    background: -webkit-linear-gradient(180deg, #FBE477 20.92%, #B1853F 92.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 435px;
    z-index: 1;
    margin-top: -20px;
    padding-bottom: 5px;
}
.banner_text h1:after{
    position: absolute;
    left: 0;
    top: 0;
}
.banner_text .flt_img img:first-child {
    position: absolute;
    left: -20px;
    top: 105px;
    z-index: 1;
}
.banner_text .flt_img img:nth-child(2) {
    position: absolute;
    right: -60px;
    bottom: 95px;
    z-index: 2;
}
.banner_text .flt_img img:nth-child(3) {
    position: absolute;
    right: -45px;
    bottom: 37%;
    z-index: 1;
    display: none;
}
.banner_text .flt_img img:nth-child(4) {
    position: absolute;
    left: 46%;
    top: 55%;
    z-index: 1;
}
.banner_text .flt_img img:nth-child(5) {
    position: absolute;
    right: -25%;
    top: -40%;
    z-index: 1;
}
.down_banner_title{
    position: relative;
}
.down_banner_title img:nth-child(1) {
    position: absolute;
    left: 265px;
    top: -70px;
}
.down_banner_title img:nth-child(2) {
    position: absolute;
    right: 40px;
    bottom: 30px;
}
/* banner end  */


/* about_sec start  */
.cmn_title h3{
    position: relative;
    font-size: 42px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 40px;
}
.cmn_title em{
    position: relative;
    display: inline-block;
    font-style: normal;
}
.cmn_title h3 em:after ,.cmn_title h2 em::after{
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translate(-50%,0);
    width: 100%;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='389' height='9' viewBox='0 0 389 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.059082 7.1841C79.0591 2.51743 267.259 -4.0159 388.059 7.1841' stroke='%23EAD46E' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
}
.cmn_title h2 em::after{
    background-image: url("data:image/svg+xml,%3Csvg width='347' height='12' viewBox='0 0 347 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0739746 10.9387C101.074 3.43873 311.574 -7.06127 345.574 10.9387' stroke='%23EAD46E' stroke-width='2'/%3E%3C/svg%3E%0A");
}
.cmn_title p{
    font-weight: 600;
    font-size: 22px;
    line-height: 140%;
    color: #B3B3B3;
}
.cmn_title p em{
    display: inline-block;
    color: var(--white);
    font-style: normal;
}
.cmn_title h2{
    font-size: 70px;
    line-height: 100%;
    color: var(--white);
    margin-bottom: 30px;
}
.cmn_title h5{
    font-family: var(--inter) !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 22px;
    color: #EED44C;
    border: 2px solid #B58940;
    background: linear-gradient(180deg, #21190E 0%, #21190E 100%);
    border-radius: 1000px;
    margin-bottom: 15px;
    display: inline-block;
}
.abt_txt {
    margin: 0 auto;
    margin-bottom: 50px;
    max-width: 1200px;
}
.abt_txt.cmn_title h2 em::after {
    background-image: url("data:image/svg+xml,%3Csvg width='643' height='8' viewBox='0 0 643 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.034668 7C130.751 2.47226 442.154 -3.86658 642.035 7' stroke='%23EAD46E' stroke-width='2'/%3E%3C/svg%3E%0A");
    bottom: -5px;
}
.abt_bx{
    border: 2px solid #2B2815;
    border-radius: 16px;
    padding: 23px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    height: 100%;
}
.abt_bx_text h4{
    font-size: 24px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 5px;
}
.abt_bx_text p{
    font-weight: 500;
    font-size: 19px;
    line-height: 120%;
    color: #919191;
    margin-bottom: 0;
}
.about_sec .row{
    justify-content: center;
}
.about_sec .row>*{
    margin-bottom: 16px;
}
.about_sec{
    padding-top: 25px;
    position: relative;
    z-index: 2;
    margin-top: -100px;
}
/* about_sec end  */


/* marque_sec start  */
.marque_sec_holder_main{
    position: relative;
    overflow: hidden;
}
.marque_sec_holder {
    transform: rotate(-4deg) !important;
    margin-top: 65px;
    background: linear-gradient(89.99deg, #CCA955 0.01%, #EDD14C 49.09%, #CCA955 98.17%);
    position: relative;
    margin-bottom: 100px;
}
.bg_back {
    position: absolute;
    left: 0;
    top: 80px;
    height: 80px;
    width: 100%;
    transform: rotate(-1deg) !important;
    background: #AA7E37;
    z-index: -1;
}
.marque_sec{
    padding: 20px 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    animation: 27.2863s linear 0s infinite normal none running infiniteslide;
    white-space: nowrap;
    gap:115px; 
    position: relative;
    z-index: 1;
}
.marque_sec em{
    position: relative;
    font-weight: 600;
    font-size: 54px;
    line-height: 120%;
    font-style: normal;
    color: #080809;
}
.marque_sec em b{
    padding: 0 20px;
    font-style: normal;
    color: #5D4112;
}
.marque_sec>*::after{
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translate(0,-50%);
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='37' height='37' viewBox='0 0 37 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5.38477' y='5' width='26' height='26' fill='%235D4112'/%3E%3Crect x='18.3848' width='26' height='26' transform='rotate(45 18.3848 0)' fill='%235D4112'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}
@keyframes infiniteslide{
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-2728.626px, 0, 0);
    }
}
/* marque_sec end  */


/* choose_sec start  */
.choose_sec{
    padding-bottom: 85px;
}
.choose_sec .cmn_title{
    max-width: 880px;
    margin: 0 auto;
}
.choose_sec .cmn_title h5{
    display: inline-block;
}
.chs_icn{
    margin-bottom: 40px;
    position: relative;
}
.chs_icn>img{
    position: absolute;
    left: 50%;
    top:55px;
    transform: translate(-50%,0);
    z-index: -1;
}
.chs_bx{
    height: 100%;
    padding: 30px;
    position: relative;
    border-radius: 16px;
    transition: var(--default-trans);
}
.chs_bx:hover{
    background: linear-gradient(180deg, #EBD56F 0%, #B78D43 100%);
}
.chs_bx:hover h4,.chs_bx:hover p{
    color: #030303;
}
.chs_bx_icn{
    margin-bottom: 30px;
}
.chs_bx_icn svg path{
    transition: var(--default-trans);
}
.chs_bx:hover .chs_bx_icn svg path{
    fill: #030303;
}
.chs_bx h4{
    font-size: 25px;
    line-height: 130%;
    color: var(--white);
    margin-bottom: 15px;
    transition: var(--default-trans);
}
.chs_bx p{
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 0;
    color: #BEBEBE;
    transition: var(--default-trans);
}
.choose_sec .row>*{
    margin-bottom: 25px;
}
.choose_sec .row>*:nth-child(odd) .chs_bx:after{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(360deg, #B0833D 0%, rgba(176, 131, 61, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.choose_sec .row>*:nth-child(even) .chs_bx:after{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(180deg, #B0833D 0%, rgba(176, 131, 61, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
/* choose_sec end  */


/* money_sec start  */
.money_sec{

}
.money_title{
    position: relative;
    max-width: 840px;
    margin: 0 auto;
}
.money_title>*{
    position: relative;
}
.money_title h3,.money_title h4{
    font-size: 70px;
    line-height: 110%;
    padding-left: 175px;
    background: -webkit-linear-gradient(180deg, #FFFFFF 0%, #E5E5E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.money_title h2{
    font-size: 133px;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #F2D779 25.86%, #BC9548 107.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -35px;
}
.money_title h4{
    padding-left: 450px;
    margin-top: -35px;
}
.money_title p em{
    color:#EBD56F;
    display: inline-block;
    font-style: normal;
}
.money_title p{
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 26px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 0;
}
.money_title>img{
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -100%;
    transform: translate(-50%,0);
}
.money_title .flt_img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.money_title .flt_img img{
    position: absolute;
}
.money_title .flt_img img:nth-child(1) {
    right: -12%;
    bottom: 75px;
    z-index: 1;
}
.money_title .flt_img img:nth-child(2) {
    left: 23%;
    top: 57%;
}
.money_title .flt_img img:nth-child(3){
    left:-10%;
    top: 10px;
}
.money_title .flt_img img:nth-child(4) {
    right: 25%;
    top: -6%;
}
/* money_sec end  */


/* tab_sec start  */
.tab_sec{
    padding: 100px 0;
    position: relative;
}
.tab_sec .cmn_title h2{
    margin-bottom: 50px;
}
.tab_content_holder{
    background: #0B0A08;
    border: 1.5px solid #8F692C;
    border-radius: 16px;
    padding: 32px;
}
#tab>ul{
    padding: 0;
    margin: 0;
    max-width: 395px;
    width: 100%;
    min-width: 395px;
}
#tab>ul li + li{
    margin-top: 10px;
}
#tab>ul li a{
    padding: 25px 30px;
    border: 2px solid #2B2815;
    display: block;
    border-radius: 16px;
    transition: var(--default-trans);
}
#tab > ul li.active a {
    background: linear-gradient(266.71deg, #EBD56F 0%, #B1853E 100%);
    border-color: #2B2815;
}

#tab > ul li.active a em {
    color: #664E20;
}

#tab > ul li.active a h6 {
    color: #0B0A06;
}

#tab>ul li a em{
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    display: inline-block;
    color: #DAC061;
    font-style: normal;
    margin-bottom: 5px;
    transition: var(--default-trans);
}
#tab>ul li a h6{
    font-size: 19px;
    line-height: 120%;
    margin-bottom: 0;
    color: var(--white);
    transition: var(--default-trans);
}
#tab>ul li a:hover{
    background: linear-gradient(266.71deg, #EBD56F 0%, #B1853E 100%);
}
#tab>ul li a:hover em{
    color: #664E20;
}
#tab>ul li a:hover h6{
    color: #0B0A06;
}
div#tab {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 90px;
}
.tab-body{
    flex-grow: 1;
}
.tab-body .tab-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.tab_img img{
    border-radius: 16px;
    max-width: 380px;
    min-width: 380px;
    width: 100%;
}
.tab_info{
    flex-grow: 1;
}
.tab_info h6{
    font-family: var(--inter) !important;
    font-weight: 700 !important;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 24%;
    text-transform: uppercase;
    padding: 10px 22px;
    color: #EED44C;
    background: linear-gradient(180deg, #21190E 0%, #21190E 100%);
    border: 2px solid #B58940;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 1000px;
}
.tab_info h4{
    font-size: 36px;
    line-height: 120%;
    color: var(--white);
    margin-bottom: 30px;
}
.tab_info ul{
    padding: 0;
    margin: 0;
    padding-top: 25px;
}
.tab_info ul li{
    font-family: var(--inter);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    color: var(--white);
    padding-left: 40px;
    position: relative;
}
.tab_info ul li + li{
    margin-top: 30px;
}
.tab_info ul li:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='26' height='26' rx='13' fill='url(%23paint0_linear_1_2864)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.1251 8.2375C20.5126 8.58 20.5489 9.1725 20.2064 9.5625L13.0189 17.6875C12.9359 17.7814 12.8349 17.8576 12.7219 17.9118C12.6089 17.966 12.4862 17.9969 12.3611 18.0029C12.2359 18.0088 12.1108 17.9896 11.9932 17.9464C11.8756 17.9032 11.7679 17.8368 11.6764 17.7513L6.98886 13.3763C6.80853 13.2063 6.70282 12.9719 6.69482 12.7242C6.68683 12.4766 6.77721 12.2358 6.9462 12.0546C7.1152 11.8734 7.34906 11.7664 7.59667 11.7571C7.84429 11.7478 8.08551 11.837 8.26761 12.005L12.2551 15.7175L18.8051 8.3175C18.8868 8.22512 18.9859 8.14975 19.0967 8.09572C19.2075 8.04169 19.3279 8.01005 19.451 8.00262C19.5741 7.99519 19.6974 8.01211 19.814 8.05241C19.9305 8.09272 20.0379 8.15562 20.1301 8.2375H20.1251Z' fill='black'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1_2864' x1='13' y1='26' x2='13' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23BB9147'/%3E%3Cstop offset='1' stop-color='%23E7CB6B'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
}
.tab_info ul li:before{
    position: absolute;
    left: 40px;
    bottom: -15px;
    width: 100%;
    height: 2px;
    background: url(images/line-bottom.png) no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
}
.tab_sec>img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
/* tab_sec end  */


/* ranking_sec start  */
.ranking_sec{
    position: relative;
}
.ranking_sec .cmn_title{
    position: relative;
    max-width: 1080px;
    margin: 0 auto 45px;
}
.ranking_sec .cmn_title img {
    position: absolute;
    right: 50px;
    top: 35px;
}
.ranking_sec .cmn_title h3{
    font-size: 116px;
    line-height: 110%;
    margin-bottom: 0;
    padding-left: 175px;
    background: -webkit-linear-gradient(180deg, #DFC665 10.71%, #B1863F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ranking_sec .cmn_title h4{
    font-size: 48px;
    line-height: 110%;
    margin-bottom: 0;
    background: -webkit-linear-gradient(180deg, #FEFEFE 0%, #DDDDDD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 495px;
    margin-top: -10px;
}
.ranking_sec .cmn_title h2{
    font-size: 133px;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 6.21%, #E1E1E1 87.93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -10px;
    margin-left: -20px;
    padding-bottom: 10px;
}
.glow_btn_sec {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.glow_btn_sec a{
    box-shadow: 0px -3px 0px 0px #EBD56F inset;
    box-shadow: 0px 1px 34px 0px #EBD56F99;
    background: linear-gradient(180deg, #EAD46E 0%, #B1853E 100%);
    font-family: var(--poppins);
    font-weight: 700;
    font-size: 21px;
    line-height: 110%;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    color: var(--black);
    border-radius: 1000px;
    padding: 30px 110px 30px 90px;
    transition: var(--default-trans);
}
.glow_btn_sec a svg{
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translate(0,-50%);
    transition: var(--default-trans);
}
.glow_btn_sec a:hover{
    background: -webkit-linear-gradient(180deg, #DFC665 10.71%, #B1863F 100%);
    color: var(--black);
}
.glow_btn_sec em{
    display: block;
    font-weight: 600;
    font-size: 39px;
    line-height: 120%;
    font-style: normal;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 22px;
}
.glow_btn_sec em b{
    color: #B88C41;
}
.ranking_btm_img>img {
    margin: 0 auto;
    position: relative;
    margin-top: -90px;
}
.ranking_sec .flt_img img:nth-child(1) {
    position: absolute;
    right: 13%;
    top: 9%;
}
.ranking_sec .flt_img img:nth-child(2) {
    position: absolute;
    left: 12%;
    top: 35%;
    z-index: 1;
}
/* ranking_sec end  */


/* course_sec start  */
.course_sec{
    padding: 40px 0 80px;
}
.course_sec,.course_sec .cmn_title{
    position: relative;
    z-index: 2;
}
.course_sec > img{
    position: absolute;
    left: 50%;
    top: -98px;
    transform: translate(-50%,0);
    z-index: 1;
}
.course_sec .cmn_title h2 em::after {
    bottom: -20px;
    height: 22px;
}
.course_expand_sec{
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}
.cr_text{
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    padding: 20px;
    position: absolute;
    left: 10px;
    z-index: 1;
    bottom: 15px;
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    transition: all 0.4s ease-in-out 0.2s;
    -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.expand_bx img{
    min-height: 670px;
    max-height: 670px;
    width: 100%;
    object-fit: cover;
    border: 1px solid black;
    border-radius: 16px;
    filter: grayscale(100%);
    transition: var(--default-trans);
}
.expand_bx{
    max-width: 195px;
    width: 100%;
    position: relative;
    transition: var(--default-trans);
}
.expand_bx:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(images/gr-bk.png) no-repeat;
    background-size: cover;
    opacity: 0;
    transition: var(--default-trans);
}
.expand_bx:hover{
    max-width: 100%;
}
.expand_bx:hover:after{
    opacity: 1;
}
.expand_bx:hover .cr_text {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.expand_bx:hover img{
    filter: grayscale(0%);
}
.course_expand_sec .expand_bx:nth-child(4){
    z-index: 2;
}
.course_expand_sec .expand_bx:nth-child(5){
    z-index: 1;
}
.course_expand_sec .expand_bx:nth-child(1),.course_expand_sec .expand_bx:nth-child(2) {
    margin-right: -20px;
}
.course_expand_sec .expand_bx:nth-child(5),.course_expand_sec .expand_bx:nth-child(6) {
    margin-left: -20px;
}
/* course_sec end  */


/* counters_sec start  */
.counters_sec{
    position: relative;
}
.counters_sec>img{
    position: absolute;
    left: 50%;
    top: -98px;
    transform: translate(-50%,0);
    z-index: -1;
}
.counters_sec .cmn_title h5{ 
    font-size: 22px;
    letter-spacing: 0;
    color: var(--white);
    text-transform: unset;
}
.counters_sec .cmn_title{ 
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}
.counters_sec .cmn_title h3{
    padding-left: 50px;
    font-size: 50px;
    text-align: left;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 21.15%, #DEDEDE 90.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}
.counters_sec .cmn_title h2{
    font-family: var(--albert) !important;
    margin-bottom: 0;
    font-weight: 800 !important;
    font-size: 140px;
    text-align: left;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #FBE477 20.92%, #B1853F 92.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -22px;
}
.counters_sec .cmn_title h4 {
    padding-left: 150px;
    font-size: 48px;
    text-align: left;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #FFFFFF 21.15%, #DEDEDE 90.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -20px;
    margin-bottom: 60px;
}
.timer{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 990px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 50px;
}
.timer_bx{
    padding: 32px;
    text-align: center;
    position: relative;
    width: 23%;
    margin: 0 8px;
}
.timer_bx:after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(180deg, #B0833D 0%, rgba(176, 131, 61, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.timer_bx em{
    display: block;
    font-family: var(--albert);
    font-weight: 700;
    font-size: 124px;
    line-height: 100%;
    font-style: normal;
    color: var(--white);
}
.timer_bx b{
    font-weight: 600 !important;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    color: #B88A43;
    display: block;
}
/* counters_sec end  */


/* certificate_sec start  */
.certificate_sec{
    position: relative;
}
.certificate_sec>img{
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%,0);
    z-index: -1;
    width: 100%;
}
.certificate_sec .cmn_title{
    padding-bottom: 50px;
    padding-top: 160px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.certificate_sec .cmn_title h2 em::after{
    height: 13px;
}
.certificate_sec .cmn_title p {
    font-size: 26px;
    line-height: 140%;
    color: #fff;
}
.certificate_sec .cmn_title h5{
    font-family: var(--inter) !important;
    font-weight: 700 !important;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    color: #EED44C;
    position: relative;
    background: transparent;
}
.certificate_sec .cmn_title h5:after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 1000px;
    background: linear-gradient(180deg, #E9D46D 0%, #B58940 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.certificate_sec .cmn_title p{
    margin-bottom: 0;
}
.crt_img{
    margin-bottom: 60px;
    position: relative;
}
.crt_img img:nth-child(2) {
    position: absolute;
    left: 50%;
    top: -350px;
    transform: translate(-50%, 0);
    z-index: -1;
}
.crt_img img{
    margin: 0 auto;
}
.certificate_sec .flt_img img{
    position: absolute;
}
.certificate_sec .flt_img img:nth-child(1) {
    left: 16%;
    top: 45%;
}
.certificate_sec .flt_img img:nth-child(2) {
    top: 38%;
    right: 17%;
}
.certificate_sec .flt_img img:nth-child(3) {
    top: 36%;
    right: 25%;
}
.certificate_sec .glow_btn_sec em{
    max-width: 349px;
    margin: 0 auto;
    text-align: center;
    padding: 25px 35px;
}
.certificate_sec .glow_btn_sec em:after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(0deg, #B0833D 0%, rgba(176, 131, 61, 0) 76.63%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
/* certificate_sec end  */


/* review_sec start  */
.review_sec {
    padding: 140px 0 100px;
    position: relative;
}
.review_sec>img{
    position: absolute;
    left: 50%;
    top: -200px;
    transform: translate(-50%,0);
    z-index: -1;
}
.review_sec .cmn_title h2 em::after {
    height: 10px;
}
.review_sec .cmn_title{
    padding-bottom: 40px;
}
.review_bx{
    position: relative;
    padding: 32px;
    border-radius: 16px;
    margin: 0 12px;
}
.review_bx:after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(180deg, #916B2D 0%, #8F692C 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.rev_top{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.rev_icn{
    min-width: 75px;
}
.rev_icn img{
    border-radius:50%;
    width: 75px;
    height: 75px !important;
    object-fit: cover;
}
.rev_title h4{
    font-family: var(--inter) !important;
    font-weight: 700 !important;
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 10px;
    color: var(--white);
}
.rev_title p{
    font-family: var(--inter);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #969696;
    margin-bottom: 0;
}
.rev_text ,.rev_text p{
    font-family: var(--inter);
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    color: var(--white);
    margin-bottom: 0;
}
/* review_sec end  */


/* mentor_sec start  */
.mentor_sec{
    position: relative;
    padding-bottom: 100px;
}
.mentor_sec > img{
    position: absolute;
    left: 50%;
    bottom:0px;
    z-index: -1;
    transform: translate(-50%,0);
}
.mentor_holder{
    max-width: 1365px;
    margin: 0 auto;
}
.mentor_sec .row{
    align-items: center;
}
.mentor_img img{
    margin: 0 auto;
}
.mentor_text h2{
    font-size: 50px;
    line-height: 110%;
    background: -webkit-linear-gradient(180deg, #F0E275 0%, #B58640 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.mentor_text h4{
    font-size: 23px;
   line-height: 110%;
   color: var(--white);
   margin-bottom: 30px;
}
.mentor_text P{
    font-family: var(--inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 200%;
    margin-bottom: 0;
    color: var(--white);
}
/* mentor_sec end  */


/* counters_sec start  */
.faq_sec{
    position: relative;
}
.my_carousel{
    max-width: 1495px;
    margin: 0 auto;
    position: relative;
    padding: 65px 3px 0px;
    background: #070707;
}
.my_carousel__swiper_normal{
    display: none !important;
}
.my_carousel .cmn_title{
    padding-bottom: 30px;
}
.my_carousel:after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(180deg, #916B2D 0%, #8F692C 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.overlay_img img{
    position: absolute;
    z-index: 9;
    height: 99% !important;
    top: 2px;
}
.overlay_img img:nth-child(1){
    left: 2px;
    border-radius: 16px 0 0 16px;
}
.overlay_img img:nth-child(2){
    right: 2px;
    border-radius: 0 16px 16px 0;
}
.faq_bx{
    position: relative;
}
.faq_bx:after{
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 55px;
    height: 55px;
    content: "";
    background: url(images/notch.png) no-repeat;
}
.faq_qn{
    background: linear-gradient(279.78deg, #B58B42 25.73%, #F2E177 89.23%);
    margin: 0 10px;
    padding: 25px 90px 25px 30px;
    position: relative;
}
.faq_qn em{
    font-family:var(--albert);
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: #BA9B4D;
    position: absolute;
    right: 15px;
    top: 12px;
    font-style: normal;
}
.faq_qn h6{
    font-family: var(--inter) !important;
    font-size: 18px;
    line-height: 110%;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #938339;
}
.faq_qn h3{
    font-size: 22px;
    line-height: 130%;
    text-transform: capitalize;
    color: #0C0B07;
    margin-bottom: 0;
}
.faq_ans {
    padding: 40px 37px;
    background: #1D1D1D;
    max-height: 330px;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
}
.faq_ans h6{
    font-family: var(--inter) !important;
    font-size: 18px;
    line-height: 110%;
    text-transform: capitalize;
    color: #6E6E6E;
    margin-bottom: 10px;
}
.faq_ans p{
    font-weight: 500;
    font-size: 17px;
    line-height: 190%;
    text-transform: capitalize;
    color: var(--white);
}
.faq_sec .swiper-pagination {
    max-width: 160px;
    margin: 65px auto 80px;
    position: relative !important;
    display: block;
}
.faq_sec .swiper-pagination-progressbar {
    height: 8px !important;
    background: #191918 !important;
    border-radius: 1000px !important;
    overflow: hidden;
}
/* .faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev.swiper-slide-fully-visible .faq_bx,
.faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev .faq_bx
{
    margin: 0 35px;
} */
.faq_sec .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #C49F4E !important;
}
.faq_sec .swiper-slide .faq_bx h3{
    display: none;
    transition: var(--default-trans);
}
.faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev.swiper-slide-fully-visible .faq_bx h3,
.faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev .faq_bx h3
{
   display: block;
}
.faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev.swiper-slide-fully-visible,
.faq_sec .swiper-slide.swiper-slide-visible.swiper-slide-prev
{
    padding: 0 60px;
}
.faq_sec .cmn_title h2 em::after {
    height: 12px;
}
/* counters_sec end  */


/* footer start  */
footer{
    padding: 90px 0;
    position: relative;
}
footer>img{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
}
.ft_f {
    text-align: center;
    position: relative;
}
.ft_f:after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #1B1C16;
    width: 100%;
    height: 1px;
    content: "";
}
.ft_f img {
    margin: 0 auto;
    padding: 0 50px;
    background: #030303;
    position: relative;
    z-index: 1;
}
.ft_btm{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}
.ft_btm p,.ft_btm p a{
    margin-bottom: 0;
    font-family: var(--geist);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #524F49;
    transition: var(--default-trans);
}
.ft_btm p a:hover{
    color: #B38840;
}
.ft_logo a{
    display: inline-block;
}
.ft_btm ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.ft_btm ul a{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #EAD76F 0%, #B38840 100%);
    transition: var(--default-trans);
    color: #030303;
    font-size: 20px;
    border-radius: 50%;
}
.ft_btm ul a:hover{
    transform: translateY(-7px);
}
/* footer end  */


/* <!-- back-to-top start  --> */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    z-index: 10;
}
.back_to_top a{
    position: relative;
    font-size: 53px;
    background: white;
    width: 51px;
    height: 51px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease-in-out;
}
.back_to_top a svg{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px !important;
    transform: translate(-50%,-50%);
}
.back_to_top a:hover{
    background: linear-gradient(180deg, #EBD56F 0%, #B78D43 100%);
}
.back_to_top a:hover svg path{
    transition: var(--default-trans);
}
.back_to_top a:hover svg path {
    fill: var(--black);
}
/* <!-- back-to-top end  --> */

/* .accordion-header {
    background: #d6b866;
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid #3e2e17;
    margin-top: 5px;
    font-weight: bold;
    border-radius: 16px;
    position: relative;
    color: #0b0a08;
}
.tab-content {
    padding: 10px 15px;
    display: none;
    background: #100e0e;
    padding-top: 25px;
}
.tab-body {
    flex-grow: 1;
    width: 100%;
} */