/* Contact Section */

.wholesale_section {
    background-color: var(--primary_colour);
    min-height: 600px;
}

/* Card */

.wholesale_section .card {
    height: 475px;
    width: 400px;
    background-color: var(--accent_colour);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.wholesale_section .card h2 {
    color: var(--bg_colour);
}

.wholesale_section .card p {
    color: var(--bg_colour);
    text-align: center;
}

.wholesale_section a {
    color: #ed7035;
    font-weight: 600;
}

.wholesale_section a:hover {
    text-decoration: underline;
}

.wholesale_section .card .portrait {
    height: 200px;
    aspect-ratio: 1;
}

.wholesale_section .card .socials {
    display: flex;
    gap: 20px;
}

.wholesale_section .card .socials img {
    height: 48px;
}

@media only screen and (max-width: 865px) {
    .wholesale_section {
        gap: 40px;
    }

    .wholesale_section .card {
        width: 100%;
        height: auto;
    }

    .wholesale_section .card p {
        font-size: 16px;
    }

    .wholesale_section .card .portrait {
        width: 80%;
        aspect-ratio: 1;
    }

    .wholesale_section .card .socials img {
        height: 36px;
        width: 36px;
    }
}


/* Form */

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea,
form select {
    height: 40px;
    width: 400px;
    background: none;
    border: none;
    font-family: "Karla", sans-serif;
    font-size: 18px;
    background-color: #A3B18A20;
    border-radius: 5px 5px 0 0;
    padding: 5px;
    box-sizing: border-box;
    color: black;

    border-bottom: 2px solid #A3B18A;
}

form textarea {
    height: 100px;
    resize: none;
}

@media only screen and (max-width: 865px) {
    form {
        width: 100%;
        align-items: center;
    }

    form input,
    form textarea,
    form select {
        width: 100%;
    }
}