.hero {
    margin-bottom: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    @media (max-width: 768px) {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .details {
        color: #1f1f1f;
        h1 {
            font-weight: bolder;
            font-size: 1.75rem;
            margin-bottom: 1rem;
            @media (max-width: 768px) {
                font-size: 1.75rem;
            }
        }
        p {
            font-size: 0.75rem;
            @media (max-width: 768px) {
                font-size: 0.9rem;
            }
        }
    }
    img {
        position: relative;

        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: 120px;
        color: #fff;
        padding: 0.75rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 0.75rem;
        background: var(--text-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;
        }
    }
}
