html, body {
    height: 100vh;
    background-color: rgb(255, 255, 255);
    margin: 0;
    font-size: 0.7vw;
    color: #800066;
    font-weight: 100;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}
#pg-szng {
    width: 83.334%;
    height: 97.68%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0;
    grid-template-areas: 
    'tag tag tag header header'
    'body body body message message'
    'body body body message message'
    'body body body message message'
    'body body body message message';
}

/* PAGE TAG ------------------------------------------------------------------------- */
#div1 { 
    grid-area: tag;
    height: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2pt solid #0d4040;
}
#div1 h1 {
    display: block;
    margin: 0;
    padding: 2%;
}
#div1 p {
    display: block;
    margin: 0;
    padding: 2%;
}

/* HEADER ------------------------------------------------------------------------- */

#hdr {
    grid-area: header;
    height: 100%;
    width: 100%;
}
#hm-btn {
    height: 100%;
    width: 100%;
    display: block;
    background-color: transparent;
    background-image: url(images/contactUs-page/logo-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

/* BODY ------------------------------------------------------------------------- */

#div2 {
    grid-area: body;
    position: relative;
    display: flex;
    border-bottom: 2px solid #800066;
}
#txtTop {
    position: absolute;
    margin: 2% 0 0 2%;
    padding: 0;
}
#txtTop p {
    margin: 0;
    padding: 0;
    color: #0d4040;
}

#txtBotom {
    width: 100%;
    position: absolute;
    bottom: 2%;
    margin-left: 2%;
    padding: 0;
}
#txtBotom p {
    margin: 0;
    padding: 0;
}
/* FORM ------------------------------------------------------------------------- */

#div3 {
    grid-area: message;
    height: 100%;
    width: 100%;    
}

#formHead {
    width: 100%;
    height: 5.556%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#tagImg {
    height: 100%;
    padding: 0;
    margin: 0;
    transform: skewX(-19.573deg);
}
#mailUs {
    height: 100%;
    transform: skewX(-19.573deg);

}
#mailUs img {
    height: 100%;
}

#messageForm {
    width: 93.3%;
    height: 91.667%;
    display: inline-block;
    margin: 0 0 0 5%;
    padding: 0;
}
#messageForm, label {
    display: inline-block;
}
#companyNameLbl {
    margin: 0 0 0 5%;
}
#companyName {
    width: 90.5%;
    height: 3.5%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
    margin: 0 0 0 4%;
}
#contactInfo {
    margin: 0 0 0 2%;
    font-size: 0.9vw;
    font-weight: 600;
}
#titleLbl {
    width: 8%;
    margin: 0 0 0 5%;
}
#firstNameLbl {
    width: 40%;
    margin: 0;
    padding: 0;
}
#lastNameLbl {
    width: 40%;
    margin: 0 0 0 1%;
    padding: 0;
}
#title {
    display: inline-block;
    width: 8%;
    height: 3.5%;
    border: 2px solid #800066;
    border-radius: 20px;
    background-color: white;
    margin: 0 0 0 4%;
    text-align: center;
    font-weight: 600;
    color: #800066;
}
#firstName {
    width: 40%;
    height: 3.5%;
    padding: 0 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
}
#lastName {
    width: 40%;
    height: 3.5%;
    padding: 0 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
}
#jobTitleLbl {
    margin: 2% 0 0 5%;
}
#jobTitle {
    width: 89.5%;
    height: 3.5%;
    padding: 0 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
    margin: 0 0 0 4%;
}
#emailAddressLbl {
    margin: 2% 0 0 5%;
}
#emailAddress {
    width: 89.5%;
    height: 3.5%;
    padding: 0 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
    margin: 0 0 0 4%;
}
#teleNumberLbl {
    margin: 2% 0 0 5%;
}
#teleNumber {
    width: 89.5%;
    height: 3.5%;
    padding: 0 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
    margin: 0 0 0 4%;
}
#yourMessageLbl {
    margin: 2% 0 0 2%;
    font-size: 0.9vw;
    font-weight: 600;
}
#yourMessageText {
    font-size: 0.7vw;
    font-weight: 100;
    margin: 0.5% 0 0 5%;
}
#yourMessage {
    width: 89.5%;
    height: 37%;
    padding: 1% 0 0 1%;
    border: 2px solid #800066;
    border-radius: 12px;
    background-color: white;
    margin: 0 0 0 4%;
    resize: none;
}
#submittingMessage {
    font-size: 0.4vw;
    font-weight: 100;
    text-align: right;
    margin: 0 5% 1% 0;
}
#submitButton {
    width: 25%;
    height: 5%;
    margin: 0 0 0 72%;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-image: url(images/contactUs-page/contactUs-menu/submit-button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: skewX(-19.573deg);
    cursor: pointer;
}
#submitButton:hover {
    background-image: url(images/contactUs-page/contactUs-menu/submit-button-highlight.png);
}



