html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/********** Template CSS **********/
:root {
    --primary: #A36D5D;
    --secondary: #A36D5D;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.navbar .header-btn {
    padding: 7px 15px;
    border: 2px solid #A36D5D;
    margin-left: 5px;
    border-radius: 30px;
}

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    padding-top: 8px;
}

.top-bar small {
    color: #fff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar{
    padding: 0 !important;
}

.navbar .nav-menu .nav-link {
    padding: 20px 10px;
    color: #fff;
    margin: 0 5px;
    font-weight: 500;
    font-size: 15px;
    outline: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar .nav-menu .nav-link:hover::before,
.navbar .nav-menu .nav-link.active::before {
    width: 100%;
}

.bg-white .nav-menu .nav-link {
    padding: 27px 3px 25px 3px;
    color: #000;
    font-weight: 500;
    outline: none;
}

.navbar-expand-lg .navbar-collapse {
    margin-bottom: -4px !important;
}

.navbar-toggler {
    color: #fff !important;
    outline: none !important;
    border: none !important;
}

.bg-white .navbar-toggler {
    color: #000 !important;
    outline: none !important;
    border: none !important;
}
.bg-white .navbar-toggler i{
    font-size: 32px;
}

.navbar-toggler {
    padding: 0 !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.error-page .top-bar small {
    color: #000;
}

.error-page .navbar .nav-menu .nav-link {
    color: #000 !important;
}

.error-page .navbar-toggler {
    color: #000 !important;
    outline: none !important;
    border: none !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .top-bar {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

}




.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 300px;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 17px 21px;
    display: flex;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-header .logo {
    font-size: 20px;
}

.head-logo {
    margin: 3px 0;
}

.head-logo img {
    height: 75px;
    width: auto;
}

.navbar .navbar-brand img {
    height: 75px !important;
}

.close-btn {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 3px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {

    .sidebar,
    .overlay {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .navbar .navbar-brand img {
        height: 60px !important;
    }
}






/*========== Hero area css start here  ============*/

.hero-item {
    background: url('../img/slider1.jpg') center center/cover no-repeat;
    position: relative;
    /* height: 100vh; */
    padding: 40px 0 !important;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-caption {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-caption h1 {
    margin-top: 40px;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-caption .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text .hero-sub-title {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.hero-text p a {
    color: #A36D5D;
}


.tradingview-widget-container {
    width: 100% !important;
    height: 500px !important;
    margin-top: 70px;
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 991px) {
    .hero-caption h1 {
        font-size: 28px !important;
        margin-top: 20px !important;
    }

    .hero-caption .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-item {
        height: 100%;
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .hero-text {
        margin-top: 10px;
    }
    .tradingview-widget-container {
        width: 100% !important;
        height: 400px !important;
        margin-top: 70px;
    }
    .hero-caption {
        text-align: center;
    }

    .hero-caption h1 {
        font-size: 25px !important;
        margin-top: 20px !important;
        line-height: 25px;
    }
    .hero-caption p{
        line-height: 20px !important;
    }
    .hero-caption .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
}



.btn-default {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: capitalize;
    background: #A36D5D;
    color: #fff;
    border-radius: 100px;
    padding: 14px 30px 14px 25px;
    border: none;
    transition: color 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.4s ease-in-out;
    z-index: 0;
}

.btn-default:hover::before {
    width: 100%;
}

.btn-default i {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default:hover {
    color: #fff;
}

.btn-default:hover i {
    transform: translateX(10px);
}

.btn-default span {
    position: relative;
    z-index: 1;
}

.btn-default2 {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: capitalize;
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 14px 30px 14px 25px;
    border: none;
    transition: color 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn-default2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #A36D5D;
    transition: width 0.4s ease-in-out;
    z-index: 0;
}

.btn-default2:hover::before {
    width: 100%;
}

.btn-default2 i {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default2:hover {
    color: #fff;
}

.btn-default2:hover i {
    transform: translateX(10px);
}

.btn-default2 span {
    position: relative;
    z-index: 1;
}


.btn-default3 {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font, Arial, sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: capitalize;
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 10px 25px 10px 20px;
    border: none;
    transition: color 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.btn-default3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #A36D5D;
    transition: width 0.4s ease-in-out;
    z-index: 0;
}

.btn-default3:hover::before {
    width: 100%;
}

.btn-default3 i {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default3:hover {
    color: #fff;
}

.btn-default2:hover i {
    transform: translateX(10px);
}

.btn-default3 span {
    position: relative;
    z-index: 1;
}


.btn-default4 {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font, Arial, sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1em;
    text-transform: capitalize;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 10px 25px 10px 20px;
    border: none;
    transition: color 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}


.btn-default4:hover::before {
    width: 100%;
}

.btn-default4 i {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-default4:hover {
    color: #000;
}

.btn-default4:hover i {
    transform: translateX(10px);
}

.btn-default4 span {
    position: relative;
    z-index: 1;
}

/* Add responsiveness */
@media (max-width: 768px) {
    .btn-default {
        font-size: 14px;
        padding: 11px 20px 11px 15px;
    }

    .btn-default2 {
        font-size: 14px;
        padding: 11px 20px 11px 15px;
    }

    .btn-default3 {
        font-size: 14px;
        padding: 10px 25px 10px 20px;
    }

}
/*========== Hero area css End here  ============*/

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(20, 32, 46, 0.7), rgba(20, 32, 46, 0.7)), url(../../img/slider1.jpg);
    background-size: cover;
    margin: 0 auto;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header {
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 45px;
}

.page-header .banner a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.page-header .banner span {
    color: #A36D5D;
    margin: 0 5px;
}



/*====== About us section css start here =========*/
.sec-pad {
    padding: 40px 0;
}

.about-image img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}



/*===== Accordion dropdown css start here  =========*/
.accordion {
    --circle-x: 1.8rem;
    --circle-y: 0;
    --circle-r: 200%;
    --circle-bg: #fff;
    color: #011A41;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: grid;
    grid-template-rows: 0fr 0fr;
    transition: all 0.3s ease-in-out;
    background-color: #EDF1EE;
    border: 2px solid #EDF1EE;
    opacity: 0.9;
    overflow: hidden;
}

.accordion:hover {
    border-color: #A36D5D;
}

.accordion.active {
    grid-template-rows: 0fr 1fr;
    opacity: 1;
    border-color: #A36D5D;
    background-color: #fff;
    /* Active background color */
    color: #000;
}

.wrapper {
    padding: 1rem;
}

.content {
    font-size: 1rem;
    line-height: 1.4;
}

.content p {
    margin-bottom: 1rem;
}

.content a {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
}

.title a {
    padding: 10px 15px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #011A41;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.title a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1rem;
    margin-right: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M438.6 233.4c12.5 12.5 12.5 32.8 0 45.3L273.9 443.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L370.7 256 228.6 113.9c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L438.6 233.4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s, background-color 0.3s;
}

.accordion.active .title a {
    color: #A36D5D;
    /* Change text color when active */
}

.accordion.active .title a::before {
    transform: rotate(90deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M438.6 233.4c12.5 12.5 12.5 32.8 0 45.3L273.9 443.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L370.7 256 228.6 113.9c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L438.6 233.4z'/%3E%3C/svg%3E");
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.accordion.active .accordion-content {
    height: auto;
}


.is-sticky {
    height: 80vh;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

@media screen and (max-width: 991px) {
    .is-sticky {
        height: 100%;
        position: static !important;
        position: static !important;
        top: 0;
    }
}


@media screen and (max-width: 768px) {
    .image-shape {
        display: none;
    }

    .image-box {
        text-align: center;
        margin: 0 auto !important;
        padding: 20px;
        height: 400px;
        width: 400px;
        border: 1px solid #000;
        border-radius: 50%;
    }

    .image-box .experience-box h2 {
        font-size: 130px;
    }

}

@media screen and (max-width: 500px) {
    .image-shape {
        display: none;
    }

    .image-box {
        text-align: center;
        margin: 0 auto !important;
        padding: 15px;
        height: 300px;
        width: 300px;
        border: 1px solid #000;
        border-radius: 50%;
    }

    .image-box .experience-box h2 {
        font-size: 100px;
    }

}




/*========= Who we serve css start here ==========*/
.who-we-serve {
    padding: 20px 0;
}

.img1 {
    height: 100%;
    width: auto;
    border-radius: 15px;
}
.img1-mobile{
    display: none;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    margin: 10px 0;
}
.img2 {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
}

.serve-text h3 {
    color: #A36D5D;
}

.serve-list {
    margin-top: 5px;
    margin-bottom: 10px;
}

.serve-list p {
    margin: 0;
    margin-left: 25px;
    font-weight: 500;
    margin-top: 3px;
}

.serve-list p i {
    position: relative;
    margin-left: -20px;
    margin-top: 5px;
    color: #A36D5D;
    font-size: 15px;
}


@media screen and (max-width: 991px) {
    .img1 {
        display: none;
    }
    .img1-mobile{
        display: block;
    }
}


/* .image-1{
    margin-right: 100px;
}
.serve-omage .img1{
    height: 300px;
    width: auto;
    border-radius: 15px;
    position: relative;
    margin-right: 50px;
    margin: 10px;
}

.image-2{
    margin-left: 100px;
}
.serve-omage .img2{
    height: 300px;
    width: 300px;
    border-radius: 50%;
    position: absolute;
    top: 10%;
    right: -50px;
    margin-top: 100px;
    border: 2px solid #A36D5D;

} */
/*========= Who we serve css end here ==========*/

/*============ Invest page css start here ============*/
#tabs-area {
    height: 80vh;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
}

.invest-acc .title a {
    font-size: 15px;
}




/*============ Invest page css End here ============*/




/*** Feature ***/
.feature {
    padding: 70px 0;
    background-color: #EDF1EE;
}

.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature-box {
    background-color: #fff;
    border-radius: 10px;
}

.feature-box .chk {
    font-size: 25px;
    color: #A36D5D;
}

.feature .feature-box:hover {
    background: transparent;
}


.feature .feature-box .card-front .btn-default4:hover * {
    color: #FFFFFF !important;
}
.feature .feature-box .card-front .btn-default4:hover * {
    color: #FFFFFF !important;
}
button.btn-default4.me-1.slideInDown.read-less-btn {
    color: #fff;
}

/*** Service ***/
.service {
    padding: 90px 0;
}

.tabs-link .nav .nav-link {
    transition: .5s;
    background-color: #EDF1EE;
}

.tabs-link .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.tabs-link .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.tabs-link .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
    margin-right: 10px !important;
}

.tabs-link .nav .nav-link h5 i {
    color: #A36D5D !important;
    margin-right: 10px !important;
}

.tab-content {
    padding: 20px;
    background-color: #EDF1EE;
    border-radius: 15px;
}


.card-flip {
    perspective: 1000px;
    position: relative;
}

.card-front,
.card-back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    transition: transform 0.6s;
}
.feature-box{
    width: 100%;
    height: 300px;
    
}
.card-front {
    background: #f9f9f9;
    border-radius: 10px;
}

.card-back {
    background: #fff;
    transform: rotateY(180deg);
    border-radius: 10px;
}

.card-flip.flipped .card-front {
    transform: rotateY(180deg);
}

.card-flip.flipped .card-back {
    transform: rotateY(0deg);
}

.extra-content {
    max-height: 1000px; /* Ensure visibility */
    padding-top: 10px;
}

.read-more-btn,
.read-less-btn {
    margin-top: 20px;
}

/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(20, 32, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-img a i {
    color: #A36D5D;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #A36D5D;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
    border: none;
    outline: none;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}



/*============ Invest page css start here ===========*/
.mobile-tabs {
    margin-bottom: 10px;
}

.mobile-tabs .nav-link h5 {
    font-size: 16px;
    width: 98px;
    text-align: center;
}

.mobile-tabs .equity-btn-5 {
    margin-right: 10px;
}

.mobile-tabs .equity-btn-5 h5 {
    width: 99px;
}

.mobile-tabs .owl-itrm {
    margin: 0 !important;
}

.alt-invest .mobile-tabs .nav .nav-link .h5-1 {
    width: 139px;
}

.alt-invest .mobile-tabs .nav .btn-8 .h5-2 {
    width: 120px;
}

.alt-invest .mobile-tabs .nav .btn-8 {
    margin-left: 40px;
}

.mobile-tabs .owl-carousel .owl-item {
    margin: 0 !important;
}


.alt-invest .owl-theme .owl-nav {
    margin-top: 0 !important;
}

.alt-invest .owl-carousel .owl-nav {
    position: absolute;
    top: 0px;
    transform: translateY(-50%);
    width: 100%;
}

.alt-invest .owl-carousel .owl-prev,
.alt-invest .owl-carousel .owl-next {
    position: absolute;
    background-color: rgb(163, 109, 93);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 12px 14px;
    color: #fff !important;
    outline: none !important;
    border: none !important;
}

.alt-invest .owl-carousel .owl-next {
    position: absolute;
    background-color: rgb(163, 109, 93);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 13px 14px;
    color: #fff !important;
    outline: none !important;
    border: none !important;
}

.alt-invest .owl-carousel .owl-prev {
    left: -32px;
}

.alt-invest .owl-carousel .owl-next {
    right: -32px;
}

@media screen and (max-width: 468px) {
    .alt-invest .mobile-tabs {
        margin: 10px 25px;
    }

    .alt-invest .mobile-tabs .nav .nav-link {
        padding: 6px 6px;
    }

    .alt-invest .mobile-tabs .nav .nav-link h5 {
        width: 60px;
        font-size: 10px !important;
        font-weight: 700;
        padding: 1px 0px !important;
    }

    .alt-invest .mobile-tabs .nav .nav-link .h5-1 {
        width: 100px;
    }

    .alt-invest .mobile-tabs .nav .btn-8 .h5-2 {
        width: 100px;
    }

    .alt-invest .mobile-tabs .nav-pills .nav-link {

        border-radius: 4px;
    }
}

/*============ Invest page css end here ===========*/



/*============ Privacy page css start here ===========*/
.privacy-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.privacy-content {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 15px;
}

/*============ Privacy page css end here ===========*/




/*========== contact page and calendar section css ============*/
.calendar-section {
    padding: 60px 0;
}




/*** Footer ***/
.footer {
    background-color: #343941;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.btn-input {
    background-color: #A36D5D;
    border: none;
    padding: 8px 13px;
    color: #fff;
    border-radius: 3px;
}

.btn-input:hover {
    color: #fff;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}