.et-db #et-boc .et-l .search {
    display: flex;
    width: 26.0625rem;
    height: 3.125rem;
    padding: 0.625rem 0.75rem;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8.125rem;
    color: rgba(29, 25, 52, 0.40);
    border: 1px solid #D7DEE1;
    background: #F0F7FA;
}

.et-db #et-boc .et-l .search input {
    border: 0 !important;
    background: none;
    width: 100% !important;
    outline: none;
    text-transform: uppercase;
    padding: 0 !important;
}

.et-db #et-boc .et-l .categories {
    display: flex;
    gap: 0.5rem;
}

.et-db #et-boc .et-l .categories a {
    display: flex;
    padding: 0.5rem 2rem !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 3.125rem;
    padding: 0.5rem 2rem;
    border-radius: 18.75rem;
    border: 1px solid silver;
    transition: 0.2s all;
    text-transform: uppercase !important;
    color: var(--primaryColor);
    font-size: 0.85rem;
    width: max-content;
}

.et-db #et-boc .et-l .categories a:hover, .et-db #et-boc .et-l .categories a.active {
    color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
}

.et-db #et-boc .et-l .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    border-top: 1px solid #D7DEE1;
    margin-top: 2rem;
    padding-top: 2rem;
}

.et-db #et-boc .et-l .blog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.et-db #et-boc .et-l .blog-image {
    display: block;
    padding:0 !important;
    position: relative;
}

.et-db #et-boc .et-l .blog-image .text-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.et-db #et-boc .et-l .blog-image img {
    width: 100%;
    background: var(--primaryColor);
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}
.et-db #et-boc .et-l .blog-image img.blog-placeholder {
    background: var(--primaryColor);
    object-fit: contain;
    object-position: center;
    padding: 8rem;
}

.et-db #et-boc .et-l .blog-grid a {
    padding: 0;
}

.et-db #et-boc .et-l .blog-grid h4 {
    font-size: 1.5rem;
    padding: 0.5rem 0 0;
}
.et-db #et-boc .et-l .blog-grid a.btn {
    display: flex;
    align-items: center;
    padding: 15px 25px 15px;
    gap: 15px;
    justify-content: space-around;
    min-width: fit-content;
    width: fit-content;
    margin-top: 2rem;
}

.et-db #et-boc .et-l .news-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #D7DEE1;
}

/* PAGINATION */

.et-db #et-boc .et-l .et_pb_section .pagination {
    display:flex;
    justify-content: flex-end;
    align-items: center;
    margin-top:30px;
    gap: 7px;
}

.et-db #et-boc .et-l .et_pb_section .pagination a {
    background: white;
    padding: 12px 2px 10px;
    border-radius: 5px;
    font-size: 15px;
    color: #888;
    transition:0.3s all;
    width: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #dce1e3;
}
.et-db #et-boc .et-l .et_pb_section .pagination a:hover {
    color: var(--mainColor);
}
.et-db #et-boc .et-l .et_pb_section .pagination a.active_page {
    background: var(--primaryColor);
    color: white;
    border-color: var(--primaryColor);
}

/* FADER */
.et-db #et-boc .et-l .et_pb_section .fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
  
.et-db #et-boc .et-l .et_pb_section .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primaryColor);
    border-top-color: var(--secondaryColor);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: calc(50% - 20px);
    right: 0 !important;
    top: calc(50% - 20px);
}
  
@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}

/* SINGLE */

.news-header {
    padding: 4rem 0 6rem;
    background: var(--primaryColor);
}

.news-header .container {
    display: flex;
    justify-content: space-between;
}

.news-header h1 {
    font-size: 3rem;
    color: white;
}

.news-header .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: -18px;
}

.news-header .tags span {
    background: #ffffff;
    padding: 12px 17px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 4px 25px 0 #0e344b1a;
}

.news-single {
    background: #f0f7fa;
    padding: 3rem 0;
}

.news-single h2, .news-single h3, .news-single h4, .news-single h5 {
    margin-bottom: 1rem;
}

.news-single-wrapper {
    display: flex;
    gap: 40px;
}

.news-single-content {
    flex: 1;
    line-height: 150%;
    font-size: 1rem;
}

.news-single-content p {
    margin-bottom: 1rem;
}

.news-single-content ul {
    font-size: 1rem;
}

.news-course-content-box {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-top:25px;
}

.news-course-content-box p {
    margin: 0;
}

.news-single-sidebar {
    flex: 0 0 35%;
    margin-top: -94px;
}

.news-single-sidebar img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.caption {
    font-size: 12px;
    background: white;
    color: #686868;
    padding: 10px;
    margin-top: -7px;
    position: relative;
    border-radius: 0 0 5px 5px;
}

.news-sidebar-details {
    background: white;
    border-radius:5px;
    margin: 15px 0;
}

.news-single-sidebar h4 {
    background: var(--primaryColor);
    color: white;
    padding: 15px 15px 11px;
    font-size: 1.35rem;
    border-radius: 5px 5px 0 0;
    margin: 0;
}

.news-single-sidebar h4 a {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 100%;
    letter-spacing: 0.25px;
    gap: 4px;
}

.news-single-sidebar h5 {
    font-weight: bold;
    padding: 15px;
    font-size: 1.5rem;
    color: var(--secondaryColor);
}

.news-sidebar-details ul {
    list-style: none;
    padding: 0;
}

.news-sidebar-details ul li {
    padding: 15px;
    border-bottom: 1px solid #d7dee1;
}
.news-sidebar-details ul li a {
    display: block;
    line-height: 130%;
}

.news-sidebar-button {
    display: flex;
    padding: 0 20px 20px;
}
