/* Global start */
@font-face {
    font-family: myfont;
  src: url(../fonts/myfont.ttf) format("ttf"),
  url(../fonts/myfont.woff) format("woff"),
  url(../fonts/myfont.eot) format("eot");
  
    font-style: normal;
    font-weight: normal;
}
  
* {
    padding: 0;
    margin: 0;
    font-family: inherit;
    box-sizing: border-box;
    outline: none !important;
    list-style: none !important;
    text-decoration: none;
    font-family: myfont;
}
  
a {
    color: var(--main-color);
    text-decoration: none;
}

body {
    background-color: #efefef;
}

.content {
    display: grid;
    grid-template-columns: 60% 20%;
    justify-content: center;
    align-content: center;
    align-items: start;
}

.home-content {
    display: grid;
    grid-template-columns: 20% 40% 20%;
    justify-content: center;
    align-content: center;
    align-items: start;
}

@media print {
    header,#go-to-top,.share-social,.dev-copyright,.contact-form,.main-archive-sidebar {
        display: none !important;
    }

    .content {
        grid-template-columns: 1fr;
    }
}
/* Global end */

/* Header */
header {
    z-index: 999;
}

.header-top{
    background-color: var(--main-color);
    padding: 10px 20px;
    background-position: center;
    background-size: contain;
    background-blend-mode: multiply;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header-logo img {
    height: 120px;
}

.header-des {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-des p {
    color: white;
    background-color: #00000045;
    border-radius: 4px;
    padding: 6px;
    margin: 6px;
    display: inline;
}

.header-des a {
    padding: 10px;
    width: 80%;
    display: block;
}

.header-des a img {
    width: 100%;
}

.bottom-header{
    background-color: var(--second-color);
    padding: 6px 30px;
}

.header-menu ul {
    display: flex;
    justify-content: flex-start;
  }
  
  .header-menu ul a {
    color: white;
    font-size: 14px;
    padding: 4px 8px 6px 8px;
    border-left: 1px solid var(--main-color);
  }
  
  .header-menu ul a:hover {
    text-decoration: none;
    background-color: var(--main-color);
  }
  
  .header-menu-menu-item li {
    position: relative;
    padding-bottom: 5px;
  }
  
  .header-menu-menu-item ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 990;
    min-width: 140px;
    padding: 0;
    border-top: 1px solid var(--main-color);
    box-shadow: 0 0 6px rgb(0 0 0 / 50%);
    background-color: white;
    color: black;
  }
  
  .header-menu-menu-item ul li {
    width: 100%;
    padding: 10px 25px; 
    color: black;
    border-bottom: 1px dotted var(--main-color);
    border-right: 3px solid var(--main-color);
    transition: 0.3s;
  }

  .header-menu-menu-item ul li:last-child {
    border-bottom: 0px dotted var(--main-color);
  }
  
  .header-menu-menu-item ul li:hover {
    border-right: 12px solid var(--main-color);
    background-color: #ededed;
    transition: 0.3s;
  }
  
  .header-menu-menu-item ul li a {
    border-left: 0px solid #545454;
    color: black;
  }

  .header-menu-menu-item ul li a:hover {
    background-color: #00000000;
  }
  
  .header-menu-menu-item li:hover > ul {
    display: block;
  }

.bottom-header{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.header-extra {
    display: flex;
    align-items: center;
}

.header-time {
    display: flex;
    justify-content: center;
    color: white;
}

.header-time p {
    padding-left: 6px;
}

.searchform {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.searchform input {
    background-color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
}

.searchform button {
    background: white;
    color: var(--second-color);
    border: none;
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    transition: 0.1s;
}
.searchform button:hover {
    opacity: 0.8;
    transition: 0.1s;
}

.today {
    opacity: 0.7;
}

/* Mobile header */
.mobile-menu {
    background: var(--second-color);
    padding: 8px 16px;
}

/* Hamburger Icon Style */
.hamburger-icon {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease; 
}

/* Style for close icon when active */
.hamburger-icon.close span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-icon.close span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.close span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hamburger Menu Container */
.hamburger-menu-container {
    margin-top: 14px;
    width: 100%;
    background-color: var(--second-color);
    color: white;
    display: block;
    transition: 0.3s;
}

.hamburger-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* هنگامی که منو فعال است */
.hamburger-menu-container.active {
    display: none;
    transition: 0.3s;
}

/* هنگامی که زیرمنو فعال است */
.sub-menu.active {
    display: block !important;
    transition: 0.3s;
}


.hamburger-menu li {
    transition: 0.2s;
    background: var(--second-color);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 16px;
}
.hamburger-menu li:hover {
    background: var(--main-color);
    transition: 0.2s;
}

.hamburger-menu li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu li .sub-menu {
    display: none;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.hamburger-menu li .sub-menu li {
    margin: 10px 0;
}

.submenu-icon {
    margin-left: 10px;
    font-size: 18px;
    color: white;
    padding: 2px 16px;
    background: var(--main-color);
    border: 1px solid white;
    transition: 0.2s;
}
.submenu-icon:hover {
    background: var(--second-color);
    border: 2px solid white;
    transition: 0.2s;
}


/* Home section */
.top-news-home {
    padding: 20px 10px 10px 10px;
}

.none-content {
    background-color: rgb(208, 126, 126);
    color: white;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
}

.single-top-news-populer {
    color: black;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 10px;
}

.single-top-news-populer:nth-of-type(even){
    background-color: #ededed;
}

.single-top-news-populer i {
    color: var(--main-color);
    padding-left: 6px;
    font-size: 16px;
}

.single-top-news-populer a{
    color: black;
    font-weight: 200;
    transition: 0.2s;
}
.single-top-news-populer a:hover {
    color: var(--main-color);
    transition: 0.2s;
}

.top-news-left {
    background-color: white;
    padding: 8px;
}

.top-news-populer {
    height: 260px;
    overflow-y: scroll;
}

.top-news-populer::-webkit-scrollbar {
    width: 1px; 
}
.top-news-populer::-webkit-scrollbar-track {
    background: white;
    border-radius: 8px; 
}
.top-news-populer::-webkit-scrollbar-thumb {
    background: var(--main-color); 
    border-radius: 8px; 
}
.top-news-populer::-webkit-scrollbar-thumb:hover {
    background: var(--main-color); 
}
.top-news-populer {
    scrollbar-width: thin; 
    scrollbar-color: var(--main-color) white; 
}
.top-news-populer {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.title {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.title::after{
    margin-top: -12px;
    content: '______________';
    color: var(--main-color);
    font-family: monospace;
}

.top-news-center {
    background-color: white;
    padding: 8px;
    margin: 0 8px;
}

.top-news-slider {
    padding-top: 8px;
    overflow: hidden;
    height: 260px;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height:100%;
    object-fit: cover;
  }
  
  .right-num-slider .swiper-pagination-bullet {
    width: 26px;
    height: 26px;
    text-align: center;
    border-radius: 6px;
    line-height: 20px;
    padding: 3px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .right-num-slider .swiper-pagination-bullet-active {
    color: white;
    background: var(--main-color);
  }

.slider-single img {
    width: 320px !important;
    height: 200px !important;
    border-radius: 12px;
}

.slider-single a{
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.slider-single a p {
    color: black;
    font-weight: 200;
}

.slider-single-des {
    padding-left: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

.top-news-right {
    background-color: white;
    padding: 8px;
}

.right-num-slider{
    padding-top: 8px;
    overflow: hidden;
    height: 260px;
}

.single-nslider a {
    position: relative;
}

.single-nslider img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
}

.single-nslider h3 {
    position: fixed;
    bottom: 60px;
    font-size: 12px;
    color: white;
    background: rgba(255, 0, 0, 0.686);
    padding: 8px;
    width: 80%;
    right: 10%;
}

.main-news-home {
    padding: 10px 10px 20px 10px;
}

.main-left-ads {
    background-color: white;
    padding: 8px;
}

.main-center-news {
    background-color: white;
    padding: 8px;
    margin: 0 8px;
}

.mcn-posts {
    padding-top: 6px;
}

.mcn-img {
    display: flex;
    padding-top: 12px;
}

.mcn-img img {
    width: 40%;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.2s;
}

.mcn-img img:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.mcn-img p {
    color: black;
    padding-right: 10px;
    font-weight: 200;
}

.mcn-single-post {
    border-bottom: 1px dotted gray;
    padding-top: 14px;
    padding-bottom: 6px;
    text-align: right;
}
.mcn-single-post:last-of-type {
    border-bottom: 0px dotted gray;
}

.mcn-single-post-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 10px 18px;
}

.mcn-single-post-desc p {
    font-size: 10px;
    background-color: var(--main-color);
    color: white;
    border: 1px solid var(--second-color);
    padding: 4px 8px;
    opacity: 0.6;
}

.mcn-single-post-desc a {
    color: white;
    background: var(--main-color);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    transition: 0.2s;
}
.mcn-single-post-desc a:hover {
    background: var(--second-color);
    transition: 0.2s;
}

.show-all-posts {
    background: var(--main-color);
    display: block;
    color: white;
    padding: 6px 18px;
    border-radius: 10px 0 10px 0;
    width: 100%;
    text-align: center;
    transition: 0.2s;
}
.show-all-posts:hover {
    background: var(--second-color);
    transition: 0.2s;
}

.mcn-title {
    color: var(--main-color);
    padding-right: 12px;
    transition: 0.2s;
}
.mcn-title:hover {
    filter: hue-rotate(120deg);
    transition: 0.2s;
}

.main-right-sidebar {
    background-color: white;
    padding: 8px;
}

.mrs-news {
    padding: 12px 0;
}

.mrs-single-news {
    border-bottom: 1px dotted gray;
    padding: 12px;
}
.mrs-single-news:last-of-type{
    border-bottom: 0px dotted gray;
}

.mrs-single-news a {
    display: flex;
    font-size: 10px;
    transition: 0.2s;
}
.mrs-single-news a:hover {
    opacity: 0.7;
    transition: 0.2s;
}

.mrs-single-news a h3 {
    padding-right: 6px;
}

.mrs-single-news img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Archive */
.archive-post {
    padding-bottom: 14px;
}

.post-content {
    background: white;
    padding: 8px;
    margin: 0 8px;
    text-align: -webkit-center;
    text-align: center;
}

.post-article {
    border-bottom: 1px dotted gray;
}
.post-article:last-of-type {
    border-bottom: 0px dotted gray;
}

.post-article img {
    width: 30%;
}

.page-title {
    padding: 8px 20px;
    margin: 10px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-title::after{
    content: "_____________";
    font-family: monospace;
    font-size: 24px;
    color: var(--main-color);
    margin-top: -30px;
}

.pagination-archive {
    background: var(--main-color);
    width: 90%;
    border: 1px solid var(--second-color);
    border-radius: 12px;
    text-align: center;
    padding: 16px 32px;
    margin-right: 5%;
}

.pagination-archive .page-numbers {
    background: white;
    color: var(--main-color);
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.2s;
}
.pagination-archive .page-numbers:hover {
    opacity: 0.8;
    color: var(--second-color);
    transition: 0.2s;
}

.pagination-archive .current {
    color: gray;
    transition: 0.2s;
}
.pagination-archive .current:hover {
    opacity: 0.8;
    color: gray;
    transition: 0.2s;
}

.main-archive-sidebar div:first-of-type {
    margin-bottom: 12px;
}


/* ADS */
.single-ads {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px dotted var(--main-color);
    transition: 0.2s;
}
.single-ads:last-of-type {
    border-bottom: 0px dotted var(--main-color);
}
.single-ads:hover {
    opacity: 0.8;
    transition: 0.2s;
}

.single-ads img {
    width: 100%;
    border-radius: 10px;
}

.single-ads p {
    color: white;
    background-color: var(--second-color);
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.title2 {
    font-size: 12px;
    padding-bottom: 6px;
    padding-right: 6px;
}

.title2 h2 {
    background: var(--main-color);
    color: white;
    padding: 4px 14px;
    text-align: center;
    border-radius: 10px 0;
    display: inline;
    box-shadow: 6px 6px 0px 0px var(--second-color);
}

/* Single */
.single-blog-main {
    padding: 20px 4px;
}

.single-blog-page {
    background: white;
    padding: 8px;
    margin-left: 8px;
}

.single-blog-title img {
    width: 100%;
    height: 100%;
}

.single-blog-deteal {
    background:white;
    border: 1px solid var(--second-color);
    color: var(--main-color);
    padding: 6px 18px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
}

.single-blog-deteal p{
    padding: 0 10px;
    font-size: 14px;
}

.single-blog-deteal a {
    color: var(--second-color);
}

.share-social {
    padding: 14px 20px;
    text-align: center;
}

.share-social a {
    padding: 4px 14px;
    background: linear-gradient(45deg, var(--main-color), var(--second-color));
    border-radius: 20px;
    color: white;
    margin: 0 4px;
    transition: 0.2s
}
.share-social a:hover {
    opacity: 0.8;
    transition: 0.2s
}

.contact-form h3 {
    text-align: center;
}

.comments-textarea textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--main-color);
    border-radius: 12px;
    margin-top: 8px;
}

.comments-textarea textarea:focus {
    border: 2px solid var(--second-color);
}

.comments-det {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    justify-items: stretch;
}

.comments-det label {
    font-size: 10px;
}

.submit-btn {
    background: linear-gradient(45deg, var(--main-color), var(--second-color));
    border: none;
    border-radius: 12px;
    color: white;
    padding: 6px 12px;
    cursor: pointer;
    transition: 0.2s;
}
.submit-btn:hover {
    opacity: 0.7;
    transition: 0.2s;
}

.comment-info input {
    border: 1px solid var(--main-color);
    padding: 4px 8px;
    border-radius: 4px;
    width: 80%;
    margin-bottom: 8px;
}

.comment-info input:focus {
    border: 2px solid var(--second-color);
}

.comments-area {
    padding: 8px 10px 16px 10px;
}

.comment-list {
    padding: 8px 24px;
}

.comment-list ul li {
    border: 1px solid var(--main-color);
    padding: 4px 8px;
    margin: 4px 0;
}


.comment-list ul li .reply {
    text-align: center;
    padding: 0 0 6px 0;
}

.comment-list ul li .reply a {
    background: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 4px 24px;
    border-radius: 8px;
    transition: 0.2s;
}
.comment-list ul li .reply a:hover {
    opacity: 0.8;
    background: var(--main-color);
    color: white;
    transition: 0.2s;
}

.comment-list ul li .comment-body {
    display: grid;
    grid-template-columns: 4fr 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: start;
}

.comment-list ul li .comment-meta {
    font-size: 12px;
}

/* 404 */
.page-not-fund {
    text-align: center;    
    padding: 20px 40px;
    background: white;
    margin: 40px;
}

.page-not-fund h1 {
    font-size: 60px;
    color: var(--main-color);
}

.page-not-fund p {
    opacity: 0.7;
    padding-bottom: 20px;
}

.page-not-fund a {
    background: white;
    color: var(--main-color);
    padding: 8px 24px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    margin-top: 20px;
    transition: 0.2s;
}
.page-not-fund a:hover {
    background: var(--main-color);
    color: white;
    transition: 0.2s;
}

.page-not-fund img {
    height: 180px;
}

/* Footer */
footer{
    position: relative;
}
.top-footer {
    background: var(--second-color);
    color: white;
    padding: 4px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    border: 1px dotted black;
}

.top-footer a {
    color: white;
}

.top-footer div {
    padding-right: 4px;
}

#go-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999; 
    font-size: 18px;
    background-color: var(--main-color);
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.8;
    border: 1px solid black;
}

#go-to-top:hover {
    background-color: var(--second-color);
}

.bottom-footer {
    background: var(--main-color);
    padding: 40px;
    background-position: center;
    background-size: contain;
    background-blend-mode: multiply;
    color: white;
    text-align: center;
}

.dev-copyright {
    background: #333;
    color: #ffaa00;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
}

.dev-copyright a {
    color: #ff0019;
    padding: 0 4px;
}

.dev-copyright i {
    color: #ff0019;
    padding: 0 4px;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

@media screen and (min-width: 1081px) and (max-width: 1279px) {
    .home-content {
        grid-template-columns: 24% 50% 24%;
    }
    .content {
        grid-template-columns: 65% 30%;
    }
}

@media screen and (min-width: 761px) and (max-width: 1080px) {
    .bottom-header {
        justify-content: space-between;
        font-size: 10px;
    }
    .header-menu ul a {
        font-size: 8px;
    }
    .header-search {
        width: 60%;
    }
    .searchform {
        padding-right: 0;
    }
    .searchform input {
        width: 70%;
    }
    .searchform div {
        text-align: left;
    }
    .home-content {
        grid-template-columns: 100%;
    }
    .content {
        padding: 0 10px;
        grid-template-columns: 100%;
    }
    .top-news-center, .post-content, .main-center-news {
        margin: 8px 0;
    }
    .main-archive-sidebar {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    align-items: start;
    justify-content: center;
    }
    .main-archive-sidebar div:first-of-type {
        margin-left: 8px;
    }
    .main-left-ads {
        width: 55%;
    }
    .mrs-single-news a {
        font-size: 14px;
    }
    .mrs-single-news img {
        width: 35%;
    }
    .main-news-home {
        display: grid;
        justify-items: center;
    }
    .main-archive-sidebar .main-left-ads {
        width: 98% !important;
    }
    .single-blog-page {
        margin: 8px;
    }
}

@media screen and (min-width: 481px) and (max-width: 760px) {
    .mobile-menu {
        display: block !important;
    }
    .header-top {
        display: block;
        padding: 4px 20px;
    }
    .header-logo img {
        width: 50%;
        height: 100%;
    }
    .header-des a{
        padding: 4px;
        width: 75%;
    }
    .header-des p {
        display:  none;
    }
    .header-menu {
        display: none;
    }
    .header-extra {
        text-align: center;
    }
    .header-time {
        font-size: 14px;
        padding-bottom: 6px;
    }
    .searchform input {
        width: 80%;
    }
    .searchform {
        padding-right: 0;
    }
    .bottom-header {
        padding: 6px 12px;
    }
    .top-news-home {
        display: none;
    }
    #go-to-top {        
        bottom: 10px;
        left: 10px;
        font-size: 14px;
        padding: 14px;
    }
    .mobile-show {
        display: block !important;
    }
    .pc-show {
        display: none;
    }
    .home-content {
        grid-template-columns: 1fr;
    }
    .main-center-news, .mobile-show, .post-content {
        margin-bottom: 8px !important;
    }
    .main-center-news, .post-content {
        margin: 0;
    }
    .archive-post {
        padding: 10px 10px 20px 10px;
    }
    .content {
        grid-template-columns: 1fr;
    }
    .post-article img {
        width: 40%;
    }
    .single-blog-content div, .single-blog-content img {
        width: 100% !important;
    }
    .single-blog-main {
        padding: 20px 10px;
        display: block;
    }
    .single-blog-page {
        margin-left: 0;
        margin-bottom: 8px;
    }
    .single-blog-deteal {
        flex-wrap: wrap;
        align-content: center;
        margin: 2px 0;
    }
    .share-social {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .share-social a {
        margin-bottom: 4px;
    }
}

/* Responsive code */
    @media screen and (max-width: 480px) {
        .mobile-menu {
            display: block !important;
        }
        .header-top {
            display: block;
            padding: 4px 20px;
        }
        .header-logo img {
            width: 60%;
            height: 100%;
        }
        .header-des a{
            padding: 4px;
            width: 86%;
        }
        .header-des p {
            display:  none;
        }
        .header-menu {
            display: none;
        }
        .header-extra {
            flex-direction: column;
            text-align: center;
        }
        .header-time {
            font-size: 14px;
            padding-bottom: 6px;
        }
        .searchform input {
            width: 80%;
        }
        .searchform {
            padding-right: 0;
        }
        .bottom-header {
            padding: 6px 12px;
        }
        .top-news-home {
            display: none;
        }
        #go-to-top {        
            bottom: 10px;
            left: 10px;
            font-size: 12px;
            padding: 12px;
        }
        .mobile-show {
            display: block !important;
        }
        .pc-show {
            display: none;
        }
        .home-content {
            grid-template-columns: 1fr;
        }
        .main-center-news, .mobile-show, .post-content {
            margin-bottom: 8px !important;
        }
        .mcn-img img {
            width: 90%;
        }
        .mcn-img {
            flex-direction: column;
            align-items: center;
        }
        .main-center-news, .post-content {
            margin: 0;
        }
        .archive-post {
            padding: 10px 10px 20px 10px;
        }
        .content {
            grid-template-columns: 1fr;
        }
        .single-blog-content div, .single-blog-content img {
            width: 100% !important;
        }
        .single-blog-main {
            padding: 20px 10px;
            display: block;
        }
        .single-blog-page {
            margin-left: 0;
            margin-bottom: 8px;
        }
        .single-blog-deteal {
            flex-wrap: wrap;
            align-content: center;
            margin: 2px 0;
        }
        .share-social {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        .share-social a {
            margin-bottom: 4px;
        }
        .page-not-fund img {
            height: 110px;
        }
        .page-not-fund h1 {
            font-size: 30px;
        }
    }

/* Animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}