#contactsH1 {
    width: var(--appWidth);
    text-align: center;
    font-size: 36px;
    color: var(--tinityBlue);
    margin-bottom: 50px;
    
    border-bottom: 2px solid var(--tinityBlue);
    box-shadow: 0px 15px 15px -15px #858585ab;
}
#contactsWrap {
    /* border: 1px solid red; */
    width: var(--appWidth);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#formImg {
    width: 30%;
    height: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
#formImg img {
    width: 80%;
    height: auto;
    display: flex;
    align-self: center;
}
#fFields {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
form#contactForm {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    border: 2px dashed var(--tinityBlue);
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 18px;
}
.formFields {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.formFields > span {
    width: 100%;
    text-align: left;
    padding: 2px 10px;
    font-style: italic;
    font-weight: 700;
    font-size: 15px;
}
.formFields > input, .formFields > textarea {
    width: 100%;
    padding: 4px 7px;
    font-size: 17px;
    color: var(--darkBlue);
    border: 1px solid var(--darkBlue);
    border-radius: 7px;
    margin-bottom: 7px;
}
.formFields > textarea {
    min-height: 160px;
}
#sendMailBtn {
    /* background-color: var(--tinityBlue); */
    border: 2px solid var(--tinityBlue);
    border-bottom: 2px solid var(--tinityBlue);
    box-shadow: -1px 5px 7px 1px #858585ab;
    padding: 6px 24px;
    margin-top: 10px;
    color: var(--tinityBlue);
    border-radius: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
}
#sendMailBtn:hover {
    transform: scale(1.02);
}
#responseMsg {
    width: 100%;
    text-align: center;
}
#contactsInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#contactsInfo img {
    height: 20px;
    width: auto;
     vertical-align: middle;
     margin-right: 5px;
}
#contactsInfo > p {
    text-align: left;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    #contactsH1 {
    font-size: 24px;
}
form#contactForm {
    width:94%;
}
#formImg {
    width: 100%;
    height: 50px;
    justify-content: center;
}
#formImg img {
    width: auto;
    height: 50px;
}
#fFields {
    width: 100%;
}
}