/* HERO */
.section-hero {
	width: 100%;
    height: 789px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 90px 0;
    text-align: center;
    display: flex;
    align-items: center;
}
.section-hero .hero_content {
	max-width: max-content;
    margin: auto;
}
.section-hero h2 {
	font-family: var(--font-science);
    font-size: clamp(1.5rem, 27vw, 9.063rem);
    line-height: clamp(1.5rem, 20vw, 6.125rem);
}
.section-hero .sub_title {
	font-family: var(--font-south-assign);
    color: var(--color-gold-light);
    font-size: clamp(1.5rem, 10vw, 3.75rem);
    line-height: clamp(1.5rem, 10vw, 2.75rem);
    text-align: center;
    transform: rotate(-5deg);
    position: relative;
    right: -4%;
    top: 25px;
}
.section-hero .box_text {
	max-width: 488px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 80px;
    margin-bottom: 60px;
}
.section-hero .box_text p {
	font-size: clamp(1rem, 8vw, 1.375rem);
    line-height: clamp(1rem, 8vw, 1.875rem);
}
.section-hero .cta_grid {
  width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.section-hero .cta_grid .cta-2 {
  max-width: max-content;
}

.section-hero::before {
	content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #B99468;
    background: linear-gradient(0deg, rgba(185, 148, 104, 1) 0%, rgba(185, 148, 104, 0) 100%);
}

@media (max-width: 768px) {
    .section-hero h2 {
        max-width: 90%;
        margin: auto;
    }
    .section-hero .cta_grid {
        max-width: 75%;
        margin: auto;
    }
    .section-hero .cta_grid .cta-2 {
        max-width: 100%;
        width: 100%;
        font-size: 1rem;
        padding: 14px 20px;
    }    
}
