.section.hero-section > .container{
    display: flex;
    gap: 8rem;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.hero-content{
    display: flex;
    flex-direction: column;
}
.hero-content .hero-subtext p{
    display: inline;
    font-size: 1.25rem;
    font-weight: 500;
}
.hero-content .hero-heading{
    font-family: "Bebas Neue", sans-serif;
    font-size: 5rem;
    line-height: 5.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    
}

.hero-image img{
    width: 500px;
    max-width: 500px;
}
.hero-content .hero-heading{
    color: var(--primary);
    width: fit-content;
}

.hero-content .hero-heading.highlighted{
    margin-bottom: 10px;
    color: var(--accent);
    position: relative;
    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.4rem;
        width: 100%;
        height: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-image: url("../assets/hero-line.svg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.hero-content .cta{
    margin-top: 20px;
    width: fit-content;
}


section > .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}


.section.contact-section-upper{
    display: flex;
    flex-direction: column;
    padding: 60px 0;

    & p,h2,h1,h3,h4,span,a,label,input,textarea{
        color: var(--text-light);
    }
}
.section.contact-section-upper .container{
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    padding: 60px 0;

    & p,h2,h1,h3,h4,span,a,label,input,textarea{
        color: var(--text-light);
    }
}

.upper-div-contact{
    background-color: var(--primary);
}