@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.interest-section {
    width: 100%;
    background-color: #FFD200;
    padding: 80px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.interest-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.interest-title {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 44px;
    color: #000;
    margin-bottom: 0px;
    animation: fadeIn 4s ease-out;
}

.interest-subtitle {
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    max-width: 709px;
    animation: fadeIn 4s ease-out;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #184382;
    color: #FFF;
    text-decoration: none;
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    line-height: 1;
    animation: fadeIn 4s ease-out;
}

.btn-more:hover {
    background-color: #416995 !important;
}

.btn-more i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.bg-icon {
    position: absolute;
    right: 137px;
    bottom: 0;
    width: 293px;
    height: 311px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.interest-bg-icon-image,
.bg-icon svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: contain;
    opacity: 1 !important;
    position: relative;
}