@font-face {
    font-family: 'Vazir';
    src: url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff2') format('woff2'),
         url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff') format('woff'),
         url('C:/Users/aalimahmoudi.SBFG/mywebsite/app/static/app/fonts/Vazir.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --title-color: #0282CC;
    --secondary-color: #2ecc71;
  }
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.home-section-tops  {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
}

.home-section-center{
    width: 100%;
    max-width: 1e3px;
    margin: 0 auto;
    background-color: white; /* Ensure the background color is white */
    /* border: 1px solid #ee1515; */
    border-right: 2px solid #ddd;
    border-left: 2px solid #ddd;
    direction: rtl;
    text-align: right;
}

.home-title-section {
    color: var(--title-color);
    font-size: clamp(14px, 2vw, 32px);
    line-height: 42px;
    padding: 20px;
    margin-bottom: 20px;
}

.home-tabs {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;    
}
.home-tabs-list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    direction: rtl;
    margin: 0;
}
.home-tabs-item {
    flex: 1;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    position: relative;
    padding-bottom: 10px;
}
.home-tabs-item.active {
    background-color: #fff;
    border-bottom: none;
}
.home-tabs-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    margin: 0 auto;
    height: 2px;
    background-color: var(--title-color);
    transform: translateX(-50%);
}

.home-tab-content {
    display: flex;          
    align-items: center;   
    justify-content: center; 
    text-align: center;     
    height: 100%;    
}

.home-tab-content a {
    padding-top: 5px;
    width: 80%;
    display: block;
    text-decoration: none;
    color: #000;
}
.home-tab-content .home-tab-icon img{
    margin-left: 10px;
}

.home-tab-icon {
    display: inline-flex;   
    align-items: center;    
    gap: 8px;  
    font-size: clamp(10px, 2vw, 16px);          
}

.home-tab-icon .stock-span{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 50%; */
    max-width: 100%;
}

.blue-line.active {
    width: 100%; 
    height: 3px; 
    background-color: var(--title-color);
    direction: rtl;
    margin-top: 5px;
}

.home-tables-title {
    text-align: right;
    direction: rtl;
    margin: 20px; 
    overflow: visible;
}
#stock-table {
    overflow: visible;
    }
.home-table-title {
    font-size: clamp(12px, 2vw, 20px);
    color: #333;
}
.home-table-subtitle {
    font-size: clamp(10px, 2vw, 16px);
    color: #777;
}
.table-component-content {
    background-color: white; 
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
    overflow: visible;
    
}
.stock-table {
    margin: 0 auto;
    border-collapse: collapse;
    direction: rtl;
    margin: 20px auto;
    width: 100%;
    font-family: 'Vazir', sans-serif;
    unicode-bidi: isolate;
    font-feature-settings: 'tnum' 0, 'lnum' 0;
}
.stock-name{
    text-decoration: none;
    color: var(--title-color);
    font-size: clamp(10px, 2vw, 16px);
    
}
.stock_title{
    color: #272727;
    font-size: clamp(10px, 2vw, 14px);
}
@media (max-width: 500px) {
    .stock_title{
        display: none;
    }
}

.stock-table td{
    padding: 8px;
    text-align: center;
    /* direction: rtl; */
    border-bottom: 1px solid #ddd;
    font-family: 'Vazir', sans-serif;
    unicode-bidi: isolate; /* This helps ensure that the text is treated as right-to-left */
    font-feature-settings: 'tnum' 0, 'lnum' 0;
    font-size: clamp(10px, 2vw, 14px);
}
.stock-table td:nth-child(2) {
    width: fit-content; /* Set a fixed width for the "نماد" column */
}
.stock-table th {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
    color: #f4f4f4;
    background-color: #5A6166;
    font-size: clamp(11px, 2vw, 16px);
}
.table.stock-table {
    border-collapse: collapse;
}

.circle-container {
    position: relative;
    width: 7vw; /* Scales based on viewport width */
    /* height: 5vw; Ensures the circle remains a square */
    max-width: 40px; /* Optional, to restrict its size */
    max-height: 40px;
    display: inline-block;
    text-align: center;
    /* padding-bottom: 6%; */
}
.circle-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.circle-bg {
    fill: none;
    stroke: #f4f4f4;
    stroke-width: 4;
}
.circle-progress {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s;
    transform: rotate(90deg);
    transform-origin: center;
}
.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers it perfectly */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(10px, 2vw, 14px);
    /* font-weight: bold; */
    text-align: center;
    /* padding-left: 2%; */
    /* padding-right: 2%; */
}

.ai-score-section {
    text-align: center;
    margin: 20px 0;
}
.ai-score-container {
    display: inline-block;
    text-align: center;
    margin: 0 10px;
}
.ai-score {
    display: block;
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
}
.ai-score svg {
    width: 100%;
    height: 100%;
}
.ai-score .circle-bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 8;
}
.ai-score .circle-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s;
    transform: rotate(90deg);
    transform-origin: center;
}
.ai-score .score-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, 20px);
    font-weight: bold;
}
.ai-score-label {
    margin-top: 10px;
    font-size: clamp(10px, 2vw, 16px);;
    font-weight: bold;
}

.professional-stock-color{
    background: white;
    padding: 20px;
}
.professional-stock{
    width: 100%;
    max-width: 1e3px;
    margin: 0 auto;
    height: auto;
}
.professional-stock-header-title{
    color: var(--title-color);
    font-size: clamp(14px, 2vw, 32px);
    line-height: 42px;
    margin-bottom: 20px;
}
.profesional-stock-container{
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.profesional-stock-general-content{
    margin-top: 37px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 801px;
    max-width: 95vw;
    height: 246px;
    position: relative;
}

img.aiscore {
    position: absolute;
    z-index: 0;
    width: 112px;
    max-width: 13vw;
    height: auto;
    max-height: 149px;
    max-width: none;
}
img.aiscore:first-child {
    left: 0%;
    bottom: 31px;
}
img.aiscore:nth-child(2) {
    left: 9.85%;
    bottom: 13.8%;
}
img.aiscore:nth-child(3) {
    left: 19.7%;
    bottom: 15.75%;
}
img.aiscore:nth-child(4) {
    left: 29.6%;
    bottom: 17.6%;
}
img.aiscore:nth-child(5) {
    left: 39.4%;
    bottom: 20.37%;
}
img.aiscore:nth-child(6) {
    left: 49.3%;
    bottom: 24.07%;
}
img.aiscore:nth-child(7) {
    left: 59.1%;
    bottom: 28.7%;
}
img.aiscore:nth-child(8) {
    left: 69%;
    bottom: 34.25%;
}
img.aiscore:nth-child(9) {
    left: 78.9%;
    bottom: 40.74%;
}
img.aiscore:nth-child(10) {
    left: 88.7%;
    bottom: 49.07%;
}
img.aiscore{
    display: inline-block;
    vertical-align: middle;
}

.professional-stock-levels{
    max-width: 95%;
    width: 800px;
    margin: 10px auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: clamp(10px, 2vw, 16px);;
    line-height: 19px;
    padding: 0 20px 0 45px;
}
.profesional-stock-curved-arrow {
    width: 750px;
    max-width: 85vw;
    height: 38%;
    position: absolute;
    bottom: 10%;
}
.professional-stock-probability {
    font-size: clamp(10px, 2vw, 16px);
    line-height: 19px;
    text-align: center;
    margin-top: 26px;
    padding: 0 12px 0;
}

main {
    text-align: right;
}
.positive {
    color: green;
}

.home-tables-footer {
    padding-bottom: 20px;
    background-color: var(--clr-light);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    border-right: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    border-left: 1px solid var(--clr-border);
    color: var(--clr-links);
    font-size: clamp(10px, 2vw, 17px);
}
.home-tables-footer a:not(a:hover) {
    text-decoration: none;
}
.home-tables-footer img {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-bottom: 2px;
}
/* ------------ home-data-analyzed--------------- */
.data-analyzed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -moz-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    background-color: var(--clr-dark);
    background-image: url('/static/app/img/dataAnalytics2.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}
.data-analyzed-body-container{
    width: 100%;
    max-width: 1e3px;
    margin: 50px auto 60px;
}
.data-analyzed .data-analyzed-title{
    width: 50vw;
    max-width: 425px;
    color: #ffffff;
    font-size: clamp(14px, 2vw, 32px);
    line-height: 46px;
}
.data-analyzed .data-analyzed-body{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -moz-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 13px 0 15px;
    max-width: 403px;
}
.data-analyzed .data-analyzed-body .data-points {
    padding-left: 0;
}
.data-analyzed .data-analyzed-body .data-points, .data-analyzed .data-analyzed-body .data-indicators, .data-analyzed .data-analyzed-body .data-indicators-used {
    color: var(--title-color);
    width: 33%;
    padding-left: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.data-analyzed .data-analyzed-body .data-points .data-value, .data-analyzed .data-analyzed-body .data-indicators .data-value, .data-analyzed .data-analyzed-body .data-indicators-used .data-value{
    font-size: clamp(12px, 2vw, 24px);
    white-space: nowrap;
    line-height: 38px;
    width: 100%;
}
.data-analyzed .data-analyzed-body .data-points .data-description, .data-analyzed .data-analyzed-body .data-indicators .data-description, .data-analyzed .data-analyzed-body .data-indicators-used .data-description{
    font-size: clamp(10px, 2vw, 15px);
    text-align: left;
    line-height: 20px;
    width: 103px;
    max-width: 33vw;
}
.data-analyzed .data-analyzed-body .data-indicators, .data-analyzed .data-analyzed-body .data-indicators-used{
    border-left: 1px solid #3a608d;
}
.data-analyzed .data-analyzed-footer {
    color: #ffffff;
    font-size: clamp(10px, 2vw, 16px);
    line-height: 26px;
    max-width: 403px;
}
a:not(a.name-top:hover,.cols-top-usa a:hover,.enlace-top-us a:hover,.popular-stocks a) {
    text-decoration: none;
}
.data-analyzed-how-it-works {
    background-color: var(--title-color);
    color: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(10px, 2vw, 17px);
    line-height: 20px;
    width: 162px;
    height: 50px;
    margin-top: 60px;
}

.home-use-cases {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 51px;
    padding-bottom: 50px;
    direction: rtl;
    text-align: right;
    font-family: 'Vazir', sans-serif;
    unicode-bidi: isolate;
    font-feature-settings: 'tnum' 0, 'lnum' 0;
}
.use-cases-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 46px;
    line-height: 32px;
}
.home-generic-blue-title{
    color: var(--title-color);
    font-size: clamp(14px, 2vw, 32px);
    line-height: 42px;
    margin-bottom: 0px;
}
.usecase-item:not(:last-child) {
    margin-bottom: 70px;
}
.usecase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95vw;
    width: 1041px;
    margin: 0 auto;
}
.usecase-text{
    max-width: 448px;
    font-size: clamp(10px, 2vw, 16px);
    line-height: 26px;
    margin-top: 18px;
    min-height: 330px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.usecase-header {
    color: var(--title-color);
    font-size: clamp(12px, 2vw, 24px);
    line-height: 34px;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}
.usecase-text .description{
    margin-bottom: 20px !important;
    text-align: justify;
    text-justify: inter-word;
}
.usecase-text p {
    margin-bottom: 0 !important;
}
.usecase-link{
    text-decoration: none !important;
    cursor: pointer;
}
.usecase-item a:not(footer a,.advanced-chart-widget-button,.add-to-portfolio-button *,.navbar-links-styling a,.nav-tabs a,.no-underline-stock-chart,.alert-portfolio a) {
    color: #1156cc;
}
.right-icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.usecase-img {
    cursor: pointer;
    width: 100%;
}
.usecase-img.mobile-img {
    display: none;
}
.usecase-img.desktop-img {
    display: block;
    max-width: 50vw;
    width: 500px;
    height: 330px;
}
@media (max-width: 1024px) {
    .usecase-img {
        margin-top: 24px;
    }
}
@media (max-width: 770px) {
    .usecase-item {
        flex-direction: column;
        align-items: center;
    }
    .usecase-img {
        max-width: 100%;
        width: 560px;
        height: 370px;
        margin-top: 24px;
    }
    .usecase-img.desktop-img {
        display: none;
    }
    .usecase-img.mobile-img {
        display: block;
        height: 330px;
        width: 351px;
    }
}
@media (max-width: 1000px) {
    .data-points, .data-indicators, .data-indicators-used {
        text-align: center;
    }
     .data-analyzed-footer, .data-analyzed-title, .data-analyzed-body {
        display: inline-block;
     }

    .data-analyzed-how-it-works-container {
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .data-analyzed-how-it-works {
        display: inline-block;
        background-color: var(--title-color); /* رنگ پس‌زمینه دلخواه */
        color: white;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
    }
}

.home-future-section{
    text-align: center;
    background: white;
}
.home-future-section-title{
    line-height: 44px;
    width: 100vw;
    max-width: 833px;
    margin: 0 auto;
    padding: 50px 0 20px;
}
.home-future-section-description{
    width: 100vw;
    max-width: 1e3px;
    margin: 0 auto;
    font-size: clamp(10px, 2vw, 16px);
    line-height: 26px;
}
.home-future-section-description:last-child {
    width: 100vw;
    max-width: 964px;
    padding: 54px 0 50px;
    margin: 16px auto 0;
}
.start-making-smart-decissions{
    padding: 54px 0 50px;
    text-align: center;
    direction: rtl;
}
.start-making-smart-decissions p{
    font-size: clamp(10px, 2vw, 16px);
    line-height: 26px;
}
/* -----------pricing style--------------- */

/* -----------pdf style--------------- */
.pdf-container {
    /* background-color: white; */
    /* width: 70%; */
    /* text-align: right; */
    /* padding: 20px; */

    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Inner spacing */
    background-color: #ffffff; /* Light gray background */
    margin: 20px auto; /* Center the container horizontally */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 900px; /* Limit the maximum width */
    /* width: 90%; */
}
.pdf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
    max-width: 1e3px;
    margin: 0 auto;
    position: relative;
}
.pdf-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.pdf-title h1 {
    font-size: clamp(14px, 2vw, 30px);
    line-height: 36px;
    color: var(--title-color);
    text-align: center;
}
.pdf-title h5 {
    text-align: center;
}
.pdf-description {
    text-align: center;
    max-width: 918px;
    margin: 4px auto 0;
    font-size: clamp(10px, 2vw, 18px);
    line-height: 20px;
    padding: 5px 20px 0;
}
.pdf-p{font-weight: 400;
    direction: rtl;
    text-align: justify;
    line-height: 1.6; /* Improves readability */
    margin: 10px 0;
    padding: 0 20px
}
.pdf-usecase-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.pdf-chart-container {
    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Space inside the container */
    margin: 20px auto; /* Center it horizontally */
    background-color: #ffffff; /* White background */
    max-width: 800px; /* Limit the width */
}

/* ------------about-us-page---------------- */
.about-us-page-container{
    background-color: white;
    direction: rtl;
}
.about-us-top-section {
    background-image: url(https://cdn.danelfin.com/assets/next/images/aboutUsPage/aboutUsBackground.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 440px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
}
.about-us-top-section-wrapper{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1e3px;
    width: 100vw;
    margin: 0 auto;
    position: relative;
}
.about-us-top-section{
    color: white;
    font-size: clamp(14px, 2vw, 32px);
    line-height: 40px;
}
.about-us-top-section h1.bold-text, .about-us-top-section div div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.about-us-top-section h1.bold-text span, .about-us-top-section div span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 610px;
}
.about-us-top-section div div {
    color: white;
    font-size: clamp(14px, 2vw, 28px);
    line-height: 40px;
}
.about-us-top-section-wrapper img {
    height: 273px;
    position: absolute;
    top: -75px;
    left: -52px;
}

.about-us-bottom-section{
    max-width: 1e3px;
    margin: 0 auto;
    font-size: clamp(10px, 2vw, 17px);
}
.about-us-bottom-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
}
.about-us-bottom-left{
    max-width: 65%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.about-us-bottom-section h2, .about-us-bottom-section-button-title {
    font-size: clamp(14px, 2vw, 34px);

}
.about-us-bottom-section h2{
    color: var(--title-color);
}
.about-us-bottom-section-subtitle {
    font-size: clamp(12px, 2vw, 26px);
    line-height: 40px;
    width: 100%;
    max-width: 596px;
}
.about-us-bottom-section-subtitle {
    padding: 0 0 21px;
}
.about-us-bottom-section p {
    margin-bottom: 28px;
    font-size: clamp(10px, 2vw, 18px);
    line-height: 28px;
}
.about-us-bottom-section-p-3{
    margin-bottom: 0;
}
.about-us-bottom-right-container{
    max-width: 35%;
    font-size: clamp(10px, 2vw, 14px);
    padding-right: 63px;
    margin-top: 65px;
}
.about-us-bottom-right-container h3 {
    font-size: clamp(10px, 2vw, 16px);
    line-height: 19px;
    margin-bottom: 20px;
}
.about-us-bottom-right{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.about-us-bottom-right-years{
    border-left: 1px solid var(--title-color);
    width: 50px;
    margin-top: 6px;
    font-size: clamp(10px, 2vw, 18px);
}
.about-us-bottom-right-years-item:not(:last-child), .about-us-bottom-right-explanation div {
    height: 52px;
}
.about-us-bottom-right-years-item {
    position: relative;
    height: 70px;
    color: var(--title-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50px;
}
.about-us-bottom-right-years-item div:not(.about-us-circle) {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 54px;
    top: -6.6px;
    left: -4.7px;
}
.about-us-circle {
    margin-top: -1px;
    margin-left: -.5px;
}
.about-us-bottom-right-years-item .about-us-circle span {
    display: inline-block;
    width: 10.5px;
    height: 10.5px;
    padding: 0px;
    margin: 0;
    background-color: var(--title-color);
    border: 1px solid white;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.about-us-bottom-right-explanation{
    margin-right: 12px;
    width: 218px;
}
.about-us-bottom-section .about-us-bottom-section-quote {
    padding: 50px 0 13px;
    font-size: clamp(12px, 2vw, 24px);
    text-align: center;
}
.about-us-bottom-section .about-us-bottom-section-quote {
    font-size: clamp(12px, 2vw, 24px);
    line-height: 36px;
}
.about-us-bottom-section .about-us-bottom-section-quote span {
    display: inline-block;
    max-width: 607px;
}
.about-us-bottom-section-author {
    -moz-text-align-last: center;
    text-align-last: center;
    font-size: clamp(12px, 2vw, 20px);
    margin-bottom: 58px;
}
.about-us-bottom-section-button-title {
    padding: 49px 0 15px;
    font-size: clamp(13px, 2vw, 27px);
    line-height: 42px;
    text-align: center;
    background-color: #f5f5f5;
    width: 100vw;
}
.about-us-bottom-section-button-container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f5f5f5;
}
.about-us-bottom-section-button-container button {
    background-color:var(--title-color);
    color: white;
    height: 40px;
    width: 169px;
    border: 0px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: clamp(11px, 2vw, 19px);
    line-height: 20px;
    margin-bottom: 60px;
}
/* home page */
.arrow-icon {
    width: 13px;
    height: 10px;
    vertical-align: middle;
}
.zerochange::after {
    content: url('https://cdn.danelfin.com/assets/next/images/icons/orangeArrow.svg');
    margin-right: -25px;
    transform: rotate(180deg);
    display: inline-block;
}
.positivechange::after {
    content: url('https://cdn.danelfin.com/assets/next/images/icons/greenArrow.svg'); /* Replace with the actual URL or path to the green arrow icon */
    margin-right: -25px;
}
.negativechange::after {
    content: url('https://cdn.danelfin.com/assets/next/images/icons/redArrow.svg'); /* Replace with the actual URL or path to the red arrow icon */
    padding-left: 5px;
    
}
td.change{
    direction: ltr;
    text-align: left;
}
td.negativechange{
    direction: ltr;
}
.positiveperf_ytd{
    color: #3fb55d;
    font-size: clamp(10px, 2vw, 14px);
    direction: ltr;
}
.negativeperf_ytd{
    color: #f70e0e;
    font-size: clamp(10px, 2vw, 14px);
    direction: ltr;
}
td.ai_score{
    background-color: #f0fbff;
    border-right: 1px solid #d5ebff;
    border-left: 1px solid #d5ebff;
}
th {
    cursor: pointer;
    position: relative;
}
th.sorted-asc::after {
    content: "▲" !important;
    font-size: clamp(6px, 2vw, 12px) !important;
    left: 45% !important;
    position: absolute !important;
    bottom: -5px !important;
    color: white !important;
    
}
th.sorted-desc::after {
    content: "▼" !important;
    font-size: clamp(6px, 2vw, 12px) !important;
    left: 45% !important;
    position: absolute !important;
    bottom: -12px !important;
    color: #555 !important;
}
.home-future-section-width{
    direction: rtl;
}
/* ######################################### */
.tooltip_ .tooltiptext_ {
    visibility: hidden;
    width: 190%;
    background-color: #272727;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px; 
    position: absolute;
    font-size: clamp(8px, 2vw, 10px);
    z-index: 10000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.tooltip_ .tooltiptext_::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px; /* Larger arrow for emphasis */
    border-style: solid;
    border-color: #272727 transparent transparent transparent;
}
.tooltip_:hover .tooltiptext_ {
    visibility: visible;
    opacity: 1;
}
th.tooltip_{
    font-size: clamp(12px, 2vw, 16px);
}
.professional-stock-header-subtitle{
    font-size: clamp(12px, 2vw, 16px);
}



