/*Interconnected ecosystem starts here*/
.interconnected{
    padding: 100px 80px;
    background: #15171B;
}
.interconnected .subtitle{
    border-radius: 60px;
    border: 1px solid var(--border-darker, #575C66);
    background: var(--surface-neutral-darker, #15171B);
    color: var(--text-white, #FFF);
    margin-left: 0;
}
.interconnected h2{
    color: var(--text-white, #FFF);
    font-family: var(--font-family-family, Sora);
    font-size: var(--heading-h2-size, 52px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--heading-h2-line-height, 66px);
    margin-bottom: 64px;
}
.interconnected_ecosystem {
    display: flex;
    gap: 16px
}

  /* LEFT MENU */
  .interconnected_ecosystem .menu {
        position: relative;
        width: 376px;
        display: flex;
        flex-direction: column;
        gap: 40px;
  }

  .interconnected_ecosystem  .menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 1px dashed #575C66;
  }

  .interconnected_ecosystem .menu-item {
        padding-left: 20px;
        cursor: pointer;
        transition: color 0.3s;
        position: relative;
        color: var(--text-off-white, #D9D9D9);
        font-family: var(--font-family-family, Sora);
        font-size: var(--body-lg-size, 20px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--body-lg-line-height, 32px);
  }

.interconnected_ecosystem .menu-item.active {
    color: var(--text-accent, #00E4F6);
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-lg-size, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-lg-line-height, 32px);
}
.interconnected_ecosystem .menu-item.active::before {
        background-color: #2dd4bf;
}
.interconnected_ecosystem .menu-item::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 42px;
    /* border-radius: 50%; */
    background-color: #E3E7F8;
}

.interconnected_ecosystem .connect-btn {
    margin-top: 12px;
    border: 1px solid #00E4F6;
    border-radius: 48px;
    padding: 16px 24px;
    background: transparent;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
    margin-left: 20px;
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.70) inset;
    color: var(--button-outline-text-accent, #FFF);
    font-family: var(--font-family-family, Sora);
    font-size: var(--button-lg-size, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--button-lg-line-height, 24px);
    position: relative;
    z-index: 1;
    overflow:hidden;
    display:flex;
    text-decoration: none;
}
.interconnected_ecosystem .connect-btn::after {
    content: "";
    width: 50px;
    height: 50px;
    bottom: -50px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 100%;
    transition: all 400ms ease;
    background: #4CB5CD;
    /*box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.15) inset;*/
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.15) inset;
}

.interconnected_ecosystem .connect-btn:hover::after {
    transform: translateY(0);
    z-index: -1;
    bottom: -100px;
    border-radius: 100px;
    width: 100%;
    height: 250px;
    
}
.interconnected_ecosystem .connect-btn:hover span,.interconnected_ecosystem .connect-btn:hover svg path{
    color:#fff;
    fill:#fff;
    background: transparent;
}
.connect-btn svg{
    width: 11.5px;
    height: 9.5px;
    padding: 7.25px 6.25px;
    margin-left: 8px;
    vertical-align: bottom;
}
.interconnected_ecosystem .connect-btn:hover,.interconnected_ecosystem .connect-btn:hover svg path {
    color: #15171B;
    fill: #15171B;
}

/* RIGHT PANEL */
.interconnected_ecosystem .content {
    flex: 1;
    display: flex;
    width: 848px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 32px;
    border: 1px solid var(--border-darker, #575C66);
    background: var(--surface-neutral-dark, #202329);
    margin-bottom: 8.95px;
    width:100%;
}
.interconnected_ecosystem .content img{
    width:100%;
    max-height: 394px;
    object-fit: cover;
}
.interconnected_ecosystem .content-section {
    display: none;
}
.interconnected_ecosystem .content-section  .arrow_btn{
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    display: inline-block;
    display: flex;
    max-width: 36px;
    max-height: 36px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    /* aspect-ratio: 1 / 1; */
    border-radius: 100px;
    border: 1px solid var(--border-darker, #575C66);
    background: var(--surface-neutral-darker, #15171B);
    float: right;
}
.interconnected_ecosystem .content-section  .arrow_btn:hover{
        background: #00E4F6 no-repeat center center;
}
.interconnected_ecosystem .content-section  .arrow_btn:hover svg{
        transform: rotate(-45deg);
}
.interconnected_ecosystem .content-section  .arrow_btn:hover svg path{
    fill: #15171b;
}
.interconnected_ecosystem .content-section.active {
    display: block;
}
.interconnected_leftside > p{
    color: var(--text-white, #FFF);
    font-family: var(--font-family-family, Sora);
    font-size: var(--body-md-size, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--body-md-line-height, 24px);
    margin-top: 40px;
    margin-left: 20px;
}
.interconnected_ecosystem .content h2 {
    margin-bottom: 12px;
    color: var(--text-white, #FFF);
    font-family: var(--font-family-family, Sora);
    font-size: var(--heading-h5-size, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--heading-h5-line-height, 44px);
    display: inline-block;
    width: fit-content;
    max-width: 95%;
}

.interconnected_ecosystem .content p {
        color: var(--text-off-white, #D9D9D9);
        font-family: var(--font-family-family, Sora);
        font-size: var(--body-md-size, 16px);
        font-style: normal;
        font-weight: 400;
        line-height: var(--body-md-line-height, 24px);
        margin-bottom: 40px;
}
@media (max-width: 1280px) {
    .interconnected_ecosystem .content,.interconnected_ecosystem .content img{
        width:100%;
    }
}
@media (max-width: 1024px) {
    .interconnected_ecosystem {
        flex-direction: column-reverse;
    }
    .interconnected h2 {
        font-size: var(--heading-h2-size, 28px);
        line-height: var(--heading-h2-line-height, 38px);
        margin-bottom: 32px;
    }
    .interconnected_ecosystem .menu-item {
        font-size: var(--body-lg-size, 16px);
        line-height: var(--body-lg-line-height, 24px);
    }
    .interconnected_ecosystem .content h2 {
        font-size: var(--heading-h5-size, 24px);
        line-height: var(--heading-h5-line-height, 34px);
        margin-bottom: 13px;
    }
    .interconnected_ecosystem .content p{
        margin-bottom: 32px;
    }
    .interconnected_ecosystem .content {
        margin-bottom: 16px;
    }
    .interconnected_ecosystem .menu-item.active {
        font-size: var(--body-lg-size, 18px);
        line-height: var(--body-lg-line-height, 28px);
    }
    .interconnected_ecosystem .connect-btn {
        font-size: var(--button-lg-size, 18px);
    }
    /*.interconnected_ecosystem .menu {*/
    /*    gap: 20px;*/
    /*}*/
    .interconnected_ecosystem .menu-item::before {
        height: 30px;
    }
    .interconnected{
        padding-left:0!important;
        padding-right:0!important;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    
}
@media (max-width: 820px) {
    .interconnected_ecosystem {
        flex-direction: column-reverse;
    }
    /*.interconnected_ecosystem .menu {*/
    /*    overflow: scroll;*/
    /*    flex-direction: row;*/
    /*    width: 100%;*/
    /*}*/
    .interconnected_ecosystem .menu-item {
        white-space: nowrap;
        margin-bottom: 10px;
    }
    .interconnected_ecosystem .content{
        width:auto;
    }
}
@media (max-width: 767px) {
    .interconnected {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .interconnected_ecosystem .menu{
        width:100%;
    }
    .interconnected h2 {
        font-size: var(--heading-h2-size, 24px);
        line-height: var(--heading-h2-line-height, 32px);
    }
    .interconnected_ecosystem .connect-btn {
        font-size: var(--button-lg-size, 18px);
        /* margin-left: 0; */
        line-height: 24px;
    }
    .interconnected_leftside > p{
        /*margin-left: 0;*/
        font-size: var(--body-md-size, 14px);
        line-height: var(--body-md-line-height, 22px);
    }
    .interconnected_ecosystem .content h2 {
        font-size: var(--heading-h5-size, 20px);
        line-height: var(--heading-h5-line-height, 28px);
        margin-bottom: 12px;
    }
    .interconnected_ecosystem .content-section .arrow_btn {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
    .interconnected_ecosystem .content p {
        font-size: var(--body-md-size, 14px);
        line-height: var(--body-md-line-height, 22px);
    }
    .interconnected_ecosystem .content {
        margin-bottom: 0;
    }
    .interconnected_ecosystem .menu-item.active {
        font-size: var(--body-lg-size, 16px);
        line-height: var(--body-lg-line-height, 24px);
        margin-bottom: 0;
    }
}
/*Interconnected ecosystem ends here*/
