.contact-us {
    margin-top: 100px;
}

.contact-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: stretch;
}

.contact-us-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding-bottom: 4rem;
}

.contact-us-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-content {
    padding: 4rem 4rem 0 4rem;
    margin-bottom: 4rem;
    border-left: 1px solid #2b2b2b;
}

.contact-us-content h3 {
    margin-bottom: .5em;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    color: #363636;
}

.contact-us-content p {
    margin-bottom: 2rem;
    font-size: 16px;
    line-height: 1.6;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
}

.contact-us-form form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
}

.contact-us-form label {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
}

.contact-us-form label.form-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
}

.contact-us-form label input[type="text"],
.contact-us-form label input[type="email"],
.contact-us-form label textarea {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    border: 1px solid #818a91;
    background-color: #fff;
    color: #373a3c;
    vertical-align: middle;
    flex-grow: 1;
    z-index: 10;
    min-height: 40px;
    padding: 10px 12px;
}

.contact-us-form label input[type="checkbox"] {
    max-width: max-content;
    border: 1px solid #818a91;
    background-color: #fff;
    color: #373a3c;
    vertical-align: middle;
    flex-grow: 1;
    z-index: 10;
    min-height: 40px;
    padding: 10px 12px;
}

.contact-us-form button {
    margin-bottom: 32px;
    padding-top: 6px;
    padding-right: 14px;
    padding-bottom: 6px;
    padding-left: 14px;
    color: #fff;
    border-radius: 4px;
    border-width: 2px 2px 2px 2px;
    background: #94949c;
    border-color: #d2232a;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 700;
    cursor: pointer;
    text-shadow: none;
    transition: all .3s ease-in-out;
}

.contact-us-form button:hover {
    background: #4a5568;
}

@media (max-width:768px){
    .contact-us-inner {
        display: flex;
    }
    .contact-us-image{
        display: none;
    }

    .contact-us-content{
        border-left: none;
    }

    .contact-us-content {
        padding: 1rem 1rem 0 1rem;
    }
}