.buttonReplay i{
    font-size: 1.3em !important;
    margin: -1rem 0;
}
body.hasHover .buttonReplay:hover i{
    transform: rotate(-90deg);
}

main[data-page-url="contact-us"] .rightSide{
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.contactUsPersonas{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-evenly;
}
.contactUsPersonas > div{
    text-align: center;
    width: 20rem;
}
.contactUsPersonas .headshot img{
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.contactUsPersonas .headshot{
    overflow: hidden;
    border-radius: 50%;
    /* width: min(200px, 22vh); */
    width: 7vw;
    /* height: min(200px, 22vh); */
    min-width: 100px;
    height: auto;
    margin: 0 auto 2rem auto;
    box-shadow: 0 0 0 0.3rem #ffffff40;
    transition: box-shadow 0.3s ease-in-out;
    margin-top: 10px;
}

body.hasHover .contactUsPersonas > div:hover .headshot{
    box-shadow: 0 0 0 0.3rem #ffffff80 !important;
}
body.hasHover .contactUsPersonas > div:hover .headshot img{
    transform: scale(1.05);
}
.contactUsPersonas h4{
    margin-bottom: 0.5em;
    text-transform: uppercase;
}


.contactsLogo{
    width: 150px;
    margin-bottom: 2rem;
}

.contactsAddress{
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.contactsAddress > div, .contactCard>div{
    padding: 0.2rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.contactsAddress i,
.contactCard i{
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
i.website{
    background-image: url("/wp-content/uploads/contact-us-icons/website.svg");
}
i.location{
    background-image: url("/wp-content/uploads/contact-us-icons/location.svg");
}
i.email{
    background-image: url("/wp-content/uploads/contact-us-icons/email.svg");
}
i.phone{
    background-image: url("/wp-content/uploads/contact-us-icons/phone.svg");
}

.contactCard{
    background-color: var(--colorPrimaryDeepBlue);
    padding: 1rem 2rem;
    border-radius: 1rem;
    border-bottom: solid 4px var(--colorPrimaryBlueLight);
    margin-top: 1rem;
}

.contactCard > div{
    justify-content: center;
}
.leftSide {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.leftSide >div:last-child{
    position: absolute;
    bottom: 2rem;
}

