@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    color-scheme: light;
    --dark-primary: white;
    --gradient: linear-gradient(135deg, #7f00ff, #e100ff);
    --purple-one: #8338ec;
    --text-primary: #3d3269;
    --bg-primary: white;
    --text-secondary: #00000090;
    --border-color-primary: #00000010;
    --white-grey-color: white;
    --logo: url('/assets/xenoovixLOGO.svg');
    --theme-icon: url('/assets/svgs/moon.svg');
    --menu-icon: url('/assets/svgs/menu.svg');
    --close-icon: url('/assets/svgs/menu.svg');
    --tooltip-color: #000000b8;
    --code-bg-color: #070720;
    --toc-bg-color: #f1f3fb;
    --hr-color: #cccccc;
    --tag-color: #f1f3fb;
    --blog-info-color: #00000090;
    --box-shadow: #0a076e14;
}
[data-theme='dark'] {
    color-scheme: dark;
    --text-primary: white;
    --bg-primary: #000a13;
    --text-secondary: #ffffff90;
    --border-color-primary: #ffffff10;
    --white-grey-color: #ffffff10;
    --logo: url('/assets/logoV2.svg');
    --tooltip-color: #ffffff20;
    --code-bg-color: #ffffff20;
    --theme-icon: url('/assets/svgs/sun.svg');
    --menu-icon: url('/assets/svgs/menu.svg');
    --toc-bg-color: #101922;
    --hr-color: #ffffff1d;
    --tag-color: #ffffff10;
    --blog-info-color: #ffffff80;
}
b code {
    color: var(--purple-one);
}
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: #4c497a;
    border-radius: 24px;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--code-bg-color);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}
.text-primary {
    color: var(--purple-one) !important;
}

@keyframes loading {
    from {
        left: 0;
        width: 0;
        z-index: 100;
    }
    33.3333% {
        left: 0;
        width: 100%;
        z-index: 10;
    }
    to {
        left: 0;
        width: 100%;
    }
}
/* common */
.scroll-to-top-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: var(--purple-one);
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50px;
}
li {
    font-family: 'Outfit', sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}
.container {
    max-width: 1280px;
    margin: auto;
    padding: 150px 30px;
    position: relative;
}
.note {
    padding: 30px 30px 10px 30px;
    border-top: 0px;
    border-left: 5px solid var(--purple-one);
    margin: 40px 0px;
    position: relative;
}
.note p {
    color: var(--blog-info-color);
    font-size: 18px;
}
svg {
    color: var(--text-primary);
}
.gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a {
    text-decoration: none;
    color: var(--text-primary);
}
a:hover {
    text-decoration: underline;
    color: var(--text-primary);
}
.fix-size-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* ----------- Navbar-Home  ----------- */

/*  ----------- Navbar-Blog  ----------- */

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* padding: 0px 30px; */
}
nav {
    width: 100%;
    padding: 20px 30px;
}
nav .menu-selector-content {
    display: none;
}
nav .left-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-src {
    width: 150px;
    height: 40px;
    background-image: var(--logo);
    background-size: 100%;
    background-repeat: no-repeat;
}
nav .right-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
nav .right-nav a {
    text-decoration: none;
}
.right-nav a div {
    transition-duration: 300ms;
    position: relative;
    padding: 0 10px;
    padding-bottom: 3px;
}
/* .right-nav a div .selector {
  position: absolute;
  width: 100%;
  background-color: var(--purple-one);
  bottom: 0px;
  left: 0px;
  border-radius: 10px;
} */
nav .toggle-theme {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
nav .toggle-theme:hover {
    border: 2px solid var(--border-color-primary);
}
nav .theme-icon {
    width: 20px;
    height: 20px;
    display: flex;
    background: var(--theme-icon);
    background-size: 100%;
}
nav .menu-content {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
nav .menu-icon {
    width: 20px;
    height: 20px;
    background: var(--menu-icon);
    background-size: 100%;
    background-repeat: no-repeat;
}
nav .explore {
    padding: 7px 30px;
    border-radius: 50px;
}
nav .explore {
    text-decoration: none;
}
main {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    padding: 70px 30px;
}
main .tag {
    background-color: var(--tag-color);
    border-radius: 50px;
    text-align: center;
    width: fit-content;
    padding: 4px 20px;
    margin: auto;
}
main .tag {
    color: #7d5fff;
}

/*----- Heropage ------*/
#home .input-field {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #fff;
    width: fit-content;
    padding: 12px 12px 12px 20px;
    border-radius: 100px;
    outline: 2px solid #00000010;
    margin: auto;
    margin-top: 40px;
}
#home .searchBtn {
    background-color: #8338ec;
    color: #fff;
    padding: 10px 25px;
    border-radius: 100px;
}
#home .input-field input:focus {
    border: none;
}
#home .input-field input {
    border: none;
    width: 700px;
}
#home .search {
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: #00000090;
}
.bg-image {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -10;
}
.hero-section {
    width: 100%;
    position: relative;
}
.hero-section-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    padding: 100px 30px 150px 30px;
    color: #191c43;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--border-color-primary);
    margin-bottom: 70px;
}
.hero-section-container a {
    text-decoration: none;
}
.hero-section-container img {
    position: absolute;
    top: 0px;
    height: 100%;
}
.hero-section .title {
    text-align: center;
}
.hero-section .title span {
    position: relative;
}
.hero-section .title span::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
    width: 100%;
    height: 100%;
    background-image: url(../assets/image/Line-1.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.hero-section .explore-btn-wrapper {
    display: flex;
    justify-content: center;
}
.hero-section .description {
    text-align: center;
    color: #676e8b;
    margin: 30px 0;
    margin-top: 70px;
}
.hero-section .description p {
    font-weight: 400;
}
.hero-section .title h1 {
    color: var(--text-primary);
    font-size: 80px;
    margin: 30px 0;
}
.explore-btn {
    padding: 10px 40px;
    background: var(--toc-bg-color);
    cursor: pointer;
    width: fit-content;
    border-radius: 40px;
    color: var(--text-primary);
}
.explore-btn-wrapper a {
    text-decoration: none;
}
.explore-btn:hover {
    background: var(--purple-one);
    color: #ffffff;
}
.explore-btn p {
    color: white !important;
    font-style: normal !important;
    letter-spacing: 2px;
    font-size: 16px;
}
.heropage a {
    text-decoration: none;
}
.heropage h1 {
    text-align: center;
    font-size: 70px;
    text-transform: uppercase;
    margin: 30px 0px;
    line-height: normal;
    padding: 0 !important;
}
.heropage .text-bottom-style {
    position: relative;
}
.heropage .text-bottom-style::after {
    content: ' ';
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    position: absolute;
    z-index: -10;
    left: 50%;
    transform: translateX(-50%) skewY(-2deg) translateY(-50%);
    top: 50%;
    background: var(--gradient);
}
.heropage p {
    font-weight: 400;
    font-style: italic;
    color: #ffffff90;
}
.tag-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    padding: 0 10px;
    margin-bottom: 50px;
    padding-bottom: 70px;
    border-bottom: 2px solid var(--border-color-primary);
}
.tag-container h4 {
    text-align: center;
    margin-bottom: 10px;
}
.tag-container p {
    text-align: center;
    margin-bottom: 40px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondarys);
}
.tag-section {
    flex-wrap: wrap;
    display: flex;
    gap: 40px;
    justify-content: center;
}
.tag-section .tag-wrapper {
    display: flex;
    gap: 40px;
    padding: 16px;
    width: fit-content;
    border-radius: 100px;
    padding-right: 40px;
    transition-duration: 300ms;
    outline: 2px solid var(--toc-bg-color);
    justify-content: center;
    align-items: center;
}
.tag-section .tag-wrapper-arrow {
    display: flex;
    gap: 30px;
    padding: 16px;
    width: fit-content;
    border-radius: 100px;
    padding-right: 40px;
    cursor: pointer;
    outline: 2px solid var(--toc-bg-color);
    justify-content: center;
    align-items: center;
    background: transparent;
    transition-duration: 300ms;
}
.tag-section .tag-wrapper:hover {
    outline: 2px solid #8338ec80;
}
.tag-section .tag-wrapper-arrow:hover {
    background: var(--purple-one);
    color: #fff;
}
.tag-wrapper .tag-img {
    width: 60px;
    height: 60px;
    background-color: var(--toc-bg-color);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tag-wrapper img {
    fill: #ffffff;
    background-size: cover;
    border-radius: 100px;
}
.tag-section .tag-wrapper .tag-text {
    display: flex;
    flex-direction: column;
}
#home .heropage h1 {
    padding-bottom: 20px;
    color: white;
}
.blog-card-large {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    padding: 20px;
    border-radius: 30px;
}
.blog-card-large:hover {
    outline: 2px solid var(--border-color-primary);
}
.blog-card-small {
    grid-column: span 2 / span 2;
    grid-row: span 1 / span 1;
    box-shadow: 0px 20px 60px 10px #8a959e20;
    padding: 20px;
    border-radius: 30px;
}
#latest-blogs-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    padding: 0 10px;
    margin-bottom: 50px;
    display: none;
}
#latest-blogs-container .latest-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 100px;
    row-gap: 30px;
}
#latest-blogs-container .latest-blogs-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 20px 0;
}
#latest-blogs-container .latest-blogs-header-wrapper h2 {
    padding: 0;
    margin: 50px 0px;
}
#latest-blogs-container .blog-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
#latest-blogs-container .blog-search-input {
    width: 300px;
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    border: none;
    box-shadow: 0 5px 20px 0px var(--box-shadow);
    background-color: transparent;
    font-size: 16px;
    background-color: #ffffff10;
}
#latest-blogs-container .blog-search-btn {
    background-color: #191c43;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 50px;
    color: white;
    border: none;
}
#more-blogs-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    margin-bottom: 100px;
}
#more-blogs-container h2 {
    padding: 50px 0px;
}
#more-blogs-container a {
    text-decoration: none;
}
#more-blogs-container .more-blogs-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 20px 0;
}
#more-blogs-container .view-more-blogs p {
    color: #191c43 !important;
}
#more-blogs-container .more-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 40px;
}
.blog-card-large .blog-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
}
input:focus {
    outline: none;
}
.loading-wrapper {
    display: flex;
    justify-content: center;
}
.loading {
    background: var(--purple-one);
    color: white;
    border-radius: 100px;
    padding: 10px 30px;
    cursor: pointer;
    margin-top: 30px;
}
.loading:active {
    opacity: 90%;
}

/* Blogcardnew */
.blog-card-large {
    color: #3d3269;
    cursor: pointer;
}
.blog-card-large a {
    position: relative;
    text-decoration: none;
}
.blog-card-large .blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    object-fit: cover;
}
.blog-card-large .blog-title {
    padding: 20px 0px 20px 0px;
    height: 80px;
    width: 100%;
}
.blog-card-large p {
    padding: 0px;
    font-size: 13px;
}
.blog-card-large .dot {
    width: 5px;
    height: 5px;
    background-color: #8338ec;
    border-radius: 50px;
    margin-top: 40px;
}
.blog-card-large .blog-tag {
    padding: 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-card-large .blog-tag-text {
    background-color: var(--toc-bg-color);
    padding: 0px 20px;
    border-radius: 15px;
    text-align: center;
}
.blog-card-large .dashed-line {
    height: 1px;
    width: 100%;
    border: 1px dashed var(--tooltip-color);
    margin-top: 10px;
}
.blog-card-large .blog-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-secondary);
    gap: 10px;
    padding-top: 10px;
}
/* blogcardsmall */
.blog-card-small {
    color: #3d3269;
    display: flex;
}
.blog-card-small .blog-content {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.blog-card-small .blog-image {
    width: 160px;
    aspect-ratio: 1/1;
    border-radius: 15px;
    object-fit: cover;
}
.blog-card-small .blog-title {
    text-align: left;
    padding: 5px 0px 10px 0px;
    height: 65px;
    width: 100%;
}
.blog-card-small p {
    padding: 0px;
    font-size: 13px;
}
.blog-card-small a {
    position: relative;
}
.blog-card-small .dot {
    width: 5px;
    height: 5px;
    background-color: #8338ec;
    border-radius: 50px;
}
.blog-card-small .blog-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: none;
}
.blog-card-small .blog-tag-text {
    background-color: var(--toc-bg-color);
    padding: 0px 20px;
    border-radius: 20px;
    text-align: center;
    color: #8338ec;
}
.blog-card-small .dashed-line {
    height: 1px;
    width: 100%;
    border: 1px dashed #191c4390;
    margin: 15px 0;
}
.blog-card-small .blog-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-secondary);
    gap: 10px;
}
article h1 {
    text-align: center;
    padding: 20px 0px;
}
article .article-info p {
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
    color: var(--blog-info-color);
}
article .hr {
    background-color: transparent;
    border-top: 1px dashed var(--hr-color);
}
article .cover {
    width: 100%;
    aspect-ratio: 3/1;
    border-radius: 30px;
    object-fit: cover;
    margin: 30px 0;
    border: 2px solod #00000010;
}
/* --- social share ---- */
.social-share {
    width: fit-content;
    display: flex;
    gap: 20px;
    transform: translateY(-50%);
    margin: 30px auto;
}
.social-share .share-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 2px solid var(--border-color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 500ms;
}

/* --- tooltip --- */

.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #101922;
    color: white;
    text-align: center;
    border-radius: 7px;
    padding: 5px 0px;
    position: absolute;
    z-index: 1;
    bottom: -150%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}
.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    transform: rotate(180deg);
    border-color: #101922 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Blog */

.content {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
}
.main-content p {
    margin: 40px 0px;
}

/* Table of Contents */
.toc {
    padding: 40px 50px;
    background-color: var(--toc-bg-color);
    border-radius: 10px;
    margin-bottom: 30px;
}
.toc h5 {
    margin-bottom: 10px;
}
ul,
ol {
    list-style-position: inside;
}

/* footer */

footer {
    position: relative;
}
footer .subscribe-content {
    max-width: 1280px;
    margin: auto;
    height: 100%;
    padding: 100px 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    display: none;
    flex-direction: column;
    background-image: url(../assets/svgs/footerbg.svg);
    justify-content: center;
    align-items: center;
    gap: 50px;
    background-size: cover;
    text-align: center;
}
footer .subscribe-content p {
    padding-top: 20px;
}
footer .logo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .blog-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
footer .blog-search-input {
    width: 500px;
    padding: 10px 20px;
    border-radius: 50px;
    outline: none;
    border: none;
    box-shadow: 0 5px 20px 0px var(--box-shadow);
    background-color: transparent;
    font-size: 16px;
    background-color: #ffffff;
}
footer .blog-search-btn {
    background-color: #191c43;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 50px;
    color: white;
    border: none;
    cursor: pointer;
}
.footer-container {
    background-color: var(--toc-bg-color);
    padding: 40px 30px;
}
.footer-content {
    max-width: 1280px;
    padding: 20px 0px;
    height: 100%;
    margin: auto;
}
.footer-social-media {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 4px;
}
.footer-social-media-svg {
    cursor: pointer;
}
.footer-social-media svg {
    opacity: 80%;
    color: var(--text-primary);
}
.footer-social-media svg:hover {
    opacity: 100%;
}
.copyright {
    text-align: center;
    padding: 20px 30px;
    font-size: 16px !important;
}
.footer-container .footer-info-content {
    width: 150px;
    margin-top: 40px;
}
.footer-container .footer-info {
    opacity: 90%;
    gap: 20px;
    margin-top: 10px;
}
.footer-container .footer-info div {
    cursor: pointer;
    margin-bottom: 5px;
}
.footer-container .footer-info div:hover {
    text-decoration: underline;
}
.footer-container .web-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* ----blog-card--- */

#related-blogs-container {
    max-width: 1280px;
    height: 100%;
    margin: auto;
}
.related-blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 40px;
    padding-bottom: 100px;
}
.blog-container h1 {
    text-align: center;
    margin: 20px 0;
}
.article-list-view-all {
    padding: 5px 20px;
    border-radius: 100px;
}
.article-list-view-all:hover {
    outline: 2px solid var(--border-color-primary);
}
.article-list-title span {
    color: #b5b5b5;
}
#blog-card {
    color: #3d3269;
}
#blog-card .blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    object-fit: cover;
}
#blog-card .blog-title {
    text-align: center;
    padding: 5px 0px 20px 0px;
    height: 80px;
}
#blog-card p {
    padding: 0px;
    font-size: 13px;
}
#blog-card .dot {
    width: 5px;
    height: 5px;
    background-color: #8338ec;
    border-radius: 50px;
}
#blog-card .blog-tag {
    padding: 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 20px 0;
}
#blog-card .blog-tag-text {
    background-color: #8338ec30;
    padding: 0px 20px;
    border-radius: 20px;
    text-align: center;
    color: #8338ec;
}
#blog-card .dashed-line {
    height: 1px;
    width: 100%;
    border: 1px dashed #00000030;
}
#blog-card .blog-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
}

/* ---- category ---- */
.category-container {
    max-width: 1280px;
    margin: auto;
    padding: 30px;
    position: relative;
}
#tag-category .tag {
    padding: 5px 30px;
    border-radius: 100px;
    cursor: pointer;
    margin: 10px 0px;
    background-color: var(--toc-bg-color);
    width: fit-content;
}
#tag-category .tag p {
    font-size: 16px;
}
#tag-category a {
    text-decoration: none;
}
.tag-category {
    display: flex;
    gap: 30px;
    width: 100%;
    margin: 30px 0px 60px 0px;
    overflow-x: scroll;
}
#category .input-field-content {
    display: flex;
    flex-direction: column;
    width: 70%;
    border-radius: 16px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
}
#not_found {
    text-align: center;
    padding: 20px;
    display: none;
}
#category .input-field {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    border-radius: 16px;
    padding: 0px 30px;
    border: 2px solid #00000010;
}
#category input {
    width: 100%;
    padding: 15px 0px;
    background-color: transparent;
    border: 0px;
}
#category input::placeholder {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
}
#category .search {
    width: fit-content;
    cursor: pointer;
    color: #3d3269;
}
#category .search p {
    font-size: 30px;
    color: var(--text-primary);
}
#blog .header-wrapper {
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 40px;
    justify-content: space-between;
}
input:focus {
    outline: none;
}
#category .blog-header {
    text-align: center;
    background-size: cover;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    position: relative;
    margin-bottom: 64px;
}
/* ------ Responsive tablate ------ */
@media (max-width: 900px) {
    #more-blogs-container .more-blogs-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .latest-blogs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-content,
    .right-content,
    .left-content {
        grid-column: span 5;
    }
    .main-content {
        order: 1;
    }
    .left-content {
        order: 2;
    }
    .right-content {
        order: 3;
    }
    article .cover {
        border-radius: 10px;
    }
}

/* ---- about ---- */

.about-page-content {
    width: 60%;
    margin: auto;
    margin-bottom: 40px;
}
.about-page-content h6 {
    margin: 40px 0px 20px 0px;
}
.about-container {
    max-width: 1280px;
    margin: auto;
    position: relative;
    /* padding: 30px; */
}
#about .about-header {
    border-radius: 30px;
    padding: 50px 0px;
    background-size: cover;
    text-align: center;
}
.about-page-content ul {
    padding-top: 30px;
}
#about a {
    color: var(--purple-one);
}

/*    ---  contact me    ---   */
#contact .contact-page-content {
    background-color: var(--toc-bg-color);
    border-radius: 30px;
    margin: 50px 30px;
    padding: 50px;
    padding-bottom: 150px;
}
.contact-container {
    max-width: 1280px;
    margin: auto;
    position: relative;
    padding: 30px;
}
#contact .contact-header {
    background-image: url(../assets/svgs/Background.png);
    text-align: center;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    background-size: cover;
}
#contact .contact-header h1 {
    text-align: center;
    color: #ffffff;
}
#contact .search-input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 50px;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 16px;
    background-color: var(--bg-primary);
}
#contact .search-input-message {
    width: 100%;
    height: 300px;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 50px;
    outline: none;
    border: none;
    background-color: transparent;
    font-size: 16px;
    background-color: var(--bg-primary);
}
#contact .search-wrapper textarea {
    resize: vertical;
}
#contact .search-btn {
    background-color: #191c43;
    padding: 10px 30px;
    font-size: 16px;
    margin-top: 50px;
    border-radius: 50px;
    color: white;
    border: none;
    float: right;
    cursor: pointer;
}
blockquote {
    background-color: var(--toc-bg-color);
    padding: 6px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}
blockquote p {
    margin: 0 !important;
}
li p {
    display: inline-block !important;
    margin: 0 !important;
}
li h5 {
    display: inline-block !important;
    margin: 0 !important;
}
ul {
    margin-bottom: 30px !important;
}
p {
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}
.blog-info .blog-info-time p {
    margin: 0 !important;
}
.blog-info .blog-info-read-time p {
    margin: 0 !important;
}
