/* contact */

.contactWrapper {
    height: auto;
    width: 100%;
    padding: 60px 40px;
    display: flex;
    background: #F0EEF3;
}

.contactInfoWrapper {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contactInfoSocial {
    margin-top: 30px;
}

.contactInfoSocial a {
    margin-right: 10px;
}

.contactInfoWrapper h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 64px;
    text-align: center;
    text-transform: uppercase;
    color: var(--darkColor);
}

.contactInfoWrapper p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    color: #626262;
}

.contactFormWrapper {
    width: 45%;
    padding-left: 40px;
}

.contactFormWrapper form {
    display: flex;
    flex-direction: column;
}

.inputParent {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.inputParent label {
    margin-bottom: 8px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #262626;
}

.inputParent input {
    font-family: Arial, Helvetica, sans-serif;
    height: 45px;
    padding: 5px 12px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    outline: #571DB9;
}

.inputParent textarea {
    font-family: Arial, Helvetica, sans-serif;
    height: 150px;
    padding: 7px 12px;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 5px;
    outline: #571DB9;
    resize: none;
}

.inputParent input::placeholder,
.inputParent textarea::placeholder {
    font-family: Arial, Helvetica, sans-serif;
}

.contactFormWrapper form button {
    margin-top: 30px;
    padding: 5px 10px;
    width: 160px;
    height: auto;
    background: var(--mainYellow);
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    line-height: 23px;
    color: #FFFFFF;
    border: 0;
    outline: none;
    font-weight: 700;
    transition: background .15s ease-in-out;
    cursor: pointer;
}

.contactFormWrapper form button:hover {
    background: var(--hoverYellow);
}

.inputParent p {
    color: #DA3E3E;
    margin-top: 3px;
    margin-left: 5px;
    font-size: 14px;
    display: none;
}


/* media */

@media (max-width: 868px) {
    .contactWrapper {
        flex-direction: column;
    }
    .contactInfoWrapper,
    .contactFormWrapper {
        width: 100%;
        padding: 0;
    }
    .contactInfoWrapper {
        margin-bottom: 50px;
    }

    .contactWrapper {
        padding: 40px 15px;
    }
}