.comm-header .sb-header-container {
    height: 85px;
    display: flex;
    padding: 16px 0;
    justify-content: space-between;
    align-items: center;
}
.sb-header.comm-header.sticky .sb-header-container{
    height: 85px !important;
}
.comm-header .global-toggle-mobile{
    display: none;
    position: absolute;
}
.comm-header .global-toggle{
    display: block;
    position: absolute;
}
.comm-header .global-toggle a{
    display: flex;
    width: 88px;
    height: 85px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #9050E9;
    background: #9050E9;
}
.comm-header .global-toggle img{
    width: 27px;
    height: 27px;
}
.global-toggle-mobile a{
    display: flex;
    width: 88px;
    height: 85px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #9050E9;
    background: #9050E9;
}
.global-toggle-mobile img{
    width: 27px;
    height: 27px;
}

.sb-menu ul {
    list-style: none;
}

.sb-menu ul li {
    position: relative;
}
.sb-menu ul li.hide-menu-item{
    display: none !important;
}
.sb-header{
    display :flex !important;
}
.sb-menu ul li a {
    text-decoration: none;
    color: #1E293B;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 4px;
    display: block;
    transition: color 0.3s ease;
}

.sb-menu ul li a:hover {
    color: #4338CA !important;
}
.sb-menu ul li.dropdown_menu > a > span::before{
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #7A7A7A; /* solid downward arrow */
    position: relative;
    border-radius: 2px; /* gives slightly rounded top corners */
    transition: transform 0.2s ease;
    transform: unset;
    border-radius: 3px 3px 0 0;
    top: -1px;
}
.comm-header .sb-menu ul li > a {
    font-size: 16px;
    padding: 0 15px;
    color: #000;
    height: 85px;
    font-weight: 400;
    line-height: 85px;
    text-transform: capitalize;
}
.comm-header .sb-menu ul li ul li a{
    height: auto;
    width: unset;
    line-height: 24px;
} 
.comm-header .sb-menu ul ul li > a,
.comm-header .sb-menu ul ul li:not(:last-child) a:hover,
.comm-header .sb-menu ul ul li:not(:last-child) a:active,
.comm-header .sb-menu ul ul li:not(:last-child) a:focus,
.comm-header .sb-menu ul ul li:last-child > a:hover,
.comm-header .sb-menu ul ul li:last-child > a:active,
.comm-header .sb-menu ul ul li:last-child > a:focus {
    color: #111111;
}
.comm-header .sb-menu ul li ul li
.comm-header  .sb-menu li:not(:last-child) a:hover,
.comm-header .sb-menu li:not(:last-child) a:focus,
.comm-header .sb-menu li:not(:last-child) a:active{
    /* color: #000 !important; */
    color: #9050E9 !important;
}
/* .comm-header .sb-menu ul ul li > a:hover, */
.comm-header.sb-header .sb-menu li > ul{
    border: 1px solid #CECECE;
    border-radius: 15px;
    padding: 10px 57px 40px 32px;
    min-width: 290px;
    box-shadow: unset;
    left: 24px;
}
.comm-header.sb-header .sb-menu li > ul li{
    margin-top: 15px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    padding: 10px 0 12px 10px;
}
.comm-header.sb-header .sb-menu li > ul li:hover{
    background-color: #EEF7FF;
    border: 1px solid #EEF7FF;
    border-radius: 5px;
}
.comm-header.sb-header .sb-menu li > ul li:hover a{
    color: #000 !important;
}
.comm-header .sb-menu .current-menu-item a {
  color: #9050E9;
}
.comm-header.sb-header .sb-menu li > ul li a{
    font-size: 14px;
    line-height: 20px;
    color: #242424;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    padding: unset !important;
}
.comm-header.sb-header .sb-menu li > ul li a::before{
    content: none !important;
}
.comm-header .sb-menu ul li.dropdown_menu:hover > a > span::before,
.comm-header .sb-menu ul li.dropdown_menu:hover ul:hover > a > span::before{
    transform: rotate(180deg);
 }
.comm-header.sb-header .sb-menu ul ul li > a {
    line-height: 20px;
}
.sb-header.comm-header .logo {
    padding: 0px 0px 0px 40px;
    top: 13px !important;
}
.sb-header.comm-header .logo img {
    width: 170px;
}
.sb-header.comm-header {
  border-bottom: 1px solid #E3E3E3;
}

    /* ===== Dropdown Structure (Hidden by default) ===== */
.dropdown_menu .structure-wrapper {
    position: absolute;
    left: -97px;
    width: 900px;
    width: 900px;
    background: #fff;
    z-index: 100;
    animation: fadeIn 0.3s ease;
    min-height: 543px;
    border-radius: 15px;
    border: 1px solid #CECECE;
    padding: 8px;
    visibility:hidden;
    opacity: 0;
}

/* Show on hover */
.dropdown_menu:hover .structure-wrapper {
    display:flex;
    visibility:visible;
    transition: all .3s ease;
    transform-origin: 0 0;
    opacity: 1;
}

/* Sidebar */
.structure-sidebar {
    background: #EEF7FF;
    min-width: 320px;
    padding: 27px 18px 0 20px;
    border-radius: 11px;
}
.structure-sidebar h3{
    font-size: 14px;
    font-weight: 700;
    color: #515151;
    text-transform: uppercase;
    line-height: 21px;
    padding-bottom: 17px;
    border-bottom: 1px dashed #CECECE;
}
.structure-sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 17px;
}

.structure-sidebar .sidebar-item {
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.structure-sidebar .sidebar-item.active,
.structure-sidebar .sidebar-item:hover {
    background: #FFF;
    border-radius: 5px;
}

.structure-sidebar .sidebar-item .sidebar-menu-meta{
    display: flex;
    gap: 10px;
}
.structure-sidebar .sidebar-item .sidebar-menu-meta .menu-img-inner{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.4px solid #E3E3E3;
}
.structure-sidebar .sidebar-item .sidebar-menu-meta .menu-img-inner img{
    max-width: 14px;
    max-height: 15px;
}
.structure-sidebar .sidebar-menu-meta .menu-content-inner h5{
    font-size: 14px;
    line-height: 21px;
    color: #242424;
    font-weight: 700;
}
.structure-sidebar .sidebar-menu-meta .menu-content-inner p{
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #858585;
    line-height: 18px;
}

.structure-sidebar li a {
    display: block;
    color: #1E293B;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
}

.structure-sidebar li span {
    color: #64748B;
    font-size: 13px;
}

/* Content */

.structure-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    flex: 1;
    padding: 24px 32px;
}
.structure-content.active {
    display: block;
    opacity: 1;
}
.structure-content h3 {
    font-size: 18px;
    color: #1E293B;
    margin-bottom: 16px;
    font-weight: 700;
    padding-bottom: 17px;
    border-bottom: 1px dashed #CECECE;
}

.circle-grid {
    display: grid;
    grid-template-rows: repeat(7, auto);
    grid-auto-columns: minmax(160px, 1fr);
    grid-auto-flow: column;
    gap: 10px;
}
.structure-content .circle-item{
    display: flex;
    padding: 13px 0 12px 14px;
    gap: 8px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
}
.structure-content .circle-item:hover{
    background-color: #EEF7FF;
    border: 1px solid #EEF7FF;
    border-radius: 5px;
}
.structure-content .circle-item .item-img {
    width: 25px;
    height: 25px;
    border: 0.5px solid #E3E3E3;
    border-radius: 5px;
    display: flex;
    background-color: #F7F9FA;
    justify-content: center;
    align-items: center;
}
.structure-content .circle-item .item-img img{
    max-width: 18px;
    max-height: 18px;
}
.structure-content .circle-item .item-img.workgroup-img{
    background: linear-gradient(180deg,rgb(144, 80, 233) 0%, rgb(225, 8, 254) 100%) !important;
    border: unset;
}
.structure-content .circle-item .item-img.workgroup-img h5{
    font-size: 10px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 15px;
}
.structure-content .circle-item h4{
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 23px;
}
.circle-grid p{
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #42464D;
    margin: 0;
}
.circle-grid a.btn-theme-primary{
    justify-self: flex-start;
    padding: 8px 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #FFF !important;
    margin-top: 16px;
}
.comm-header .sb-menu li:not(:last-child) .circle-grid a.btn-theme-primary:hover {
    color: #fff !important;
}
.comm-header .sb-menu .comm-join-btn a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    background-color: #9050E9;
    border: 1px solid #9050E9;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 4px;
}
.comm-mobile-header {
    display: none;
    background: #fff;
}
.mobile-global-switcher{
    display: none;
}

@media (min-width: 320px) and (max-width: 576.98px) {
    .container.comm-container{
        max-width: 90% !important;
    }
}
@media (min-width: 577px) and (max-width: 767.98px) {
    .container.comm-container{
        max-width: 85% !important;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .container.comm-container{
        max-width: 85% !important;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container.comm-container{
        max-width: 85% !important;
    }
}
@media (min-width: 1200px) {
    .container.comm-container{
        max-width: 90% !important;
    }
}
.df-switch-tabs-wrapper{
    top: 85px !important;
}
.globalswitcher a{
    height: 85px !important;
}
#mobile__switcher_toggler{
    width: unset !important;
    display: none !important;
}
#mobile__switcher_toggler .df_apps span{
    display: none !important;
}
.df__deep_apps{
    margin-top: unset !important;
    border-radius: 0 !important;
    border: 0.2px solid #7F56D9 !important;
}
.mobile__global_switcher .df-switch-wrapper{
    margin-top: 20px;
}
.mobile__global_switcher.df-switch-tabs-wrapper{
    padding: 0 !important;
}
.mobile__global_switcher.df-switch-tabs-wrapper .df-switch-tabs{
    padding: 16px 16px 30px !important;
}
@media (min-width: 320px) and (max-width: 1229.98px) {
    #mobile__switcher_toggler{
        display: block !important;
    }
    .df__deep_apps{
        padding: 20px 22px !important;
    }
    /* .comm-header .sb-header-container{
        height: 80px;
    } */
    .sb-header.comm-header .logo{
        padding: 0px 0px 0px 0px;
    }
    .comm-header .global-toggle-mobile{
        display: block;
    }
    .comm-header .global-toggle{
        display: none;
    }
    .comm-header .global-toggle-mobile{
        position: relative;
    }
    .global-toggle-mobile a{
        width: 55px;
    }
    .global-toggle-mobile img{
        width: 16px;
        height: 16px;
    }
    .sb-header-container{
        padding: 16px 0px;
    }
    .comm-btns{
        display: none;
    }
    .burger-menu{
        top: unset;
    }
    .sb-header.comm-header .burger-menu{
        width: 32px;
        height: 26px;
    }
    .line-menu.first-line{
        align-self: flex-end;
    }
    .line-menu.line-half{
        width: 55%;
    }
    .line-menu.last-line{
        align-self: flex-end;
    }
    .burger-menu.menu-open .line-menu.first-line{
        align-self: flex-start;
        transform: rotate(-90deg) translateX(5px);
        width: 50%;
    }
    .burger-menu.menu-open .line-menu.last-line {
        transform: rotate(-90deg) translateX(-5px);
        align-self: flex-end;
        width: 50%;
    }
    


    .comm-header .sb-menu {
        display: none;
    }
    .comm-mobile-outer{
        padding: 10px 8px 25px 8px;
        border-bottom: 1px solid #E3E3E3;
    }
    .comm-mobile-outer ul li:first-of-type{
        padding-top: 15px;
    }
    .comm-mobile-outer ul li{
        font-size: 16px;
        line-height: 24px;
        color: #242424;
        font-weight: 500;
        font-family: "DM Sans", sans-serif;
        padding-bottom: 16px;
        border-bottom: 2px dotted #CECECE;
        padding-top: 14px;
        position:relative;
        cursor: pointer;
    }
    .comm-mobile-outer ul li.dropdown_menu::before{
        display: inline-block;
        content: "";
        position: absolute;
        right: 0;
        top: 25px;
        margin-left: 6px;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #7A7A7A;
        transform: rotate(-90deg);
        border-radius: 3px 3px 0 0;
    }
    .comm-mobile-outer .comm-mobile-btns{
        display: flex;
        justify-content: space-between;
        gap: 13px;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .comm-mobile-outer .comm-mobile-btns a.btn-theme-primary{
        padding: 12px 54px;
    }




    .mobile-inner-meta{
        padding: 25px 10px;
        border-bottom: 1px solid #E3E3E3;
    }
    .mobile-inner-meta .mobile-back-btn{
        display: flex;
    }
    .mobile-inner-meta .mobile-back-btn .mobile-back-meta{
        cursor: pointer;
    }
    .mobile-inner-meta .mobile-back-btn .mobile-back-meta span{
        margin-left: 10px;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #9050E9;
    }
    .mobile-inner-meta .mobile-back-btn p{
        margin: 0 auto;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #242424;
    }
    .mobile-inner-meta .comm-mobile-btns{
        display: flex;
        justify-content: space-between;
        gap: 13px;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .mobile-inner-meta .comm-mobile-btns a.btn-theme-primary {
        padding: 12px 54px;
    }

    .mobile-second-inner ul{
        margin-top: 25px;
    }
    .mobile-second-inner ul li{
        position: relative;
        cursor: pointer;
    }
    .mobile-second-inner ul li.dropdown_menu::before{
        display: inline-block;
        content: "";
        position: absolute;
        right: 0;
        top: 25px;
        margin-left: 6px;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #7A7A7A;
        transform: rotate(-90deg);
        border-radius: 3px 3px 0 0;
    }
    .mobile-second-inner .inner-item-wrapper{
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 11px 5px 16px 5px;
        border-bottom: 2px dotted #CECECE;
    }
    .mobile-second-inner .inner-item-wrapper .inner-item-img{
        background-color: transparent;
        border: 0.4px solid #E3E3E3;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: start;
        width: 20px;
        height: 20px;
    }
    .mobile-second-inner .inner-item-wrapper .inner-item-img img{
        max-width: 14px;
        max-height: 14px;
    }
    .mobile-second-inner .inner-item-wrapper .inner-item-content h3{
        font-size: 14px;
        line-height: 24px;
        color: #242424;
        font-weight: 700;
    }
    .mobile-second-inner .inner-item-wrapper .inner-item-content p{
        margin: 0;
        font-size: 14px;
        line-height: 24px;
        color: #858585;
        font-weight: 400;
    }

    .mobile-inner-final{
        padding: 25px 10px;
        border-bottom: 1px solid #E3E3E3;
    }
    .mobile-inner-final .mobile-back-btn{
        display:flex;
    }
    .mobile-inner-final .mobile-back-btn .final-back-meta{
        cursor: pointer;
    }
    .mobile-inner-final .mobile-back-btn .final-back-meta span{
        margin-left: 10px;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #9050E9;
    }
    .mobile-inner-final .mobile-back-btn p{
        margin: 0 auto;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #242424;
    }
    .mobile-inner-final .mobile-final-inner-meta ul{
        margin-top: 29px;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper{
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 19px 0 21px 0;
        border-bottom: 2px dotted #CECECE;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper .item-img-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25px;
        height: 25px;
        background-color: #F7F9FA;
        border: 0.5px solid #E3E3E3;
        border-radius: 5px;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper .item-img-wrapper img{
        width: 17px;
        height: 17px;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper .item-img-wrapper.workgroup-img{
        background: linear-gradient(180deg,rgb(144, 80, 233) 0%, rgb(225, 8, 254) 100%) !important;
        border: unset;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper .item-img-wrapper.workgroup-img h5{
        font-size: 10px;
        line-height: 16px;
        font-weight: 900;
    }
    .mobile-inner-final .mobile-final-inner-meta .item-wrapper h3{
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        color: #1E1E1E;
    }
    .mobile-inner-final .mobile-final-inner-meta p{
        font-size: 16px;
        color: #42464D;
        line-height: 24px;
        max-width: 700px;
    }
    .mobile-inner-final .mobile-final-inner-meta .comm-mobile-btns {
        display: flex;
        justify-content: space-between;
        gap: 13px;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .mobile-inner-final .mobile-final-inner-meta .comm-mobile-btns a.btn-theme-primary {
        padding: 12px 66px;
    }

    .comm-mobile-header .mobile-all-events-meta{
        padding: 25px 10px;
        border-bottom: 1px solid #E3E3E3;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-back-btn {
        display: flex;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-back-btn .mobile-back-meta {
        cursor: pointer;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-back-btn .mobile-back-meta span {
        margin-left: 10px;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #9050E9;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-back-btn p {
        margin: 0 auto;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #242424;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-all-events-inner ul {
        margin-top: 25px;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-all-events-inner li {
        position: relative;
        cursor: pointer;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-all-events-inner li.dropdown_menu::before {
        display: inline-block;
        content: "";
        position: absolute;
        right: 0;
        top: 25px;
        margin-left: 6px;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #7A7A7A;
        transform: rotate(-90deg);
        border-radius: 3px 3px 0 0;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-all-events-inner .inner-item-wrapper {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 11px 5px 16px 5px;
        border-bottom: 2px dotted #CECECE;
    }
    .comm-mobile-header .mobile-all-events-meta .mobile-all-events-inner .inner-item-wrapper .inner-item-content h3 {
        font-size: 14px;
        line-height: 24px;
        color: #242424;
        font-weight: 700;
    }
    .comm-mobile-header .mobile-all-events-meta .comm-mobile-btns{
        display: flex;
        justify-content: space-between;
        gap: 13px;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .comm-mobile-header .mobile-all-events-meta .comm-mobile-btns a.btn-theme-primary {
        padding: 12px 54px;
    }






    .mobile-global-switcher {
        width: 100%;
        background-color: #13072D;
    }
    .mobile-global-switcher .deep-initiative-left .deep-initiative-logo .switcher-img{
        display: flex;
        gap: 7px;
        margin-bottom: 10px;
    }
    .mobile-global-switcher .deep-initiative-left .initiative-description {
        color: #D2D6DD;
        font-family: "DM Sans";
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .mobile-global-switcher .deep-initiative-left .initiative-button {
        padding: 8px 24px;
        cursor: pointer;
        border-radius: 4px;
        border: 1px solid #BF9AF2;
        background: var(--Brand-50, #F9F5FF);
        color: #9050E9;
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        width: fit-content;
    }
    .df-switch-tabs {
        width: 100%;
        display: flex;
        gap: 24px;
        padding: 16px;
        padding-top: 16px;
        padding-left: 16px;
        padding-top: 0px;
        border-bottom: 1px solid var(--Gray-700, #344054);
        background: rgba(19, 7, 45, 0.80);
        backdrop-filter: blur(37px);
        position: absolute;
    }
    .mobile-global-switcher .global-mobile-right{
        padding: 0px 5px 30px 5px;
    }
    .mobile-global-switcher .global-mobile-right ul{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .mobile-global-switcher .global-mobile-right .mobile-switcher-item{
        padding: 20px 16px 0px 16px;
        border: 1px solid #475467;
        border-radius: 8px;
    }
    .mobile-global-switcher .global-mobile-right .mobile-switcher-item .switcher-img{
        display: flex;
        gap: 7px;
        margin-bottom: 10px;
    }
    .mobile-global-switcher .global-mobile-right .mobile-switcher-item .coming-soon {
        color: #D2D0D7 !important;
        font-family: "DM Sans" !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 20px !important;
        padding: 4px 12px !important;
        border-radius: 60px !important;
        border: 1px solid var(--Foundation-Violet-V75, #A39EB2) !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }
    .mobile-global-switcher .global-mobile-right .mobile-switcher-item .switcher-img span.logo-text{
        color: #FFF !important;
        font-family: Orbitron !important;
        font-size: 20px !important;
        font-style: normal !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
        text-transform: none !important;
        text-align: initial;
    }
    .mobile-global-switcher .global-mobile-right .mobile-switcher-item p{
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 24px;
        color: #858585;
    }
}




.deep-initiative-left {
    padding: 38px 48px;
    max-width: 373px;
    min-height: 282px;
    border: 1px solid #000;
    background: linear-gradient(-90deg,rgb(20, 8, 46) 0%, rgb(63, 32, 54) 75%);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.deep-initiative-left .coming-soon {
  color: #D2D0D7 !important;
  font-family: "DM Sans" !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  display: flex !important;
  padding: 4px 12px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 60px !important;
  border: 1px solid var(--Foundation-Violet-V75, #A39EB2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  width: fit-content;
  margin-top: 16px;
}


@media (max-width: 575.98px) {
  .mobile-global-switcher .deep-initiative-left {
    width: unset;
    min-height: 260px;
    margin-left: -20px;
    margin-bottom: 43px;
    max-width: unset;
  }

}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .mobile-global-switcher .deep-initiative-left {
    margin-bottom: 24px;
    max-width: unset;
    min-height: unset;
  }
}


/* Global Switcher Web */

.globalswitcher{
  position: absolute;
}
.globalswitcher a {
  display: flex;
  width: 71px;
  height: 71px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #9050E9;
  background: #9050E9;
}

.df-switch-tabs-wrapper{
  background: #211440;
  position: sticky;
  top: 85px;
  z-index: 104;
  display: none;
}
.df-switch-tabs-wrapper .df-switch-tabs {
  display: flex;
  gap: 24px;
  padding: 16px;
  backdrop-filter: blur(37px);
  /* margin-bottom: 32px; */
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab {
  /* width: calc(31.6% - 0px); */
 width: calc(47% - 0px);
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button {
  padding: 20px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button.active {
  border-radius: 12px;
  border: 1px solid var(--Gray-200, #EAECF0);
  background: var(--Foundation-Violet-V50, #E9E7EC);
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button span {
  color: #B0A6C6;
  font-family: "DM Sans";
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button p {
  margin-bottom: 0;
  color: #98A2B3;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-align: initial;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button.active span {
  color: var(--Foundation-Violet-V500, #120B29);
  font-family: Orbitron;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.92px;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button.active p {
  color: var(--Gray-500, #667085);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  text-align: initial;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab .coming-soon {
  color: #D2D0D7 !important;
  font-family: "DM Sans" !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  display: flex !important;
  padding: 4px 12px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 60px !important;
  border: 1px solid var(--Foundation-Violet-V75, #A39EB2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button.active .logo-text {
  color: var(--Foundation-Violet-V500, #120B29);
  font-family: Orbitron;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
  margin-bottom: 10px;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button:hover {
  border-radius: 12px;
  border: 1px solid var(--Gray-200, #EAECF0);
  background: var(--Foundation-Violet-V50, #E9E7EC);
  transition: 0.5s all;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button:has(.coming-soon):hover {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  cursor: default !important;
  border: unset !important;
  pointer-events: none;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button .logo-text {
  color: var(--Gray-200, #EAECF0);
  font-family: Orbitron;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
    display: flex;
  gap: 12px;
  align-items: center;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button:hover .logo-text {
  color: var(--Foundation-Violet-V500, #120B29);
  font-family: Orbitron;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 10px;
}
.df-switch-tabs-wrapper .df-switch-tabs .df-switch-tab button:has(.coming-soon):hover .logo-text {
  color: var(--Gray-200, #EAECF0) !important;
}
.df-switch-wrapper{
    display: flex;
}
.deep-initiative-left {
  padding: 36px 32px;
  max-width: 373px;
  min-height: 282px;
  border: 1px solid #000;
  background: #14082E;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.deep-initiative-left::after {
  content: "";
  position: absolute;
  left: -47.164px;
  bottom: 0px;
  width: 443px;
  height: 158px;
  border-radius: 771px;
  background: linear-gradient(243deg, #32C5FF -1.39%, #B620E0 43.99%, #F7B500 87.13%);
  filter: blur(142px);
  z-index: 0;
  pointer-events: none;
}
.deep-initiative-left > * {
  position: relative;
  z-index: 1;
}
.deep-initiative-logo {
  margin-bottom: 16px;
}
.deep-initiative-logo .switcher-img{
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
}
.deep-initiative-logo .logo-text{
    color: var(--Gray-200, #EAECF0);
    font-family: Orbitron;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.deep-initiative-left .initiative-description {
  color: #D2D6DD;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.deep-initiative-left .initiative-button {
  padding: 8px 24px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #BF9AF2;
  background: var(--Brand-50, #F9F5FF);
  color: #9050E9;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: auto;
  width: fit-content;
}
.initiative-button:hover {
  color: #ffffff;
  border: 1px solid #BF9AF2;
  background: #9050E9;
}


@media (max-width: 1199.98px) {
  .globalswitcher {
    display: none;
  }
}