*{
    margin: 0;
    padding: 0;
}
.tech-blog-grid{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 2%;
    background: #101010;
    min-height: 130vh;
}
.blog-container-flex-revamp{
    width: 97%;
    height: 100%;
    margin-left: 1.5%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 10px;
}
.type-date-flex-container{
    width: 97%;
    margin-left: 1.5%;
    margin-top: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-family: 'Inter';
    font-size: 115%;
}
.tech-header-blog-cont{
    margin-bottom: 1%;
    width: 97%;
    margin-left: 1.5%;
    font-family: 'Inter';
}
.article-type-class{
    font-size: 100%;
    padding: 1% 3%;
    background: #ffffff24;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    font-weight: 800;
}
.article-pub-date-class{
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.5);
}
.article-url-class{
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Inter';
    color: white;
    text-decoration: none;
    font-size: 200%;
    font-weight: 800;
    transition: .5s ease-in-out all;
}
.article-url-class:hover,
.article-url-class:active{
    color: rgb(222, 222, 222);
}
.other-blogs-container{
    width: 97%;
    margin-left: 1.5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1%;
}
.follow-up-headers{
    font-size: 130%;
}
.navigation-wrapper-blog-nav{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
}
.blog-page-nav{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2% 0;
}
.blog-nav-text,
.blog-nav-text-two{
    flex: 1;
}
.pagination{
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.blog-navigation-a,
.pag-hyperlinks,
.blog-navigation-b{
    color: white;
    text-decoration: none;
    font-family: 'Inter';
    font-size: 125%;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s ease-in-out all;
}
.blog-navigation-a:hover,
.blog-navigation-a:active,
.pag-hyperlinks:hover,
.pag-hyperlinks:active,
.blog-navigation-b:hover,
.blog-navigation-b:active{
    color: rgb(157, 157, 157);
}
.footer-cont{
    margin-top: 0 !important;
}
.no-blogs-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    gap: 20px;
    background: linear-gradient(#2d2d2d, black);
}
.no-blogs-atm-svg{
    width: 10%;
    height: auto;
}
.no-blogs-container h1{
    width: 65%;
    font-family: 'Inter';
    color: white;
    /*color: #cb0001;*/
    font-size: 150%;
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .tech-blog-grid{
        min-height: unset;
    }
    .article-url-class{
        font-size: 125%;
    }
    .other-blogs-container{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 5%;
        box-sizing: border-box;
        min-height: 50vh;
    }
    .follow-up-headers{
        font-size: 100%;
    }
    .pagination{
        gap: 0;
        overflow: scroll;
        font-size: 80%;
    }
    .pagination::-webkit-scrollbar{
        display: none;
    }
    .blog-page-nav{
        width: 90%;
        gap: 10px;
    }
    .blog-navigation-a,
    .pag-hyperlinks,
    .blog-navigation-b{
        color: white;
        text-decoration: none;
        font-family: 'Inter';
        font-size: 90%;
        font-weight: 600;
        text-transform: uppercase;
        transition: .5s ease-in-out all;
    }
    .no-blogs-container{
        min-height: unset;
        padding: 5% 0;
    }
    .no-blogs-atm-svg{
        width: 20%;
    }
    .no-blogs-container h1{
        font-size: 100%;
    }
}
@media screen and (min-width: 501px) and (max-width: 900px)
{
    .pagination{
        gap: 2px;
    }
    .blog-navigation-a,
    .pag-hyperlinks,
    .blog-navigation-b{
        color: white;
        text-decoration: none;
        font-family: 'Inter';
        font-size: 90%;
        font-weight: 600;
        text-transform: uppercase;
        transition: .5s ease-in-out all;
    }
    .no-blogs-container{
        min-height: unset;
        padding: 5% 0;
    }
}