<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: #ea4544;
    --bs-body-color: #262626;

    --primary-bg-linear: linear-gradient(180deg, #50b648, #90c63f, #b2ec0f);
    --primary-bg-hover-linear: linear-gradient(180deg, #b2ec0f, #90c63f, #50b648);
    --primary-text-linear: linear-gradient(180deg, #90c63f, #5bb946);
    --primary-border-linear: linear-gradient(180deg, #90c63f, #5bb946);
    --primary-bg-light: #ebf6ea;
    --primary-text-color: #66bb45;
    --bg-light: #f1f5f2;
    --main-green: #1ca04f;
    --bs-body-bg: #FFFFFF;
}

@media (min-width: 992px) {
    .container {
        max-width: 950px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1920px) {
    .large-container {
        max-width: 1872px !important;
    }
}

.btn-success {
    --bs-btn-bg: #7fca27;
    --bs-btn-border-color: #7fca27;
    --bs-btn-hover-bg: #619e19;
    --bs-btn-hover-border-color: #619e19;
}

.btn {
    --bs-btn-padding-y: 9px;
    --bs-btn-padding-x: 15px;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    background: white;
}


* {
    color: #323c26;
    font-family: "Be Vietnam", sans-serif;
}

/* header {
  background: #fff;
  padding: 20px 0;
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
} */


@media (min-width: 1400px) {

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

.header-logo {
    height: 50px;
}

.h-100 {
    height: 100% !important;
}

.fill-white {
    fill: white;
}

.size-16 {
    width: 16px;
    height: 16px;
}

.login-btn,
.login-btn:hover {
    background: #65af2f;
    color: #fff;
}

.register-btn,
.register-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff !important;
}

@media (max-width: 1250px) {
    main {
        margin-top: 48px;
    }
}

dl,
ol,
ul {
    margin-bottom: 0 !important;
    list-style-type: none;
}

.bg-base {
    background-color: #f5f5f5 !important;
}

.card {
    --bs-border-color-translucent: none;
    --bs-card-cap-bg: #fff;
}

.btn-danger {
    --bs-btn-bg: #ea4544;
    --bs-btn-border-color: #ea4544;
}

.desktop-header {
    padding: 12px 16px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1408px !important;
    }
}

.desktop-header .header-group-btn {
    gap: 16px;
}

.desktop-header .header-btn {
    padding: 12px 0px;
    min-width: 164px;
    text-align: center;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(68, 68, 68, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-btn.header-btn {
    background: rgba(127, 202, 39, 1);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(255, 255, 255, 1);
}

.main-green {
    color: var(--main-green);
}

.width-content {
    width: max-content;
}

.desktop-header.sub-header {
    position: fixed;
    z-index: 99;
    top: 20px;
    left: 20px;
    right: 20px;
    border: 0.67px solid #fff;
    border-radius: 40px;
    width: calc(100vw - 40px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.29);
    padding: 18px 32px !important;
    box-shadow: 0px 8px 16px 0px #0fb8001a;
    animation: slideDown 0.6s;
}

@keyframes slideDown {
    0% {
        transform: translateY(calc(-100% - 20px));
    }

    100% {
        transform: translateY(0);
    }
}

.desktop-header .sub-menu, .desktop-header .sub-menu li ul {
    position: absolute;
    margin: 0;
    padding: 0.5rem 0;
    background: white;
    border-radius: 6px;
    top: 100%;
    left: 32px;
    width: max-content;
    min-width: 120px;
    height: max-content;
    display: none;
    z-index: 0;
}

.desktop-header .sub-menu li ul {
    left: calc(100%);
    top: 0;
}

.desktop-header .has-submenu,
.desktop-header .sub-menu li {
    /*padding: 0.25rem 1rem;*/
}

.desktop-header .has-submenu:hover &gt; .sub-menu,
.desktop-header .sub-menu li:hover &gt; ul {
    display: block;
    z-index: 9;
    padding: 12px 16px;
}

.desktop-header .sub-menu a:hover {
    color: var(--primary-text-color) !important;
}

@media (max-width: 1250px) {
    .desktop-header {
        display: none !important;
    }
}

.mobile-header {
    background-color: white;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    padding: 8px 16px;
    width: 100vw;
    transition: all 0.3s ease;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header.header-shrink {
    background-color: white;
}

.mb-dark-mode .mobile-header.header-shrink {
    background-color: #1A221B;
}

.mobile-header.sub-header {
    background-color: #fff;
    padding: 10px 15px !important;
}

@media (min-width: 1254px) {
    .mobile-header {
        display: none;
    }
}

.toggle-mobile-menu-btn {
    background-color: transparent;
    border: none;
    width: 24px;
    height: 24px;
    padding: 0;
    box-shadow: none;
}

.mobile-menu-header .toggle-mobile-menu-btn {
    top: 0px;
}

.toggle-mobile-menu-btn &gt; img {
    vertical-align: unset;
}

.mobile-menu {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: max-content;
    background-color: #fff;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255);
}

.primary-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

.header-text,
.footer-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.medium-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.greenlight-text,
.greenlight-text * {
    color: #74c33f;
}

.primary-btn {
    background: var(--primary-bg-linear);
    border: 1px solid #90c63f;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
    width: max-content;
    transition: 0.2s all ease-in-out;
    font-weight: 600;
    font-size: 16px;
}

.logo-desktop img {
    width: 90px;
    height: 44px;
}

/* .primary-btn:hover {
  background: var(--primary-bg-hover-linear);
} */
.mobile-menu-header {
    padding: 24px;
}

.mobile-menu-footer {
    padding: 16px 16px 0;
    gap: 16px;
}

.mobile-menu-footer .outline-btn {
    gap: 8px;
    border-color: rgba(68, 68, 68, 1);
    height: 40px
}

.mobile-menu-footer span {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgba(68, 68, 68, 1);
    text-align: left;
}

.mobile-menu-footer .auth-action a {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    color: rgba(68, 68, 68, 1);
}

.mobile-menu-footer .auth-action {
    height: 44px;
}

.mobile-menu-footer .auth-action a:first-child {
    padding-right: 17px;
    border-right: 1.5px dashed rgba(112, 112, 112, 1)
}

.mobile-menu-footer .auth-action a:last-child {
    padding-left: 16px;
}

.mobile-menu-list {
    padding: 28px 24px;
    height: calc(100vh - (93px + 170px));
    overflow-y: auto;
}

.header-link {
    color: #323c26;
    transition: 0.2s all ease-in-out;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
}

.header-link:hover {
    color: #65af2f;
}

.header-icon {
    background-color: var(--primary-bg-light);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.header-icon img {
    width: 12px;
    height: 12px;
}

.text-color {
    background: -webkit-linear-gradient(180deg, #90c63f, #5bb946) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.outline-btn {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #5bb946;
    transition: 0.2s all ease-in-out;
    display: block;
}

.outline-btn:hover {
    background: #ddfee1;
}

.copy-right {
    background-color: var(--bg-light);
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    padding: 16px 12px;
    color: var(--main-green);
}

.logo-footer img {
    width: 123px;
    height: 60px;
}

.text-primary-color {
    color: var(--primary-text-color);
}

.sub-title-footer {
    color: var(--primary-text-color);
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
}

.footer .footer-text {
    font-weight: 500;
}

.footer-menu .wrapper {
    gap: 12px;
}

.footer-menu {
    gap: 32px;
}

footer .sub-title-footer {
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    footer .footer {
        background-color: #151515;
    }

    .mobile-menu-footer &gt; a {
        padding: 12px 24px;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }

    .footer-menu {
        gap: 20px;
    }

    footer .header-link,
    footer .sub-title-footer {
        color: #fff;
    }

    footer .sub-title-footer {
        margin-bottom: 16px;
    }

    footer .header-icon {
        background-color: transparent;
        border: 0.4px solid #787878;
    }

    footer .copy-right {
        background-color: #000;
        color: #979797;
    }

    footer .copy-right span {
        color: #979797;
    }

    .header-text {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-text {
        font-size: 14px;
        font-style: normal;
        line-height: normal;
    }

    .sub-title-footer {
        font-size: 20px;
    }

    .copy-right {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 22px 8px;
    }
}

.bg-green-light {
    background-color: #f1f5f2;
}

.languages {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.languages span {
    color: #979797;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.languages span:hover {
    color: #323c26;
}

.languages span.active {
    color: #323c26;
    font-weight: 700;
}

.post-item:hover h5 {
    color: var(--primary-text-color) !important;
}

.textarea-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.textarea-container textarea {
    width: 100%;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.wordCount {
    position: absolute;
    bottom: 5px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2px 5px;
    font-size: 1rem;
    color: #555;
}

.user-avatar__dropdown {
    width: 200px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.user-avatar__dropdown #userDropdownMenuLink {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: rgba(68, 68, 68, 1);
    padding: 8px;
    background-color: rgba(248, 248, 248, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    height: 44px;
    min-width: 200px;
}

.user-avatar__dropdown .dropdown-menu {
    inset: 28px 0 auto auto !important;
    box-shadow: 0px 4px 16px 0px rgba(68, 68, 68, 0.08);
    border: none;
    border-radius: 8px;
}

.user-avatar__dropdown .dropdown-menu {
    width: 252px;
    padding: 0;
}

.user-avatar__dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.user-avatar__dropdown .dropdown-menu .dropdown-item:active {
    background-color: inherit;
    color: inherit;
}

.user-avatar__dropdown .dropdown-menu li:last-child {
    border-top: 1px solid rgba(224, 224, 224, 1)
}

.marquee-container {
    max-width: 132px;
    overflow: hidden;
    white-space: nowrap;
    --animation-length: 5s;
    --text-length: -10%;
}

.marquee {
    display: inline-block;
    animation: marquee var(--animation-length) linear infinite;
}

/* Only apply marquee effect when text is longer than container */
.marquee-container span {
    display: inline-block;
    width: auto;
}

@keyframes marquee {
    20% {
        transform: translateX(0%);
    }
    40% {
        transform: translateX(var(--text-length));
    }
    60% {
        transform: translateX(var(--text-length));
    }
    80% {
        transform: translateX(0%);
    }
}

#accountMenuOffcanvas {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    --bs-offcanvas-height: unset;
}

#accountMenuOffcanvas .offcanvas-body {
    padding: 16px 0;
}

.user-avatar__dropdown--mobile .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.user-avatar__dropdown--mobile ul {
    padding-left: 0;
}

.user-avatar__dropdown--mobile hr {
    height: 1px;
    color: rgba(224, 224, 224, 1)
}

#mobileMenuOffcanvas {
    width: 251px;
    padding: 16px 0;
}

#mobileMenuOffcanvas .offcanvas-header {
    height: 36px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: rgba(68, 68, 68, 1);
    margin-bottom: 7px;
}

#mobileMenuOffcanvas .offcanvas-body {
    padding: 0;
}

#mobileMenuOffcanvas .offcanvas-body li {
    height: 40px;
    padding: 0 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

#mobileMenuOffcanvas .offcanvas-body li a {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: rgba(68, 68, 68, 1);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

#mobileMenuOffcanvas .offcanvas-body li.active {
    background-color: rgba(127, 202, 39, 0.08);
}

#mobileMenuOffcanvas .line {
    background-color: rgba(68, 68, 68, 1);
    height: 1px;
    width: 100%;
    line-height: 0;
}

#mobileMenuOffcanvas .guide-icon path {
    stroke: rgba(68, 68, 68, 1);
}

.menu-icon--dark {
    display: none;
}

.menu-icon--white {
    display: block;
}

.mb-dark-mode .menu-icon--dark {
    display: block;
}

.mb-dark-mode .menu-icon--white {
    display: none;
}
</pre></body></html>