/* 헤더 배경 투명/블랙 처리용 클래스 */
.header-bg-black {
    background: rgba(0, 0, 0, 0.5) !important;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-header,
.is-hidden-desktop {
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* header-bg-black 클래스가 적용될 때 투명 배경을 덮어쓰도록 설정 */
.desktop-header.header-bg-black,
.is-hidden-desktop.header-bg-black {
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Mobile Side Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 43%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-side-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-close {
    height: 24px;
    width: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mobile-menu-close:hover {
    opacity: 1;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-menu-list li {
    margin-bottom: 1.5rem;
}

.mobile-menu-list li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu-list li a:hover {
    opacity: 0.8;
}

/* 모바일에서만 사이드 메뉴 표시 */
@media (min-width: 1025px) {
    .mobile-side-menu {
        display: none;
    }
}

/* Sliding Text Section */
.sliding-text-section {
    background: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
}

.sliding-text-container {
    width: 100%;
    overflow: hidden;
}

.sliding-text-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    will-change: transform;
    transition: none;
}

.sliding-text {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.05);
    /* 검은색에 3% 투명도 */
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: -0.02rem;
}

/* Video Slider (JS 제어용) */
.video-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.video-container video.active {
    opacity: 1;
    z-index: 2;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}

.navbar-item:hover {
    background-color: #f5f5f5 !important;
}

/* Services Section */
.box {
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
}

/* Contact Section */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 3rem 1.5rem;
    }

    .title.is-1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Colors */
.has-text-primary {
    color: #3273dc !important;
}

.button.is-primary {
    background-color: #3273dc;
}

.button.is-primary:hover {
    background-color: #2366d1;
}

/* Section Spacing */
.section {
    padding: 3rem 1.5rem;
}

/* Box Shadows */
.box {
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}

/* Image Hover Effect */
.image img {
    transition: transform 0.3s ease;
}

.image:hover img {
    transform: scale(1.02);
}

/* Hero Overlay Styles (복구: 데스크탑 커스텀 적용 전 상태) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-text-group {
    text-align: left;
    color: #fff;
    margin-bottom: 2rem;
    margin-left: 2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: -1.3px;
}

.hero-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-left: 2rem;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.95;
}

.hero-indicator-bar {
    display: inline-block;
    width: 6rem !important;
    height: auto;
    margin-right: 0.7rem;
    vertical-align: middle;
}

.hero-indicator-page {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.hero-indicator-total {
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
}

.hero-indicator-arrows {
    font-size: 1.3rem;
    margin-left: 0.7rem;
    opacity: 0.8;
}

.fade-in {
    opacity: 1 !important;
    transition: opacity 0.5s;
}

.fade-out {
    opacity: 0 !important;
    transition: opacity 0.5s;
}

/* BUSINESS SECTION (history section과 통일된 스타일) */
.business-section {
    background: #fff;
}

.business-container {
    max-width: 700px;
    margin: 0 auto;
}

.business-label {
    color: #1877f2;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.business-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
    text-align: center;
}

.business-category-btns {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.business-category-btn {
    width: 6.8rem;
    background: #d3d6df;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.4rem;
    box-shadow: 0 2px 8px rgba(30, 40, 80, 0.06);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    cursor: pointer;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.business-category-btn.selected {
    background: #1563ea;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(30, 40, 80, 0.12);
}

.business-category-btn:not(.selected):hover {
    background: #bfc3ce;
    color: #fff;
}

.business-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 2.5rem;
    overflow-x: hidden;
}

.business-content>div:first-child {
    width: calc(100% - 7rem);
    min-width: 0;
    max-width: 100%;
    margin-right: 0;
    text-align: left;
}

.business-content>div:last-child {
    width: 7rem;
    text-align: right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.business-main-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.business-desc {
    color: #444;
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: left !important;
}

.business-subtitle {
    color: #222;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.business-list {
    color: #888;
    font-size: 0.65rem;
    font-weight: 400;
    margin-left: 1.2rem;
    margin-bottom: 0;
    padding-left: 0.2rem;
}

.business-list li {
    margin-bottom: 0.2em;
    list-style: disc;
    word-break: keep-all;
    letter-spacing: -0.09em;
}

.business-image {
    width: 7rem;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto 0 0;
    display: block;
}

html,
body,
* {
    box-sizing: border-box;
}

.small-month {
    font-size: 0.75rem;
}

/* HISTORY SECTION */
.history-section {
    background: #fff;
}

.history-container {
    max-width: 700px;
    margin: 0 auto;
}

.section-label,
.section-title,
.section-desc {
    text-align: center;
}

.section-label {
    color: #1877f2;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: #888;
    font-size: 0.65rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.history-years {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.history-year-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 700;
    cursor: pointer;
    padding: 0 0.1rem 0.2rem 0.1rem;
    margin: 0;
    min-width: 0;
    display: inline-block;
    vertical-align: middle;
    transition: color 0.2s, border-bottom 0.2s;
}

.history-year-btn.selected {
    color: #1877f2;
    font-weight: 800;
    border-bottom: none;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.history-list .history-item:last-child {
    margin-bottom: 0;
}

.history-month {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 2rem;
    color: #222;
    line-height: 1;
    margin: 0;
    padding: 0;
    align-self: flex-start;
}

.history-content {
    font-size: 0.7rem;
    line-height: 1;
}

.history-content p {
    margin: 0;
    padding: 0;
}

.history-content .history-main {
    margin-bottom: 0.4rem;
}

.history-content .history-org {
    margin-bottom: 1rem;
}

.history-content .history-org:last-child {
    margin-bottom: 0;
}

.history-main {
    font-weight: 500;
    color: #222;
    display: block;
    padding: 0;
    line-height: 1;
    word-break: break-all;
}

.history-org {
    display: block;
    color: #bbb;
    font-size: 0.6rem;
    font-weight: 400;
    margin: 0 0 0.15em 0;
    padding: 0;
    line-height: 1;
    word-break: break-all;
}

.small-month {
    font-size: 0.75rem;
}

.rnd-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
    width: 100%;
}

.rnd-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.rnd-slider-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    will-change: transform;
    transition: none;
}

.rnd-slider-img {
    width: 65vw;
    max-width: 25rem;
    min-width: 12rem;
    height: auto;
    background: none;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.portfolio-nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    margin: 2.2rem 0 2.5rem 0;
}

.portfolio-nav-btn {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    border: 1.5px solid #d3d6df;
    background: #fff;
    color: #222;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border 0.2s, color 0.2s;
    outline: none;
    box-shadow: none;
    padding: 0;
}

.portfolio-nav-btn:hover {
    border-color: #1563ea;
    color: #1563ea;
}

.portfolio-nav-btn:focus,
.portfolio-nav-btn:active {
    outline: none;
    box-shadow: none;
    background: #fff;
    border-color: #d3d6df;
    color: #222;
}

.portfolio-info {
    text-align: left;
    margin-bottom: 1.5rem;
    margin-left: 0.2rem;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}

.portfolio-desc {
    font-size: 0.95rem;
    color: #bbb;
    font-weight: 500;
}

.portfolio-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    display: block;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.rnd-section {
    background: #FAFAFA;
    padding: 3rem 0 !important;
}

.portfolio-nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    margin: auto;
}

.org-logo-section {
    background: #fafbfc;
    padding: 1.8rem 0;
    overflow: hidden;
}

.org-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.org-logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    will-change: transform;
    transition: none;
}

.org-logo-img {
    height: 3rem;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1);
    transition: opacity 0.2s;
    object-fit: contain;
    background: transparent;
    display: block;
    max-width: 8rem;
    padding: 0 0.5rem;
}

.org-logo-img:hover {
    opacity: 1;
    filter: none;
}

.contact-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: url('assets/image/bg_img_contact.jpg') center/cover no-repeat;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: #001130b3;
    /* 70% 투명도 */
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 3.5rem 1.2rem 2.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.02rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.contact-desc {
    font-size: 0.68rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.contact-info {
    font-size: 0.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.contact-email {
    word-break: break-all;
}

.contact-btn,
.contact-btn:hover,
.contact-btn:active,
.contact-btn:focus,
.contact-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #2563ea;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem 1.2rem 0.5rem 1.5rem;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: background 0.2s;
}

.contact-btn-arrow {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
}

.contact-fab {
    position: absolute;
    right: 1rem;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.13);
    cursor: pointer;
    z-index: 50;
}

.contact-fab.email {
    bottom: 6.2rem;
    background: #fff;
}

.contact-fab.up {
    bottom: 2.1rem;
    background: transparent;
}

.contact-fab img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
    display: block;
}

.custom-footer {
    background: #f7f7f7;
    padding: 0 0 1.2rem 0;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    margin-top: 0 !important;
    padding-top: 1.5rem !important;
    padding-right: 0.8rem !important;
    padding-left: 0.8rem !important;
}

.contact-section+.custom-footer {
    margin-top: 0 !important;
}

.contact-section>*:last-child {
    margin-bottom: 0 !important;
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    width: 100%;
    padding-left: 1.5rem;
    margin: 0.7rem 0;
    gap: 0.5rem;
}

.footer-bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.3rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
}

.footer-info {
    color: #888;
    font-size: 0.65rem !important;
    text-align: left;
    word-break: keep-all;
}

.footer-info a {
    color: #888;
    text-decoration: underline;
}

.footer-copyright {
    text-align: left;
    color: #888;
    font-size: 0.6rem !important;
    margin: 0;
    padding: 0;
}

.footer-copyright strong {
    color: #888;
    font-weight: 700;
}

.desktop-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    background: transparent !important;
    box-shadow: none !important;
    height: 64px;
    display: none;
    align-items: center;
    justify-content: center;
}

.navbar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.2rem;
    height: 64px;
    gap: 20rem;
}

.navbar-logo {
    height: 36px;
    width: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.18s;
    padding: 0.2rem 0.1rem;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
    color: #fff;
}

/* 데스크탑(1025px 이상)만 오버라이드 */
@media (min-width: 1025px) {
    .desktop-header {
        display: flex;
    }

    .hero-overlay {
        left: 27vw;
        right: auto;
        width: 60vw;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-text-group {
        text-align: left;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.18;
        margin-bottom: 1.5rem;
        letter-spacing: -1.5px;
    }

    .hero-desc {
        font-size: 1.35rem;
        opacity: 0.97;
    }

    .hero-desc br {
        display: none;
    }

    .hero-indicator {
        justify-content: flex-start;
        gap: 1.5rem;
        margin-top: 2.2rem;
        font-size: 1.25rem;
        opacity: 0.97;
    }

    .hero-indicator-bar {
        width: 12rem !important;
    }

    .section {
        padding: 6rem 1.5rem;
    }

    .section-title {
        font-size: 1.65rem !important;
    }

    .section-title br {
        display: none;
    }

    .section-desc {
        font-size: 0.85rem !important;
    }

    .section-desc br {
        display: none;
    }

    .history-container {
        max-width: 700px !important;
        margin: 0 auto;
        width: 100%;
    }

    .history-flex-row {
        display: flex;
        align-items: flex-start;
        gap: 5rem;
        width: 100%;
    }

    .history-years {
        display: flex;
        flex-direction: column;
        margin-top: 0;
    }

    .history-year-btn {
        font-size: 2rem !important;
        font-weight: 600 !important;
        padding-bottom: 1rem !important;
    }

    .history-list {
        flex: 1;
        margin-top: 0.5rem !important;
    }

    .history-month {
        font-size: 1.1rem !important;
    }

    .history-content {
        font-size: 0.9rem !important;
    }

    .small-month {
        font-size: 1.1rem !important;
        margin-right: 1.1rem !important;
    }

    .business-container {
        max-width: 850px !important;
    }

    .business-category-wrap {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 3rem;
    }

    .business-category-btns {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 0;
        margin-right: 0;
    }

    .business-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        margin-top: 0;
        gap: 3rem;
    }

    .business-content>div:first-child,
    .business-content>div:last-child {
        width: auto !important;
        max-width: none !important;
        min-width: none !important;
    }

    .business-main-title {
        font-size: 1.2rem !important;
    }

    .business-desc {
        font-size: 0.9rem !important;
    }

    .business-desc br {
        display: none;
    }

    .business-subtitle {
        font-size: 1rem !important;
    }

    .business-subtitle br {
        display: none;
    }

    .business-list {
        font-size: 0.9rem !important;
    }

    .business-image {
        width: 18rem !important;
    }

    .rnd-section {
        padding: 6rem 0 !important;
    }

    .rnd-section .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .rnd-content {
        max-width: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .rnd-slider-img {
        width: 100%;
        max-width: 500px;
        min-width: 350px;
    }

    .portfolio-container {
        display: flex !important;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        width: 100%;
    }

    .portfolio-content-col {
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
    }

    .portfolio-info-wrap {
        flex: 0 0 340px;
        max-width: 340px;
        min-width: 260px;
        margin-right: 2rem;
    }

    .portfolio-info,
    .portfolio-image {
        flex: 1 1 0;
    }

    .portfolio-image {
        max-width: 1000px;
    }

    .portfolio-info {
        margin-bottom: 2rem;
    }

    .contact-label {
        font-size: 1.2rem !important;
    }

    .contact-title {
        font-size: 1.8rem !important;
    }

    .contact-desc {
        font-size: 1rem !important;
    }

    .contact-info {
        font-size: 1.2rem !important;
    }

    .footer-main {
        flex-direction: row;
        align-items: center;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }

    .footer-bottom-wrap {
        align-items: flex-start;
    }

    .footer-logo img {
        height: 3rem !important;
    }

    .sliding-text {
        font-size: 2.5rem !important;
    }
}