h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Kanit", sans-serif;
}

nav a {
    font-family: "Kanit", sans-serif;
}

.navbar-nav {
    font-family: "Kanit", sans-serif;
}

.footer {
    font-family: "Kanit", sans-serif;
}

.card-header {
    font-family: "Kanit", sans-serif;
}

.nav-link {
    font-family: "Kanit", sans-serif;
}

.btn {
    font-family: "Kanit", sans-serif;
    border-radius: 50px;
}

.site-mobile-menu {
    font-family: "Kanit", sans-serif;
}

.box {
    text-align: center;
    -webkit-box-shadow: 0 0 0 0 #ffffff;
    box-shadow: 0 0 0 0 #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.box:hover {
    -webkit-box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    background-color: var(--light);
    /* background-color: #97e1fa62; */
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.box a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.box img {
    -webkit-filter: grayscale(20%);
    filter: grayscale(20%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.box:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transform: scale(1);
}

.borderLeftRight {
    display: inline-block;
    position: relative;
    color: hsl(222, 25%, 14%);
}

.borderLeftRight::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: hsl(243, 80%, 62%);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.borderLeftRight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.borderLeftRight {
    display: inline-block;
    position: relative;
    color: hsl(222, 25%, 14%);
}

.borderLeftRight::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: hsl(243, 80%, 62%);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.borderLeftRight:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

div.img-resize-news img {
    width: 100%;
    height: auto;
}

div.img-resize-report img {
    width: 100%;
    height: auto;
}

div.img-resize-news {
    width: auto;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
    text-align: center;
}

div.img-resize-report {
    width: auto;
    height: 230px;
    object-fit: cover;
    overflow: hidden;
    text-align: center;
}

:root {
    --surface-color: #fff;
    --curve: 40;
}

* {
    box-sizing: border-box;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 5vw;
    padding: 0;
    list-style-type: none;
}

.card {
    position: relative;
    display: block;
    border-radius: calc(var(--curve) * 0.5px);
    overflow: hidden;
    text-decoration: none;
}

.card__image {
    width: 100%;
    height: auto;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: calc(var(--curve) * 1px);
    background-color: var(--surface-color);
    transform: translateY(100%);
    transition: .2s ease-in-out;
}

.card:hover .card__overlay {
    transform: translateY(0);
}

.card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(var(--curve) * 0.7px) 0 0 0;
    background-color: var(--surface-color);
    transition: .2s ease-in-out;
}

.card__arc {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 50%;
    right: 0;
    z-index: 1;
}

.card:hover .card__header {
    transform: translateY(0);
}

.card__title {
    margin: 0 0 .5em;
    color: #0099CC;
}

.card__status {
    color: #00CC99;
}

.card__description {
    padding: 0 2em 2em;
    margin: 0;
    color: #D7BDCA;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}