strong {
    font-weight: 500;
    color: var(--black);
}
table {
    width: 100%;
}
.gray {
    color: var(--text);
}
.bmi-logo {
    height: 40px;
}

.section-title h2 {
    text-transform: none;
}
h2.subtitle {
    padding: 20px 10% 10px;
}
.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.title-section {
    display: flex;
    padding-bottom: 32px;
    align-items: center;
    justify-content: space-between;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d9d9d9;
}
.gallery-next i,
.gallery-prev i {
    margin: 0;
}
.link {
    color: var(--text);
    text-decoration: underline;
}
.link:hover {
    color: var(--black);
}
/* header */
.header-1 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/* home */
.home-book-quote {
    max-width: 70%;
}
.hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 120vh;
}

.hero-banner .image {
    width: 100%;
    height: 58%;
}
.hero-banner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-banner .wrapper {
    height: 42%;
    padding: 50px 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    /* background-image: url(../img/bmi/bg.png); */
    /* background-size: cover; */
    /*
      background: radial-gradient(
        66.34% 66.34% at 50% 25.71%,
        rgba(16, 24, 40, 0.3) 0%,
        rgba(16, 24, 40, 0.97) 100%
    ); */
}
.hero-banner .wrapper .batik-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-banner .wrapper .box {
    display: flex;
    width: 100%;
    padding-top: 24px;
    justify-content: space-between;
}
.hero-banner .wrapper .box p {
    font-size: 18px;
    width: 420px;
    line-height: 1.6;
}
.hero-banner .wrapper .box h1 {
    width: 420px;
    font-weight: 600;
}
.main-banner {
    height: 76vh;
    overflow: hidden;
}
.main-banner.event {
    height: 60vh;
    overflow: hidden;
}
.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home.header-right {
    display: none;
}

/* about */
.about-container {
    display: flex;
    align-items: flex-start;
}

.about-container .title {
    width: 35%;
    font-weight: 400;
}
.about-container h3.title {
    color: var(--gray3);
    font-size: 24px;
}
.about-container .para {
    width: 65%;
}
.about-container .para h5 {
    color: var(--black);
    font-weight: 400;
    font-size: 24px;
}
.about-container .para p {
    font-weight: 400;
    line-height: 1.8;
    font-size: 18px;
    padding-bottom: 18px;
    color: var(--black);
}
.about-container .para .home {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: var(--black);
}
.about-container .para .line {
    padding-top: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--text);
}

/* customer */
.customer-container {
    display: flex;
    justify-content: center;
}
.customer-container img {
    padding: 0 40px;
    height: 48px;
}
.customer-container img:first-child,
.customer-container img:last-child {
    height: 40px;
}

.champ {
    background: #f9fafb;
    padding-top: 100px;
}
.champ-container {
    display: flex;
    align-items: start;
}
.champ-container .champ-title {
    width: 48%;
    padding-right: 17%;
}
.champ-container .champ-leaderboard {
    width: 52%;
    padding-right: 5%;
}

/* Champion */
.card-leader {
    padding: 16px 24px;
    border-radius: 12px;
    background-color: var(--white);
}
.card-leader .title {
    display: flex;
    gap: 12px;
    align-self: center;
    margin-bottom: 10px;
}
.card-leader .title h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.card-leader img {
    height: 20px;
}
.entry {
    display: flex;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
}
.entry:last-child {
    border-bottom: none;
}
.rank {
    width: 36px;
    height: 36px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}
.details {
    flex-grow: 1;
}
.details h5 {
    margin-bottom: 6px;
    line-height: 1;
    font-weight: 500;
}
.details p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 10px;
}
.medals {
    display: flex;
    gap: 20px;
    font-size: 14px;
    align-items: center;
}
.medals img {
    height: 16px;
}
.medals p {
    line-height: 1;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.medals span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* article */
.article-area {
    column-gap: 2%;
    row-gap: 30px;
}
.box-article {
    display: flex;
    width: 32%;
    padding: 20px;
    margin: 0;
}
.box-article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}
.box-article h4 a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-content {
    width: 100%;
    padding: 15px 0;
}
.news-content p {
    color: var(--black);
    font-size: 18px;
}
.news-content .date {
    color: var(--gray3);
    line-height: 1.4;
    font-weight: 300;
    font-size: 16px;
}

/* Book */
.card-book {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}
.card-book .content {
    padding-left: 10px;
}
.card-book .thumb {
    position: relative;
    padding: 0;
    width: 40%;
    padding-top: 40%;
}
.card-book .thumb img {
    position: absolute;
    top: 0;
    left: 0;
}
.book-cover {
    width: 50%;
}

/* contact */
.contact-content {
    padding-right: 20%;
    padding-bottom: 40px;
}
.contact-content h2 {
    font-weight: 600;
}
.contact-content p {
    padding-bottom: 10px;
    color: var(--black);
}
.contact-content p.gray {
    color: var(--text);
}
.contact-right label {
    color: var(--black);
}

/* cta */
.cta-content .container {
    display: flex;
    justify-content: center;
}
.box-section {
    display: flex;
    width: 520px;
    gap: 40px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

/* team */
.team-section .wrapper {
    display: flex;
    justify-content: space-between;
}
.team-section .item {
    width: 24%;
}
.news-image {
    position: relative;
    padding: 0;
    width: 100%;
    padding-top: 100%;
}
.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* core */
.core-container {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
    border-radius: 12px;
}
.core-container img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.core .quote-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 85%;
    margin: 3%;
    border-radius: 10px;
    background: var(--white);
    backdrop-filter: blur(10px);
}
.core .quote-card .box {
    width: calc(100% - 24px);
    height: 75%;
    margin: 12px;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}
.core .quote-card .quote {
    display: flex;
    width: 100%;
    padding: 12px 10px;
    justify-content: space-between;
}
.core .quote-card .quote .quote-text {
    color: var(--black);
    width: 55%;
}
.core .quote-card .quote .author {
    text-align: right;
    color: var(--black);
}
.core .quote-card .quote .author p:nth-child(2) {
    color: var(--text);
    font-size: 12px;
}

/* gallery */
.swiper-slide {
    width: 480px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery.section-padding {
    padding: 100px 0 60px;
}
.gallery.gallery-section {
    padding-top: 40px;
}
.gallery-section {
    padding-top: 0;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}
.gallery-container .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery-container .item {
    width: 100%;
    height: 480px;
}
.gallery-container .item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 9;
}
.gallery-container .item:nth-child(2) {
    grid-area: 2 / 1 / 3 / 4;
}
.gallery-container .item:nth-child(3) {
    grid-area: 2 / 4 / 3 / 9;
}
.gallery-container .item:nth-child(4) {
    grid-area: 3 / 1 / 4 / 5;
}
.gallery-container .item:nth-child(5) {
    grid-area: 3 / 5 / 4 / 9;
}

@media screen and (max-width: 570px) {
    .swiper-slide {
        width: 80%;
    }
    .brand-wrapper .brand-image {
        height: 280px;
    }
}

/* Event */
.event-section .section-padding {
    padding: 60px 0;
}
.event-about {
    display: flex;
    justify-content: space-between;
}
.event-about .desc {
    width: 80%;
}

.schedule-item {
    padding: 20px;
    border: 1px solid var(--gray1);
    border-radius: 10px;
}
.schedule-item ul {
    list-style: disc;
    padding-left: 20px;
}
.schedule-item .title {
    font-weight: 600;
    text-align: center;
}
.event-description ul {
    list-style: disc;
    padding-left: 20px;
}

.blog .news-banner {
    height: 60vh;
    overflow: hidden;
}
.blog .news-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog .news-header {
    padding: 30px 0 80px;
    display: flex;
    justify-content: space-between;
}
.blog .news-header .box {
    width: 100%;
}
.blog .news-content {
    font-weight: 300;
    line-height: 1.8;
}

.event .news-header {
    display: flex;
    gap: 10%;
    align-items: start;
}
.event .news-header .box h3 {
    padding-bottom: 10px;
}
.event .news-header .box p {
    padding-bottom: 6px;
}
.event .news-header .download {
    width: 360px;
    margin-top: 40px;
}

.event .news-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding-bottom: 72px;
}
.card-event-detail {
    width: 49%;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2%;
    text-align: center;
    border: 1px solid var(--gray1);
}
.card-event-detail p {
    font-size: 16px;
    color: var(--text);
    padding-top: 5px;
}

.success-alert {
    color: green;
}
.box-submit {
    padding: 0 14px;
}
.box-submit .theme-btn {
    width: 100%;
}

.blog ul {
    list-style: disc;
    padding-left: 2rem;
}
.blog .news-content img {
    position: relative;
    left: 10%;
    width: 80%;
    height: auto;
    object-fit: contain;
}
blockquote {
    position: relative;
    font-style: italic;
    border-left: 4px solid var(--black);
    padding: 10px 20px;
    padding-left: 50px;
    margin: 20px 0;
    background: var(--gray5);
    color: var(--text);
}
blockquote::before {
    content: "“";
    font-size: 50px;
    color: #28a745;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
}

/* search */
.blog-search label {
    position: relative;
}
.blog-search label i {
    position: absolute;
    top: 15px;
    left: 16px;
}
.blog-search input {
    color: var(--black);
    padding: 6px 20px 6px 44px;
    border-radius: 28px;
    border: 1px solid var(--gray1);
}
.blog-search input:hover,
.blog-search input:active {
    border-color: var(--black);
}
.blog-search input::placeholder {
    color: var(--gray4);
    font-weight: 300;
}
.blog-search button {
    display: none;
    margin-left: 20px;
}
.blog-search .theme-btn {
    width: 40px;
    height: 39px;
    padding: 10px;
}
.blog-search .theme-btn i {
    margin: 0;
}

@media screen and (max-width: 1199px) {
    .header-main {
        height: 64px;
    }
    .bmi-logo {
        height: 32px;
    }
    .header-1 .header-main .header-right .sidebar__toggle {
        font-size: 24px;
    }
    .offcanvas__wrapper {
        padding: 10px 20px;
    }

    .home.header-right {
        display: flex;
    }

    /* article */
    .article-area {
        padding: 0 20px;
    }
    .box-article {
        width: 49%;
    }
}
@media screen and (max-width: 780px) {
    h3 {
        font-size: 25px;
    }
    .home-main-banner-img.mobile {
        display: block;
    }
    .home-main-banner-img.desktop {
        display: none;
    }
    .blog .news-header {
        padding: 30px 0 40px;
    }
    .blog .news-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 579px) {
    .box-article {
        width: 100%;
    }
    .book-cover {
        width: 100%;
    }
    .news-box-items .news-content h4 {
        font-size: 18px;
    }

    .title-section {
        gap: 32px;
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-search input,
    .blog-search label,
    .blog-search {
        width: 100%;
    }
}

/* homepage */
@media screen and (max-width: 1199px) {
    .customer-container {
        flex-wrap: wrap;
        padding: 0;
        gap: 20px;
    }
    .customer-container img {
        padding: 0 16px;
        height: 40px;
    }
    .customer-container img:first-child,
    .customer-container img:last-child {
        height: 36px;
    }
}

@media screen and (max-width: 768px) {
    p {
        font-size: 14px;
    }
    .hero-banner {
        height: auto;
    }
    .hero-banner .image img {
        height: 65vh;
    }
    .hero-banner .wrapper {
        height: 460px;
        flex-direction: column-reverse;
    }

    .hero-banner .wrapper .box {
        flex-direction: column;
    }
    .hero-banner .wrapper .box h1 {
        width: 100%;
        font-size: 44px;
    }
    .hero-banner .wrapper .box p {
        width: 100%;
    }
    .container {
        padding: 0 5%;
        margin: 0;
    }
    .section-padding {
        padding: 46px 0;
    }
    .customer-container img {
        padding: 0;
    }
    .about-container {
        gap: 30px;
        flex-direction: column;
    }
    .about-container .title,
    .about-container .para {
        width: 100%;
    }
    .about-container h3.title,
    .about-container .para .home {
        font-size: 16px;
    }
    .about-container .para h5 {
        font-size: 20px;
    }

    .footer-widgets-wrapper {
        flex-wrap: wrap;
    }
    .footer-widgets-wrapper .wow {
        width: 35%;
    }
}

@media screen and (max-width: 579px) {
    .news-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .news-content {
        padding: 5px 0;
    }

    .faq-content .title-section {
        padding-bottom: 20px;
    }

    .footer-widgets-wrapper .wow {
        width: 100%;
    }
    .footer-widgets-wrapper .first {
        width: 70%;
    }
    .footer-widgets-wrapper .single-footer-widget .list-items li a {
        font-size: 14px;
    }
    .box-section {
        width: 90%;
    }
}

/* about */
@media screen and (max-width: 768px) {
    .team-section .wrapper {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .team-section .item {
        width: 49%;
    }

    .event-about {
        flex-direction: column;
    }
    .event-about .desc {
        width: 100%;
    }
    .event-about .download {
        margin-top: 20px;
    }

    .blog .news-content img {
        position: relative;
        left: 0;
        width: 100%;
    }
    .event .news-header {
        flex-direction: column;
        gap: 0;
    }
    .event .news-header .download {
        width: auto;
        margin: 30px 0;
    }
    .card-event-detail {
        width: 100%;
        margin-bottom: 16px;
    }
}
@media screen and (max-width: 579px) {
    .team-section .item {
        width: 100%;
    }

    .core .quote-card {
        height: 94%;
    }
    .core .quote-card .box {
        height: 70%;
    }
    .gallery-section .container {
        padding: 0;
    }
    .gallery-container {
        display: block;
    }
    .gallery-container .item {
        height: 400px;
    }
}

/* winner */
.winner-wrap {
    display: flex;
    margin-bottom: 22px;
    align-items: start;
    justify-content: space-between;
}
.rank-list {
    display: flex;
    flex-direction: column-reverse;
}
.rank-list .winner-wrap {
    border-bottom: 1px solid var(--gray1);
}
.rank-list .winner-wrap:first-child {
    border: none;
}
.para .winner-wrap .gray {
    color: var(--text);
}
.winner-wrap .wrap {
    display: flex;
}
.winner-wrap .wrap > h4 {
    width: 40px;
}
.winner-wrap .wrap .box h4 {
    padding-bottom: 6px;
}
.winner-wrap .wrap .box p {
    font-weight: 300;
}
.winner-wrap .img {
    position: relative;
    width: 200px;
    max-width: 200px;
}
.winner-wrap .img img {
    width: 100%;
}

@media screen and (max-width: 1028px) {
    .winner .about-container {
        gap: 30px;
        flex-direction: column;
    }
    .winner .about-container .para {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .winner-wrap.reverse {
        flex-direction: column-reverse;
    }
    .winner-wrap .img {
        padding-bottom: 20px;
    }
    .winner-wrap {
        flex-direction: column;
        padding-bottom: 20px;
    }
    .winner-wrap .theme-btn {
        margin-left: 40px;
    }
}

@media screen and (max-width: 579px) {
    .winner-wrap .wrap .box h4 {
        font-size: 18px;
    }
    .winner-wrap .wrap .box p {
        font-size: 16px;
    }
}

/* certificate */
.certificate-modal {
    /* padding-top: 830px; */
    max-width: 1200px;
    width: 96%;
    z-index: 10;
    background: white;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.certificate-modal p {
    line-height: 1.4;
}

.certificate-modal .wrapper {
    padding: 2%;
}
.certificate-head {
    display: flex;
    padding-bottom: 20px;
    justify-content: space-between;
}
.certificate .flex,
.certificate.flex {
    display: flex;
}
.certificate .img-left {
    width: 25%;
}
.certificate .img-right {
    width: 3%;
}
.certificate-wrapper {
    width: 75%;
}
.certificate-wrapper .head {
    height: 30px;
    align-items: center;
    justify-content: space-between;
}
.certificate-wrapper .head img {
    height: 100%;
}
.certificate-content {
    width: 100%;
    padding: 0 3%;
    flex-direction: column;
    justify-content: space-between;
}
.certificate-content .title {
    font-weight: 600;
    padding-bottom: 4%;
}
.certificate-content .name {
    width: fit-content;
    color: var(--theme);
    padding-top: 2%;
    margin-bottom: 4%;
    text-transform: capitalize;
    border-bottom: 4px solid var(--theme);
}

.certificate-sign {
    justify-content: space-between;
}
.certificate-sign .sign {
    text-align: right;
}
.certificate-sign .sign img {
    height: 100px;
    padding: 5% 0;
}

@media screen and (max-width: 1028px) {
    .certificate .img-left {
        width: 20%;
    }
    .certificate-wrapper {
        width: 100%;
    }
    .certificate-content h2 {
        font-size: 34px;
    }
    .certificate-wrapper .head {
        height: 20px;
    }
    .certificate-content {
        gap: 30px;
        justify-content: start;
    }
    .certificate-sign .sign img {
        height: 80px;
    }
}

@media screen and (max-width: 680px) {
    .certificate-modal {
        border-radius: 10px;
    }
    .certificate-head {
        padding-bottom: 10px;
    }
    .certificate-head h3 {
        font-size: 16px;
    }
    .certificate p {
        font-size: 8px;
    }
    .certificate-content h2 {
        font-size: 16px;
    }
    .certificate-content h2.name {
        font-size: 14px;
        border-width: 2px;
    }
    .certificate-wrapper .head {
        height: 14px;
    }
    .certificate-content {
        gap: 20px;
    }
    .certificate-sign .sign img {
        height: 26px;
    }
}

/* winner list */
.winner-list .head {
    display: flex;
    gap: 20px;
}
.winner-list .table {
    overflow: auto;
}
.winner-list .head h4 {
    width: 25%;
    padding-bottom: 20px;
    color: var(--text);
}
.winner-list .head .box {
    width: 75%;
}
.winner-list .head .box img {
    width: 200px;
    padding-bottom: 20px;
}
.winner-list table th {
    color: var(--white);
    height: 40px;
    background-color: var(--black);
}
.winner-list table td,
th {
    height: 48px;
    font-size: 12px;
    padding: 0 10px;
    line-height: 1.4;
    color: var(--border2);
    border-bottom: 1px solid var(--black);
}
.winner-list table tr:hover td {
    color: var(--black);
    background-color: var(--gray2);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.pagination-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
}
.pagination-list li {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 8px;
    min-width: 34px;
    text-align: center;
}
.pagination-list li:hover {
    background-color: var(--gray1);
}
.pagination-list .active,
.pagination-list li.active:hover {
    color: white;
    background-color: var(--theme);
}
.pagination-list .active span {
    color: var(--white);
}
.pagination-list li a,
.pagination-list li span {
    color: var(--text);
}

@media screen and (max-width: 1028px) {
    table {
        width: max-content;
    }
    .winner-list .head {
        flex-direction: column;
    }
    .winner-list .head .box {
        width: 100%;
    }
}

section {
    position: relative;
    z-index: 1;
}
.batik {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 700px;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: opacity(0.03);
    background-repeat: repeat;
    background-image: url(../img/bmi/batik.png);
}
@media screen and (max-width: 680px) {
    .batik {
        background-repeat: no-repeat;
        background-repeat: repeat-y;
        background-position: center;
    }
}
