.contact-us-page {
    margin-top: 105px;
}
.contact-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-right {
    width: 60%;
}
.contact-left {
    width: 40%;
}
.contact-left .contact-us-pic img {
    width: 100%;
    height: auto;
}
.contact-right h1 {
    font-family: Pinar, sans-serif;
    color: #8666ce;
}
.contact-row {
    margin-top: 35px;
}
.contact-from .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-from form {
    width: 90%;
    margin-top: 25px;
}
.contact-from input,
.contact-from textarea,
.contact-from select,
.contact-from button
{
    font-family: inherit;
    width: 100%;
    margin: 5px;
    padding: 10px 5px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px dashed #ccc;
}
.contact-from select {
    cursor: pointer;
}
.contact-from button {
    width: 200px;
    background-color: mediumseagreen;
    color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 0.2rem;
    padding: 5px 10px;
    border: 1px solid mediumseagreen;
    font-weight: 500;
    font-size: 14px;
    justify-content: center;
    transition: all 0.3s;
}
.contact-from button:hover {
    opacity: 0.8;
}