.hero {
    margin-bottom: 2rem;
    background: linear-gradient(290.4deg, #fdb500 39.25%, #ebb224 56.93%);
    border-radius: 10px;
    padding: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    @media (max-width: 768px) {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .details {
        color: #fff;
        h1 {
            font-weight: normal;
            font-size: 2.25rem;
            margin-bottom: 1rem;
            @media (max-width: 768px) {
                font-size: 1.75rem;
            }
        }
        p {
            font-size: 0.75rem;
        }
    }
    img {
        position: relative;
        top: 60px;
        width: 100%;
        object-fit: scale-down;
        @media (max-width: 768px) {
            top: 30px;
        }
    }

    a {
        cursor: pointer;
        transition: all 0.3s ease;
        &:hover {
            color: var(--gray-text-color);
            text-decoration: underline;

            transition: all 0.3s ease;
        }
    }
    .btn {
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 200px;
        color: var(--text-color);
        padding: 0.55rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 0.75rem;
        background: var(--background-color);
        box-shadow: 4px 5px 4.9px rgba(0, 0, 0, 0.25);
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover {
            color: var(--background-color);
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 4px 7px 6px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        svg {
            width: 16px;
        }
    }
}

.sub-hero {
    color: #fff;

    .item {
        padding: 1rem;
        border-radius: 10px;
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }
    .item-1 {
        background-image: url("/assets/img/bg1.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .item-2 {
        background-image: url("/assets/img/bg2.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .item-3 {
        background-image: url("/assets/img/bg3.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
