.contact-page .hero-header h1 {
    font-size: 60px;
    margin-top: 30px;
}

.contact-page .hero-copy p {
    margin: 15px auto 20px auto;
    width: 75%;
}

.contact-cards {
    width: 100%;
    margin-bottom: 60px;
}

.contact-cards .container {
    display: flex;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.075);
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.contact-card p {
    text-align: left;
    margin-bottom: 10px;
}

.contact-card p {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contact-card span {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.contact-card .hero-callout {
    margin: 40px 0 0 0;
}

.contact-items {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.c-item {
    padding: 40px;
    flex: 1;
}

.c-item p {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.c-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.c-item a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.free-key-cta {
    margin-top: 20px;
    margin-bottom: 60px;
}

.free-key-cta p {
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    width: max-content;
    background: rgba(255, 255, 255, 0.125);
    padding: 8px 16px;
    border-radius: 20px;
}

.free-key-cta p i {
    color: aquamarine;
}

.free-key-cta p a {
    font-weight: 500;
    color: var(--color-brand-bg);
}


/* divider */


.custom-project h3 {
    position: relative;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

.custom-project h3:after {
    content: "";
    position: absolute;
    top: 150%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.125);
}



.project-content {
    margin: 50px 0;
    display: flex;
    gap: 40px;
}

.project-content > div {
    flex: 1;
}

.project-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.project-content p {
    margin-top: 28px;
    text-align: left;
    font-size: 16px;
}

.project-content .hero-callout {
    margin: 30px 0;
}

.team-img img{
    margin-left: 65px;
    padding: 20px;
    width: 420px;
    height: auto;
}

.hero-header > h1 {
    height: 130px;
}
/* divider */

@media(max-width: 800px) {    
    .contact-page .hero-copy p {
        width: 100%;
    }

    .contact-cards .container {
        flex-direction: column;
    }

    .contact-items {
        flex-direction: column;
    }
    .project-content {
        flex-direction: column;
    }

    .contact-page .hero-header h1 {
        font-size: 50px;
    }

    .hero-header > h1 {
        height: 220px;
    }

    .team-img img{
        margin-left: 0px;
        width: 340px;
        height: auto;
    }

    .project-content{
        align-items: center;
    }

    .free-key-cta p {
        font-size: 3vw;
    }

    .contact-cards{
        margin-bottom: 0px;
    }

    .free-key-cta p {
        text-align: center;
        width: 90%;
    }
}