    /* You can add global styles to this file, and also import other style files */

    body {
        font-family: 'Poppins', sans-serif;
    }

    .bg-light {
        background: #f8f9fa !important;
    }

    .bg-dark {
        background: #222831 !important;
    }

    .pt-0 {
        margin-top: 0;
    }

    .menu-section {
        display: flex;
    }

    .menu-profile {
        margin-left: 10px;
    }

    .banner {
        width: 100%;
        height: 100vh;
        /* background-image: linear-gradient(45deg, rgba(121, 1, 163, 0.8) 0%, rgba(252, 0, 226, 0.6) 56%, rgba(255, 184, 0, 0.9) 100%), url("../src/assets/images/bak.webp"); */
        /* background-image: linear-gradient( 30deg, #f44336 0%, rgb(244 9 255 / 77%) 45%, rgb(0 55 255 / 90%) 100%), url("../src/assets/images/bak.webp"); */
        background-image: linear-gradient( 45deg, rgb(242 0 255 / 80%) 0%, rgb(255 186 66 / 77%) 100%), url("../images/bak.webp");
        /* background-image: url('../src/assets/images/bak2.jpg'); */
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: top;
        color: #FFF;
    }

    .no-banner {
        height: unset;
    }

    .banner.author-details-banner, .banner.authors-banner, .banner.blog-banner, .banner.articles-banner {
        height: 45vh;
    }

    .banner .banner-content-wrapper {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 120px);
        justify-content: space-evenly;
    }

    .banner.banner-menu .banner-content-wrapper {
        display: flex;
        flex-direction: column;
        height: calc(50vh - 120px);
        justify-content: space-evenly;
    }

    .blog-management-banner {
        height: unset !important;
    }

    .blog-management.content-body {
        min-height: calc(100vh - 448px - 106px);
    }

    .banner .banner-content-menu .banner-content-menu-name {
        font-size: 140px;
        text-align: center;
        letter-spacing: 3px;
        font-weight: 800;
    }

    .banner .banner-content-menu .banner-content-breadcrum {
        font-size: 40px;
        text-align: center;
    }

    .banner .banner-content-menu .banner-content-breadcrum span {
        letter-spacing: 2px;
    }

    .navbar-sticky a, .navbar-sticky a:visited, .navbar-sticky a:hover {
        color: #000 !important;
    }

    .navbar-static .dropdown-menu.dropdown-menu-end a, .navbar-static .dropdown-menu.dropdown-menu-end a:visited, .navbar-static .dropdown-menu.dropdown-menu-end a:hover, .navbar-sticky .dropdown-menu.dropdown-menu-end a, .navbar-sticky .dropdown-menu.dropdown-menu-end a:visited, .navbar-sticky .dropdown-menu.dropdown-menu-end a:hover {
        color: #000 !important;
        background: none !important;
    }

    .navbar-static a, .navbar-static a:visited, .navbar-static a:hover {
        color: #FFF !important;
    }

    .dropdown-menu li {
        letter-spacing: 2px;
    }

    .navbar-static .dropdown-menu.dropdown-menu-end {
        border-radius: 10px;
        background: #ffffff38;
        padding: 10px 15px;
        margin-top: 12px;
        border: none;
        margin-right: -20px;
    }

    .navbar-static .dropdown-menu.dropdown-menu-end::before {
        position: absolute;
        top: -20px;
        right: 29px;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 10px 10px;
        border-color: transparent transparent #ffd369 transparent;
    }

    .navbar-sticky .dropdown-menu.dropdown-menu-end {
        border-radius: 10px;
        background: #ffffffc4;
        padding: 10px 15px;
        margin-top: 45px;
        border: 1px solid #02020275;
        margin-right: -20px;
    }

    .navbar-sticky .dropdown-menu.dropdown-menu-end::before {
        position: absolute;
        top: -21px;
        right: 29px;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 10px 10px;
        border-color: transparent transparent #ffd369 transparent;
    }

    .dropdown-item {
        padding: 10px;
    }

    .dropdown-menu.dropdown-menu-end li a i {
        margin-right: 10px;
    }

    .profile-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #FFF;
    }

    .blog {
        overflow: hidden;
        position: relative;
        cursor: pointer;
        margin-bottom: 50px;
    }

    .blog:hover .blog-info .blog-title {
        color: #f777b6 !important;
    }

    .blog .blog-image {
        width: 100%;
        height: 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .blog img {
        width: 100%;
    }

    .blog .blog-info {
        height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .blog .blog-info .blog-category {
        color: #d1d1d1;
        text-transform: uppercase;
    }

    .blog .blog-info .blog-title {
        font-size: 35px;
        font-weight: 900;
    }

    .blog .blog-info .blog-social {
        display: flex;
        /* position: absolute;
        bottom: 40px; */
    }

    .blog .blog-info .blog-social .blog-social-icon {
        display: flex;
        height: 50px;
        width: 50px;
        margin-right: 10px;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
        font-size: 20px;
        cursor: pointer;
        visibility: hidden;
    }

    .blog:hover .blog-info .blog-social .blog-social-icon {
        visibility: visible;
    }

    .blog .blog-info .blog-social .blog-social-icon:hover {
        background-color: #ffd369;
    }

    .blog .blog-info .blog-user-date {
        display: flex;
        justify-content: flex-start;
        color: #999;
        /* position: absolute;
        bottom: 0; */
    }

    .blog:hover .blog-info .blog-user-date {
        color: #000;
        /* position: absolute;
        bottom: 0; */
    }

    .blog .blog-info .blog-user-date .blog-date {
        margin-right: 10px;
    }

    .blog .blog-info .blog-user-date .blog-user {
        margin-left: 10px;
    }

    .navbar .nav-item {
        font-size: 20px;
        letter-spacing: 2px;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .navbar-brand {
        font-weight: 900;
        font-size: 50px;
        font-family: "Poppins", Arial, sans-serif;
        line-height: 1;
    }

    .navbar-toggler {
        border: none;
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler:focus .menu-label {
        color: #FFF;
    }

    .navbar-toggler .menu-label {
        margin-left: 5px;
        letter-spacing: 1px;
        color: #666;
    }

    .navbar-toggler-icon {
        width: 16px;
        height: 16px;
        color: rgb(255, 102, 203) !important;
    }

    /* Footer CSS */

    .footer {
        color: #AAA;
        padding-top: 50px;
    }

    .footer-top {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .footer-top .recent-blog {
        margin-right: 40px;
    }

    .footer-bottom {
        text-align: center;
        padding: 40px 0;
        letter-spacing: 2px;
    }

    .footer-header {
        padding: 15px 0;
        font-size: 20px;
        color: #FFF;
        margin-bottom: 20px;
    }

    .footer-header a, .footer-header a:hover, .footer-header a:active, .footer-header a:focus, .footer-header a:visited {
        color: #FFF !important;
    }

    .footer-menu .footer-menu-line ul {
        list-style: none;
        padding-left: 15px;
    }

    .footer-menu .footer-menu-line ul li:before {
        content: '';
        position: absolute;
        border-right: 2px solid #EEE;
        border-bottom: 2px solid #EEE;
        width: 10px;
        height: 10px;
        top: calc(50% - 1px);
        left: -20px;
        transform: translateY(-50%) rotate(-45deg);
    }

    .footer-menu .footer-menu-line ul li {
        margin-bottom: 15px;
        position: relative;
    }

    .footer-contact .footer-contact-lines ul {
        list-style: none;
        padding-left: 0px;
    }

    .footer-contact .footer-contact-lines ul li {
        margin-bottom: 15px;
        position: relative;
    }

    .footer .footer-contact .footer-contact-social {
        display: flex;
    }

    .footer .footer-top .footer-about .footer-about-social {
        display: flex;
        margin-top: 20px;
    }

    .footer .footer-top .footer-about .footer-about-social .footer-social-icon {
        display: flex;
        height: 50px;
        width: 50px;
        margin-right: 10px;
        align-items: center;
        justify-content: center;
        background: #ffd369;
        border-radius: 4px;
        font-size: 20px;
        cursor: pointer;
        color: #333;
    }

    /* Article */

    .articles {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .article {
        padding: 10px;
        border-radius: 15px;
        margin-bottom: 50px;
    }

    .article:hover {
        background-color: #f5f5f5;
    }

    .article-image {
        position: relative;
        height: 400px;
        border-radius: 4px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .article-date {
        position: absolute;
        top: 30px;
        display: flex;
        background: #ffd369;
        padding: 5px;
        right: 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        color: #000;
    }

    .article-date .article-date-date {
        font-size: 40px;
        padding: 0 10px;
    }

    .article-date .article-date-year-month {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 10px;
    }

    /* .article-date::after {
        position: absolute;
        bottom: -10px;
        left: 40px;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: #ffd369 transparent transparent transparent;
    } */

    .article-title {
        padding: 20px;
        font-size: 22px;
        font-weight: 900;
        line-height: 27px;
        color: #333;
    }

    .article-summary {
        padding: 0 20px 20px 20px;
        color: #777;
        margin-bottom: 30px;
    }

    .article-read-more {
        padding: 0 20px 20px 20px;
        font-size: 12px;
        color: #999;
        font-weight: 700;
    }

    .article-read-more span {
        margin-left: 10px;
        letter-spacing: 1px;
    }

    /* Author */

    .author-thumb {
        margin-bottom: 50px;
        position: relative;
    }

    .author-thumb .author-image {
        background-image: url('../images/author.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 300px;
        border-radius: 5px;
    }

    .author-thumb .author-blog-count {
        position: absolute;
        top: 30px;
        right: 0;
        background-color: #f88f9d;
        padding: 10px;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        display: flex;
    }

    .author-thumb .author-details {
        position: absolute;
        bottom: 30px;
        background-color: #ffd369;
        padding: 10px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        display: flex;
        color: #333;
    }

    .author-thumb .author-details .author-name-joined {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* author-details */

    .author {
        position: relative;
    }

    .author .author-image {
        background-image: url('../images/author.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 800px;
    }

    .author .author-blog-count-wrapper {
        display: flex;
        position: absolute;
        height: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;
        z-index: 99;
    }

    .author .author-blog-count-wrapper span {
        border-radius: 50%;
        background-color: #ffd369;
        font-size: 30px;
        height: 100px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .author .author-details {
        display: flex;
        flex-direction: column;
        padding: 0 0 0 60px;
        height: 800px;
        line-height: 32px;
        justify-content: center;
    }

    .author .author-details .author-header-name {
        height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .author .author-details .author-header {
        font-weight: 600;
        color: #BBB;
        letter-spacing: 1px;
    }

    .author .author-details .author-name {
        font-size: 40px;
        font-weight: 800;
        color: #333;
    }

    .author .author-details .author-joined-on {
        color: #333;
    }

    .author .author-details .author-about {
        font-size: 30px;
        font-weight: 700;
        margin-top: 30px;
        margin-bottom: 20px;
        color: #333;
    }

    .author .author-details .author-summary {
        color: #BBB;
        letter-spacing: 1px;
    }

    .author-articles {
        padding: 50px 0;
    }

    .pd-0 {
        padding: 0px;
    }

    /* blog-details */

    .blog-detail-image {
        background-image: url('../images/blog1.webp');
        width: 100%;
        height: 580px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .blog-detail-title {
        padding: 20px 0;
        font-size: 30px;
    }

    .blog-detail-description {
        color: #888;
    }

    .blog-detail-tags {
        margin: 30px 0;
        font-size: 12px;
        display: flex;
        flex-wrap: wrap;
    }

    .blog-detail-tags span {
        padding: 5px;
        letter-spacing: 1px;
        border-radius: 4px;
        border: 1px solid #999;
        margin-right: 8px;
        margin-bottom: 10px;
    }

    .blog-detail-author {
        padding: 20px;
        border-radius: 4px;
        background: #EEE;
    }

    .blog-detail-author .blog-author-image {
        background-image: url('../images/author.webp');
        width: 100%;
        min-height: 300px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* .blog-author .blog-author-details {} */

    .blog-detail-author .blog-author-details .blog-author-details-name {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .blog-detail-author .blog-author-details .blog-author-details-about {
        color: #888;
    }

    .blog-comments {
        margin-top: 100px;
    }

    .blog-comments .blog-comments-count {
        font-size: 30px;
        margin-bottom: 30px;
        color: #888;
    }

    .blog-comments .blog-comments-row-comment {
        margin-bottom: 40px;
    }

    .blog-comments .blog-comments-row-comment.reply {
        margin: 0 0 40px 50px;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-image, .blog-comments .blog-add-comment .blog-comments-user-image {
        background-image: url('../images/author.webp');
        width: 80px;
        height: 80px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        border-radius: 50%;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-details {
        padding-left: 100px;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-details .blog-comments-user-name-date {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: 80px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-details .blog-comments-user-name-date .blog-comments-user-name {
        font-size: 20px;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-details .blog-comments-user-name-date .blog-comments-comment-date {
        font-size: 14px;
        color: #888;
    }

    .blog-comments .blog-comments-row-comment .blog-comments-user-details .blog-comments-comment-description {
        line-height: 30px;
        color: #999;
        letter-spacing: 1px;
    }

    .btn-reply {
        margin-top: 20px;
        background: #EEE;
        border: 1px solid #AAA;
        border-radius: 4px;
        letter-spacing: 1px;
        padding: 4px 10px;
        color: #333;
    }

    .blog-comments .add-comment .save {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .blog-comments .add-comment .save .btn-save {
        border: 2px solid #000;
        border-radius: 5px;
        font-size: 16px;
        padding: 5px 10px;
        background: linear-gradient( 90deg, #4caf50 0%, #cddc39 100%);
        font-weight: 500;
        letter-spacing: 1px;
    }

    /* recent-blog */

    .recent-blog .recent-blog-header {
        color: #000;
        font-size: 25px;
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .recent-blog .recent-blog-lines .recent-blog-line {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .recent-blog .recent-blog-lines .recent-blog-line:hover .recent-blog-line-details-title {
        color: #f777b6;
    }

    .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-details {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-image {
        width: 80px;
        height: 80px;
        margin-right: 24px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-details-date-user {
        font-size: 10px;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
    }

    .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-details-date-user .recent-blog-line-details-date, .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-details-date-user .recent-blog-line-details-user {
        margin-right: 10px;
    }

    .recent-blog .recent-blog-lines .recent-blog-line .recent-blog-line-details-date-user span {
        margin-right: 5px;
    }

    /* category */

    .blog-categories .blog-categories-header {
        color: #000;
        font-size: 25px;
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    ul {
        list-style-type: none;
        padding-left: 0px;
    }

    .blog-categories ul li {
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #DDD;
    }

    .blog-categories ul li:last-child {
        border-bottom: none !important;
    }

    .blog-categories ul li i {
        color: #DDD;
    }

    a, a:hover, a:active, a:visited {
        color: #000;
        text-decoration: none;
    }

    .article-read-more a, .article-read-more a:active, .article-read-more a:visited {
        color: #888;
        text-decoration: none;
    }

    .article-read-more a:hover {
        color: #f777b6;
        text-decoration: none;
    }

    .footer a, .footer a:active, .footer a:visited {
        color: #AAA;
    }

    /* Login */

    .social-login {
        text-align: center;
        margin-top: 50px;
    }

    .social-login label {
        font-size: 20px;
        color: #999;
    }

    .social-login .social-login-buttons {
        display: flex;
        justify-content: center;
        padding-top: 40px;
    }

    .social-login .social-login-buttons div {
        height: 50px;
        width: 50px;
        border-radius: 50%;
        color: #FFF;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        margin-right: 20px;
    }

    .social-login .social-login-buttons div:last-child {
        margin-right: 0px;
    }

    .social-login .social-login-buttons .social-login-tweeter {
        background-color: #4ca0e5;
    }

    .social-login .social-login-buttons .social-login-facebook {
        background-color: #415990;
    }

    .social-login .social-login-buttons .social-login-google {
        background-color: #da4d45;
    }

    .btn-login-wrapper {
        display: flex;
        justify-content: center;
        margin: 40px 0 0 0;
    }

    .btn-login {
        width: 80%;
        background: linear-gradient( 45deg, rgb(242 0 255 / 80%) 0%, rgb(255 186 66 / 77%) 100%);
        height: 40px;
        border: none;
        border-radius: 20px;
        letter-spacing: 1px;
    }

    .form-group label {
        margin-bottom: 10px;
    }

    .form-group input {
        border: 2px solid #000;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    /* .modal {
        display: flex;
        align-items: center;
    } */

    /* .modal-dialog {
        width: 30% !important;
    } */

    .modal-body {
        padding: 40px;
        letter-spacing: 1px;
    }

    .modal-header {
        border: none;
        justify-content: center !important;
    }

    .forgot-password {
        text-align: right;
    }

    .no-account {
        text-align: center;
        margin-top: 30px;
        color: #999;
    }

    /* blog-management */

    .blog-management .blog-management-actions {
        display: flex;
        width: 100%;
        justify-content: space-around;
        font-size: 18px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .blog-management .blog-management-new {
        padding: 5px 10px;
        border-radius: 5px;
        background: linear-gradient( 90deg, #4caf50 0%, #cddc39 100%);
        color: #000;
        border: 2px solid #000;
        letter-spacing: 2px;
        display: flex;
        align-content: center;
        flex-direction: row;
        align-items: center;
        font-weight: 700;
    }

    .blog-management .box-header {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
    }

    .blog-management .blog-management-actions .btn-edit {
        height: 40px;
        width: 40px;
        color: #FFF !important;
        background: #fbbe6f;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        margin-bottom: 20px;
        border: 2px solid #999;
    }

    .blog-management .blog-management-actions .btn-delete {
        height: 40px;
        width: 40px;
        color: #FFF !important;
        background: #f88aa3;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        border: 2px solid #999;
    }

    /* blog-create */

    .blog-create .blog-create-title {
        font-size: 30px;
        margin-bottom: 30px;
        color: #333;
    }

    .blog-create .blog-create-tags {
        font-size: 20px;
        margin: 30px 0;
        color: #333;
    }

    .blog-create span.tagify__input {
        display: flex;
        height: 40px;
        align-items: center;
        letter-spacing: 1px;
    }

    .blog-create span.tagify__tag-text {
        letter-spacing: 1px;
    }

    .blog-create .blog-create-button {
        display: flex;
        margin-top: 30px;
        justify-content: flex-end;
    }

    .blog-create .blog-create-button .btn-create-blog {
        border: 2px solid #000;
        border-radius: 5px;
        font-size: 18px;
        background: linear-gradient( 90deg, #4caf50 0%, #cddc39 100%);
        padding: 5px 10px;
        font-weight: 700;
    }

    /* settings */

    .settings.content-body {
        min-height: calc(100vh - 448px - 106px);
        padding-top: 50px !important;
    }

    .settings .settings-header {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .settings .file-upload-control {
        visibility: hidden;
    }

    .settings .settings-file-upload {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .settings .btn-file-upload {
        font-size: 30px;
        height: 100px;
        width: 100px;
        border-radius: 50px;
        color: #fac369;
        border: 2px solid #f889a6;
        background: rgba(0, 0, 0, 0.8);
    }

    .settings .author-image {
        position: relative;
    }

    .settings .box {
        padding: 15px;
        background: #FFF;
        border-radius: 10px;
        margin-top: 30px;
    }

    .settings .box-header {
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #999;
    }

    .settings .save {
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .settings .save .btn-save {
        border: 2px solid #000;
        border-radius: 5px;
        font-size: 18px;
        padding: 5px 10px;
        background: linear-gradient( 90deg, #4caf50 0%, #cddc39 100%);
        font-weight: 700;
    }