@font-face {
    font-family: 'Nebula';
    src: url('/fonts/nebula_2/Nebula-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
*{
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'roboto mono', sans-serif;
}
.d-flex{
    display: flex;
}
a{
    text-decoration: none;
}
.header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}
.fixed-header {
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #ffffff17;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99990;
    transition: transform 0.2s ease-in-out;
}
.fixed-header.active{
    transform: translateY(0);
}

.header-top {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}

.home-icon {
    width: 32px;
    height: auto;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector {
    width: 71px;
    height: 37px;
    background: rgba(254, 252, 251, 0.1);
}

.language-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.language-dropdown:hover p {
    color: #46ed6b;
}
.language-dropdown:hover svg path {
    fill: #46ed6b;
}
.language-dropdown p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    margin-right: 10px;
}
.menu-button {
    display: flex;
    align-items: center;
    background: #fff;
    backdrop-filter: blur(2px);
    padding: 8px;
    color: #26262b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: .2s;
}
.menu-button:hover {
    background: rgba(254, 252, 251, 0.1);
}
.menu-button:hover .menu-text {
    color: #46ed6b;
}

.menu-button:hover svg path {
    fill: #46ed6b;
}
.menu-icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'nebula', sans-serif;
}

.menu-icon {
    width: 20px;
    height: auto;
}

.menu-text {
    font-feature-settings: "liga" off, "clig" off;
}

.main-content {
    position: relative;
    padding-top: 80px;
}

.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}


/* ----------------------- MENU ------------------------------------- */
.menu-wrap{
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #03020acc;
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    overflow-y: auto;
}
.menu-wrap.active{
    display: block;
}
.menu-logo{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9999;
}
.menu {
    transform: translateX(100%);
    transition: .2s ease;
    width: 400px;
    background-color: rgba(3, 2, 10, 0.7);
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
}
.menu.active{
    transform: translateX(0);
}
.header-menu-section{
    display: flex;
    justify-content: space-between;
}
.header-menu-section .menu-title{
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.menu-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}
.close-menu{
    cursor: pointer;
    transition: .2s ease;
}
.close-menu:hover svg path{
    fill: #46ed6b;
}
.menu-section {
    margin-bottom: 20px;
}
.menu-section ul {
    list-style: none;
    padding: 0;
}
.menu-section ul li {
    cursor: pointer;
    padding-bottom: 16px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
    transition: .2s ease;
}
.menu-section ul li a {
    color: #5F5E66;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 8%;
    font-weight: bold;
    transition: .2s ease;
}
.menu-section ul li svg{
    transition: .2s ease;
}
.menu-section ul li a span {
    color: #46ed6b;
    font-size: 0.8em;
}
.menu-section ul li a.highlight {
    color: #46ed6b;
}
.menu-section ul li:hover {
    border-bottom: 1px solid white;
}
.menu-section ul li:hover a {
    color: white;
}
.menu-section ul li:hover svg {
    transform: rotate(45deg);
}
.menu-section ul li:hover svg path {
    fill: white;
}

.menu-section ul li.green:hover {
    border-bottom: 1px solid #46ed6b;
}
.menu-section ul li.green:hover a {
    color: #46ed6b;
}
.menu-section ul li.green:hover svg path {
    fill: #46ed6b;
}
.change-language, .menu-icons{
    display: none;
}

/* responsive menu */
@media(max-width:834px){
    .menu{
        width: 100%;
        background-color: #26262B;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .close-menu{
        margin-top: -75px;
    }
    .header-menu-section{
        justify-content: flex-end;
    }
    .header-menu-section .menu-title{
        display: none;
    }
    .menu-section ul{
        max-height: 0;
        overflow: hidden;
        transition: max-height .2s ease;
    }
    .menu-section.active ul{
        max-height: 500px;
    }
    .menu-title{
        cursor: pointer;
        display: flex;
        justify-content: space-between;
    }
    .menu-title::after {
        content: '';
        width: 24px;
        height: 24px;
        background-image: url('/images/ico-arrow-mobile.svg');
        display: inline-block;
        margin-left: 8px;
        transition: transform 0.3s ease;
      }
      
      .menu-section.active .menu-title::after {
        transform: rotate(-180deg);
      }
      .change-language{
        color: #5F5E66;
        display: block;
        margin-top: 100px;
        border-bottom: 1px solid rgba(254, 252, 251, 0.25);
      }
      .change-language .menu-title{
        color: #5F5E66;
      }
      .change-language .menu-title::after {
        background-image: url('/images/ico-arrow-mobile-gray.svg');
      }
      .menu-icons{
        display: flex;
        justify-content: space-between;
        margin-top: 48px;
      }

}
/* ----------------------- MENU ------------------------------------- */
.background-image {
    width: 100%;
    height: 100%;
    object-position: center;
}
.background-blobs{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: .4;
    transform: translateX(20%);
    transition: .2s ease;
    animation: fadeBlob 45s infinite ease-in-out
}


  @keyframes fadeBlob {
    0%, 100% {
        opacity: 0.4; 
      }
      50% {
        opacity: 1; 
      }
  }
.rays{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    animation: fadeInOut 30s infinite;
}

.rays-1 {
    animation-delay: 0s;
}

.rays-2 {
    animation-delay: 7.5s; 
}

.rays-3 {
    animation-delay: 15s;
}

.rays-4 {
    animation-delay: 22.5s; 
}

@keyframes fadeInOut {
    0% {
      opacity: 0;
    }
    15% {
      opacity: 1;
    }
    40% {
      opacity: 1;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}


.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 80px;
    max-width: 1680px;
    margin: 0 auto;
}

.logo-section {
    text-align: center;
    margin-top: 89px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 89.76px;
    font-size: 90px;
    font-weight: 400;
    position: relative;
}

.logo-image {
    width: 210px;
    height: auto;
    
}


.logo-text {
    text-shadow: 0px 4px 4px rgba(6, 5, 16, 0.22);
    margin-top: 10px;
    font-family: 'Nebula', sans-serif;
    margin-left: 73px;
    position: relative;
    color: white;
    display: inline-block;
    -webkit-background-clip: text !important;
    background-size: 200% 200%;
    transition: background-position 30s ease-in-out, color 2s ease-in-out;
}



.header-description {
    margin-top: 43px;
    color: #b3b2b7;
    text-transform: capitalize;
    padding: 0 70px 11px;
    font-size: 19px;
    font-weight: 500;
    line-height: 2;
}

.divider {
    margin-top: 48px;
    height: 1px;
    background-color: rgba(254, 252, 251, 0.25);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    height: 100%;
    width: 200px;
    background: linear-gradient(to right, transparent, #46ed6b, transparent);
    animation: moveGreenBar 15s ease infinite;
    animation-delay: 4s;
}

@keyframes moveGreenBar {
    0% {
        left: -200px; 
    }
    20%{
        left: 100%;
    }
    100% {
        left: 100%; 
    }
}


.navigation-section {
    width: 100%;
    display: flex;
    margin-top: 15px;
    gap: 20px;
    text-transform: uppercase;
    justify-content: space-between;
    font-size: 16px;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.96px;
    justify-content: start;
    margin: auto 0;
    padding: 8px 0;
}

.nav-item {
    display: flex;
    min-height: 40px;
    width: 100%;
    flex-direction: column;
    color: #46ed6b;
    justify-content: start;
    cursor: pointer;
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
    margin-bottom: 30px;
    transition: .2s;
}

.nav-item.white{
    color: white;
}
.nav-item-content {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 40px 100px;
    justify-content: space-between;
}

.nav-icon {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.nav-item:hover .nav-icon {
    transform: rotate(45deg);
}

.nav-item:hover {
    border-bottom: #46ed6b 2px solid;
}
.nav-item:nth-child(2):hover {
    border-bottom: white 2px solid;
}


.section-selector {
    display: flex;
    min-height: 160px;
    flex-direction: column;
    align-items: end;
    color: rgba(254, 252, 251, 0.25);
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.48px;
    line-height: 1;
    justify-content: center;
}

.section-item {
    display: flex;
    margin-bottom: 15px;
    min-height: 16px;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    justify-content: start;
    cursor: pointer;
}
.section-item:hover {
    text-decoration: underline;
    color: white;
}
.section-text {
    min-height: 16px;
    width: 100%;
}

.footer-section {
    display: flex;
    margin-top: 64px;
    width: 100%;
    align-items: start;
    gap: 20px;
    color: #eff0f8;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 11px;
    line-height: 27px;
}

.scroll-container {
    position: relative;
    display: flex;
    margin-top: 10px;
    align-items: center;
    gap: -8px;
    justify-content: start;
    padding: 4px 0;
}

.scroll-container:hover .button-lines {
    filter: brightness(.6); 
}
.scroll-container:hover img {
    filter: brightness(.6); 
}
.scroll-wrapper {
    position: relative;
    display: flex;
    min-height: 48px;
    width: 287px;
    justify-content: center;
    margin: auto 0;
    cursor: pointer;
}

.button-lines{
    width: 51px;
}
.scroll-background {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    fill: rgba(254, 252, 251, 0.1);
    align-self: center;
    z-index: 0;
}

.scroll-background.right {
    transform: rotateX(180deg);
}

.scroll-content {
    position: absolute;
    z-index: 0;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.search-text {
    margin: auto 0;
    font-family: 'Nebula', sans-serif;
    font-size: 16px;
}

.search-icon {
    width: 26px;
    height: auto;
}

.search-container {
    transform: translateY(90px);
    width: 40%;
    border-top: 1px solid rgba(254, 252, 251, 0.25);
    backdrop-filter: blur(2px);
    gap: 8px;
    overflow: hidden;
    font-family: 'Roboto Mono', sans-serif;
    color: #b3b2b7;
    text-align: center;
    line-height: 40px;
    padding: 16px 64px;
}

.mobile-button{
    display: none;
}
@media (max-width: 834px) {
   
    /* .nav-controls {
        margin-top: 10px;
    } */
    .content-wrapper {
        padding: 35px 20px;
    }
    .logo-section {
        margin-top: 40px;
    }
    .logo-container {
        font-size: 40px;
        letter-spacing: 40px;
    }
    .logo-text{
        margin-left: 40px;
    }
    .header-description {
        margin-top: 40px;
        padding: 0 20px;
        font-size: 18px;
    }
    .divider {
        margin-top: 40px;
        height: 0;
        
    }
    .navigation-section {
      display: none;
    }
    .nav-menu {
        align-items: center;
    }
    .footer-section {
        margin-top: 140px;
    }
    .search-container {
        padding: 0 20px;
        font-size: 10px;
        width: 50%;
    }
    .scroll-wrapper{
        width: 237px;
    }
    .search-text{
        font-size: 12px;
    }
    .button-lines{
        width: auto;
       height: 100%;
    }
}
@media (max-width: 376px){
    .main-content{
        background-image: url('/images/main-bg-mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
    .background-image-container{
        display: none;
    }
    .logo-image{
        width: 120px;
    }
    .main-content .logo-text{
        width: 100%;
        font-size: 25px;
        letter-spacing: 22px;
        margin-left: 22px;
        margin-top: 32px;
    }
    .header-description{
        font-size: 16px;
    }
    .search-container{
        display: none;
    }
    .footer-section{
        display: none;
    }
    .mobile-button{
        display: block;
        margin-top: 56px;
    }
    .mobile-button .primary-button{
        padding: 17px 25px;
        font-size: 14px;
    }
    .brand-description{
        display: none;
    }
}
/* --------------------- FEATURES SECTION ---------------------  */
.features-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 112px 262px 104px;
    overflow: hidden;
}

.background-wrapper {
    position: absolute;
    z-index: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    inset: 0;
    height: 100%;
}


.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background-color: #2E2E33; 
    opacity: 0.8;
}

.line.horizontal {
    width: 100%;
    height: 1px;
}

.line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}
.line.vertical.runner {
    overflow: hidden; 
}

.line.vertical.runner::before {
    content: '';
    position: absolute;
    top: -200px; 
    left: 0;
    width: 100%; 
    height: 200px; 
    background: linear-gradient(to bottom, transparent, #46ed6b, transparent);
    animation: moveGreenBarVertical 10s ease-in-out infinite; 
  }

.line.vertical.runner.delayed::before {
    animation-delay: 4s; 
  }
  
  @keyframes moveGreenBarVertical {
    0% {
      top: -200px; 
    }
    30%{
        top: 100%;
    }
    100% {
      top: 100%; 
    }
  }

.hero-background {
    background-image: url('/images/Section\ 02.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.content-container {
    z-index: 0;
    display: flex;
    width: 100%;
    max-width: 1396px;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    max-width: 1680px;
    margin: 0 auto;
}

.header-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: end;
    justify-content: start;
}

.header-text {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 40px 100px;
    color: var(--black-grey-16, #eaeaed);
    text-transform: uppercase;
    letter-spacing: 0.48px;
    justify-content: space-between;
    flex-wrap: wrap;
    font: 400 12px/1 Roboto Mono, sans-serif;
}
.squares-img{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.brand-name {
    align-self: stretch;
    gap: 8px;
}

.brand-description {
   
}

.features-grid {
    display: flex;
    margin-top: 32px;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
}

.feature-card {
    display: flex;
    line-height: normal;
    margin: 0;
    cursor: pointer;
    flex: 1 1 calc(33.33% - 0px);
    box-sizing: border-box; 
    margin: 0;
    transition: .2s ease;
}
.feature-card:nth-child(2), .feature-card:nth-child(5), .feature-card:last-child{
    border: 1px solid var(--Base-19, #e7e6f1);
    border-bottom: none;
}

.feature-card:hover{
    background-color: rgb(12 12 13);
}
.feature-card .cross-card-icon{
    position: absolute;
    width: 30px;
    top: -15px;
    left: -15px;
}
.feature-card .card-content {
    align-items: start;
    background: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    position: relative;
    display: flex;
    min-height: 256px;
    flex-grow: 1;
    flex-direction: column;
    font-family: Roboto Mono, sans-serif;
    justify-content: start;
    width: 100%;
    padding: 32px 39px 64px;
    transition: .2s ease-in-out;
}



.card-title {
    color: var(--Base-19, #e7e6f1);
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
    z-index: 0;
}

.card-description {
    color: var(--black-grey-14, #B3B2B7);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 56px;
}

.corner-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 15px;
    position: absolute;
    z-index: 0;
    height: 15px;
}

.icon-top-left {
    left: 0;
    top: 0;
}

.icon-top-right {
    right: 0;
    top: 0;
}

.icon-bottom-left {
    left: 0;
    bottom: 0;
}

.icon-bottom-right {
    right: 0;
    bottom: 0;
}

.bottom-section {
    display: flex;
    margin-top: 48px;
    width: 100%;
    gap: 20px;
    font-family: Roboto Mono, sans-serif;
    font-weight: 700;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-title {
    align-self: stretch;
    flex: 1;
    gap: 10px;
    font-size: 33px;
    font-weight: bold;
    color: var(--Base-17, #fff);
    text-transform: capitalize;
    letter-spacing: 0.66px;
    line-height: 1;
}


.cta-wrapper {
    display: flex;
    align-items: start;
    font-size: 14px;
    color: var(--black-grey-10, #26262b);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.cta-button {
    font-feature-settings: "liga" off, "clig" off;
    background: #fff;
    padding: 19px 46px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    font-weight: bold;
    color: #26262b;
    border: none;
}

.cta-button .default-text {
    position: absolute;
    display: block;
    z-index: 1;
    transition: 0.3s ease;
}
.cta-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(-100%, 100%);
    transition: .2s ease-in-out;
    z-index: 9;
}
.cta-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(100%, -100%);
    transition: .2s ease-in-out;
    z-index: 9;
}

.hover-text{
    position: absolute;
    display: block;
    color: #46ed6b;
    transform: translateY(50px);
    position: relative;
    transition: .3s ease-in-out;
    z-index: 99;
}

.cta-button:hover .default-text {
    transform: translateY(-100px);
}
.cta-button:hover .hover-text{
    transform: translateY(0);
}
.cta-button:hover .cta-button::after{
    transform: translateY(0);    
}

.cta-button:hover::before, .cta-button:hover::after{
    transform: translate(0, 0);
}

.cta-button .top,  .cta-button .bottom {
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #46ed6b;
    transition: .5s ease;
    z-index: 99;
}
.cta-button .right, .cta-button .left{
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #46ed6b;
    transition: .5s ease-in-out;
    z-index: 99;
}
.cta-button:hover .right, .cta-button:hover .left{
    height: 100%;
}
.cta-button:hover .top, .cta-button:hover .bottom{
    width: 100%;
}
.cta-button .top{
    top: 0;
    right: 0;
}
.cta-button .right{
    top: 0;
    right: 0;
}
.cta-button .bottom{
    bottom: 0;
    left: 0;
}
.cta-button .left{
    bottom: 0;
    left: 0;
}


/* --------------------- FEATURES SECTION ---------------------  */

/* --------------------- INFRASTRUCTURE SECTION --------------------- */

.infrastructure-section {
    background-image: url('/images/Section\ 02.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    color: #eaeaed;
    position: relative;
    overflow: hidden;
    
}

.infrastructure-section .line.horizontal.runner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, transparent, #46ed6b, transparent);
    animation: moveHorizontalBar 10s ease-in-out infinite;
}


@keyframes moveHorizontalBar {
0% {
    left: -200px;
}
30% {
    left: 100%;
}
100% {
    left: 100%;
}
}

.content-wrapper {
    margin: 0 auto;
    padding: 104px 20px;
    z-index: 9999;
}

.brand-description-text{
    font-size: 30px;
    text-transform: capitalize;
    font-weight: bold;
}


.cards-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 32px;
}

.card {
    position: relative;
    background: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    text-align: left;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.card:hover{
    background-color: rgb(36, 36, 36)
}
.card:hover .cards-arrow{
    display: block;
}
.cards-grid .card:hover svg path{
    fill: #46ed6b;
}

.card-icon{
    padding: 2px;
    margin-bottom: 110px;
}

.card-icon img {
    width: 64px;
    height: 64px;

}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: left;
}
.cards-arrow{
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: rotate(90deg);
    width: 22px;
}
.infrastructure-section .card-description {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 42px;
}

.download-section {
    width: 100%;
    text-align: center;
    margin-top: 64px;
}


.download-section .section-title {
    margin-bottom: 70px;
    color: #5F5E66;
    text-transform: uppercase;
    font-size: 12px;
}

.download-section .section-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #b3b2b7;
}

.download-links {
    display: flex;
    justify-content: space-between;
}

.download-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #eaeaed;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-icon {
    width: 64px;
    height: 64px;
    margin-right: 10px;
}

@media (max-width: 834px) {
    .infrastructure-section {
        background-image: url('/images/section3-bg-middle.png');
    }
    .infrastructure-section .content-wrapper{
        padding: 34px 20px;
    }
    .cards-grid {
        align-items: center;
    }
}

@media (max-width: 376px) {
    .download-section{
        width: 88%;
        overflow: hidden;
    }
}
/* !------------------------- INFRASTRUCTURE SECTION -------------------------! */

/* -------------------- LANGUAGE SECTION -------------------- */

.language-section {
    background-image: url('/images/section4-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.language-section .content-wrapper {
    padding-top: 170px;
}
.left-animation{
    position: absolute;
    height: 100%;
    width: 40%;
    left: 0;
    top: 0;
}
.left-animation img{
    position: absolute;
}
.green-square{
    position: absolute;
    bottom: 112px;
    left: 127px;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.green-square img{
    position: absolute;
}
.left-animation .middle{
    right: 0;
    top: 31%;
}
.left-animation .little{
    bottom: 40px;
    left: 0;
}
.left-animation .little-last{
    top: 36%;
    left: 127px;
}
.right-animation{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
}
.right-animation img:first-child{
    top: 134px;
    right: 260px;
    position: absolute;
}

.right-animation img:nth-child(2){
    top: 50%;
    right: 127px;
    position: absolute;
}
.right-animation img:nth-child(3){
    bottom: 95px;
    right: 312px;
    position: absolute;
}

.left-animation {
    animation: moveRigthAndFade 150s ease infinite;
}

@keyframes moveRigthAndFade {
    0% {
        left: 0;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0; 
    }
}

.right-animation {
    animation: moveLeftAndFade 150s ease infinite;
}

@keyframes moveLeftAndFade {
    0% {
        right: 0;
        opacity: 1;
    }

    100% {
        right: 100%;
        opacity: 0; 
    }
}
.header-container {
    align-self: stretch;
    display: flex;
    min-height: 92px;
    flex-direction: column;
    font-family: 'Roboto Mono', sans-serif;
}

.header-content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.subtitle {
    align-self: center;
    font-size: 12px;
    color: var(--black-grey-16, #eaeaed);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    line-height: 1;
}

.title {
    align-self: stretch;
    margin-top: 16px;
    min-height: 64px;
    width: 100%;
    font-size: 44px;
    color: var(--Base-17, #fff);
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 3.54px;
    line-height: 0.9;
}

.language-circle-image {
    display: flex;
    margin-top: 72px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 10px;
    cursor: pointer;
}
.language-circle-image:hover svg{
    transform: scale(2.2);
}
.language-circle-image:hover svg path{
    fill: #46ed6b;
}

.description-container {
    display: flex;
    margin-top: 78px;
    min-height: 168px;
    width: 690px;
    max-width: 100%;
    flex-direction: column;
    font-family: 'Roboto Mono', sans-serif;
}

.description-text {
    align-self: center;
    width: 100%;
    font-size: 14px;
    color: var(--black-grey-14, #b3b2b7);
    font-weight: 400;
    text-align: center;
    line-height: 18px;
}

.highlight-text {
    color: rgba(70, 237, 107, 1);
}

.action-buttons {
    display: flex;
    margin-top: 48px;
    width: 100%;
    align-items: start;
    font-size: 12px;
    color: var(--Base-17, #fff);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24px;
    line-height: 1;
    justify-content: space-between;
    flex-wrap: wrap;
}

.button-wrapper {
    position: relative;
    display: flex;
    min-height: 48px;
    flex-direction: column;
    justify-content: space-between;
    width: 33.3%;
}

.button-wrapper:hover .button-background {
    filter: brightness(.5);
}
.button-background {
    aspect-ratio: 4.93;
    transform: rotateX(180deg);
    object-fit: contain;
    object-position: center;
    width: 237px;
    fill: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    align-self: center;
    z-index: 0;
    max-width: 100%;
}

.button-text {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    color: white;
}

.docs-text {
    width: 90px;
}

.website-text {
    width: 52px;
}

.playground-text {
    width: 75px;
}

@media (max-width: 834px) {

    .language-section {
        background-image: url('/images/section4-bg-middle.png');
    }

    .language-section.content-wrapper {
        margin-bottom: 10px;
    }
    .language-circle-image{
        margin-top: 42px;
    }   
    .language-circle-image:hover svg{
        transform: scale(2);
    }
    .header-container,
    .header-content,
    .title,
    .description-text {
        max-width: 100%;
    }

    .logo-container {
        margin-top: 40px;
    }

    .description-container {
        margin-top: 40px;
    }

    .action-buttons {
        max-width: 100%;
        margin-top: 40px;
    }

    .button-wrapper {
        white-space: initial;
    }
}

/* !---------------------------- LANGUAGE SECTION ----------------------------! */

/* -------------------------------- CONNECT SECTION ------------------------------- */
.connect-section {
    position: relative;
    width: 100%;
    background-image: url('/images/section5-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}


.connect-section .content-container {
    z-index: 1;
    margin: 0 auto;
    padding: 104px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: unset;
}

.left-content {
    min-width: 240px;
    min-height: 683px;
    width: 50%;
}

.connect-section .header-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.main-heading {
    max-width: 100%;
    width: 711px;
    color: var(--Base-17, #fff);
    text-transform: capitalize;
    letter-spacing: 0.66px;
    font: 700 33px/1 Roboto Mono, sans-serif;
}

.social-buttons {
    display: flex;
    margin-top: 72px;
    width: 496px;
    max-width: 100%;
    flex-direction: column;
    justify-content: start;
}

.social-link {
    display: flex;
    min-height: 66px;
    width: 100%;
    align-items: center;
    gap: 24px;
    justify-content: start;
    flex-wrap: wrap;
    padding: 1px 0;
    margin-bottom: 30px;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.social-link .menu-text svg{
    transition: all .2s ease-in-out;
}

.social-link:hover .icon-circle svg path {
    stroke: #46ed6b;
}

.social-link:hover .link-content {
    border-bottom: #46ed6b 2px solid;
}
.social-link:hover .link-content .menu-text{
    color: #46ed6b;
}
.social-link:hover .link-content .menu-text svg{
    transform: rotate(45deg);
}
.social-link:hover .link-content .menu-text svg path{
    fill: #46ed6b;
}

.icon-circle {
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--black-grey-12, #5f5e66);
    background: var(--black-grey-10, #26262b);
    display: flex;
    width: 64px;
    height: 64px;
    margin: auto 0;
}

.social-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 24px;
    margin: auto;
}

.link-content {
    min-width: 240px;
    color: var(--Base-17, #fff);
    text-transform: uppercase;
    letter-spacing: 0.96px;
    width: 395px;
    margin: auto 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
    font: 700 12px Roboto Mono, sans-serif;
}

.link-content .menu-text{
    display: flex;
    justify-content: space-between;
}
.arrow-icon {
    aspect-ratio: 1;
    object-fit: contain;
    width: 20px;
}

.separator {
    aspect-ratio: 500;
    object-fit: contain;
    width: 408px;
    stroke-width: 1px;
    stroke: var(--Transparent-31, rgba(254, 252, 251, 0.25));
    margin-top: 16px;
    max-width: 100%;
}

.bottom-content {
    display: flex;
    margin-top: 72px;
    width: 516px;
    max-width: 100%;
    flex-direction: column;
    justify-content: start;
    font: 14px Roboto Mono, sans-serif;
}

.description {
    flex: 1;
    min-height: 48px;
    width: 100%;
    color: var(--black-grey-14, #b3b2b7);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 24px;
}

.connect-section .action-buttons {
    align-self: start;
    display: flex;
    margin-top: 32px;
    align-items: start;
    gap: 15px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.primary-button {
   
    color: var(--black-grey-10, #26262b);
    width: 224px;
    padding: 18px 22px;
    cursor: pointer;
    transition: 0.3s ease;
    overflow: hidden;
}

.primary-button .button-text {
    position: initial;
    text-transform: uppercase;
    color: var(--black-grey-10, #26262b);
    font-weight: bold;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-button {
    font-feature-settings: "liga" off, "clig" off;
    background: #fff;
    padding: 19px 46px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    font-weight: bold;
    color: #26262b;
    border: none;
}

.primary-button .default-text {
    position: absolute;
    display: block;
    z-index: 1;
    transition: 0.3s ease;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(-100%, 100%);
    transition: .2s ease-in-out;
    z-index: 9;
}

.primary-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(100%, -100%);
    transition: .2s ease-in-out;
    z-index: 9;
}

.primary-button .hover-text {
    position: absolute;
    display: block;
    color: #46ed6b;
    transform: translateY(50px);
    position: relative;
    transition: .3s ease-in-out;
    z-index: 99;
}

.primary-button:hover .default-text {
    transform: translateY(-100px);
}

.primary-button:hover .hover-text {
    transform: translateY(0);
}

.primary-button:hover::before, .primary-button:hover::after {
    transform: translate(0, 0);
}

.primary-button .top, .primary-button .bottom {
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #46ed6b;
    transition: .5s ease;
    z-index: 99;
}

.primary-button .right, .primary-button .left {
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #46ed6b;
    transition: .5s ease-in-out;
    z-index: 99;
}

.primary-button:hover .right, .primary-button:hover .left {
    height: 100%;
}

.primary-button:hover .top, .primary-button:hover .bottom {
    width: 100%;
}

.primary-button .top {
    top: 0;
    right: 0;
}

.primary-button .right {
    top: 0;
    right: 0;
}

.primary-button .bottom {
    bottom: 0;
    left: 0;
}

.primary-button .left {
    bottom: 0;
    left: 0;
}


.secondary-button {
    display: flex;
    align-items: start;
    color: var(--Base-17, #fff);
    width: 224px;
    background: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden
}


.button-text-alt {
    font-feature-settings: "liga" off, "clig" off;
    padding: 18px 22px;
    text-transform: uppercase;
    width: 100%;
    font-weight: bold;
}

.secondary-button .default-text {
    display: block;
    z-index: 1;
    transition: 0.3s ease;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(-100%, 100%);
    transition: .2s ease-in-out;
    z-index: 9;
}

.secondary-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.614);
    transform: translate(100%, -100%);
    transition: .2s ease-in-out;
    z-index: 9;
}

.secondary-button:hover::before, .secondary-button:hover::after {
    transform: translate(0, 0);
}

.secondary-button .top, .secondary-button .bottom {
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #46ed6b;
    transition: .5s ease;
    z-index: 99;
}

.secondary-button .right, .secondary-button .left {
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #46ed6b;
    transition: .5s ease-in-out;
    z-index: 99;
}

.secondary-button:hover .right, .secondary-button:hover .left {
    height: 100%;
}

.secondary-button:hover .top, .secondary-button:hover .bottom {
    width: 100%;
}
.secondary-button:hover .default-text {
   color: #46ed6b;
   position: relative;
   z-index: 99;
}
.secondary-button .top {
    top: 0;
    right: 0;
}

.secondary-button .right {
    top: 0;
    right: 0;
}

.secondary-button .bottom {
    bottom: 0;
    left: 0;
}

.secondary-button .left {
    bottom: 0;
    left: 0;
}
.animation-container {
    min-width: 240px;
    width: 50%;
    padding: 33px 64px 10px;
}

.animation-content {
    width: 100%;
    display: flex;
    justify-content: end;
}

.animation-content img {
    width: 100%;
    max-width: 100%;
}

/* ----------------- COMMUNITY -------------------------------------- */

.community-main{
    background-image: url('/images/Community/main-BG.png');
    padding: 224px 0 104px;
}
.community-main .subheader{
    width: 37%;
    margin-bottom: 40px;
    margin-top: 56px;
}
.main-info-wrap{
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
}
.ask-container{
    position: relative;
    width: 40%;
    padding: 26px 40px;
    background-color: rgba(254, 252, 251, 0.10);
}
.ask-container h2{
    font-size: 18px;
    margin-bottom: 30px;
}
.ask-container p{
    font-size: 14px;
    text-transform: capitalize;
    color: #b3b2b7;
    margin-bottom: 30px;
}
.ask-container .privaro-link{
    margin-bottom: 50px;
    display: block;
}

/* --------------- */
.social-media{
    background-image: url('/images/Community/section2-bg.png');
    padding: 80px 0 104px;
}
.social-buttons-wrap{
    display: flex;
    justify-content: space-between;
}
.social-buttons-wrap .social-buttons{
    width: 40%;
}
.social-buttons-wrap .social-buttons .link-content{
    width: 80%;
}
.social-buttons.all-width{
    width: 100%;
    margin-top: 0;
}

.social-buttons.all-width .link-content{
    width: 92%;
}

/* ------------------ */
.governance{
    background-color: #26262b;
    padding: 80px 0 104px;
}
.governance .subtitle{
    margin-bottom: 40px;
} 
.governance .section-title{
    letter-spacing: 2px;
}
/* -------------------- */
.forum{
    background-image: url('/images/Community/section3-bg.png');
    padding: 80px 0 104px;
}
.subtitle{
    margin-bottom: 24px;
    display: block;
}
.forum-links-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.forum-link{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 25px;
    flex: 0 1 calc(33.333%);
    padding: 56px 96px 66px 32px;  
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: .2s ease;
    cursor: pointer;
}
.forum-link svg{
    transition: .2s ease;
}
.forum-link p{
    width: 80%;
}
.forum-link:nth-child(3n+1) {
    border-left: none; 
}
.forum-link:nth-child(-n+3) {
    border-top: none; 
}
.forum-link:hover p{
    color: #46ed6b;
}
.forum-link:hover svg{
    transform: rotate(45deg);
}
.forum-link:hover svg path{
    fill: #46ed6b;
}



/* --------------------------------------------------------------- */
@media (max-width: 834px) {
    
    .connect-section {
        width: 100%;
        background-image: url('/images/section5-bg.png');
    }

    .background-container,
    .grid-layout,
    .horizontal-line,
    .decorative-squares,
    .content-container,
    .left-content,
    .header-section,
    .main-heading,
    .social-buttons,
    .social-link,
    .separator,
    .bottom-content,
    .description,
    .animation-container,
    .animation-content {
        max-width: 100%;
    }

    .connect-section .content-container{
        flex-direction: column;
        padding: 60px 40px;
    }

    .left-content{
        width: 100%;
    }
    .social-buttons{
        width: 100%;
    }
    .social-link{
        width: 100%;
    }
    .link-content{
        width: 85%;
    }
    
    .rotated-grid {
        max-width: 100%;
        margin-top: -200px;
    }

    .decorative-squares {
        margin-top: -200px;
        padding-left: 20px;
    }

    .blue-overlay {
        margin-top: 40px;
    }

    .bottom-content {
        width: 80%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .animation-container{
        width: 100%;
    }

}


/* ! -------------------------------- CONNECT SECTION ------------------------------- !*/

/* --------------------------------NEWS SECTION ------------------------------- */

.news-section {
    width: 100%;
    background-image: url('/images/section6-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.news-container {
    width: 100%;
    max-width: 1658px;
    margin: 0 auto;
    padding: 104px 20px;
    position: relative;
    z-index: 99;
}

.news-header {
    display: flex;
    max-width: 100%;
    align-items: end;
    font-family: 'Roboto Mono', sans-serif;
    justify-content: space-between;
    flex-wrap: wrap;
}

.filters {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 12px;
    color: var(--black-grey-12, #5f5e66);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.96px;
    justify-content: start;
    flex-wrap: wrap;
}

.filter-button {
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--black-grey-12, #5f5e66);
    margin: auto 0;
    padding: 12px 16px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;
    color: #5f5e66;
    transition: .2s ease-in-out;
}
.filter-button:hover {
    border-color: #46ed6b;
    color: #46ed6b;
}

.filter-button-active {
    border-color: var(--Base-17, #fff);
    background: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    color: var(--Base-17, #fff);
}

.news-section .header-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    width: 815px;
}

.header-subtitle {
    gap: 8px;
    font-size: 12px;
    color: var(--black-grey-16, #eaeaed);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    line-height: 1;
}

.header-title {
    flex: 1;
    margin-top: 8px;
    width: 776px;
    max-width: 100%;
    gap: 10px;
    font-size: 33px;
    color: var(--Base-17, #fff);
    font-weight: 700;
    text-align: right;
    text-transform: capitalize;
    letter-spacing: 0.66px;
    line-height: 1;
}

.news-grid {
    display: flex;
    margin-top: 72px;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    align-items: start;
    justify-content: start;
}

.news-cards {
    display: flex;
    align-items: center;
    overflow-y: scroll;
    text-transform: uppercase;
    justify-content: start;
    font: 12px/1 'Roboto Mono', sans-serif;
    transition: .2s;
}

.news-cards{
    scrollbar-width: none;  
    -ms-overflow-style: none; 
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.news-cards:active {
    cursor: grabbing;
}

.news-cards::-webkit-scrollbar {
    display: none;
}

.news-card {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    width: 449px;
    margin: auto 0;
}

.news-card .card-content {
    background: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 27px 28px;
    margin-right: 24px;
}

.card-meta {
    display: flex;
    width: 206px;
    max-width: 100%;
    font-weight: 400;
    letter-spacing: 0.48px;
}

.card-category {
    align-self: stretch;
    gap: 8px;
    color: var(--black-grey-16, #eaeaed);
    transition: .2s ease-in-out;
    margin-right: 10px;
}

.card-category:hover {
    color: #46ed6b;
}
.card-date {
    align-self: stretch;
    gap: 8px;
    color: var(--black-grey-13, #87868c);
}

.card-title {
    align-self: stretch;
    flex: 1;
    margin-top: 23px;
    height: 76px;
    gap: 10px;
    font-size: 25px;
    color: var(--black-grey-16, #eaeaed);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    line-height: 27px;
}

.news-cards .read-more {
    display: flex;
    margin-top: 87px;
    min-height: 32px;
    align-items: center;
    overflow: hidden;
    color: var(--black-grey-13, #87868c);
    font-weight: 700;
    letter-spacing: 0.24px;
    justify-content: start;
    padding: 2px 0;
    text-decoration: none;
    border-bottom: 1px solid #87868c;
}

.read-more:hover {
    color: #46ed6b;
    border-color: #46ed6b;
}
.read-more:hover .read-more-icon {
    transform: rotate(45deg);
}
.read-more:hover .read-more-icon path {
    fill: #46ed6b;
}

.read-more-wrapper {
    align-self: stretch;
    display: flex;
    min-height: 29px;
    width: 92px;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

.read-more-content {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: start;
}

.read-more-text {
    align-self: stretch;
    margin: auto 0;
}

.read-more-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 12px;
    align-self: stretch;
    margin: auto 0;
    margin-left: 6px;
    transition: .2s ease-in-out;
}
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.slider-navigation {
    display: flex;
    gap: 16px;
}

.slider-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
}

.slider-arrow.left img {
    transform: rotate(180deg);
}

.slider-pagination {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #5f5e66;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* -------------------------- BLOG INNER PAGE -------------------------- */
.blog-inner-main{
    background-image: url('/images/Blog-inner/Default.png');
    background-position: center;
    padding: 470px 0 100px;
}
.blog-inner-main .main-title{
    margin-bottom: 16px;
}
.blog-inner-main .subheader a{
    color: rgba(254, 252, 251, 0.3);
    text-transform: capitalize;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* --------- */
.blog-details{
    background-color: #26262b;
    padding: 80px 0;
}

.blog-details .content{
    display: flex;
}

.sidebar {
    width: 25%;
    padding-right: 20px;
}

.sidebar h2 {
    color: white;
    text-decoration: underline;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 50px;
}

.sidebar ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #32ff7e;
}

.blog-details-content {
    width: 75%;
    padding-left: 20px;
    padding-top: 0;
}
.blog-details-content h2{
    color: #EAEAED;
}
.blog-details-content h3 {
    font-size: 24px;
}

.blog-details-content p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 32px;
    margin-bottom: 20px;
    font-size: 18px;
}

.blog-details-content img {
    width: 100%;
    margin-bottom: 20px;
}

.blog-details-content ul {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 0;
}

.blog-details-content ul li {
    margin-bottom: 10px;
}
.quote{
    background-color: rgba(254, 252, 251, 0.1);
    padding: 20px;
    border-left: 4px solid #32ff7e;
    margin-bottom: 20px;
}
.quote p{
    font-size: 20px;
    line-height: 160%;
    color: white;
    font-weight: 200;
    font-style: italic;
}

/* ------------ */

.latest-posts{
    background-color: #26262b;
    padding: 80px 0;
}
.title-header{
    display: flex;
    justify-content: space-between;
}
.title-header .primary-button{
    height: fit-content;
}

/* -----------------------------FAQ ----------------------------- */

.faq{
    background-image: url('/images/FAQ/main-bg.png');
    padding: 207px 0 213px;
}
.faq .main-title, .faq .subheader{
    width: 60%;
}
.faq .main-title{
    margin-bottom: 56px;
}
.faq-content{
    background-color: #26262b;
    padding: 80px 0;
}
.faq-content .content{
    display: flex;
}

.faq-content .blog-details-content p{
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
    padding-bottom: 30px;
}
.faq-content .blog-details-content p:last-child{
    border-bottom: none;
}
/* --------------------------------------------------------------- */

@media (max-width: 834px) {
   
    .news-container {
        max-width: 100%;
        padding: 60px 40px;
    }

    .news-filters {
        max-width: 100%;
        white-space: initial;
    }

    .filter-button {
        white-space: initial;
    }

    .header-content {
        max-width: 100%;
    }

    .header-title {
        max-width: 100%;
    }

    .news-grid {
        max-width: 100%;
        margin-top: 40px;
    }

    .news-card {
        max-width: 100%;
    }

    .card-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .card-category {
        white-space: initial;
    }

    .read-more {
        margin-top: 40px;
    }
}

/* !--------------------------NEWS SECTION END--------------------------! */

/* ---------------------------- FOOTER SECTION ---------------------------- */
.footer-container {
    border-top: 1px solid var(--Transparent-31, rgba(254, 252, 251, 0.25));
    background: var(--black-grey-10, #26262b);
    display: flex;
    flex-direction: column;
    padding: 60px 101px 16px 120px;
}

.footer-top {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--Base-17, #fff);
    text-transform: uppercase;
    letter-spacing: 7.13px;
    font: 400 26px Nebula, sans-serif;
}

.brand-logo {
    width: 32px;
    height: 34px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons svg {
    cursor: pointer;
}
.social-icons svg:nth-child(1):hover path, .social-icons svg:nth-child(3):hover path{
    stroke: #46ed6b;
}
.social-icons svg:nth-child(2):hover path, .social-icons svg:nth-child(4):hover path{
    fill: #46ed6b;
}

.footer-links {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: start;
    gap: 24px;
    flex-wrap: wrap;
    font: 12px Roboto Mono, sans-serif;
}
.footer-link:hover {
    color: #46ed6b
}
.footer-column {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    flex: 1;
    flex-basis: 0%;
}

.column-title {
    color: var(--Base-17, #fff);
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.link-group {
    display: flex;
    margin-top: 16px;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    color: var(--black-grey-13, #87868c);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.24px;
    line-height: 1;
}

.footer-link {
    width: 100%;
    color: #5f5e66;
    text-decoration: none;
    font-size: 12px;
    line-height: 12px;
}

.footer-copyright {
    border-top: 1px solid var(--Transparent-31, rgba(254, 252, 251, 0.25));
    margin-top: 40px;
    color: var(--Transparent-30, rgba(254, 252, 251, 0.5));
    padding: 16px 10px;
    font: 400 12px/24px Roboto Mono, sans-serif;
    text-align: center;
}

/* -------------------ABOUT PAGE -------------------------------------------- */

.page-container{
    width: 100%;
}
.page-container .about-title{
    font-size: 33px;
    font-weight: bold;
    line-height: 48px;
    letter-spacing: 2px;
}
section{
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}
.about-main{
    background-image: url('/images/About/main-BG.png');
    position: relative;
}
.content{
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}
.about-main .content{
    padding-top: 224px;
    padding-bottom: 229px;
}
.main-title{
    width: 80%;
    font-size: 90px;
    line-height: 104px;
    letter-spacing: -4%;
    color: #F2F2F2;
}

.subheader{
    color: rgba(254, 252, 251, 0.3);
    text-transform: capitalize;
}
.about-main-btn-block{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 56px;
}
.about-main-btn-block .subheader{
    width: 28%;
    color: #eaeaed;
}
.about-main-btn-block .subheader p{
    color: #b3b2b7;
    font-size: 14px;
    line-height: 24px;
}
.about-main-btn-block .buttons{
    display: flex;
    gap: 16px;
}

.benefit{
    background-image: url('/images/About/section2-BG.png');
}

.benefit .content{
    display: flex;  
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 104px;
}
.benefit .card-section{
    width: 60%;
}
.benefit .card-section-header .subheader{
    font-size: 12px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-item {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b3b2b7;;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.benefits-icon {
    margin-right: 20px;
    font-size: 24px;
}
.benefits-text {
    font-size: 18px;
}

/* ------------ */

.key-diff{
    background-image: url('/images/About/section3-BG.png');
    background-position: center;
}
.key-diff .content{
    padding: 80px 104px 120px;
}

.key-diff .subheader{
    color: #eaeaed;
    font-size: 16px;
}
.section-title {
    margin-bottom: 72px;
}
.key-diff .cards {
    display: flex;
    justify-content: space-between;
}
.key-diff .card {
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 0px;
    flex: 1;
    margin: 0 10px;
    text-align: left;
}
.key-diff .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.key-diff .card-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 48px;
}
.key-diff .card-description {
    font-size: 16px;
}

/* ----------- */

.about-privaro{
    background-image: url('/images/About/section4-BG.png');
}
.about-privaro .content{
    padding: 50px 104px 120px;
}

.about-privaro .section-menu{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.about-privaro .subheader{
    font-size: 16px;
    color: #eaeaed;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.privaro-link{
    color: #87868C;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: underline;
    font-weight: bold;
}
.privaro-link:hover {
    color: #46ed6b;
    border-color: #46ed6b;
}
.privaro-link-icon{
    transition: .2s;
}
.privaro-link:hover .privaro-link-icon {
    transform: rotate(45deg);
}
.privaro-link:hover .privaro-link-icon path {
    fill: #46ed6b;
}
.privaro-banner{
    width: 100%;
    background-image: url('/images/About/privaro-banner-BG.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--Transparent-31, rgba(254, 252, 251, 0.25));
    padding: 120px 32px;
}
.privaro-banner .section-title{
    font-weight: bold;
    line-height: 2; 
    margin-bottom: 80px;
}
.privaro-banner .buttons{
    display: flex;
    gap: 20px;
}

/* -------------------- WALLETS ----------------------------------- */
.wallets-main{
    background-image: url('/images/Wallets/main-BG.png');
}
.wallets-main .content{
    padding: 224px 0 171px;
}

/* ----------------- */
.wallet-ekosystem{
    background-image: url('/images/Wallets/section2-BG.png');
    padding: 80px 104px;
}

.section-filter{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}

.wallet-cards{
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.wallet-cards .card{
    flex: 0 1 calc(33.333% - 2px);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 0px;
    text-align: left;
    transition: .2s;
}
.wallet-cards .card-header{
    display: flex;
    margin-bottom: 200px;
}
.wallet-cards .card-icon{
    margin-right: 24px;
    margin-bottom: 0;
}
.wallet-cards svg{
    transition: .2s;
}
.wallet-cards .card-description{
    transform: translateY(0);
    opacity: 1;
    transition: .2s ease;
}
.wallet-cards .card:hover .card-description {
    transform: translateY(-100%);
    opacity: 0;
  }

.wallet-cards svg g path, .wallet-cards svg rect,
.wallet-cards svg circle{
transition: fill 0.3s, stroke 0.3s;
}

.wallet-cards .card:hover{
    border: 1px solid #46ed6b;
    background-color: #46ed6a05;
}
.wallet-cards .card:hover svg path{
    fill: black;
}
.wallet-cards .card:hover svg g path {
    fill: black; 
}
.wallet-cards .card:hover svg rect {
    fill: white; 
}
.wallet-cards .card:hover svg circle {
    fill: black; 
}



/* ----------- WALLETS-GUI ----------------------*/
.wallets-gui-main{
    background-image: url('/images/Wallets_GUI/main-BG.png');
}
.wallets-gui-main .content{
    padding: 224px 0 135px;
}
.wallets-gui-main .subheader{
    text-transform: uppercase;
}

.card-container{
    width: 100%;
    display: flex;
    gap: 16px;
    margin-top: 88px;
}

.card-container .card{
    border-radius: 0;
    background-color: rgb(36, 36, 36);
    flex: 1;
    border: 1px solid transparent;
    border-image: linear-gradient(45deg, #4de573, #8886f0);
    border-image-slice: 1;
}
.card-container .card h3{
    margin-bottom: 60px;
    color: #F2F2F2;
}
.card-container .card p{
    opacity: .5;
    margin-bottom: 50px;
}


/* ------------------------------ */


.download{
    background-image: url('/images/Wallets_GUI/section2-BG.png');
    padding: 80px 0 104px;
}
.download .content{
    display: flex;
    justify-content: space-between;
}
.download .content .right-content{
    width: 40%;
    height: 100%;
    background-image: url('/images/Wallets_GUI/right.png');
    background-size: cover;
    margin-top: 50px;
}
.right-content-title{
    display: flex;
    margin-bottom: 30px;
}
.right-content-title .section-title{
    font-size: 24px;
    margin-bottom: 0;
}
.right-content-title .subtitle{
    font-size: 14px;
    color: #B3B2B7;
}
.right-content .text{
    color: #B3B2B7;
    opacity: 0;
    transition: .2s;
}
.right-content .card-interior{
    box-sizing: border-box;
    transition: all .2s ease;
    padding: 24px 40px 60px;
    cursor: pointer;
}
.right-content .card-interior:hover{
    border: 1px solid white;
}
.right-content .card-interior:hover .text{
    opacity: 1;
}
.right-content .card-interior:hover .right-content-title .subtitle{
    color: #46ed6b;
}

/* ---------------- */
.choose-wallet{
    background-image: url('/images/Wallets_GUI/section3-BG.png');
    background-position: bottom;
    padding: 104px 0 104px;
}

.choose-wallet .section-title{
    text-align: right;
}

.table-container {
    width: 100%
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #333;
    border-top: none ;
    padding: 32px;
    text-align: center;
}

td:first-child, 
th:first-child {
  border-left: none;
}

td:last-child, 
th:last-child {
  border-right: none;
}

th.active {
    color: #32ff7e;
    font-weight: bold;
}


td {
    font-size: 14px;
    color: #87868C;
}

.read-more {
    display: block;
    margin-top: 20px;
    text-align: right;
    color: #32ff7e;
    text-decoration: none;
    font-weight: bold;
}
.read-guide{
    display: flex;
    justify-content: flex-end;
}
.privaro-link.wallet{
    padding: 13px 10px;
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
}

/* -------------- BROWSER WALLET ---------------------------- */
.browser-wallet{
    background-image: url('/images/Wallets_GUI/section4-BG.png');
}
.browser-wallet .content{
    padding: 24px 0 80px;
}
.browser-wallet-wrap{
    background-image: url('/images/Wallets_GUI/browser-wallet-BG.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    text-align: center;
    padding: 120px 96px 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.browser-wallet .section-title{
    font-size: 44px;
    letter-spacing: 8px;
}
.browser-wallet p{
    color: #D4D3D8;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 50px;
}


/* ---------------- STAKING ----------------------------- */

.staking-tutorial{
    background-color: #26262b;
    padding: 40px 0 104px;
}
.staking-tutorial .cards-grid{
    margin-bottom: 104px;
}
.staking-tutorial .card{
    font-size: 18px;
    color: #87868C;
    display: flex;
    border-radius: 0;
    justify-content: space-between;
    box-sizing: border-box;
    transition: .2s ease;
    position: relative;
    border: 1px solid transparent;
}
.staking-tutorial .card p{
    width: 40%;
    margin: 0;
    transition: .2s;
}
.staking-tutorial .card .hover{
    position: absolute;
    opacity: 0;
}
.staking-tutorial .card:nth-child(1), .staking-tutorial .card:nth-child(3),
.staking-tutorial .card:nth-child(4), .staking-tutorial .card:nth-child(6){
    align-items: flex-end;
    padding-top: 60px;
}
.staking-tutorial .card:nth-child(2), .staking-tutorial .card:nth-child(5){
    align-items: flex-start;
}

.staking-tutorial .card:hover{
    background-color: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    border: 1px solid white;
}
.staking-tutorial .card:hover svg path{
    fill: white;
}
.staking-tutorial .card:hover .default-text {
    opacity: 0;
}
.staking-tutorial .card:hover .hover{
    opacity: 1;
}
.staking-tutorial .section-title{
    letter-spacing: 2px;
    line-height: 48px;
}

/* ---------------------------- */

.benefits-of-staking{
    background-image: url('/images/Staking-Validators/section3-bg.png');
    padding: 80px 0 104px;
}

.card-interior-title .section-title{
    font-size: 24px;
    margin-bottom: 0;
}
.card-interior-title .subtitle{
    font-size: 14px;
    color: #B3B2B7;
    display: flex;justify-content: space-between;
}
.cards-to-read{
    display: flex;
    flex-wrap: wrap;
}
.cards-to-read .text{
    color: #B3B2B7;
    opacity: 0;
    transform: translateY(50%);
    transition: .2s;
    margin: 147px 0 20px;
}
.cards-to-read .card-interior{
    flex: 0 1 50%;
    box-sizing: border-box;
    transition: all .2s ease;
    padding: 32px;
    cursor: pointer;
}
.cards-to-read .card-interior:hover{
    background-color: rgba(254, 252, 251, 0.1);
}
.cards-to-read .card-interior:nth-child(1), 
.cards-to-read .card-interior:nth-child(2){
    border-bottom: 1px solid white;
} 
.cards-to-read .card-interior:nth-child(1), 
.cards-to-read .card-interior:nth-child(3){
    border-right: 1px solid white;
} 
.cards-to-read .card-interior img{
    opacity: 0;
    transition: .2s ease;
    width: 40px;
}
.cards-to-read .card-interior:hover img{
    opacity: 1;
}

.cards-to-read .card-interior:hover{
    border: 1px solid white;
}
.cards-to-read .card-interior:hover .text{
    transform: translateY(0%);
    opacity: 1;
}
.cards-to-read .card-interior:hover .card-interior-title .subtitle{
    color: #46ed6b;
}

/* ---------------------NODES ---------------------------- */
.nodes-main{
    background-image: url('/images/Community/main-BG.png');
    padding: 224px 0 104px;
}

.buttons-wrap{
    display: flex;
    gap: 16px;
}

.nodes{
    padding: 104px 0 32px;
    background-image: url('/images/Nodes/section2-bg.png');
}
.nodes .section-title{
    line-height: 48px;
    letter-spacing: 2px;
}
.nodes-video{
    background-image: url('/images/Nodes/section3-bg.png');
    padding: 40px 0 104px;
}
.nodes-video-wrap{
    width: 100%;
    display: flex;
    gap: 58px;
    flex-wrap: wrap;
}
.video-elem{
    flex: 1;
    height: 104px;
    background-color: rgba(254, 252, 251, 0.1);
}

/* ---------------- */

.setup-node{
    padding: 104px 0;
    background-image: url('/images/Nodes/section4-bg.png');
    text-align: center;
}
.setup-node-step-wrap{
    display: flex;
    align-items: flex-start;
}
.setup-node .section-title{
    text-align: center;
    font-size: 44px;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 64px;
}

.setup-node-step{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.setup-node .icon-circle{
    font-size: 33px;
    padding: 39px;
}
.setup-node-step-wrap img{
    margin-top: 32px;
}
.vertical-line{
    height: 53px;
    height: 53px;
    width: 80px;
    position: relative;
    margin-top: 64px;
    margin-bottom: 64px;
}
.vertical-line::before{
    content: '';
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    left: calc(50% - .5px);
    background-color: #5F5E66;
}

.setup-node-step .process h2{
    font-size: 18px;
    line-height: 32px;
    color: white;
    margin: 0;
    margin-bottom: 24px;
}
.setup-node-step p{
    font-size: 14px;
    line-height: 24px;
    color: #87868C;
    width: 70%;
    margin: 0 auto;
    text-transform: capitalize;
}
.process{
    text-align: center;
}

/* ------------------- CONSENSUS & SECURITY----------------------- */

.pos{
    padding: 104px 0;
    background-image: url('/images/Consensus/section2-bg.png');
}
.pos .section-title{
    line-height: 48px;
}
.pos-cards-wrap{
    display: flex;
}
.pos-cards-wrap .card{
    border-radius: 0;
    border-right: 1px solid white;
    padding: 0;
}
.pos-cards-wrap .card:hover{
    background-color: inherit !important;
}
.pos-cards-wrap .card img{
    width: 100%;
}
.pos-cards-wrap .card .text-content{
    padding: 70px 24px 43px;
}
.pos-cards-wrap .card h2{
    font-size: 27px;
}
.pos-cards-wrap .card p{
    color: #b3b2b7;
    font-size: 14px;
}

/* ------------- */
.security{
    background-image: url('/images/Consensus/section3-bg.png');
    padding: 104px 0;
}

/* ---------------- BLOG ----------------------------------- */

.blog-main{
    padding: 176px 0 210px;
    background-image: url('/images/Blog/main-bg.png');
}
.blog-main .subheader{
    width: 33%;
    margin-top: 60px;
}
.search-blog-container{
    cursor: pointer;
    border-top: 1px solid rgba(254, 252, 251, 0.25);
    width: 50%;
    color: #b3b2b7;
    text-align: center;
}
.search-blog-container .search-input{
    width: 100%;
    padding: 10px 20px;
    height: 60px;
    background-color: var(--Transparent-32, rgba(254, 252, 251, 0.1));
    border: none;
    outline: none;
    border-top: 1px solid rgba(254, 252, 251, 0.25);
    color: #46ed6b;
    transition: .2s;
}
.search-input.hidden{
    height: 0;
    padding: 0;
    border-top: none;
}

.search-blog-container p.hidden{
    display: none;
}

/* ---------- */
.featuring{
    background-image: url('/images/Blog/section2-bg.png');
    padding: 80px 0 120px;
}   

.feature-blog-container{
    display: flex;
}
.feature-img{
    width: 50%;
}
.feature-img img{
    width: 100%;
}
.feature-text{
    width: 50%;
    padding: 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.feature-text .secondary-button{
    width: auto;
    margin-bottom: 24px;
}
.feature-text .secondary-button .button-text-alt{
    padding: 5px 10px;
}
.feature-text p{
    color: #87868C;
    line-height: 24px;
}
.info{
    color: #87868C;
}
/* ----------------------- */
.blog-posts{
    background-color: #26262b;
    padding: 80px 0;
}

.blog-cards-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 80px;
}
.blog-card{
    flex: 0 1 calc(33.333% - 25px);
}
.blog-image-container{
    position: relative;
    margin-bottom: 32px;
}
.image-hover{
    opacity: 0;
    transition: .2s;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(162, 162, 162, 0.256);
}
.blog-card img{
    width: 100%;
}
.blog-image-container:hover .image-hover{
    opacity: 1;
}
.blog-card h3{
    font-size: 18px;
    line-height: 32px;
    color: #D4D3D8;
    font-weight: 400;
}

.blog-posts .filters{
    width: 65%;
}

.email-container {
    display: flex;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    width: 35%;
    border: 1px solid transparent; 
    transition: border-color 0.2s ease;
}

.email-input {
    background-color: #3A3A40;
    border: none;
    padding: 25px;
    flex: 1;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}
.email-container:focus-within {
    border-color: #46ed6b;
}

.email-input::placeholder {
    color: #B3B2B7;
}

.submit-btn {
    background-color: #3A3A40;;
    border: none;
    padding: 19px 25px;
    cursor: pointer;
}

/* -------------------------- EVENTS ------------------------------ */

.events{
    background-image: url('/images/Events/main-bg.png');
    padding: 205px 0;
}

.events-content{
    background-color: #26262b;
    padding: 80px 0;
}
.events-content-wrap{
    display: flex;
}

.events-content .blog-details-content p{
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
    padding-bottom: 30px;
}


/* ------------- COMING SOON ----------------------------- */
.background-container{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
.background-container img{
    width: 100%;
}
.coming-soon footer{
    display: none;
}
.coming{
    padding: 227px 0 40px;
    position: relative;
}
.coming .main-title{
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.countdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
    margin-top: 110px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 15px;
}
.countdown-item span, .logo span{
    font-size: 12px;
    color: #B3B2B7;
    margin-top: 36px;
    margin-left: -35px;
    text-transform: uppercase;

}
.countdown-digit {
    font-size: 90px;
    letter-spacing: 40px;
}
.countdown-item:first-child .countdown-digit{
    color: #46ed6b;
}
.countdown .logo {
    position: absolute;
    width: 150px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
    left: calc(50% - 110px);
    top: 2px;
}
.countdown .logo span{
    margin-top: 10px;
    margin-left: 1px;
}
.countdown .logo img{
    width: 100%;
}

/* ----------- */
.coming-footer {
    margin-top: 200px;
    display: flex;
    justify-content: space-between;
}
.coming-footer .nav-item:nth-child(3){
    color: white;
}
.coming-footer .nav-menu{
    width: 300px;
    justify-content: flex-end;
}
.coming-footer .nav-item{
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ------------ */
.subscribe-area{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.subscribe-title{
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #B3B2B7;
    font-size: 12px;
    text-transform: uppercase;
}
.subscribe-form {
    display: flex;
    width: 100%;
    height: 72px;
    position: relative;
    margin-bottom: 40px;
}
.subscribe-form input {
    background-color: rgba(253, 253, 253, 0.1);
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    color: #B3B2B7;
    font-size: 1em;
}
.subscribe-form input::placeholder {
    color: #888;
}
.subscribe-form button {
    background-color: #fdfdfd42;
    border-radius: 5px;
    font-size: 12px;
    position: absolute;
    right: 100px;
    top: 10px;
}
.subscribe-form button .button-text{
    color: white;
    letter-spacing: 2px;
}

.subscribe-form button:hover .right, .subscribe-form button:hover .left {
    height: 100%;
    background-color: white;
}

.subscribe-form button:hover .top, .subscribe-form button:hover .bottom {
    background-color: white;
    width: 100%;
}

.subscribe-form .hover-text {
    color: white;
    letter-spacing: 2px;
}
.subscribe-form button::after {
    background-color: rgba(0, 0, 0, 0.1);
}
.subscribe-form button::before {
    background-color: rgba(0, 0, 0, 0.1);
}

/* ----------------------DOCUMENTATION ------------------- */
.documentation .page-container{
    background-color: #26262B;
    padding: 0 24px;
}
.documentation .content-wrap{
    display: flex;
}
.documentation header{
    display: none;
}
.documentation .top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #26262b;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
}
.documentation .top-menu a{
    text-decoration: none;
}
.documentation .top-menu .logo {
    font: 400 26px Nebula, sans-serif;;
    font-size: 1.5em;
    color: white;
    display: flex;
    align-items: center;
    letter-spacing: 8px;
}
.documentation .top-menu .logo img{
    margin-right: 20px;
}
.documentation .top-menu nav a {
    color: #87868C;
    font-size: 14px;
    margin: 0 10px;
    text-decoration: none;
}
.documentation .top-menu nav a:hover {
    text-decoration: underline;
}
.documentation .top-menu .lang {
    color: #fff;
}

.documentation .sidebar{
    border-right: 1px solid rgba(254, 252, 251, 0.25);
    padding-top: 20px;
    padding-right: 40px;
}
.documentation .sidebar-tab{
    display: flex;
    justify-content: space-between;
}
.documentation .sidebar-tab div{
    width: 50%;
    font-size: 18px;
    color: #b3b2b7;
    cursor: pointer;
}
.documentation .sidebar-tab .active{
    color: #46ED6B;
}
.gradient-underline {
    display: inline-block; 
    position: relative; 
}
  
.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    left: 0;
    height: 1px; 
    width: 100%; 
    background: linear-gradient(90deg, #46ED6B 3%, #8884FF 100%);
}
.gradient-text {
    background-image: linear-gradient(90deg, #46ED6B 3%, #8884FF 100%);
    background-clip: text;
    -webkit-background-clip: text; 
    color: transparent;
  }
  

.documentation .sidebar-section{
    margin: 20px 0;
}
.documentation .sidebar-section-title{
    color: #87868C;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
}
.documentation .sidebar-section-title.active{
    border-left: 2px solid #00ff00;
}
.documentation .sidebar-section-title:after{
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('/images/ico-sidebar-arrow.svg');
    background-repeat: no-repeat;
    display: inline-block;
    margin-top: 5px;
    transition: transform 0.3s ease;
}
.documentation .sidebar-section-title.active::after{
    transform: rotate(90deg);
    margin-right: 12px;
}
.documentation .sidebar h2{
    font-size: 16px;
    text-decoration: none;
    color: #D4D3D8;
}
.documentation ul li{
    margin-bottom: 30px;
}
.documentation ul li a{
    color: #87868C;
    font-size: 16px;
    padding-left: 10px;
}
.documentation-search-container{
    margin-top: 30px;
    position: relative;
}
.documentation-search-container input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 40px;
    border: 1px solid rgba(254, 252, 251, 0.25);
    border-radius: 30px;
    background-color: transparent;
    color: #fff;
    font-size: 1em;
    box-sizing: border-box;
    outline: none;
}
.documentation-search-container input::placeholder {
    color: #5F5E66;
}
.documentation-search-container .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}
.documentation .content {
    flex: 1;
    padding: 20px;
    padding-left: 60px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.content-section{
    border-bottom: 1px solid rgba(254, 252, 251, 0.25);
}
.content-title{
    font-size: 12px;
    color: #87868C;
    letter-spacing: 2px;
    margin-bottom: 51px;
}
.content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00ff00;
}
.content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 2px;
    font-weight: 500;
}
.content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
}
.content a {
    color: #00ff00;
}
.content pre {
    background-color: rgba(254, 252, 251, 0.1);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #5F5E66;
    overflow: auto;
    color: #46ed6b;
}
.content .note {
    background-color: #222;
    padding: 10px;
    border-left: 5px solid #00ff00;
    margin-bottom: 20px;
}

/* ----------------------------------------------------- */


@media (max-width: 834px) {
    .footer-container {
        padding: 60px 40px;
    }

    .footer-top,
    .footer-links {
        max-width: 100%;
    }

    .brand-wrapper {
        white-space: initial;
    }

    .footer-link {
        padding-right: 20px;
        white-space: initial;
    }
    .footer-column{
        min-width: auto;
    }
}
/* !--------------------------FOOTER SECTION END--------------------------! */

@media (max-width: 834px) {
    .features-section {
        padding: 100px 20px;
    }

    .hero-background {
        background-image: url('/images/section2-bg-middle.png');
    }

    .background-wrapper,
    .hero-background,
    .grid-layout,
    .grid-layout-rotated,
    .grid-line-horizontal,
    .content-container,
    .header-section,
    .header-text,
    .features-grid,
    .feature-row,
    .card-content {
        max-width: 100%;
    }

    .feature-card {
        width: 100%;
        margin-left: 0;
        flex: 1 1 calc(33.33% - 0px);
        width: 33.3%;
    }
    .feature-card:nth-child(4){
        border-top: 1px solid var(--Base-19, #e7e6f1);
    }
    .cross-card-icon{
        display: none;
    }
    .card-content {
        padding: 0 20px;
    }

    .card-description {
        margin-top: 40px;
    }

    .bottom-section {
        margin-top: 40px;
    }
    .cta-wrapper{
        align-items: center;
        justify-content: flex-end;

    }
    .cta-button {
        padding: 16px 17px;
        border: none;
    }
}

@media (max-width: 376px) {
    .feature-card {
        flex: 1 1 calc(50% - 0px);
        border: none;
    }
    .feature-card:nth-child(5){
        border: none;
    }
    .feature-card:nth-child(2), .feature-card:nth-child(3), .feature-card:nth-child(6){
        border: 1px solid var(--Base-19, #e7e6f1);
    } 
    .feature-card .card-content{
        padding: 6px 24px;
    }
    .card-title{
        font-size: 14px;
    } 
    .card-description{
        font-size: 11px;
        margin-top: 0;
    }
    .icon-bottom-left, .icon-top-right{
        display: none;
    }

    .bottom-section{
        display: block;
        text-align: center;
    }
    .section-title{
        text-align: center;
        font-size: 27px;
    }
    .cta-wrapper{
        justify-content: center;
    }

    /* -------------- */
    .infrastructure-section .card-title{
        font-size: 27px;
    }

    /* --------------- */
    .language-section .header-content .title{
        margin-top: 61px;
        font-size: 34px;
    }
    .language-circle-image{
        margin-top: 132px;
    }
    .language-section .description-container{
        margin-top: 180px;
    }
    .language-section .button-wrapper:nth-child(1), .language-section .button-wrapper:nth-child(2){
        display: none;
    }
    .language-section .button-wrapper:nth-child(3){
        width: 100%;
    }

    /* -------------- */
    .connect-section .content-container{
        padding: 40px 16px;
    }
    .connect-section .link-content{
        width: auto;
    }
    .connect-section .bottom-content{
        width: 100%;
    }
    .connect-section .primary-button, .connect-section .secondary-button{
        width: 45%;
    }
    .connect-section .primary-button{
        margin-top: 2px;
        padding: 18px 19px;
    }
    .connect-section .primary-button .default-text{
        width: 100%;
    }
    .connect-section .animation-container{
        padding: 0;
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    } 

    /* ------------------- */
    .news-section .news-container{
        padding: 40px 16px;
    }
    .news-section .header-content{
        align-items: start;
    }
    .news-section .header-title{
        text-align: left;
        margin-bottom: 20px;
    }
    .news-section .news-header{
        flex-direction: column-reverse;
    }
    .news-container .news-filters{
        flex-wrap: nowrap;
        overflow-Y: scroll;
    }
    .news-container .news-grid{
        overflow: initial;
    }
    .news-container .news-cards{
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .news-container .news-card .card-content {
        margin-right: 0;
    }

    /* _------------------ */
    .footer-container{
        padding: 40px 16px;
    }
    .footer-container .social-icons{
        width: 100%;
    }
    .footer-container .footer-links{
        flex-direction: column;
    }
}

@media (max-width:834px){
    .about-main-title{
        font-size: 70px;
        text-align: center;
        width: 100%;
    }
    .about-main-btn-block{
        display: block;
    }
    .about-main-btn-block .subheader{
        width: 100%;
        text-align: center;
        margin-bottom: 100px;
    }
    .about-main-btn-block .buttons{
        justify-content: center;
    }
    .benefit .content{
        display: block;
        text-align: center;
    }
    .benefit .card-section {
        width: 100%;
        margin-top: 40px;
    }
    .key-diff .cards{
        flex-wrap: wrap;
        gap: 30px
    }
    .about-privaro .section-menu{
        display: block;
    }
    .about-privaro .subheader{
        margin-bottom: 30px;
    }
    .nav-links{
        justify-content: space-between;
    }
}

@media (max-width:376px){
    .about-main .content{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .about-main-title{
        font-size: 60px;
    }
    .about-main-btn-block .buttons{
        flex-direction: column;
        align-items: center;
    }
    .image-animation img{
        width: 100%;
    }
    .key-diff .content{
        padding: 30px 0;
    }
    .key-diff .subheader{
        text-align: center;
        margin-bottom: 20px;
    }
    .about-privaro .content{
        padding: 30px 0;
    }
    .about-privaro .subheader{
        text-align: center;
    }
    .privaro-banner{
        padding: 60px 10px;
    }
    .privaro-banner .section-title{
        font-size: 20px;
    }
    .nav-links{
        flex-direction: column;
    }
}

@media (max-width:834px){
    .wallet-ekosystem{
        padding: 50px 0;
    }
    .section-filter{
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-by{
        margin-bottom: 20px;
    }
    .wallet-cards{
        flex:  0 1 calc(50% - 2px);
    }
}

@media (max-width:376px){
    .main-title{
        font-size: 40px;
    }
    .wallet-cards .card{
        flex: 0 1 calc(100% - 2px);
    }
}

@media (max-width: 834px) {
    .card-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .card-container .card{
        flex: 0 1 calc(50% - 16px);
    }
    .download .content{
        flex-direction: column;
    }
    .download .content .left-content{
        min-height: auto;
    }
    .download .content .right-content{
        width: 100%;
    }
}
@media (max-width:376px){
    .link-content{
        width: 60%;
    }
    .table-container{
        overflow-x: scroll;
    }
    .browser-wallet .section-title{
        font-size: 30px;
    }
    .browser-wallet-wrap{
        padding: 20px;
    }
    .browser-wallet p{
        width: 100%;
    }
}
@media (max-width: 834px) {
    .forum{
        background-size: auto;
    }
    .ask-container{
        width: 55%;
    }
    .community-main .subheader{
        width: 80%;
    }
    .forum-link{
        padding: 10px;
    }
    .forum-link p{
        font-size: 20px;
    }
}
@media (max-width:376px){
    .community-main{
        padding: 80px 0 50px;
    }
    .social-media, .forum{
        padding: 20px 0 20px;
    }
    .ask-container{
        width: 100%;
        margin-top: 50px;
    }
    .section-title{
        margin-bottom: 20px;
    }
    .social-buttons-wrap{
        flex-direction: column;
    }
    .social-buttons-wrap .social-buttons{
        width: 100%;
        margin-top: 0;
    }
    .social-buttons-wrap .social-buttons .link-content, .social-buttons.all-width .link-content{
        width: 70%;
    }
    .governance{
        text-align: center;
    }
    .forum-links-wrap{
        flex-direction: column;
    }
    .forum-link{
        border: none;
    }
    .forum{
        background-color: #26262b;
    }
}

@media (max-width:834px){
    .staking-tutorial .cards-grid{
        align-items: normal;
    }
    .staking-tutorial .card{
        flex: 0 1 calc(33.333% - 20px);
    }
    .cards-to-read .text{
        margin-top: 100px;
    }
}
@media (max-width:376px){
    .staking-tutorial .cards-grid{
        gap: 15px;
    }
    .staking-tutorial .card{
        flex: 0 1 calc(50% - 10px);
        padding: 10px;
    }
    .cards-to-read .card-interior{
        padding: 5px;
    }
    .cards-to-read .text{
        margin-top: 30px;
    }
    .card-interior-title .section-title{
        font-size: 20px;
    }
}

@media (max-width:834px){
    .node .ask-container{
        margin-top: 90px;
        width: 68%;
    }
    .nodes-video-wrap{
        gap: 10px;
    }
    .setup-node-step p{
        width: 100%;
    }
    .setup-node{
        padding: 70px 0;
        background-color: var(--black-grey-10, #26262b);
    }
}
@media (max-width:376px){
    .buttons-wrap{
        flex-direction: column;
        align-items: center;
    }
    .setup-node-step-wrap{
        flex-direction: column;
        align-items: center;
    }
    .node .ask-container{
        width: 100%;
    }
    .video-elem{
        flex: 0 1 calc(33.333% - 10px);
    }
    .setup-node .section-title{
        font-size: 30px;
        width: 100%;
    }
    .setup-node-step-wrap .arrow-img{
        transform: rotate(90deg);
        margin: 70px 0;
    }
}

@media (max-width:376px){
    .pos-cards-wrap{
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width:834px){
    .blog-posts .filters{
        width: 100%;
        justify-content: center;
    }
    .email-container{
        width: 80%;
    }
}

@media (max-width:376px){
    .blog-main{
        padding: 60px 0;
    }
    .blog-main .subheader{
        width: 100%;
    }
    .main-info-wrap{
        margin-top: 20px;
    }
    .search-blog-container{
        width: 100%;
    }
    .feature-blog-container{
        flex-direction: column;
    }
    .feature-img{
        width: 100%;
    }
    .feature-text{
        width: 100%;
        padding: 20px;
        align-items: center;
    }
    .blog-posts .filters{
        justify-content: left;
    }
    .blog-cards-wrap{
        flex-direction: column;
    }
    .email-container{
        width: 100%;
    }
    .email-input::placeholder {
        font-size: 12px;
    }
}

@media (max-width:376px){
    .blog-inner-main{
        padding: 110px 0 40px;
    }
    .blog-details .blog-details-content p{
        font-size: 14px;
    }
    .sidebar ul li a{
        font-size: 14px;
    }
    .sidebar .section-title{
        font-size: 16px;
    }
    .title-header{
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
}
@media (max-width:376px){
    .faq{
        padding: 80px 0 50px;
    }
    .events{
        padding: 80px 0;
    }
    .sidebar h2{
        font-size: 16px;
    }
    .blog-details-content h2{
        font-size: 16px;
    }
    .events-content .blog-details-content p{
        font-size: 12px;
    }
}
@media (max-width:376px){
    .documentation .top-menu{
        flex-direction: column;
    }
    .documentation .top-menu .logo{
        margin-bottom: 50px;
    }
    .documentation .page-container{
        padding: 0 10px;
    }
    .documentation .content{
        width: 60%;
        padding: 10px;
    }
    .documentation .sidebar{
        padding-right: 10px;
        width: 40%;
    }
}