@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
body.admin-bar .header {
    top: 32px;
}

:root {
    --primary-color: #6366F1;
    --secondary-color: #F0E9FF;
    --third-color: #EEF2FF;
    --title-color: #020615;
    --desc-color: #353844;
    --gray-light-color: #FCFCFC;
    --gray-color: #D1D1D1;
    --white-color: #FFFFFF;
    --border-color: #E6E6E6;
    --boxshadow-color: #19213D14;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

main {
    overflow-y: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--desc-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    margin-top: 64px;
}

a {
    text-decoration: none;
}

h3,
h2,
h1 {
    font-family: 'Inter', sans-serif;
}

/* .container {
    max-width: 1344px;
} */

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1344px;
    }
}

/* SLICK */

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    list-style-type: none
}

.slick-list.draggable {
    padding-bottom: 24px
}

.slick-dots li {
    margin: 0 .25rem;
    width: 12px;
    height: 12px
}

.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid var(--desc-color);
    text-indent: -9999px
}

.slick-dots li.slick-active button {
    background-color: var(--desc-color)
}

/**
* POPUP
**/

.blur-menu-mb {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}

.blur-menu-mb.active {
    opacity: 1;
    visibility: visible;
}

/**
* SECTION
**/

section {
    padding-block: 64px;
}

.heading-section {
    margin-bottom: 40px;
}

.heading-section .wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.title-section {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 0;
}

.desc-section {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--desc-color);
}

.seemore-section {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s linear;
}

.seemore-section img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s linear;
}

.seemore-section:hover {
    color: var(--primary-color);
}

.seemore-section:hover img {
    transform: translateX(2px) translateY(-2px);
}


/**
* BANNER SECTION
**/

.banner-section {
    padding-block: 0;
}

.banner-section .banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 320px;
}

.banner-section .banner-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-section .banner-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 452px;
}

.banner-section .banner-content .title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
}

.banner-section .banner-content .desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.banner-section.is-center .banner-content {
    text-align: center;
    margin-inline: auto;
    max-width: fit-content;
}

.banner-section .banner-container::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

/**
* NEWS SECTION
**/

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

.news-section .card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0px 1px 3px 0px #0000001A;
    overflow: hidden;
    transition: all 0.3s linear;
}


.news-section .card:hover {
    box-shadow: 0 4px 12px var(--boxshadow-color);
}

.news-section .card-img {
    width: 100%;
    height: 228px;
    overflow: hidden;
    border-radius: 0;
}

.news-section .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.3s linear;
}

.news-section .card:hover .card-img img {
    transform: scale(1.04);
}


.news-section .news-item .author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-section .news-item .author .avatar img {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 4px;
}

.news-section .news-item .author .name,
.news-section .news-item .date {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--desc-color);
}

.news-section .news-item .wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 8px;
    color: var(--desc-color);
}

.news-section .news-item .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-section .news-item .card-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s linear;
}

.news-section .news-item:hover .card-title {
    color: var(--primary-color);
}

.news-section .news-item .card-text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--desc-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**
* BREADCRUMB
**/

.breadcrumb-section {
    padding-block: 76px 0px;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-section .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-block: 12px;
}

.breadcrumb-section .breadcrumb-list .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb-section .yoast-breadcrumb > span{
        display: flex;
    align-items: center;
    gap: 10px;
}
.breadcrumb-section .breadcrumb-list .breadcrumb-item:last-child a,
.breadcrumb-section .yoast-breadcrumb span.breadcrumb_last {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-section .breadcrumb-list .breadcrumb-item:last-child img {
    display: none;
}

.breadcrumb-section .breadcrumb-list a,
.breadcrumb-section .yoast-breadcrumb a{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #737374;
    transition: all 0.3s linear;
}

.breadcrumb-section .breadcrumb-list a:hover,
.breadcrumb-section .yoast-breadcrumb a:hover {
    color: var(--primary-color);
}

/**
* PAGINATION
**/

.pagination-container {
    padding-block: 32px 16px;
}

.pagination {
    gap: 4px;
}
.wp-pagenavi {
    display: flex;
    justify-self: center;
    align-items: center;
}
.pagination .page-link,
.wp-pagenavi a, .wp-pagenavi span {
    border-radius: 6px;
    border: 1px solid var(----ui-border-accented, #CBD5E1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--desc-color);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: all 0.2s linear;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 6px;
}

.pagination .page-link:hover,
main .wp-pagenavi a:hover,main .wp-pagenavi span:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link svg {
    width: 16px;
    height: 16px;
    fill: var(--desc-color);
    transition: all 0.2s linear;
}

.pagination .page-link:hover svg {
    fill: var(--primary-color);
}

.pagination .page-item.active .page-link,
main .wp-pagenavi span.current
 {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/**
* 404 SECTION
**/

.notfound-section .notfound-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.notfound-section .thumbnail {
    max-width: 571px;
    width: 100%;
}

.notfound-section .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.notfound-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notfound-section .title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--title-color);
    text-align: center;
}

.notfound-section .desc {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--desc-color);
    text-align: center;
}

.notfound-section .gohome {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 6px;
    color: #fcfcfc;
    background-color: var(--primary-color);
    text-align: center;
    transition: all 0.3s linear;
}

.notfound-section .gohome:hover {
    transform: scale(1.04);
}

/**
* RESPONSIVE
**/

@media screen and (max-width: 1200px) {

    section {
        padding-block: 48px;
    }

    .news-section .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media screen and (max-width: 991px) {
    section {
        padding-block: 32px;
    }

    .heading-section {
        margin-bottom: 24px;
    }

    .news-section .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .title-section {
        font-size: 24px;
        line-height: 28px;
    }

    .news-section .news-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .breadcrumb-section {
        padding-block: 12px 0px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .notfound-section .desc {
        width: 80%;
        margin-inline: auto;
    }

    .notfound-section .gohome {
        width: 100%;
    }
}