/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yusei Magic', sans-serif;
    background-color: #FDFCFB;
    color: #0A0A0A;
    line-height: 1.5;
}

/* Header */
.header {
    background-color: #FFFDFB;
    border-bottom: 1px solid #F9F4EE;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 0 72.5px 1px;
    height: 122px;
}

.header-container {
    max-width: 1169px;
    margin: 0 auto;
    padding: 0 16px;
    height: 121px;
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding-top: 16px;
    position: relative;
}

.logo-link {
    display: block;
}

.logo {
    height: 48px;
    width: auto;
}

.address {
    height: 40px;
    width: auto;
    margin-top: 14px;
}

.navigation {
    border-top: 1px solid #E5E7EB;
    padding-top: 1px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    list-style: none;
    height: 100%;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    color: #0A0A0A;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    height: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #E45A24;
    border-bottom-color: #E45A24;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #0A0A0A;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
.main-content {
    min-height: 929px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #F8F7F3;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 88.5px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #4A5565;
    font-size: 16px;
    line-height: 1.5em;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
}

.breadcrumb-separator {
    width: 16px;
    height: 16px;
    margin: 0 8px;
}

.breadcrumb-current {
    color: #1E2939;
    font-size: 16px;
    line-height: 1.5em;
}

/* Section */
.section {
    background-color: #F8F7F3;
    min-height: 873px;
    position: relative;
    padding: 64px 0;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 0 192px;
}

.section-header {
    position: relative;
    height: 40px;
    margin-bottom: 48px;
}

.decorative-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.4;
}

.dot-orange {
    background-color: #E45A24;
}

.dot-green {
    background-color: #009A74;
}

.dot-pink {
    background-color: #F8A5C2;
}

.decorative-circle {
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
    width: 128px;
    height: 128px;
    background-color: rgba(228, 90, 36, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.decorative-elements {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 50px;
}

.deco-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.deco-element.deco-orange {
    width: 12px;
    height: 12px;
    background-color: #E45A24;
    left: calc(45% - 6px);
    top: 4px;
    opacity: 0.3;
}

.deco-element.deco-green {
    width: 8px;
    height: 8px;
    background-color: #009A74;
    left: calc(56.25% - 4px);
    top: 8px;
}

.deco-element.deco-pink {
    width: 16px;
    height: 16px;
    background-color: #F8A5C2;
    left: calc(58.75% - 8px);
    top: -8px;
    opacity: 0.2;
}

.section-title {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 24px;
    line-height: 1.5em;
    color: #E45A24;
    text-align: center;
    border-bottom: 2px solid #E45A24;
    padding: 0 24px 14px;
    white-space: nowrap;
}

/* Recruitment Content */
.recruitment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.introduction {
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
    color: #364153;
    margin-bottom: 24px;
}

.introduction p {
    margin-bottom: 8px;
}

.introduction p:last-child {
    margin-bottom: 0;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    line-height: 1.5em;
    font-family: 'Yusei Magic', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active {
    background: linear-gradient(180deg, rgba(228, 90, 36, 1) 0%, rgba(209, 73, 16, 1) 100%);
    color: #FFFFFF;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.filter-btn:not(.active) {
    background-color: #FFFFFF;
    color: #364153;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filter-btn:not(.active):hover {
    background-color: #F8F7F3;
}

.filter-btn .count {
    opacity: 0.75;
    font-size: 14px;
}

/* Recruitment Cards */
.recruitment-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.recruitment-card {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #F0EBE3;
    border-radius: 24px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recruitment-card.hidden {
    display: none;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    border: 1px solid;
}

.tag-orange {
    background-color: rgba(228, 90, 36, 0.1);
    color: #E45A24;
    border-color: rgba(228, 90, 36, 0.2);
}

.tag-green {
    background-color: rgba(0, 154, 116, 0.1);
    color: #009A74;
    border-color: rgba(0, 154, 116, 0.2);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.5em;
    color: #101828;
    font-weight: 400;
    margin: 0;
}

.title-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #6A7282;
}

.date-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.card-description {
    font-size: 16px;
    line-height: 1.5em;
    color: #364153;
}

.card-description p {
    margin-bottom: 4px;
}

.card-description p:last-child {
    margin-bottom: 0;
}

/* Card Details */
.card-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.detail-item {
    display: flex;
    gap: 12px;
    padding: 17px;
    border-radius: 16px;
    border: 1px solid;
}

.detail-salary {
    background: linear-gradient(135deg, rgba(228, 90, 36, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: rgba(228, 90, 36, 0.1);
}

.detail-location,
.detail-holiday {
    background: linear-gradient(135deg, rgba(0, 154, 116, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: rgba(0, 154, 116, 0.1);
}

.detail-time {
    background: linear-gradient(135deg, rgba(228, 90, 36, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-color: rgba(228, 90, 36, 0.1);
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.5em;
    color: #E45A24;
    background-color: rgba(228, 90, 36, 0.1);
}

.detail-location .detail-icon,
.detail-holiday .detail-icon {
    background-color: rgba(0, 154, 116, 0.1);
    color: #009A74;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.detail-label {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #4A5565;
    font-weight: 400;
}

.detail-value {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #1E2939;
    font-weight: 400;
}

/* Card Period */
.card-period {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.period-label {
    font-size: 16px;
    line-height: 1.5em;
    color: #1E2939;
    font-weight: 400;
}

.period-value {
    padding: 17px;
    background: linear-gradient(135deg, rgba(228, 90, 36, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(228, 90, 36, 0.1);
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #364153;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(228, 90, 36, 0.1) 0%, rgba(0, 154, 116, 0.1) 100%);
    border: 1px solid #F0EBE3;
    border-radius: 24px;
    padding: 49px;
    text-align: center;
    margin-top: 48px;
}

.contact-title {
    font-size: 16px;
    line-height: 1.5em;
    color: #E45A24;
    font-weight: 400;
    margin-bottom: 16px;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.5em;
    color: #364153;
    margin-bottom: 8px;
}

.contact-section p:last-of-type {
    margin-bottom: 24px;
}

.contact-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: #FFFFFF;
    color: #E45A24;
    border: 2px solid #E45A24;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5em;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #E45A24;
    color: #FFFFFF;
}

.background-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 96px;
    opacity: 0.05;
    overflow: hidden;
}

.pattern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(109, 94, 80, 1) 0%, rgba(90, 77, 64, 1) 100%);
    padding: 48px 72.5px 0;
    height: 350.5px;
}

.footer-container {
    max-width: 1169px;
    margin: 0 auto;
    height: 254.5px;
    position: relative;
}

.footer-content {
    height: 100%;
    position: relative;
}

.footer-info {
.footer-info {
    display: flex;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 8px;
    gap: 8px;
    width: 896px;
    width: 896px;
    max-width: 100%;
    max-width: 100%;
        max-width: 100%;
    align-items: center;
    align-items: center;
    position: absolute;
    position: absolute;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    top: 0;
    height: 117.5px;
    height: 117.5px;
}
}

.footer-org-name {
    font-size: 16px;
    line-height: 1.5em;
    color: #99A1AF;
    text-align: center;
    font-weight: 400;
    width: 100%;
        max-width: 100%;
}

.footer-facility-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    height: 24px;
    width: 100%;
        max-width: 100%;
}

.facility-type {
    color: #99A1AF;
    margin-right: 0;
}

.facility-name {
    color: #FFFFFF;
    margin-left: 0;
}

.footer-address {
    margin-top: 8px;
    width: 100%;
        max-width: 100%;
}

.footer-address p {
    font-size: 14px;
    line-height: 1.625em;
    color: #D1D5DC;
    text-align: center;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 16px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 992px;
    max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 149.5px;
    min-height: 20px;
    margin: 0;
}

.footer-nav li {
    height: 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.footer-nav a {
    color: #D1D5DC;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    transition: color 0.3s;
    display: inline-block;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.footer-copyright {
    border-top: 1px solid #7A6B5B;
    padding-top: 33px;
    text-align: center;
    width: 992px;
    max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
        max-width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 201.5px;
    height: 53px;
    margin: 0;
}

.footer-copyright p {
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #D1D5DC;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .section-container {
        padding: 0 100px;
        align-items: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .header,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .breadcrumb {
        padding-left: 20px;
    }

    .section-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .card-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .header-container {
        padding: 0 12px;
    }

    .header-top {
        height: auto;
        min-height: 80px;
        padding: 16px 0;
    }

    .address {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #FFFDFB;
        border-top: none;
        border-left: 1px solid #E5E7EB;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .navigation.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        height: auto;
    }

    .nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #E5E7EB;
    }

    .nav-link {
        width: 100%;
        padding: 16px;
        border-bottom: none;
        justify-content: flex-start;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(228, 90, 36, 0.1);
        border-bottom: none;
        color: #E45A24;
    }

    .section-container {
        padding: 0 20px;
    }

    .deco-element.deco-orange {
        left: calc(38% - 6px);
    }

    .deco-element.deco-green {
        left: calc(54% - 4px);
    }

    .deco-element.deco-pink {
        left: calc(58% - 8px);
    }

    .recruitment-card {
        padding: 24px;
    }

    .contact-section {
        padding: 32px 24px;
    }

    .footer-info {
    .footer-info {
        width: 100%;
        width: 100%;
        max-width: 100%;
        max-width: 100%;
    margin: 0 auto;
    margin: 0 auto;
    align-items: center;
    align-items: center;
        left: 0;
        left: 0;
        padding: 0 20px;
        padding: 0 20px;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav {
    .footer-nav {
        width: calc(100% - 40px);
        width: calc(100% - 40px);
        
        
        padding: 0;
        padding: 0;
        justify-content: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 12px;
        gap: 12px;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav li {
    .footer-nav li {
        height: auto;
        height: auto;
    }
    }


    .footer-copyright {
    .footer-copyright {
        width: calc(100% - 40px);
        width: calc(100% - 40px);
        
        
        padding: 33px 0 0;
        padding: 33px 0 0;
        text-align: center;
        text-align: center;
    }
    }
}
}

@media (max-width: 768px) {
    .header {
        padding: 0 12px;
        height: auto;
        min-height: 80px;
    }

    .header-container {
        height: auto;
        min-height: 80px;
    }

    .header-top {
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        height: 40px;
    }

    .breadcrumb {
        padding-left: 12px;
        height: auto;
        min-height: 56px;
        flex-wrap: wrap;
    }

    .section {
        padding: 32px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-header {
        height: 40px;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 20px;
        padding: 0 16px 10px;
    }

    .deco-element.deco-orange {
        left: calc(35% - 6px);
        width: 10px;
        height: 10px;
    }

    .deco-element.deco-green {
        left: calc(50% - 4px);
        width: 6px;
        height: 6px;
    }

    .deco-element.deco-pink {
        left: calc(55% - 8px);
        width: 12px;
        height: 12px;
    }

    .decorative-circle {
        width: 100px;
        height: 100px;
    }

    .introduction {
        font-size: 14px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .recruitment-card {
        padding: 20px;
        gap: 20px;
    }

    .card-details {
        gap: 8px;
    }

    .detail-item {
        padding: 12px;
    }

    .contact-section {
        padding: 24px 16px;
    }

    .contact-title {
        font-size: 14px;
    }

    .contact-section p {
        font-size: 14px;
    }

    .contact-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .footer {
        padding: 32px 12px 0;
        height: auto;
        min-height: 350.5px;
    }

    .footer-container {
        height: auto;
        min-height: 254.5px;
    }

    .footer-info {
    .footer-info {
        position: relative;
        position: relative;
        transform: none;
        transform: none;
        left: auto;
        left: auto;
        top: auto;
        top: auto;
        width: 100%;
        width: 100%;
        max-width: 100%;
        max-width: 100%;
    margin: 0 auto;
    margin: 0 auto;
    align-items: center;
    align-items: center;
        margin: 0 auto;
        margin: 0 auto;
        padding: 0;
        padding: 0;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav {
    .footer-nav {
        position: relative;
        position: relative;
        transform: none;
        transform: none;
        left: auto;
        left: auto;
        top: auto;
        top: auto;
        width: 100%;
        width: 100%;
        max-width: 100%;
        max-width: 100%;
    margin: 0 auto;
    margin: 0 auto;
    align-items: center;
    align-items: center;
        margin: 24px auto 0;
        margin: 24px auto 0;
        padding: 0 12px;
        padding: 0 12px;
        justify-content: center;
        justify-content: center;
        gap: 12px;
        gap: 12px;
        min-height: auto;
        min-height: auto;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav li {
    .footer-nav li {
        height: auto;
        height: auto;
    }
    }


    .footer-copyright {
    .footer-copyright {
        position: relative;
        position: relative;
        transform: none;
        transform: none;
        left: auto;
        left: auto;
        top: auto;
        top: auto;
        width: 100%;
        width: 100%;
        max-width: 100%;
        max-width: 100%;
    margin: 0 auto;
    margin: 0 auto;
    align-items: center;
    align-items: center;
        margin: 24px auto 0;
        margin: 24px auto 0;
        padding: 24px 12px 0;
        padding: 24px 12px 0;
        text-align: center;
        text-align: center;
    }
    }
}
}

@media (max-width: 480px) {
    .header-top {
        padding: 12px 0;
    }

    .logo {
        height: 36px;
    }

    .section-title {
        font-size: 18px;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .recruitment-card {
        padding: 16px;
    }

    .footer {
        padding: 24px 8px 0;
    }

    .footer-info {
    .footer-info {
        padding: 0 8px;
        padding: 0 8px;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav {
    .footer-nav {
        width: calc(100% - 16px);
        width: calc(100% - 16px);
        
        
        gap: 8px;
        gap: 8px;
        font-size: 12px;
        font-size: 12px;
        align-items: center;
        align-items: center;
    }
    }


    .footer-nav a {
    .footer-nav a {
        font-size: 12px;
        font-size: 12px;
    }
    }


    .footer-copyright {
    .footer-copyright {
        width: calc(100% - 16px);
        width: calc(100% - 16px);
        
        
        padding: 20px 8px 0;
        padding: 20px 8px 0;
        text-align: center;
        text-align: center;
    }
    }


    .deco-element.deco-orange {
    .deco-element.deco-orange {
        left: calc(32% - 5px);
        left: calc(32% - 5px);
        width: 8px;
        width: 8px;
        height: 8px;
        height: 8px;
    }
    }


    .deco-element.deco-green {
    .deco-element.deco-green {
        left: calc(48% - 3px);
        left: calc(48% - 3px);
        width: 5px;
        width: 5px;
        height: 5px;
        height: 5px;
    }
    }


    .deco-element.deco-pink {
    .deco-element.deco-pink {
        left: calc(52% - 6px);
        left: calc(52% - 6px);
        width: 10px;
        width: 10px;
        height: 10px;
        height: 10px;
    }
    }


    .decorative-circle {
    .decorative-circle {
        width: 80px;
        width: 80px;
        height: 80px;
        height: 80px;
    }
    }
}
}

