#main {
    padding: 0;
    margin: 0;
}

#main-content {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 72rem;
}

.header__image {
    background-color: #284251;
    display: none;
    height: 20vw;
    margin-bottom: 2rem;
    width: 100%;
}

@media (min-width: 64rem) {
    .header__image {
        display: flex;
    }
}

.content h1 {
    margin: 1rem 0 0 0;
    display: flex;
}

@media (min-width: 64em) {
    .content h1 {
        display: none;
    }
}

.content {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.button--blue {
    background-color: #2B6CB0;
    border-radius: 0.5rem;
    color: white;
    display: inline-block;
    font-size: 112.5%;
    font-weight: 500;
    margin: 0 1rem 1rem 0;
    padding: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: fit-content;
}

.button--blue:hover, .button--blue:focus {
    background-color: #3182ce;
}

.button--blue svg {
    display: none;
}

.reconnect-steps {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 1rem;
}

@media (min-width: 64em) {
    .reconnect-steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

.reconnect-steps__lead {
    text-align: center;
}

.reconnect-steps__step {
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 0 0 0.25rem 0.25rem;
    display: flex;
    flex-direction: column;
}

.reconnect-steps__header {
    align-items: center;
    background-color: #2B6CB0;
    border-radius: 0.25rem 0.25rem 0 0;
    color: white;
    display: flex;
    height: 4rem;
    padding: 1rem;
}

.reconnect-steps__number {
    background-color: white;
    border-radius: 100%;
    color: #006A99;
    font-size: 175%;
    font-weight: bold;
    min-height: 2rem;
    text-align: center;
    min-width: 2.15rem;
}

.reconnect-steps__title {
    font-size: 112.5%;
    font-weight: bold;
    margin-left: 1rem;
}

.reconnect-steps__description {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.5rem;
}

.reconnect-steps__description p {
    padding-bottom: 1rem;
}

.reconnect-steps__cta {
    margin: auto auto 0 auto;
}

.reconnect-steps__cta svg {
    display: none;
}

.reconnect-dates {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    list-style: none;
    margin: 1rem auto;
    padding: 0.5rem;
    width: 80%;
}

@media (min-width: 48rem) {
    .reconnect-dates {

        grid-template-columns: repeat(4, 4fr);
    }
}

.reconnect-dates__date {
    background-color: #eee;
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    margin: 0.25rem;
    padding: 0.5rem;
}

@media (min-width: 48rem) {
    .reconnect-dates__date {
        margin: 0 0.25rem;
    }
}

.contact__container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 48rem) {
    .contact__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__card {
    background-color: #EDF2F7;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.contact__image {
    background-color: #718096;
    background-position: top center;
    background-size: cover;
    height: 18rem;
}

.contact__information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    width: 100%;
}

.contact__information--wrap {
    display: flex;
}

.contact__information--item {
    padding: 0.25rem;
}

.contact__information--name {
    font-size: larger;
    font-weight: bold;
}

.contact__information--email, .contact__information--number {
    text-align: right;
}

.contact__information--number a svg {
    display: none;
}

.contact__description {
    padding: 0 1rem 1rem 1rem;
}

