.contact-header {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-header h1 {
    text-align: center;
    font-size: 3.8vw;
    font-family: "HKGrotesk";
    font-weight: 300;
    max-width: 20ch;
    margin: 0;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "HKGrotesk";
}

.contact-methods {
    font-size: 1.3vw;
}

.contact-methods p {
    margin-top: 0;
}

.contact-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    margin-top: 10vh;
}

.contact-box {
    border: 2px solid rgb(122, 122, 122);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "HKGrotesk";
}

.contact-box a:hover,
.contact-box-mobile a:hover {
    cursor: default;
    background-color: black;
    color: white;
}

.contact-box h3,
.contact-box-mobile h3 {
    font-weight: 300;
}

.contact-box button,
.contact-box-mobile button {
    background-color: black;
    color: white;
    border: 2px solid white;
}

.contact-boxes-mobile {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.contact-box-mobile {
    border: 2px solid rgb(122, 122, 122);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: auto;
}

.contact-box button:hover {
    cursor: pointer;
    background-color: white;
    color: black;
}

.social-contact-boxes-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social-contact-boxes-mobile .contact-box-mobile {
    align-items: center;
    justify-content: center;
}

@media (max-width:350px) {
    .contact-wrapper {
        max-width: 100%;
    }

    .contact-header {
        margin-top: 5vh;
    }

    .contact-header h1 {
        font-size: 9vw;
        max-width: 20ch;
        margin: 0;
    }

    .contact-methods {
        font-size: 1.8vw;
    }

    .contact-methods p {
        margin-top: 1vh;
        font-size: 3vw;
    }

    .contact-boxes-mobile {
        gap: 2vw;
        margin-top: 5vh;
        width: 90vw;
        align-items: center;
    }

    .contact-box-mobile {
        padding: 3vh 3vw;
        height: 7vh;
        gap: 10vw;
        width: 91vw;
    }

    .contact-box-mobile a {
        font-size: 11vw;
    }

    .contact-box-mobile p {
        font-size: 4vw;
        margin: 0;
    }

    .contact-box-mobile button {
        font-size: 1.5vw;
        padding: 1vh 3vw;
    }

    .social-contact-boxes-mobile {
        width: 100%;
        gap: 5vw;
        height: auto;
    }
}

@media (min-width: 350px) and (max-width: 750px) {
    .contact-wrapper {
        max-width: 100%;
    }

    .contact-header {
        margin-top: 5vh;
    }

    .contact-header h1 {
        font-size: 7vw;
        max-width: 20ch;
        margin: 0;
    }

    .contact-methods {
        font-size: 3vw;
    }

    .contact-methods p {
        margin-top: 0;
    }

    .contact-boxes-mobile {
        gap: 2vw;
        margin-top: 5vh;
        width: 90vw;
        align-items: center;
    }

    .contact-box-mobile {
        padding: 3vh 3vw;
        height: 8vh;
        gap: 10vw;
        width: 91vw;
    }

    .contact-box-mobile a {
        font-size: 9vw;
    }

    .contact-box-mobile p {
        font-size: 3vw;
        margin: 0;
    }

    .contact-box-mobile button {
        font-size: 1.5vw;
        padding: 1vh 3vw;
    }

    .social-contact-boxes-mobile {
        width: 100%;
        gap: 7vw;
        height: auto;
    }
}

@media (min-width: 750px) and (max-width: 1000px) {
    .contact-wrapper {
        max-width: 100%;
    }

    .contact-header {
        margin-top: 5vh;
    }

    .contact-header h1 {
        font-size: 4.5vw;
        max-width: 20ch;
        margin: 0;
    }

    .contact-methods {
        font-size: 1.8vw;
    }

    .contact-methods p {
        margin-top: 0;
    }

    .contact-boxes-mobile {
        gap: 2vw;
        margin-top: 5vh;
        width: 90vw;
        align-items: center;
    }

    .contact-box-mobile {
        padding: 3vh 3vw;
        height: 10vh;
        gap: 10vw;
        width: 91vw;
    }

    .contact-box-mobile a {
        font-size: 9vw;
    }

    .contact-box-mobile p {
        font-size: 3vw;
        margin: 0;
    }

    .contact-box-mobile button {
        font-size: 1.5vw;
        padding: 1vh 3vw;
    }

    .social-contact-boxes-mobile {
        width: 100%;
        gap: 5vw;
        height: auto;
    }
}

@media (min-width: 1000px) {
    .contact-wrapper {
        max-width: 80vw;
    }

    .contact-header {
        margin-top: 5vh;
    }

    .contact-header h1 {
        font-size: 3.8vw;
        max-width: 20ch;
        margin: 0;
    }

    .contact-methods {
        font-size: 1.3vw;
    }

    .contact-methods p {
        margin-top: 0;
    }

    .contact-boxes {
        gap: 3vw;
        margin-top: 10vh;
    }

    .contact-box {
        padding: 3vh 3vw;
        width: 15vw;
        height: auto;
        gap: 30px;
    }

    .contact-box a {
        font-size: 4.8vw;
    }

    .contact-box h3 {
        font-size: 1.8vw;
        margin: 0;
    }

    .contact-box button {
        font-size: 1.1vw;
        padding: 1.5vh 3vw;
    }
}