/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1770208285
Updated: 2026-02-04 12:31:25

*/

.with-dot{
    display: flex;
    flex-direction: column!important;
    align-items: start;
    justify-content: flex-start;
    gap: 8px!important;
}

.with-dot:before{
    content: '';
    width: 28px;
    height: 40px;
    min-height: 40px;
    border-radius: 12px;
    transform: rotate(-90deg);
    background-color: var(--e-global-color-59ae528, #E1C3A1);
    margin-left: 7px;
}

.blur{
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

header.active, header.active .header-container{
    background-color: #fff!important;
}

.loader{
     width: 48px;
    height: 48px;
    border: 5px dotted #A9CCDF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

/*BLOG*/
.blog-section .blog-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 68px;
    padding-bottom: 48px;
}

.blog-section .blog-filters .tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 16px;
    max-width: calc(100% - 472px);
}

.blog-section .blog-filters .tags .filter {
    padding: 12px;
    color: var(--neutral-900, #323A3E);
    font-family: var(--manrope);
    font-size: 14px;
    font-weight: 500;
    line-height: 114%;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border-radius: 32px;
    background: var(--neutral-100, #E4EFF5);
    cursor: pointer;
}

.blog-section .blog-filters .tags .filter:hover, .blog-section .blog-filters .tags .filter.active {
    background-color: var(--neutral-900, #323A3E);
    color: var(--blue-50, #F6FAFC);
}

.blog-section .blog-filters .tags .filter.all{
    padding: 12px 20px;
}

.blog-section .blog-filters .search {
    display: flex;
    padding: 8px var(--spacing-3, 12px);
    align-items: center;
    gap: var(--spacing-1, 4px);
    align-self: stretch;
    border-radius: 48px;
    border: 1px solid var(--blue-500, #A9CCDF);
    background: var(--blue-50, #F6FAFC);
    width: 404px;
    height: fit-content;
}

.blog-section .blog-filters .search input {
    border: none;
    outline: none;
    background: transparent;
    height: 100%;
    width: 100%;
    padding: 0;
    font-family: var(--manrope);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black-500);
}

.blog-section .blog-filters .search input::placeholder {
    color: var(--neutral-300, #78919E);
}

.blog-section #blog-grid{
    min-height: 396px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-section #blog-grid .grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-section.related #blog-grid .grid{
    grid-template-columns: repeat(3, 1fr);
}

.blog-section #blog-grid .post-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.blog-section #blog-grid .post-card .img-container{
    width: 100%;
    height: 221px;
    border-radius: 24px;
    overflow: hidden;
}

.blog-section #blog-grid .post-card .img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section #blog-grid .post-card .post-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.blog-section #blog-grid .post-card .post-content .tags{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.blog-section #blog-grid .post-card .post-content .tags .tag{
    padding: 10px 12px;
    color: var(--neutral-900, #323A3E);
    font-family: var(--manrope);
    font-size: 14px;
    font-weight: 500;
    line-height: 114%;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border-radius: 32px;
    background: var(--neutral-100, #E4EFF5);
}

.blog-section #blog-grid .post-card h3{
    overflow: hidden;
    color: var(--grey-500, #1F1F20);
    height: 53px;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
}

.blog-section #blog-grid .post-card .post-content .excerpt{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--neutral-900, #323A3E);
    margin: 0;
}
.blog-section #blog-grid .post-card .post-content .excerpt:after{
    content: '...';
}

.blog-section #blog-grid .pagination{
    width: 100%;
    margin: 0;
    padding-top: 48px;
}

.blog-section #blog-grid .pagination .buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.blog-section #blog-grid .pagination .prev:not(.pageAction), .blog-section #blog-grid .pagination .next:not(.pageAction){
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-section #blog-grid .pagination .prev, .blog-section #blog-grid .pagination .next, .blog-section #blog-grid .pagination .number{
    border-radius: var(--border-radius-md, 6px);
    background: var(--tailwind-colors-base-transparent, rgba(255, 255, 255, 0.00));
    padding: 8px 10px;
    border: none;
    font-size: 16px;
    color: #323A3E;
}

.blog-section #blog-grid .pagination .pages{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.blog-section #blog-grid .pagination .number{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px
}

.blog-section #blog-grid .pagination .number.active{
    border: 1px solid var(--grey-500, #1F1F20)
}

@media(max-width:1024px){
    .blog-section #blog-grid .grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-section .blog-filters{
        gap: 38px;
    }
    .blog-section .blog-filters .search{
        width: 204px;
    }
    .blog-section .blog-filters .tags{
        max-width: calc(100% - 242px);
    }
}

@media(max-width:880px){
    .blog-section #blog-grid .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .blog-section #blog-grid .grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .blog-section.related #blog-grid .grid{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media(max-width:480px){
    .blog-section .blog-filters{
        gap: 20px;
        flex-direction: column;
    }
    .blog-section .blog-filters .search{
        width: 100%;
    }
    .blog-section .blog-filters .tags{
        max-width: 100%;
    }
}

/*BLOG CARDS Featured*/
.blog-featured .grid-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 20px;
}

.blog-featured .grid-featured .post-container:first-of-type {
    grid-area: 1 / 2 / 3 / 4;
    min-height: 690px;
}

.blog-featured .grid-featured .post-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.blog-featured .grid-featured .post-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.blog-featured .grid-featured .post-container .post-content {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--blue-50, #F6FAFC);
    width: 100%;
    padding: 24px 32px;
    border-radius: 24px;
    background: rgba(31, 31, 32, 0.48);
}

.blog-featured .grid-featured .post-container:first-of-type .post-content {
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100%;;
}

.blog-featured .grid-featured .post-container .post-content .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.blog-featured .grid-featured .post-container .post-content .top .tags{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
.blog-featured .grid-featured .post-container .post-content .top .tags .tag{
    border-radius: 32px;
    background: var(--neutral-900, #323A3E);
    padding: 10px 12px;
    color: var(--blue-50, #F6FAFC);
    /* Label */
    font-size: 14px;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
}

.blog-featured .grid-featured .post-container .post-content .top .date{
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: fit-content;
    gap: 12px;;
}

.blog-featured .grid-featured .post-container:first-of-type .post-content .top .date{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: fit-content;
    gap: 12px;
}
.blog-featured .grid-featured .post-container .post-content .top .date svg{
    width: 24px;
    height: 24px;
}
.blog-featured .grid-featured .post-container .post-content .top .date span{
    color: var(--blue-50, #F6FAFC);
    /* Label */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
}

.blog-featured .grid-featured .post-container .post-content .content{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 12px;
    width: 100%;
}
.blog-featured .grid-featured .post-container .post-content h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    color: var(--blue-50, #F6FAFC);
    margin: 0;
}

.blog-featured .grid-featured .post-container .post-content .bottom {
    display: none;
}

.blog-featured .grid-featured .post-container:first-of-type .post-content .bottom {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    width: 100%;
}

.blog-featured .grid-featured .post-container .post-content p {
    font-size: var(--e-global-typography-ae8e99d-font-size);
    line-height: var(--e-global-typography-ae8e99d-line-height);
    font-weight: 400;
    overflow: hidden;
    color: var(--blue-50, #F6FAFC);
    text-overflow: ellipsis;
    max-width: 100%;
    display: none;
    height: 51px;
}

.blog-featured .grid-featured .post-container:first-of-type .post-content p {
    display: block;
    margin: 0;
}

@media(max-width: 880px){
    .blog-featured .grid-featured {
        grid-template-columns: repeat(1, 1fr);
    }
    .blog-featured .grid-featured .post-container{
        min-height: 350px;
        max-height: 350px;
    }
    .blog-featured .grid-featured .post-container:first-of-type {
        grid-area: auto;
        min-height: 350px;
        max-height: 350px;
    }
    .blog-featured .grid-featured .post-container:first-of-type .post-content .top .date{
        display: none;
    }
    .blog-featured .grid-featured .post-container .post-content{
        padding: 20px;
    }
    .blog-featured .grid-featured .post-container .post-content p, .blog-featured .grid-featured .post-container .post-content .bottom{
        display: block;
    }
}
/*BLOG CARDS END*/