
.project-hero {
    --_first-color: var(--first-color, rgba(32, 90, 165, 0.45));
    --_second-color: var(--second-color, rgba(32, 90, 165, 0));
    
    position: relative;
    background:
		radial-gradient(
			120% 90% at 22% -20%,
			var(--_first-color) 0%,
			var(--_second-color) 60%
		);

	background-repeat: no-repeat;
}

.project-hero::after {
    content: "";
    width: 100%;
    height: 100%;
    inset: -12px;
    position: absolute;
    background: radial-gradient(
		55% 60% at 50% 50%,
		var(--_first-color) 0%,
        var(--_second-color) 55%
	);
	transform: rotate(-45deg);

	transform-origin: 50% -80%;
	pointer-events: none;
}

@media (min-width: 768px) {
    .project-hero {
        background:
            radial-gradient(
                70% 130% at 22% -20%,
                var(--_first-color) 0%,
                var(--_second-color) 60%
            );
    }

    .project-hero::after {
        background: radial-gradient(
            60% 70% at 50% 50%,
            var(--_first-color) 0%,
            var(--_second-color) 55%
        );
        transform-origin: 45% -90%;
    }
}

@media (min-width: 992px) {
    .project-hero {
        background:
            radial-gradient(
                45% 130% at 22% -20%,
                var(--_first-color) 0%,
                var(--_second-color) 60%
            );
    }

    .project-hero::after {
        background: radial-gradient(
            60% 70% at 50% 50%,
            var(--_first-color) 0%,
            var(--_second-color) 55%
        );
        transform-origin: 45% -100%;
    }
}


.project-hero.blue {
    --first-color: rgba(32, 90, 165, 0.45);
    --second-color: rgba(32, 90, 165, 0);
}



.project-hero .section_wrapper {
    display: grid;
    grid-template-rows: auto 1fr; 
    min-height: 0; 
    padding-top: 130px;
}


.project-hero .hero-body {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 0;
}

@media (min-width: 992px) {
    .project-hero .hero-body {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

.project-hero .hero-media {
    min-height: 0;
    height: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}


.project-hero .laptop-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 900px;
}

@media (min-width: 992px) {
    .project-hero .hero-media {
        order: 0;
    }
}

.project-tag {
    padding: 6px 14px;
    line-height: 1;
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid var(--dark-line);
    color: var(--white);
    border-radius: 200px;
}