* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}



.header .inner .right img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.tabs {
    margin-top: 20px;
}

.tabs ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.tabs ul:before {
    top: 71px;
    left: 0;
    right: 0;
    height: 1px;
    position: absolute;
    background: rgba(95, 99, 104, 0.25);
}

.tabs ul:after {
    content: ' ';
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    position: absolute;
    background: rgba(95, 99, 104, 0.25);
}

.tabs ul > li {
    padding: 0 24px;
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tabs ul > li a {
    text-decoration: none;
    line-height: 44px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    display: block;
    height: 44px;
    color: #3E3E3E;
    position: relative;
}

.tabs ul > li a::before {
    content: ' ';
    bottom: -2px;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 3px;
    position: absolute;
    z-index: 1;
}

.overview {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 32px 0 0 0;
}

.overview .inner {
    display: flex;
        flex-direction: row;
        position: relative;
        justify-content: center;
        z-index: 1;
}

.overview .left {
    max-width: 300px;
}

.nav-buttons::before {
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    background-color: #E0E0E0;
    z-index: 1;
    top: 10px;
    bottom: 10px;
    border-radius: 10px;
}


.nav-buttons::after {
    content: '';
    position: absolute;
    z-index: 2;
    background-color: #6F6F6F;
    width: 3px;
    left: -1px;
    border-radius: 10px;
    top: var(--indicator-top, 0px);
    height: var(--indicator-height, 0px);
    transition: top 0.3s ease, height 0.3s ease;
}
.overview .left .nav-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
}

.overview .left .nav-buttons li a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 17px;
    color: #BCBCBC;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.overview .right .button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 25px;
}

.overview .right .button-wrapper a{
    cursor: pointer;
    margin: 0;
}

.overview .left .nav-buttons li.active a {
    color: #6F6F6F;
}

.overview .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
    height: fit-content;
    overflow: hidden;
    align-content: start;
    transition: height 0.5s ease-in-out;
    padding-bottom: 40px;
}
.overview .card {
    display: flex;
    position: relative;
    background: transparent;
    border-radius: 5px;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 20px 0 20px;
    gap: 15px;
    height: auto;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    overflow: visible;

}


.overview .card img {
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.overview .card>div h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #3E3E3E;
    margin: 24px 0;
}

.overview .card .tags-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overview .card .tags-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #3E3E3E;
    width: 400px;
    text-decoration: none;
}

.overview .card .tags {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 400px;
    flex-wrap: wrap;
}

.overview .card .tags .tag-item:nth-child(3) {
    display: none;
}
.cards.show-extra-tags .card .tags .tag-item:nth-child(3) {
    display: block;

}

.overview .card .tags-title .tags .tag-item {
    font-size: 13px;
    font-style: italic;
    border-radius: 7px;
    padding: 5px 10px;
    position: relative;
    border: none;
    background: linear-gradient(134.71deg, #169FF2 -0.5%, #5C0DCE 98.45%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-decoration: none !important;
}

.overview .card .tags-title .tags .tag-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 7px;
    padding: 1px;
    background: linear-gradient(134.71deg, #169FF2 -0.5%, #5C0DCE 98.45%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.overview .card img {
    height: 220px;
}

.separator-vertical {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    align-self: stretch;
    margin-left: 50px;
    margin-right: 100px;
}



.mobile-nav {
    display: none;
    -webkit-overflow-scrolling: touch;
    width: 100px;
    width: 100%;
    background-color: white;
    position: sticky;
    top: 60px;
    z-index: 100;
    padding: 24px;
    
}

.mobile-nav.is-stuck {
    box-shadow: 0 0px 4px rgb(0 0 0 / 30%);
    width: 100%;
}

.mobile-nav .nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 15px 5px;
}


.mobile-nav .nav-buttons li {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-buttons li:not(:last-child)::after {
    content: '|';
    color: #E0E0E0;
    margin: 0 5px;
    font-size: 20px;
    font-weight: 300;
}


.mobile-nav .nav-buttons a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #6F6F6F;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav .nav-buttons li.active a {
    color: #169FF2;
    border-bottom: 2px solid #169FF2;
}

@media only screen and (max-width: 1024px) {
 
    .separator-vertical{
        margin-right: 75px;
    }


    .overview .card{
        width: 300px;
        margin: 0;
    }
         .overview .card:hover{
            transform: scale(1);
         }
    .overview .right .cards{
        gap: 25px 15px;
    }

        .overview .card img {
            height: 180px;
        }
.overview .card img {
    width: 90%;
}


        .overview .card .tags-title{
            width: fit-content;
        }

    .overview .card .tags-title .tags{
        max-width: 300px;
    }

        .overview .card .tags-title h2 {
            max-width: 300px;
            font-size: 18px;
        }


}

@media only screen and (max-width: 1000px){
    .separator-vertical{
        margin: 0;
        display: none;
    }

    .overview .left{
        margin-left: 10px;
    }


}

@media only screen and (max-width: 732px) {
    
    
    .overview .left{
        display: none;
    }

        .overview .right {
            width: 100%;
        }

    .overview .inner{
        align-items: stretch;
    }

    .overview .card{
        max-width: none;
        width: fit-content;
    }

    .overview .cards{
        grid-template-columns: 1fr;
        margin-left: 10px;
        margin-right: 10px;
        
    }

        .overview .card img {
            height: 200px;
        }
    
        .overview .card img {
            width: 100%;
        }

         .overview .card .tags-title h2 {
             max-width: 300px;
         }

    .overview .right .cards{
        gap: 50px 0px;
    }

    .overview .button-wrapper{
        margin-top: 50px;
    }

    .overview .mobile-nav{
        display: block;
        
    }

    .overview .mobile-nav .nav-buttons{
        align-self: center;
    }

    .separator-vertical{
        display: none;
    }

        .nav-buttons::before {
           display: none;
        }

        .nav-buttons::after {
            display: none;
        }

    .overview .right{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .overview .right .cards{
        align-self: center;
    }

    .overview{
        margin-top: 0;
        margin-bottom: 0px;
    }

    .overview .right .button-wrapper{
        margin-bottom: 15px;
        margin-top: 0;
    }



}

.all.active  a,
.overview .card >  a.all  { 
    color: #18B805; 
}
.all.active > a::before { background: #18B805; }

.blog.active  a,
.overview .card >  a.blog  { 
    color: #9116F2; 
}
.blog.active > a::before { background: #9116F2; }

.blog.active  a,
.overview .card > iv a.blog  { 
    color: #9116F2; 
}
.blog.active > a::before { background: #9116F2; }

.blog.active  a,
.overview .card >  a.blog  { 
    color: #9116F2; 
}
.blog.active > a::before { background: #9116F2; }

.case.active  a,
.overview .card >  a.case { 
    color: #169FF2; 
}
.case.active > a::before { background:  #169FF2; }

.tutorial.active  a,
.overview .card >  a.tutorial  { 
    color: #FB9403; 
}
.tutorial.active > a::before { background: #FB9403; }

.whitepaper.active  a,
.overview .card > a.whitepaper  { 
    color: #FF0088; 
}
.whitepaper.active > a::before { background: #FF0088; }
