.contact-page-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 76px;
    margin: 0 160px;
    padding: 80px 0;
}

.page-wrapper-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-wrapper-header p{
    font-size: var(--blurb-size);
    font-weight: 300;
    font-family: var(--font-henry);
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.contact-body-wrapper{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.contact-card{
    background: #DFE3E8;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 40px;
    gap: 40px;
}

.contact-card p{
    font-size: var(--blurb-size);
    font-weight: 300;
    font-family: var(--font-henry);
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.email-section a,
.contact-numbers a{
    font-size: var(--blurb-size);
    font-weight: 300;
    font-family: var(--font-henry);
    max-width: 100%;
    width: 100%;
    text-align: left;
    text-decoration:  none;
}

.contact-card ul li{
    list-style-type: none;
}

.contact-icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}


.address-section,
.contact-numbers,
.email-section,
.social-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: centers;
    gap: 20px;
}

.map-btn{
    width: 190px;
    display: flex;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: var(--color-primary-white);
    font-family: var(--font-henry);
    background-color: var(--color-primary-blue);
    text-decoration: none;
    height: 40px;
}

.map-btn:hover{
    background-color: var(--color-secondary-blue);
}

.form-wrapper-contact{
    display: flex;
    flex-direction: column;
    gap: 46px;
    width: 100%;
    padding: 40px;
}

.form-group textarea{
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ECEBEA;
    border-radius: 25px;
    border: none;
    overflow: hidden;
    height: 118px;
    padding: 20px;
}

.contact-form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

