/* /* html,
body {
    position: relative;
    z-index: 1;
    color: #222222;
    background-color: white;
}


body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}


body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 1px;
}

/* 
body::-webkit-scrollbar-track {
    background-color: #f2f2f200;
} */

.elipses-container .ellipses-1 {
    /* Ellipse 23 */
    position: absolute;
    width: 260px;
    height: 260px;
    left: 0px;
    top: 75px;
    background: #6D17EF;
    filter: blur(300px);
    z-index: -1;
}

.elipses-container .ellipses-2 {
    position: absolute;
    width: 221px;
    height: 221px;
    right: 0px;
    top: 75px;
    background: #F07C41;
    /* border-radius: 50%; */
    filter: blur(300px);
    z-index: -1;
    /* Ellipse 21 */

    /* position: absolute;
width: 221px;
height: 221px;
right: 0px;
top: 75px;

background: #F07C41;
filter: blur(300px); */

}

.elipses-container .ellipses-3 {
    position: absolute;
    width: 280px;
    height: 280px;
    left: -96px;
    top: 700px;
    background: #2BAED8;
    filter: blur(300px);
    z-index: -1;
}


.first-section {
    margin-top: 160px;
}

.custom-grid {
    display: grid;
    grid-template-columns: 272px 1fr;
    gap: 40px;
}

.nav-pills .nav-link {
    position: relative;
    font-size: var(--h5);
    font-weight: 300;
    line-height: 24px;
    --bs-nav-link-color: #222222;
    --bs-nav-pills-link-active-bg: #fff;
    --bs-nav-pills-link-active-color: #F07C41;
    --bs-nav-link-hover-color: #F07C41;
    --bs-nav-link-font-weight: 600;
    padding: 0;
}

.nav-pills .nav-link {
    position: relative;
    font-size: var(--h5);
    font-weight: 300;
    line-height: 24px;
    --bs-nav-link-color: #222222;
    --bs-nav-pills-link-active-bg: transparent;
    --bs-nav-pills-link-active-color: #F07C41;
    --bs-nav-link-hover-color: #F07C41;
    padding: 0;
}

.nav-pills .nav-link.active {
    font-weight: 600;
}

/* .nav-pills .nav-link.active {
    font-weight: 600;
    border: 1px solid #F07C41;
    background: #FFFFFF;
    border-radius: 8px;
    color:#F07C41;
    padding: 8px 12px;

} */

.nav-list .nav-link {
    margin-left: 12px;
    padding-left: 14px;
}

.nav-list .nav-link::before {
    content: '\2022';
    position: absolute;
    top: -1px;
    left: 0;
}

.section-right .scrollspy-policy {
    position: relative;
    max-height: calc(100vh - 208px);
    ;
    overflow-y: scroll;
}

.scrollspy-policy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.section-right .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-right .content h5 {
    font-weight: 300;
    margin-bottom: 0px;
    line-height: 28px;
}

.section-right .content .sub-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebarButton {
    display: none;
}

@media(max-width:992px) {
    .first-section {
        margin-top: 120px;
    }

    .section-right .scrollspy-policy {
        max-height: calc(100vh - 150px);
    }

}

@media(max-width:760px) {
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-left {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background-color: var(--darkblue);
        padding: 20px;
        z-index: 9999;
        transition: left 0.3s ease-in-out;
    }

    .section-left.show {
        left: 0;
    }

    .section-left .offcanvas-logo {
        display: block !important;
    }

    .sidebarButton {
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        background-color: transparent;
    }

    .sidebarButton:hover img {
        filter: invert(53%) sepia(70%) saturate(457%) hue-rotate(335deg) brightness(93%) contrast(103%);
    }
}

@media(max-width:420px) {
    .section-right .scrollspy-policy {
        max-height: 106svh;
    }
}