@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Bold.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Black.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Thin.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-SemiBold.woff2") format("woff2"), url("../fonts/custom/CosmoSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-ExtraBold.woff2") format("woff2"), url("../fonts/custom/CosmoSans-ExtraBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-ExtraLight.woff2") format("woff2"), url("../fonts/custom/CosmoSans-ExtraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Medium.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Light.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Cosmo Sans";
    src: url("../fonts/custom/CosmoSans-Regular.woff2") format("woff2"), url("../fonts/custom/CosmoSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@keyframes border-animation {
    0% {
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

.loader {
    --cell-size: 52px;
    --cell-spacing: 1px;
    --cells: 3;
    --total-size: calc(var(--cells) * (var(--cell-size) + 2 * var(--cell-spacing)));
    display: flex;
    flex-wrap: wrap;
    width: var(--total-size);
    height: var(--total-size)
}

.cell {
    flex: 0 0 var(--cell-size);
    margin: var(--cell-spacing);
    background-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    border-radius: 4px;
    animation: 1.5s ripple ease infinite
}

.cell.d-1 {
    animation-delay: 100ms
}

.cell.d-2 {
    animation-delay: 200ms
}

.cell.d-3 {
    animation-delay: 300ms
}

.cell.d-4 {
    animation-delay: 400ms
}

.cell:nth-child(1) {
    --cell-color: #00FF87
}

.cell:nth-child(2) {
    --cell-color: #0CFD95
}

.cell:nth-child(3) {
    --cell-color: #17FBA2
}

.cell:nth-child(4) {
    --cell-color: #23F9B2
}

.cell:nth-child(5) {
    --cell-color: #30F7C3
}

.cell:nth-child(6) {
    --cell-color: #3DF5D4
}

.cell:nth-child(7) {
    --cell-color: #45F4DE
}

.cell:nth-child(8) {
    --cell-color: #53F1F0
}

.cell:nth-child(9) {
    --cell-color: #60EFFF
}

@keyframes ripple {
    0% {
        background-color: rgba(0, 0, 0, 0)
    }

    30% {
        background-color: var(--cell-color)
    }

    60% {
        background-color: rgba(0, 0, 0, 0)
    }

    100% {
        background-color: rgba(0, 0, 0, 0)
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.inset-0 {
    inset: 0
}

.pointer {
    cursor: pointer
}

.z--1 {
    z-index: -1
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.isolate {
    isolation: isolate
}

.ovf-hidden {
    overflow: hidden
}

.square {
    aspect-ratio: 1/1
}

:root {
    --max-width: min(1300px, calc(100vw - 30px));
    --max-padding: 1fr;
    --primary-color: #273675;
    --secondary-color: #fffaf1;
    --primary1-color: #6f90bd;
    --dark-primary1-color: #273675;
    --dark-navy: #273675;
    --gradient: #ba7f1b 0%, #edcf7c 100%;
    /* --font-family: "Public Sans", sans-serif; */
    --font-family: "Cosmo Sans", sans-serif;
    --second-family: "Cosmo Sans", sans-serif;
    --third-family: "Cosmo Sans", sans-serif;
    --line: 3
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .5
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px
}

body {
    top: 0 !important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-family: var(--font-family);
    font-size: 14px;

    /* background-color: #7e9cc5; */
}

button {
    all: unset;
    box-sizing: border-box
}

picture {
    display: flex
}

picture:has(>img.w-100) {
    width: 100%;
    height: auto
}

img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block;
    height: auto
}

img.lazy {
    display: flex
}

img:not([src]) {
    visibility: hidden
}

a,
input,
textarea {
    outline: none;
    padding: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.wrap-content {
    display: grid;
    width: 100% !important;
    grid-column: main;
    grid-template-columns: [main-start] var(--max-padding) [content-start] var(--max-width) [content-end] var(--max-padding) [main-end]
}

.wrap-content>*:not(.fw, .wrap-content) {
    grid-column: content
}

.wrap-content>.fw {
    grid-column: main
}

.pagination {
    --bs-pagination-color: var(--primary-color);
    --bs-pagination-hover-color: var(--primary-color);
    --bs-pagination-active-bg: var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
    margin: 20px 0 0 0 !important
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

:is(.title-main, .title-detail) {
    text-align: center;
    margin-bottom: clamp(20px, 3.2520325203vw, 40px)
}

:is(.title-main, .title-detail) label {
    font: 400 clamp(14px, 1.6260162602vw, 20px)/1.25 var(--third-family);
    text-transform: uppercase;
    color: #222
}

:is(.title-main, .title-detail) :is(span, h1, h2, h3, h4, h5) {
    font: 600 clamp(24px, 2.9268292683vw, 36px)/1.25 var(--second-family);
    text-transform: uppercase;
    color: #273675;
    text-wrap: auto;
    text-wrap: balance
}

:is(.title-main, .title-detail) p {
    font: 400 15px/1.53333 var(--font-family);
    text-align: center;
    color: #3b3b3b
}

.time-main {
    color: #999;
    margin-bottom: .75rem
}

.time-main i {
    margin: 3px 7px 0 0;
    vertical-align: top
}

.time-main span {
    display: inline-block;
    vertical-align: top
}

.share {
    background: rgba(128, 128, 128, .15);
    border-radius: 5px;
    line-height: normal;
    margin-top: 15px;
    padding: 17px 15px 10px
}

.share b {
    display: block;
    margin-bottom: 5px
}

/* footer {
    --max-width: min(810px, calc(100% - 30px));
    background: #f4f4f4;
    padding-top: clamp(20px, 5.9349593496vw, 73px)
}

footer .title-main {
    width: min(100%, 570px);
    text-wrap: balance;
    margin: 0 auto;
    margin-bottom: clamp(10px, 2.0325203252vw, 25px)
}

footer form .row.g-0 {
    --bs-gutter-x: clamp(15px, calc(33 / 1230 * 100vw), 33px);
    --bs-gutter-y: clamp(15px, calc(33 / 1230 * 100vw), 33px)
}

footer form button {
    font: 500 14px/1.64286 var(--font-family);
    color: #fff;
    padding: clamp(6px, .9756097561vw, 12px);
    width: 100%;
    background: var(--primary-color);
    text-align: center;
    margin-top: 8px
}

footer form+.footer-copyright {
    padding-top: clamp(20px, 3.2520325203vw, 40px)
}

footer input.form-control {
    padding: 0;
    padding-bottom: 15px;
    font: 400 18px/2.3888888889 var(--font-family);
    height: 58px;
    color: #222;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background: rgba(0, 0, 0, 0)
}

footer input.form-control:focus,
footer input.form-control:focus-visible {
    background: rgba(0, 0, 0, 0);
    outline: 0;
    box-shadow: unset
}

.footer-copyright {
    font: 400 14px/1.71429 var(--font-family);
    text-align: center;
    color: #333;
    padding-bottom: clamp(20px, 3.2520325203vw, 40px)
} */

.text-split {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line);
    box-orient: vertical;
    line-clamp: var(--line);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: calc(var(--line)*1lh)
}

.scale-img {
    display: block;
    overflow: hidden
}

.scale-img img {
    transition: all .3s;
    transform: scale(1)
}

:is([class*=_item]:hover .scale-img, .scale-img:hover)>img,
:is([class*=_item]:hover .scale-img, .scale-img:hover) picture>img {
    transition: all .3s;
    transform: scale(1.1)
}

[class*=-xemthem] {
    transition: all .6s;
    position: relative;
    overflow: hidden
}

[class*=-xemthem]::before {
    transition: all .6s;
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(20deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    background-size: 600%
}

[class*=-xemthem]:hover {
    color: #fff;
    transform: translateX(0.5rem)
}

[class*=-xemthem]:hover::before {
    background-position: 100%
}

.transition {
    transition: all .3s
}

.cart-fixed {
    color: #fff !important;
    z-index: 10
}

.cart-fixed i {
    font-size: 20px
}

.cart-fixed span {
    background: var(--primary-color);
    border-radius: 100%;
    color: #fff;
    font-size: 11px;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: -5px;
    text-align: center;
    top: 0;
    width: 25px
}

.a2a_kit .a2a_svg {
    height: 30px;
    line-height: 30px;
    width: 30px
}

.qty-pro {
    flex: 0 0 100px !important
}

.skeleton :is([class*="-pic "], [class*="-title "], [class*="-desc "], [class*="-content "], [class*="-price "]) {
    background: #e4e4e4;
    border-radius: 5px;
    animation: skeleton 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.skeleton .pagination-ajax {
    filter: grayscale(1);
    position: relative
}

.skeleton .pagination-ajax::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3
}

.skeleton img {
    opacity: 0
}

.htmx-indicator:not(.htmx-request) {
    display: none !important
}

.aos-overflow {
    overflow: hidden !important;
    overflow: clip visible !important
}

.search-form {
    width: 37.5%
}

.search-form input:is(:focus, :focus-visible, :focus-within) {
    border: unset !important;
    outline: unset;
    box-shadow: unset
}

.search-form button {
    border-radius: 100%;
    width: 42px;
    color: #fff;
    font-size: 16px
}

.menu-res {
    background: var(--primary1-color);
    z-index: 100;
    display: none
}

.menu-res .logo {
    max-width: 104px;
}

.menu-res .header-cart img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(8%) hue-rotate(353deg) brightness(104%) contrast(104%)
}

.search-res {
    position: relative
}

.search-res input[type=checkbox]:checked+label {
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color)
}

.search-res input[type=checkbox]:checked+label+.search-grid {
    opacity: 1;
    grid-template-columns: 1fr
}

.search-res .search-grid {
    display: grid;
    grid-template-columns: 0fr;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 2;
    width: -moz-max-content;
    width: max-content
}

.grid-sp {
    display: grid;
    --gap: clamp(8px, calc(20 / 1230 * 100vw), 20px);
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - var(--gap) * 3) / 4), 1fr))
}

.sp_item .embla__container {
    --gap__calc: clamp(10px, calc(50 / 1230 * 100vw), 50px)
}

.sp-title {
    font: 500 clamp(20px, 2.4390243902vw, 30px)/1.16667 var(--font-family);
    text-transform: capitalize;
    color: #222
}

.sp-mini_desc {
    font: 400 14px/1.71429 var(--font-family);
    color: #3b3b3b
}

.sp-parameter {
    font: 400 14px var(--font-family);
    color: #3b3b3b
}

.sp-xemthem {
    font: 500 14px/1.64286 var(--font-family);
    color: #fff;
    --xemthem-color: transparent;
    padding: clamp(5px, .8943089431vw, 11px) clamp(20px, 3.5772357724vw, 44px);
    white-space: nowrap;
    /* background: var(--primary-color); */
    background: linear-gradient(90deg, var(--gradient));
}

.sp-info {
    margin-top: clamp(15px, 2.4390243902vw, 30px)
}

.sp-info>* {
    flex: 1 1 100%
}

@media(min-width: 928px) {
    .sp-title {
        flex: 0 1 300px
    }

    .sp-mini_desc {
        flex: 0 1 320px
    }

    .sp-parameter {
        flex: 0 1 183px;
    }

    .sp-xemthem {
        flex: 0 1 175px
    }
}

/* @media(min-width: 1200px) {
    .slide-slide {
        min-height: 100vh;
        width: 100%;
        display: flex
    }

    .slide-slide picture {
        display: inline;
        width: 100%;
        height: 100%
    }

    .slide-slide img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%
    }
} */

.gt-title-main {
    font: 400 clamp(20px, 2.0325203252vw, 25px)/1.24 var(--third-family);
    text-transform: uppercase;
    color: #273675;
    margin-bottom: 6px
}

.wrap-gt_under_slide {
    margin: clamp(20px, 6.7479674797vw, 83px) 0 clamp(20px, 7.3170731707vw, 90px)
}

.wrap-ksnb {
    padding: clamp(20px, 6.7479674797vw, 83px) 0 clamp(20px, 7.3170731707vw, 90px);
    background: #f4f4f4;
    /* background: #f7dc8b; */
}

.wrap-dichvu {
    margin: clamp(20px, 6.5040650407vw, 80px) 0 clamp(20px, 7.3170731707vw, 90px)
}

.grid-dichvu {
    display: grid;
    --gap: clamp(15px, calc(20 / 1230 * 100vw), 30px);
    gap: var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - var(--gap) * 2) / 3), 1fr))
}

.dichvu_item {
    padding: clamp(23px, 3.7398373984vw, 46px) clamp(19px, 3.0894308943vw, 38px)
}

.dichvu-title {
    font: 500 clamp(16px, 2.0325203252vw, 25px)/1.4 var(--font-family);
    text-align: center;
    color: #273675;
    margin-top: clamp(6px, .9756097561vw, 12px)
}

.dichvu-desc {
    font: 400 clamp(12px, 1.1382113821vw, 14px)/1.78571 var(--font-family);
    text-align: center;
    color: #333;
    margin-top: clamp(6px, .9756097561vw, 12px)
}

.wrap-blog {
    margin: clamp(20px, 7.3170731707vw, 90px) 0 clamp(20px, 6.5040650407vw, 80px);
}

.wrap-blog:has(+ .wrap-blog) {
    margin-bottom: 0;
}

.wrap-blog+.wrap-blog {
    margin-top: 0;
}

.blog-info {
    text-align: justify;
}

/* .blog-info strong {
    font-size: 24px;
} */

.blog-info label {
    font: 400 clamp(13px, 1.7886178862vw, 22px)/1.2727272727 var(--third-family);
    text-transform: uppercase;
    color: #222
}

.blog-title {
    font: 400 clamp(20px, 3.2520325203vw, 40px)/1.2 var(--second-family);
    color: #273675;
    margin-top: clamp(12px, 1.9512195122vw, 24px)
}

.blog-desc {
    font: 400 clamp(13px, 1.2195121951vw, 15px)/1.8 var(--font-family);
    color: #3b3b3b;
    margin-top: clamp(4px, .7317073171vw, 9px)
}

.blog-btn {
    --pic-h: var(--max-width);
    margin-top: calc(var(--pic-h) / 2);
}

@media(min-width: 768px) {
    .blog-btn {
        --pic-h: calc(var(--max-width)/ 2);
    }

    .blog-title {
        text-wrap: auto;
        text-wrap: balance;
        width: min(100%, 400px)
    }

    .blog-slide-2 .blog_item>.row>:first-child {
        order: 2
    }

    .blog-slide-2 .blog_item>.row>:last-child {
        order: 1;
        align-items: end
    }

    .blog-slide-2 .blog_item>.row>:last-child>* {
        text-align: right
    }

    /* 
    .blog-slide .embla__container {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc(100% / var(--slide__count_calc));
        grid-template-rows: repeat(2, 1fr);
    } */
}

.wrap-album {
    margin: clamp(20px, 6.5040650407vw, 80px) 0 clamp(20px, 4.5528455285vw, 56px)
}

.wrap-album .title-main h2 {
    text-transform: none
}

.album-title {
    font: 500 clamp(16px, 1.6260162602vw, 20px)/2.4 var(--font-family);
    text-transform: capitalize;
    color: #222;
    mask-type: clamp(5px, .8130081301vw, 10px)
}

.wrap-gtct {
    --max-width: min(750px, calc(100% - 30px));
    margin: clamp(20px, 4.5528455285vw, 56px) 0 clamp(20px, 4.0650406504vw, 50px)
}

.wrap-gtct .title-main {
    margin-bottom: clamp(11px, 1.7886178862vw, 22px)
}

.wrap-gtct .title-main h2 {
    text-transform: none
}

.gtct-desc {
    font: 400 15px/1.53333 var(--font-family);
    text-align: center;
    color: #3b3b3b;
    margin-bottom: clamp(20px, 3.2520325203vw, 40px);
    text-wrap: auto;
    text-wrap: balance
}

.gtct-xemthem {
    border: .5px solid #222;
    padding: clamp(6px, .9756097561vw, 12px) clamp(17px, 2.7642276423vw, 34px);
    font: 400 14px/1.64286 var(--font-family);
    color: #222;
    white-space: nowrap
}

.gtct-xemthem svg path {
    stroke: #222
}

.gtct-xemthem:hover svg path {
    stroke: #fff
}

.booking-full-anchor-bg {
    --item-height: clamp(40px, calc(50 / 1230 * 100vw), 50px);
    padding: clamp(17px, 2.8455284553vw, 35px) clamp(31px, 5.0406504065vw, 62px);
    border-radius: 20px;
}

.booking-full-anchor-bg .g-0 {
    --bs-gutter-x: clamp(10px, calc(20 / 1230 * 100vw), 20px);
    --bs-gutter-y: clamp(10px, calc(20 / 1230 * 100vw), 20px)
}

.booking-full-anchor-bg h2 {
    font: 600 clamp(18px, 2.4390243902vw, 30px)/1.26667 var(--second-family);
    text-transform: uppercase;
    color: #273675
}

.booking-full-anchor-bg label {
    font: 500 clamp(14px, 1.3008130081vw, 16px)/1.25 var(--font-family);
    text-transform: uppercase;
    color: #222;
    margin-bottom: clamp(6px, .8943089431vw, 11px)
}

.booking-full-anchor-bg input {
    font: 400 14px/1.42857 var(--font-family);
    color: #7d7d7d;
    border: 1px solid #d2d2d2;
    background: #f4f4f4;
    /* background: #f7dc8b; */
    height: var(--item-height);
    padding: clamp(7px, 1.1382113821vw, 14px)
}

.booking-full-anchor-bg button {
    font: 700 15px/1.33333 var(--font-family);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #273675;
    height: var(--item-height);
    width: 100%
}

.wrap-booking-absolute {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    translate: 0 -50%
}

@media(min-width: 992px) {

    .position-lg-absolute {
        position: absolute;
    }
}

.xemthem-btn {
    font: 500 clamp(18px, calc(25 / 1230 * 100vw), 25px) / calc(61/25) var(--second-family);
    color: #fff;
    padding: 0 calc(15/25*1em);
    border-radius: calc(18/25*1em);
    background: var(--dark-primary1-color);
}