footer {
    width: 100%;
    position: relative;
}

#InfoArea {
    position: relative;
}

#InfoArea h3 {
    font-family: 'Playfair Display';
    font-weight: 600;
    color: var(--white);
}

#InfoArea p {
    line-height: 1.5;
    color: var(--offWhite);
}

#InfoArea ul {
    list-style: none;
    line-height: 2.0;
    color: var(--offWhite);
}

#contactInfoPhone {
    font-weight: 600;
    color: var(--complement);
}

a[href^="tel"] {
    color: inherit; /* Inherit text color of parent element. */
    text-decoration: none; /* Remove underline. */
    /* Additional css `propery: value;` pairs here */
  }

#contactArea {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}

td {
    display: flex;
}

td div {
    float: left;
    display: flex;
}

#contactArea input,
#contactArea textarea {
    resize: none;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    background-color: var(--accentLighter);
    color: var(--complementLighter);
    font-family: 'Poppins', 'Montserrat';
}

#contactArea input:focus,
#contactArea textarea:focus {
    outline: none;
}

#sendButton input {
    
    font-weight: 500;
    justify-content: center;
    padding: 0;
    background-color: var(--complement);
    color: var(--accentDarker);
    cursor: pointer;
}

#sendButton input:hover {
    background-color: var(--complementHover);
}

::placeholder {
    color: var(--offWhite);
    opacity: 50%;
}

#logoFooter img,
#logoFooter svg {
    opacity: 0.1;
    height: 100%;
    width: 100%;
}

#footerCopyrightArea {
    width: 100%;
    background-color: var(--accentDarker);
    display: flex;
    justify-content: center;
    align-items: center;
}

#footerCopyrightArea h6 {
    color: var(--textLightest);
    font-weight: 400;
}

@media screen and (max-width: 600px) {
    footer {
        height: fit-content;
        display: block;
        padding-top: 20vw;
        top: 1vw;
    }

    #footerContactInfo,
    #footerContactArea {
        height: fit-content;
        width: 100%;
        margin-bottom: 10vw;
    }

    #InfoArea {
        width: 80vw;
        margin: auto;
    }

    #InfoArea h3 {
        font-size: 7.5vw;
    }

    #InfoArea p {
        font-size: 3.25vw;
        padding: 7vw 0 10vw 0;
    }

    #InfoArea ul {
        font-size: 3vw;
    }

    #footerContactInfo img {
        position: absolute;
        width: 40vw;
        left: 55vw;
        bottom: 30vw;
    }

    #contactArea {
        width: 80%;
        margin: auto;
        margin-bottom: 10vw;
        border-spacing: 0 2vw;
    }

    td {
        height: 14vw;
    }
    
    #tdMessage {
        height: 42vw;
    }
    
    #tdSubmit {
        height: 16vw;
    }

    td div {
        width: 45%;
        padding-top: 4vw;
    }

    input,
    textarea {
        padding-left: 4vw;
        font-size: 2.5vw;
        border-radius: 2vw;
    }

    textarea {
        padding-top: 4vw;
    }

    #logoFooter {
        display: none;
    }

    #footerCopyrightArea {
        height: 15vw;
    }
    
    #footerCopyrightArea h6 {
        font-size: 2.5vw;
    }
}

@media screen and (min-width: 601.01px) and (max-width: 767px) {
    footer {
        height: fit-content;
        display: block;
        padding-top: 20vw;
        top: 1vw;
    }

    #footerContactInfo,
    #footerContactArea {
        height: fit-content;
        width: 100%;
        margin-bottom: 10vw;
    }

    #InfoArea {
        width: 80vw;
        margin: auto;
    }

    #InfoArea h3 {
        font-size: 7.5vw;
    }

    #InfoArea p {
        font-size: 3.25vw;
        padding: 7vw 0 10vw 0;
    }

    #InfoArea ul {
        font-size: 3vw;
    }

    #footerContactInfo img {
        position: absolute;
        width: 30vw;
        left: 55vw;
        bottom: 30vw;
    }

    #contactArea {
        width: 80%;
        margin: auto;
        margin-bottom: 10vw;
        border-spacing: 0 2vw;
    }

    td {
        height: 14vw;
    }
    
    #tdMessage {
        height: 42vw;
    }
    
    #tdSubmit {
        height: 16vw;
    }

    td div {
        width: 45%;
        padding-top: 4vw;
    }

    input,
    textarea {
        padding-left: 4vw;
        font-size: 2.5vw;
        border-radius: 2.5vw;
    }

    textarea {
        padding-top: 4vw;
    }

    #logoFooter {
        display: none;
        position: absolute;
        bottom: 20vw;
        right: 0;
        width: 40vw;
        height: 40vw;
    }

    #footerCopyrightArea {
        height: 15vw;
    }
    
    #footerCopyrightArea h6 {
        font-size: 2.5vw;
    }
}

@media screen and (min-width: 767.01px) and (max-width: 991.98px),
       screen and (min-width: 991.98px) and (max-width: 1024.98px) and (orientation: portrait) {
    footer {
        width: 100vw;
        height: fit-content;
        display: flex;
        flex-wrap: wrap;
        padding-top: 10vw;
        top: 10vw;
    }

    #footerContactInfo,
    #footerContactArea {
        height: fit-content;
        width: 50%;
        margin-bottom: 10vw;
    }

    #InfoArea {
        width: 70%;
        left: 20%;
    }

    #InfoArea h3 {
        font-size: 4vw;
    }

    #InfoArea p {
        font-size: 1.6vw;
        padding: 4vw 0 6vw 0;
    }

    #InfoArea ul {
        font-size: 1.6vw;
    }

    #footerContactInfo img {
        width: 20vw;
        margin-top: 5vw;
        margin-left: 18%;
    }

    #contactArea {
        width: 70%;
        margin-left: 10%;
        border-spacing: 0 1vw;
    }

    td {
        height: 6vw;
    }
    
    #tdMessage {
        height: 18vw;
    }
    
    #tdSubmit {
        height: 7vw;
    }

    td div {
        width: 45%;
        padding-top: 1.5vw;
    }

    input,
    textarea {
        padding-left: 1.5vw;
        font-size: 1.3vw;
        border-radius: 1vw;
    }

    textarea {
        padding-top: 2vw;
    }

    #logoFooter {
        position: absolute;
        bottom: 10vw;
        right: 0;
        width: 60vw;
        height: 60vw;
    }

    #footerCopyrightArea {
        height: 8vw;
    }
    
    #footerCopyrightArea h6 {
        font-size: 1.5vw;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024.98px) and (orientation: landscape),
       screen and (min-width: 1025px) {
    footer {
        height: 750px;
        display: flex;
        flex-wrap: wrap;
        padding: 40px 0 0 0;
    }

    #footerContactInfo,
    #footerContactArea {
        height: 675px;
        width: 50%;
    }

    #InfoArea {
        width: 70%;
        top: 120px;
        left: 20%;
    }

    #InfoArea h3 {
        font-size: 42px;
    }

    #InfoArea p {
        font-size: 14px;
        padding: 30px 0 60px 0;
    }

    #InfoArea ul {
        font-size: 14px;
    }

    #InfoArea li {
        margin: 8px 0;
    }

    #footerContactInfo img {
        position: relative;
        width: 42%;
        left: 16%;
        top: 175px;
    }

    #contactArea {
        width: 70%;
        top: 120px;
        margin-left: 10%;
        border-spacing: 0 7.5px;
    }

    #contactArea input,
    #contactArea textarea {
        font-size: 13px;
    }

    td {
        height: 60px;
    }
    
    #tdMessage {
        height: 150px;
    }
    
    #tdSubmit {
        height: 75px;
    }

    td div {
        width: 45%;
        padding-top: 15px;
    }

    input,
    textarea {
        padding-left: 20px;
        border-radius: 7.5px;
    }

    textarea {
        padding-top: 20px;
    }

    #sendButton {
        border-radius: 15px;
    }

    #logoFooter {
        position: absolute;
        bottom: 100px;
        right: 0;
        width: 600px;
        height: 600px;
    }

    #footerCopyrightArea {
        height: 75px;
    }
    
    #footerCopyrightArea h6 {
        font-size: 12px;
    }
}