.hero {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background-color: var(--color-white);
    background-image: url('../../../images/home/hero-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1312px;
    margin: 0 auto;
	padding: 0 2rem;
    width: 100%;
}

.hero-left {
    flex: 1;
	min-width: 550px;
	padding: 30px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2.4px;
    color: var(--color-black);
    margin-bottom: 24px;
    text-align: left;
}

.hero-title .highlight {
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 4px 12px;
    display: inline-block;
    margin-right: 8px;
}

.hero-title .underline {
	text-decoration: underline;
	text-decoration-color: var(--color-pink);
	text-underline-offset: 4px;
}


.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-right img {
    max-width: 75%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
	.hero-right img {
		max-width: 100%;
	}


		.hero-container {
        gap: 40px;
    }
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 950px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-left {
        min-width: unset;
        width: 100%;
    }

    .hero-right {
        min-width: unset;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
        text-align: left;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}