* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}
main {
    border-bottom: 0;
    background-color: #e9e9e9;
    background-image: url("../images/wholesale.jpeg");
    min-height: 100dvh;
}

.contact-form {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    flex: 1;
}
.form-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-block: 0.75rem;
    flex-wrap: wrap;
}
.form-input {
    all: unset;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.label {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.input {
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 2px solid black;
    cursor: pointer;
}
.input:focus,
.textarea-input:focus {
    outline: none;
    border: 2px solid olivedrab;
}

.textarea-input {
    min-height: 150px;
    padding: 1rem;
    border-radius: 0.25rem;
}

.link > a {
    color: #000;
    font-size: 1.5rem;
}
.send-btn {
    padding: 0.5rem;
    color: #000;
    font-size: 1.25rem;
    font-weight: 400;
    cursor: pointer;
    min-width: 150px;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #fff;
}
.space-between {
    justify-content: space-between;
    align-items: center;
}
.contact-page {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 5vw;
    padding-top: 0;
}
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
    border: 4px solid black;
    max-width: 50vw;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}

.detail-section {
    padding: 1rem;
    background-color: #fff;
    flex: 1;
}

.detail-section:last-child {
    border-bottom: 0;
}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
    transform: translateY(8px);
}
.map-link {
    all: unset;
    cursor: pointer;
}

.text {
    font-size: 1.15rem;
    font-weight: 400;
    margin-block: 0.5rem;
}
@media screen and (max-width: 768px) {
    .contact-page {
        padding: 5vw;
    }
    .contact-details {
        max-width: 100%;
    }
}
