.contactUsPage {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    margin: 0;
}

.formSection {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: var(--darkBackColor);
    overflow: auto;
}

.formSection::-webkit-scrollbar {
    display: none;
}

.addressSection {
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--backColor);
}

.formHeader {
    color: var(--darkGray);
    font-family: "Swiss 721", sans-serif;
    margin-bottom: 20px;
}

.form {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 200px auto;
}

.formInput {
    border: solid var(--ultraLightGray) 1px;
    border-bottom: none;
    background-color: white;
    width: 100%;
    height: 50px;
    outline: none;
    padding: 0 15px;
}

.formInput::placeholder {
    color: var(--lightGray);
}

#firstInput {
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}

#lastInput {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    margin-bottom: 30px;
    border-bottom: solid var(--ultraLightGray) 1px !important;
}

.messageInput {
    height: 200px;
    width: 100%;
    border: solid var(--ultraLightGray) 1px;
    background-color: white;
    border-radius: 7px;
    margin-bottom: 0;
    outline: none;
    padding: 15px 15px;
}


.messageInput::placeholder {
    color: var(--lightGray);

}

.formBtns {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
}

.submitFormBtn {
    border: solid #242526 2px;
    border-radius: 7px;
    background: #242526;
    height: 40px;
    width: 100px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    font-family: "Swiss 721", sans-serif !important;
    transition: 0.3s ease;
    margin-top: 30px;
    outline: none;
}

.submitFormBtn:hover {
    cursor: pointer;
    border: solid white 3px;
    background-color: white;
    color: black;
}

/*.attachmentBtn {*/
/*    color: var(--darkGreen);*/
/*    font-size: 13px;*/
/*    font-weight: 500;*/
/*    font-family: "Swiss 721", sans-serif !important;*/
/*    transition: 0.1s;*/
/*    margin-top: 40px;*/
/*}*/

/*.attachmentBtn:hover {*/
/*    cursor: pointer;*/
/*    color: var(--green);*/
/*}*/

.telephoneDetail {
    margin-bottom: 100px;
}

.telephone {
    color: var(--lightGray);
    font-size: 18px;
    font-family: "Swiss 721", sans-serif;
    margin-bottom: 15px;
    margin-right: 2px;
}

.email {
    font-family: "Swiss 721", sans-serif;
    color: var(--lightGray);
    font-size: 18px;
    letter-spacing: 1px;
    transition: 0.2s ease;
}

.email:hover {
    color: var(--green);
    cursor: pointer;
}

.address {
    position: absolute;
    font-size: 15px;
    color: var(--lightGray);
    bottom: 40px;
    justify-self: flex-end;
    text-align: center;
}

.address:hover {
    color: var(--green);
    cursor: pointer;
}

input {
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

textarea {
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

@media only screen and (max-width: 1024px) {
    .contactUsPage {
        flex-direction: column;
        height: 200vh;
    }

    .form {
        margin-top: 150px;
    }
}