.contacts {
    margin: 3em 0;
    position: relative;
}

.contacts:first-of-type::before {
    content: "";
    position: absolute;
    width: 100%;
    height: .0625rem;
    background: #aaa;
    top: -3em;
}

.contacts::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .0625rem;
    background: #aaa;
    top: -3em;
}

.contacts:last-of-type::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0rem;
    background: #aaa;
    top: -1.5em;
}

.email {
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    margin: 1em 0;
}

.email::after {
    content: "";
    font-weight: 400;
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 100%;
}

.botts::after {
    content: "coordinator.kacstudio@gmail.com";
}

.ekac::after {
    content: "ekac@saic.edu"
}

main {
    max-width: 50rem;
}

.newsletter {
    width: 100%;
    max-width: 40rem;
}


.form-group {
    font-size: clamp(1rem, 1rem + 2vw, 1.5rem);
    width: 100%;
    margin: .75em 0;
}

label {
    display: block;
    margin-bottom: .125em;
}

input {
    font-size: 1.25rem;
    font-family: var(--font-primary-400);
    display: inline-block;
    width: 100%;
    padding: .25em;
}

.newsletter button {
    width: 100%;
    max-width: 30rem;
    text-align: center;
    padding: 1em;
    font-size: clamp(1rem, .75rem + 2vw, 1.125rem);
    font-family: var(--font-primary-400);
    border-radius: .25em;
    border: 1px solid #333;
    margin-top: 1em;
    color: var(--color-fg);
}

.newsletter button:hover {
    cursor: pointer;
}