.map {
    border-top: solid 7rem var(--light-color);
}

.contactsPage {
    margin: 5rem;
    padding-left: 1rem;
    font-family: "Poppins", sans-serif;
    border-left: solid 0.5rem var(--primary-color);
    color: var(--dark-color);
    h2 {
        font-weight: 600;
        font-size: 1rem;
    }
}

.contactPageMother {
    margin: 0 5rem;
}

.contactPageDetails {
    margin: 4rem;
    /*border: red solid 2px;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

.pcontact {
    border-radius: 1rem;
    /*background: #717171;*/
    padding: 1rem;
    transition: ease 0.3s;
}

.pcontact:hover {
    border: solid 0.2rem var(--primary-color);
    transform: scale(105%);
    box-shadow: 0.3rem 0.3rem var(--primary-color);
}

.pContactCaption {
    display: flex;
    flex-direction: row;
    align-items: center;

    h1 {
        margin-left: 1rem;
        color: var(--primary-color);
    }
}

.pContactDescription {
    margin-left: 3.5rem;
}

.inquiryPageMother {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5rem;
    font-family: "Poppins", sans-serif;
    h1 {
        color: var(--primary-color);
    }

    h2 {
        color: var(--dark-color);
        text-align: center;
        width: 70%;
        font-weight: 600;
        font-size: 1rem;
    }
}

.formPage {
    margin: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    /*background: #717171;*/
    width: 70vw;
    box-shadow: 0.5rem 0.5rem var(--primary-color);
    label {
        margin-top: 1rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    input {
        padding: 1rem;
        border-radius: 0.5rem;
        border: solid 0.2rem var(--primary-color);
    }
    #message {
        width: 100%;
    }

    .inqContacts {
        width: 100%;
        display: grid;
        gap: 1rem;
        flex-direction: row;

        .iContact {
            input {
                width: 100%;
            }
            display: flex;
            flex-direction: column;

        }

        .iEmail {
            input {
                width: 100%;
            }
            display: flex;
            flex-direction: column;
        }

    }
}

@media (max-width: 600px) {
    .inquiryPageMother {
        margin: 2rem;
    }

    .contactPageMother {
        margin: 2rem;
    }
    .contactPageDetails {
        margin: 2rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        justify-content: center;
    }
}