/* hero */ .hero { display: flex; flex-direction: row; justify-content: space-between; width: 100%; margin-bottom: 6em; gap: 3em; } .color-effect { background: linear-gradient(120deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-text { display: flex; flex-direction: column; justify-content: center; gap: 3em; width: 50%; } .hero-cta { display: flex; flex-direction: row; gap: 1em; flex-wrap: wrap; } .hero-scroll { display: flex; flex-direction: row; gap: 1em; align-items: center; font-size: 16px; } .mondrian { max-width: 100%; } .hero-img { width: 45%; display: flex; flex-direction: column; align-items: flex-end; } #mondrian-info-icon { transition: all ease 0.3s; position: absolute; } #mondrian-info-icon:hover { opacity: 50%; transition: all ease 0.3s; }