﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

a {
    text-decoration: none;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    position: relative;
    width: 150px;
}

.nav-logo .logo {
    height: 100%;
    width: 100%;
    inset: 0px;
    object-fit: contain;
    color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #22c55e;
}

.nav-link.active-tab {
    color: #22c55e;
}

.dropdown-menu {
    border-radius: 8px;
    min-width: 220px;
    max-height: 300px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 12px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: #22c55e;
    background-color: #f7fafc;
}

.dropdown-item.active-tab {
    color: #22c55e;
    font-weight: 600;
}

.dropdown-arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow svg {
    transform: rotate(180deg);
}

.nav-search {
    position: relative;
}

.search-container {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 8px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.search-container:focus-within {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.search-input {
    border: none;
    background: transparent;
    padding: 6px 8px;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #4a5568;
}

.search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button svg {
    color: #718096;
    transition: color 0.2s ease;
}

.search-button:hover svg {
    color: #22c55e;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
    width: 24px;
    height: 24px;
}

.nav-toggle:hover {
    background-color: #f7fafc;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: transform 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-drawer.open {
    transform: translateX(-280px);
    display: block;
}

.drawer-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.drawer-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    background: white;
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 16px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-title {
    font-weight: 500;
    font-size: 18px;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    padding: 12px 24px;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

.catMenu-item {
    padding: 3px 24px;
    transition: background-color 0.3s;
}


.menu-item:hover {
    background-color: #f5f5f5;
}

.menu-item a {
    color: #333;
    text-decoration: none;
    display: block;
}

.menu-item a.active-tab {
    color: #22c55e;
    font-weight: 600;
}

.drawer-menu .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 16px;
    list-style: none;
    /* background-color: #f9f9f9; */
    margin: 0;
    border-radius: 0 0 8px 8px;
}

.drawer-menu .dropdown-menu.show {
    max-height: 100%;
    padding: 12px 16px;
    display: block;
}

.drawer-menu .dropdown-item {
    padding: 10px 0px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
}

.drawer-menu .dropdown-item:hover {
    background-color: #f0f0f0;
    color: #22c55e;
}

.drawer-menu .dropdown-item.active-tab {
    color: #22c55e;
    font-weight: 600;
}

.drawer-menu .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    /* font-weight: 500; */
}

.drawer-menu .dropdown-toggle.active {
    color: #22c55e;
}

.nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 12px 0;
}

.nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    display: block;
}

.nav-item.dropdown .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-item.dropdown .dropdown-item:hover {
    color: #22c55e;
    background-color: #f7fafc;
}

.drawer-menu .dropdown-arrow svg {
    transition: transform 0.3s ease;
}

.drawer-menu .dropdown-toggle.active .dropdown-arrow svg {
    transform: rotate(180deg);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.drawer-overlay.open {
    display: block;
}

.container {
    max-width: 1400px;
/*    max-width: 1550px;*/
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.hero-section {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 420px;
    background: #222;
    display: flex;
    align-items: flex-end;
}

.hero-background-image {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    color: transparent;
}

.hero-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 36px 40px 28px;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
}

.hero-meta {
    font-size: 16px;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgb(136, 136, 136)
}

.section-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1a202c;
}

.essential-cards-container {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.essential-card-horizontal {
    min-width: 400px;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(60, 60, 130, .1);
    background: linear-gradient(135deg, #f8fafc 60%, #e6eaff);
    transition: all .2s ease;
    padding: 12px;
    margin: 0;
    position: relative;
    display: flex;
    align-items: stretch;
}

.essential-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.essential-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
    padding: 20px 18px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .2s;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.essential-card-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.essential-card-content,
.list-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.essential-card-title,
.list-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.left-column {
    width: 100%;
}

.right-column {
    flex: 1;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: white;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
    gap: 16px;
}

.list-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.list-thumb {
    width: 80px;
    height: 80px;
    position: relative;
    flex-shrink: 0;
}

.list-thumb img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    object-fit: cover;
    color: transparent;
    border-radius: 10px;
}

.tag {
    display: inline-block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #e6eaff;
    color: #4a5cff;
    padding: 4px 12px;
    border-radius: 20px;
}

.meta {
    font-size: 12px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.grid-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 12px;
    color: inherit;
    /* min-height: 340px; */
/*    max-width: 380px;*/
    transition: all 0.2s ease;
    padding: 12px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
}

.grid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grid-thumb {
    width: 100%;
    height: 180px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.grid-thumb img {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0px;
    object-fit: cover;
    color: transparent;
}

.grid-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.highlight-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.email-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: white;
    color: #333;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #8b5cf6;
}

.email-input::placeholder {
    color: #a0aec0;
}

.subscribe-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.footer-container {
    margin-top: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f0ff 50%, #fff0f8 100%);
}

.footer-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.footer-animations {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.animation-dot {
    position: absolute;
    border-radius: 50%;
    background-color: #d8b4fe;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.dot-1 {
    top: 40px;
    left: 25%;
    width: 8px;
    height: 8px;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    background-color: #d8b4fe;
}

.dot-2 {
    top: 80px;
    right: 33%;
    width: 8px;
    height: 8px;
    animation: pulse 1s ease-in-out infinite;
    background-color: #93c5fd;
}

.dot-3 {
    bottom: 80px;
    left: 50%;
    width: 12px;
    height: 12px;
    animation: bounce 1s ease-in-out infinite;
    background-color: #f9a8d4;
}

.dot-4 {
    bottom: 128px;
    right: 25%;
    width: 8px;
    height: 8px;
    animation-name: pulse;
    animation-delay: 0.5s;
    background-color: #fcd34d;
}


@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30%);
    }
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer-title {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-subtitle {
    color: #4b5563;
    font-size: 1.125rem;
}

.footer-form {
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.footer-form .email-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-form .email-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.footer-form .email-input::placeholder {
    color: #6b7280;
}

.footer-form .subscribe-button {
    padding: 12px 24px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-form .subscribe-button:hover {
    background: linear-gradient(90deg, #7c3aed, #db2777);
    transform: scale(1.05);
}

.logo-container {
    width: 245px;
    height: 40px;
    position: relative;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-disclaimer {
    color: #4b5563;
    font-size: 0.875rem;
}

.footer-bottom {
/*    border-top: 1px solid #e5e7eb;*/
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #4b5563;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b5cf6;
}

.footer-gradient-line {
    height: 4px;
    background: linear-gradient(90deg, #a78bfa, #f472b6, #fbbf24);
    animation: pulse 2s infinite;
}

@media (min-width: 1024px) {
    .content-grid {
        flex-direction: row;
    }

    .left-column {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-menu {
        gap: 24px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .left-column {
        flex: 1;
    }

    .right-column {
        flex: none;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .nav-container .nav-logo {
        font-size: 100% !important;
    }

    .logo-container {
        width: 372px;
        margin-top: 5px;
    }

    .logo-container .logo{
       font-size:22px !important;
    }

    .main-container {
        line-height: 1.3;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        gap: 12px;
    }

    .mobile-drawer {
        display: block;
    }

    .hero-overlay {
        padding: 24px;
    }

    .hero-image {
        height: 350px;
        border-radius: 12px;
    }

    .container {
        padding: 0 16px;
    }

    .container-col {
        gap: 20px;
        margin: 20px 0;
    }

    .nav-search {
        width: 50%;
    }

    .content-grid {
        gap: 24px;
    }

    .section-container {
        padding: 20px 12px;
        gap: 4px;
    }

    .section-title {
        padding-left: 8px;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .essential-cards-container {
        /* grid-template-columns: 1fr; */
        gap: 12px;
    }

    .essential-card-horizontal {
        padding: 8px;
    }

    .essential-card,
    .list-card {
        width: 100%;
        padding: 12px;
        gap: 12px;
    }

    .highlight-content {
        gap: 4px;
    }

    .highlight-content {
        padding: 10px;
    }

    .essential-card-title,
    .list-title,
    .grid-title {
        font-weight: 500;
    }

    .grid-title {
        font-weight: 600;
    }

    .subscribe-button {
        padding: 16px 24px;
    }

    .footer-inner {
        gap: 16px;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-content {
        padding: 24px 12px;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }
}



@media (max-width: 480px) {
    .main-container {
         line-height: 1.1; 
    }

    .nav-container {
        height: 60px;
    }

    /* logo */
    .logo-container {
        margin-top: 1rem;
    }

    .nav-container .nav-logo {
        font-size: 90% !important;
    }

    .search-container {
        padding: 4px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 8px;
    }

    .container-col {
        gap: 8px;
        margin: 8px 0;
    }

    .hero-overlay {
        padding: 12px;
    }

    .hero-image {
        height: 240px;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-meta {
        font-size: 13px;
    }

    .section-container {
        padding: 8px 4px;
    }

    .tag {
        padding: 0 8px;
    }

    .section-title {
        font-size: 1.3rem;
        padding-left: 8px;
    }

    .essential-card-horizontal {
        min-width: 100%;
        padding: 4px;
    }

    .essential-cards-container {
        grid-auto-flow: row;
        gap: 4px;
    }

    .essential-card,
    .list-card {
        padding: 8px;
        gap: 4px;
    }

    .content-grid {
        gap: 12px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .essential-card-title,
    .list-title {
        font-size: 0.9rem;
    }

    .grid-title {
        font-size: 1rem;
    }

    .grid-card {
        gap: 4px;
        max-width: 100%;
    }

    .footer-inner {
        gap: 12px;
    }

    .footer-form {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

.nav-link,
.nav-search,
.hero-image {
    transition: all 0.3s ease;
}

.nav-search:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 4px;
}

.hero-image {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero-image {
        background-attachment: scroll;
    }
}
