﻿/*Default Page Style*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

div:link {
    text-decoration: none;
}

div:visited {
    text-decoration: none;
}

div:hover {
    text-decoration: none;
}

div:active {
    text-decoration: none;
}

/*Body Style*/
body {
    background-color: #383838;
    margin: 0;
    height: 100%;
    position: relative;
    overflow-y: hidden;
}

/*Top Navigation Bar Style*/
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
    background-color: #1f1f1f;
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
}


/*Logo + text Style*/
.logo {
    padding-left: 1.5%;
    position: absolute;
    left: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #f2f2f2;
    letter-spacing: 2px;
    font-size: 1.5vh;
    cursor: default;
}

/*These properties define the scalability of the logo for all screen sizes*/
.navLogo {
    height: auto;
    width: 7vh;
    max-width: 5vh;
}



/*Nav bar links Style*/
.nav-links {
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: space-around;
    width: 30%;
}


.nav-links li {
    list-style: none;
}

/*Nav bar links text Style*/
.nav-links {
    color: #f2f2f2;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

#navIndex {
    transition: none;
}

#navAbout {
    transition: none;
}

#navContact {
    transition: none;
}

/*Nav bar links text hover Style*/
#navAbout:hover {
    color: #b0b0b0;
}

/*Nav bar links text hover Style*/
#navIndex:hover {
    color: #b0b0b0;
}

/*Nav bar links text hover Style*/
#navContact:hover {
    color: #b0b0b0;
}

/*Nav bar links text hover Style*/
#navExperience:hover {
    color: #b0b0b0;
}

/*Nav bar links text click Style*/
.nav-links:active {
     color: #313131;
}

/*Burger Element Style*/
.burger {
    position: absolute;
    right: 25px;
    display: none;
}

/*Burger Style*/
.burger div {
    width: 25px;
    height: 3px;
    background-color: #f2f2f2;
    margin: 5px;
    transition: all 0.3s ease;
}

/*Home Section Style*/
.homeSection {
    margin: 10%;
    margin-top: 5vh;
    height: 75vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    transition: transform 0.5s ease-in;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}


/*Home Top section box style*/
.homeHelloText {
    height: 10vh;
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 11vh;
    padding-top: 3vh;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 0.5s;
}

/*Home Top section text style*/
.homeHelloText p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    letter-spacing: .5vh;
    font-size: 2rem;
    white-space: nowrap;
    position: relative;
}

/*Home Middle/Bottom(Mobile) section box style*/
.homeWelcomeText {
    height: 10vh;
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 5vh;
    padding-top: 3vh;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 1s;
}

/*Home Middle/Bottom(mobile) section text style*/
.homeWelcomeText p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    letter-spacing: .5vh;
    font-size: 2rem;
    white-space: nowrap;
    position: relative;
}

/*Home Bottom section box style*/
.homeMobileText {
    height: 10vh;
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 5vh;
    padding-top: 3vh;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 1.5s;
}

/*Home Bottom section text style*/
.homeMobileText p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    letter-spacing: .5vh;
    font-size: 2rem;
    white-space: nowrap;
    position: relative;
}



/*About Section Style*/
.aboutSection {
    margin: 10%;
    margin-top: 5vh;
    height: 75vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    transition: transform 0.5s ease-in;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

/*about text + image box style*/
.aboutBox {
    width: 90%;
    margin: 5%;
    margin-top: 5%;
    margin-bottom: 2.5%;
    height: 100%;
    
}

/*about text container style*/
.aboutText {
    width: 100%;
    height: 85%;
    padding-top: 2rem;
    
}

/*about text container paragraph style*/
    .aboutText p {
        padding-top: 3rem;
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 1.5rem;
        text-align: justify;
        letter-spacing: .15rem;
        line-height: 4rem;
        opacity: 0;
        transition: opacity 1s linear;
        transition-delay: 1s;
    }

/*profile image stlye*/
.profile {
    width: 20rem;
    height: 20rem;
    float: left;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 0.5s;
}

/*resume button container style*/
.aboutResume {
    width: 100%;
    height: 15%;
}

/*resume button style
.resumeButton {
    float: right;
    width: 25%;
    height: 100%;
    background-color: #3c3c3c;
    border-radius: 2rem;
    padding-top: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 1.5s;
}

/*resume button text style
.resumeButton p{
    
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2rem;
    
    letter-spacing: .15rem;
}
*/
/*contact section style*/
.contactSection {
    margin: 10%;
    margin-top: 5vh;
    height: 75vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    transition: transform 0.5s ease-in;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    padding: 2rem;
}

/*contact section header style*/
.contactHeader {
    width: 100%;
    height: 10%;
    padding-top: 1.25rem;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 0.25s;
}

/*contact section header text style*/
.contactHeader p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: .75rem;
    text-align: center;
    letter-spacing: .15rem;
}

/*contact text section*/
.contactText {
    padding-top: .5rem;
    width: 100%;
    height: 15%;
    opacity: 0;
    transition: opacity 1s linear;
    transition-delay: 0.5s;
}

/*contact text section text style*/
.contactText p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 3rem;
    text-align: center;
    letter-spacing: .15rem;
}

/*contact section divider style*/
.contactDivider {
    width: 100%;
    height: 10%;
}

.contactLine {
    opacity: 0.25;
    margin-top: 2.5vh;
    margin-left: 12.5%;
    width: 75%;
    height: .125rem;
    background-color: #cfcfcf;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 0.75s;
}

.contactSpace {
    width: 100%;
    height: 2vh;
}

.contactPhoneSection {
    margin-left: 25%;
    width: 50%;
    height: 15%;
    background-color: #3b3b3b;
    border-radius: .5rem;
    display: flex;
    flex-direction: row;
    position: relative;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1s;
}

.contactPhoneSection span{
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;
}

.contactIcon {
    width: 5vw;
    height: 100%;
    padding-top: .5rem;
}

#contactPhone {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.25s;
}

#phoneText {
    padding-top: 1.75rem;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.3s;
}

.contactLogo {
    padding: 10%;
    width: 4rem;
    height: 7.5vh;
    
}

.contactSectionTextBox {
    margin-left: 12.5%;
    width: 50%;
    height: 100%;
    padding-top: 2.5vh;
}

.contactSectionTextBox p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .15rem;
}




.contactemailSection {
    margin-left: 25%;
    width: 50%;
    height: 15%;
    background-color: #3b3b3b;
    border-radius: .5rem;
    display: flex;
    flex-direction: row;
    position: relative;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.75s;
}

#contactMail {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2s;
}

#mailText {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.1s;
}

.contactemailSection span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.contactlinkedInSection {
    margin-left: 25%;
    width: 50%;
    height: 15%;
    background-color: #3b3b3b;
    border-radius: .5rem;
    display: flex;
    flex-direction: row;
    position: relative;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.5s;
}

#contactLinkedIn {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.6s;
}

#linkedInText {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.7s;
}


.contactlinkedInSection span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.contactlinkedInSection p {
    font-size: 1rem;
}



.contactTwitterSection {
    margin-left: 25%;
    width: 50%;
    height: 15%;
    background-color: #3b3b3b;
    border-radius: .5rem;
    display: flex;
    flex-direction: row;
    position: relative;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.5s;
    /*transition-delay: 3.1s;*/
}

.contactTwitterSection p {
    font-size: 1.25rem;
}

#contactTwitter {
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.6s;
    /*transition-delay: 3.2s;*/
}

#twitterText {
    opacity: 0;
    transition: opacity .5s linear;
    /*transition-delay: 3.3s;*/
    transition-delay: 2.7s;
}
.contactTwitterSection span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}




/*Experience Section Style*/
.experienceSection {
    margin: 10%;
    margin-top: 5vh;
    height: 75vh;
    width: 80vw;
    display: flex;
    flex-direction: column;
    background-color: #1f1f1f;
    transition: transform 0.5s ease-in;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

/*resume Button Container*/
.resumeBox {
    width: 100%;
    height: 10%;
    /*background-color: red;*/
    margin-top: .5%;
    padding-left: 41%;
    text-align: center;
    transition: transform 0.5s ease-in;
    transition-delay: 1.25s;
}

.resumeButton {
    width: 14vw;
    height: 100%;
    background-color: #383838;
    border-radius: .5rem;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.5s;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.resumeButton:hover {
    cursor: pointer;
    background-color: #333333;
}

.resumeButton p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .15rem;
    padding-top: 1rem;
    opacity: 0;
    transition: opacity 2.5s linear;
    transition-delay: .5s;
}


.experienceBox {
    width: 100%;
    height: 10%;
    /*background-color: red;*/
    margin-top: 2.5%;
    padding-left: 34vw;
    text-align: center;
}

.experienceText {
    width: 25%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: .75s;
}

.experienceText p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .3rem;
    padding-top: 7.5%;
}

.experienceDivider {
    width: 80%;
    height: .1%;
    background-color: #cfcfcf;
    margin-left: 10%;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.25s;
}


.salesBox {
    width: 100%;
    height: 15%;
    /*background-color: red;*/
    margin-top: 2.5%;
    padding-left: 20vw;
    text-align: center;
}

.salesButton {
    width: 40vw;
    height: 100%;
    background-color: #383838;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.5s;
}

.salesButton p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
    padding-top: 3.75%;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 1.75s;
}

.serviceBox {
    width: 100%;
    height: 15%;
    /*background-color: red;*/
    margin-top: 2.5%;
    padding-left: 20vw;
    text-align: center;
}

.serviceButton {
    width: 40vw;
    height: 100%;
    background-color: #383838;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2s;
}

.serviceButton p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
    padding-top: 3.75%;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.25s;
}

.designBox {
    width: 100%;
    height: 15%;
    /*background-color: red;*/
    margin-top: 2.5%;
    padding-left: 20vw;
    text-align: center;
}

.designButton {
    width: 40vw;
    height: 100%;
    background-color: #383838;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.5s;
}

.designButton p{
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
    padding-top: 3.75%;
    opacity: 0;
    transition: opacity .5s linear;
    transition-delay: 2.75s;
}

.wireResume {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 15vw;
    height: 10%;
    margin-top: 3vh;
    margin-left: 32.5vw;
}

.wireSales {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 40vw;
    height: 15%;
    margin-top: 27vh;
    margin-left: 20vw;
}

.wireService {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 40vw;
    height: 12.5%;
    margin-top: 42.5vh;
    margin-left: 20vw;
}

.wireDesign {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 40vw;
    height: 12.5%;
    margin-top: 58vh;
    margin-left: 20vw;
}

.wireBack {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 40vw;
    height: 12.5%;
    margin-top: 58vh;
    margin-left: 20vw;
}

.wireSales:hover {
        cursor: pointer;
}

.wireResume:hover {
        cursor: pointer;
}

.wireService:hover {
    cursor: pointer;
}

.wireDesign:hover {
    cursor: pointer;
}

.wireBack:hover {
    cursor: pointer;
}

.salesTab {
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 70vw;
    height: 52vh;
    background-color: #383838;
    margin-left: 5vw;
    margin-top: 3vh;
    padding: 1%;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.TQLBox {
    z-index: 1;
    width: 100%;
    height: 50%;
    padding: 1%;
}

.TQLBanner {
    padding: 0%;
    padding-top: .75vh;
    background-color: red;
    background-color: #1f1f1f;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    z-index: 1;
    width: 60%;
    height: 30%;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.25rem;
    text-align: center;
    white-space: nowrap;
    margin-left: 14vw;
    letter-spacing: .25rem;
}

.TQLInfo {
    margin-top: 3.5vh;
    width: 100%;
    height: 5vh;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.75rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
}

.TQLInfo2 {
    margin-top: 2vh;
    width: 100%;
    height: 5vh;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.25rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
}

.AvalaraBox {
    z-index: 1;
    width: 100%;
    height: 50%;
    padding: 1%;
}

.AvalaraBanner {
    padding: 0%;
    padding-top: .75vh;
    background-color: red;
    background-color: #1f1f1f;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    z-index: 1;
    width: 60%;
    height: 30%;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    margin-left: 14vw;
    letter-spacing: .25rem;
}

.AvalaraInfo {
    margin-top: 3.5vh;
    width: 100%;
    height: 5vh;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.75rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
}

.AvalaraInfo2 {
    margin-top: 2vh;
    width: 100%;
    height: 5vh;
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 1.25rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
}

.serviceTab {
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 70vw;
    height: 52vh;
    background-color: #383838;
    margin-left: 5vw;
    margin-top: 3vh;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.designTab {
    opacity: 0;
    position: absolute;
    z-index: 1;
    width: 70vw;
    height: 52vh;
    background-color: #383838;
    margin-left: 5vw;
    margin-top: 3vh;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}

.experienceBackButton {
    opacity: 0;
    position: absolute;
    z-index: 0;
    width: 40vw;
    height: 12.5%;
    background-color: #383838;
    border-radius: .5rem;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    transition: opacity .5s linear;
    transition-delay: 2.5s;
    margin-top: 58vh;
    margin-left: 20vw;
}


.experienceBackButton p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
    padding-top: 3.75%;
    transition: opacity .5s linear;
    transition-delay: 2.75s;
}









/*Footer style*/
.footer {
    position: fixed;
    bottom: -7em;
    display: flex;
    flex-direction: column;
    height: 10em;
    width: 100%;
    background-color: #1f1f1f;
    transition: transform 0.5s ease-in;
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
    color: #f2f2f2;
    letter-spacing: 2px;
}

/*Footer top section style*/
.footerTopSection {
    width: 100%;
    height: 25%;
}

/*Footer bottom section style*/
.footerBottomSection {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/*Footer Bottom Section: Copyright Box style*/
.footerCopyrightBox {
    margin-left: 5%;
    width: 40%;
    height: 100%;
    padding-top: 3.5vh;
    padding-left: 2.5%;
    font-size: 125%;
}

/*Footer Bottom Section: quicklinks Box style*/
.footerLinkBox {
    margin-right: .5rem;
    width: 50%;
    height: 100%;
    padding-top: 1vh;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/*Footer quicklink Icons style*/
.footerIcon {
    height: auto;
    width: 7vh;
    max-width: 7vh;
    border-radius: 50%;
}


/*footer carrot image style*/
.footerCarrot {
    height: 1.5rem;
    width: 1.5rem;
    display: block;
    margin-top: .75em;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease-in;
}



.homeSection-active {
    transform: translateY(-3rem) scaleY(0.9);
    transition: transform 0.5s ease-in;
}

/*footer style when toggled as active*/
.footer-active {
    transform: translateY(-5rem);
    transition: transform 0.5s ease-in;
}


/* Fade-In Effect */
.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 2s linear;
}

/* Fade-Out Effect */
.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}


/*Style for screen size under 1280px width*/
@media screen and (max-width: 1280px) {
    .nav-links {
        width: 60%;
    }

}


/*Style for screen size under 800px width*/
@media screen and (max-width: 800px) {


    body {
        overflow-x: hidden;
        overscroll-behavior-y: none; /*IOS Specific y scroll lock*/
    }

    .navLogo {
        font-size: 4vh;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #1f1f1f;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30%;
        transform: translate(100%);
        transition: transform 0.5s ease-in;
    }


    .home-scroll {
        position: absolute;
    }



    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .home-scroll li {
        font-size: 1vh;
    }

    .home-scroll {
        line-height: 5vh;
    }

    

    .homeSection {
        margin: 10%;
        margin-top: 5%;
        margin-bottom: 5%;
        height: 60vh;
    }

    .aboutSection {
        margin: 10%;
        margin-top: 5%;
        margin-bottom: 5%;
        height: 60vh;
    }

    .contactSection {
        margin: 10%;
        margin-top: 5%;
        margin-bottom: 5%;
        height: 60vh;
    }

    .experienceSection {
        margin: 10%;
        margin-top: 5%;
        margin-bottom: 5%;
        height: 60vh;
    }
    /*resume Button Container*/
    .resumeBox {
        width: 100%;
        height: 10%;
        /*background-color: red;*/
        margin-top: 4rem;
        padding-left: 24vw;
        text-align: center;
        
    }

    .resumeButton {
        width: 50%;
        height: 100%;
        background-color: #383838;
        border-radius: .5rem;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    .resumeButton p {
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 4vw;
        text-align: center;
        white-space: nowrap;
        letter-spacing: .15rem;
        padding-top: 1.5vh;
    }

    .experienceBox {
        width: 100%;
        height: 10%;
        /*background-color: red;*/
        margin-top: 2.5%;
        padding-left: 24vw;
        text-align: center;
    }

    .experienceText {
        width: 25%;
        height: 100%;
    }

     .experienceText p {
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 4vw;
        text-align: center;
        white-space: nowrap;
        letter-spacing: .3rem;
        padding-top: 1.5vh;
      }

    .salesBox {
        width: 100%;
        height: 15%;
        /*background-color: red;*/
        margin-top: 7.5%;
        padding-left: 20vw;
        text-align: center;
    }

    .salesButton {
        width: 40vw;
        height: 100%;
        background-color: #383838;
        border-radius: .5rem;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    

    .salesButton p {
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 6.5vw;
        text-align: center;
        white-space: nowrap;
        letter-spacing: .25rem;
        padding-top: 2.6vh;
     }

    .serviceBox {
        width: 100%;
        height: 15%;
        /*background-color: red;*/
        margin-top: 7.5%;
        padding-left: 20vw;
        text-align: center;
    }

    .serviceButton {
        width: 40vw;
        height: 100%;
        background-color: #383838;
        border-radius: .5rem;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    .serviceButton p {
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 6.5vw;
        text-align: center;
        white-space: nowrap;
        letter-spacing: .25rem;
        padding-top: 2.6vh;
     }

    .designBox {
        width: 100%;
        height: 15%;
        /*background-color: red;*/
        margin-top: 7.5%;
        padding-left: 20vw;
        text-align: center;
    }

    .designButton {
        width: 40vw;
        height: 100%;
        background-color: #383838;
        border-radius: .5rem;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

     .designButton p {
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 6.5vw;
        text-align: center;
        white-space: nowrap;
        letter-spacing: .25rem;
        padding-top: 2.6vh;
      }

    .salesTab {
        opacity: 0;
        position: absolute;
        z-index: 1;
        width: 70vw;
        height: 38vh;
        background-color: #383838;
        margin-left: 5vw;
        margin-top: 2.5vh;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    .TQLBanner {
        font-size: .5rem;
        letter-spacing: .1rem;
        padding-top: 2vh;
    }

    .AvalaraBanner {
        font-size: .75rem;
        letter-spacing: .1rem;
        padding-top: 1.75vh;
    }

    .serviceTab {
        opacity: 0;
        position: absolute;
        z-index: 1;
        width: 70vw;
        height: 38vh;
        background-color: #383838;
        margin-left: 5vw;
        margin-top: 2.5vh;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    .designTab {
        opacity: 0;
        position: absolute;
        z-index: 1;
        width: 70vw;
        height: 38vh;
        background-color: #383838;
        margin-left: 5vw;
        margin-top: 2.5vh;
        box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    }

    .experienceBackButton {
        
        margin-top: 42.5vh;
        margin-left: 20vw;
    }

    .experienceBackButton p {
    font-family: 'Noto Sans Mono', monospace;
    color: #cfcfcf;
    list-style: none;
    font-size: 2.5rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: .25rem;
    padding-top: 10%;
    transition: opacity .5s linear;
    transition-delay: 2.75s;
}

    .homeHelloText p {
        font-size: .5rem;
        line-height: 4rem;
    }

    .homeHelloText {
       margin-top: 15vh;
        
    }

    
    .homeMobileText {
        height: 0vh;
        opacity: 0;
    }

    .homeWelcomeText p {
        font-size: .5rem;
        line-height: 4rem;
    }

    .aboutBox {
        margin-top: .1rem;
    }

    .profile {
        width: 20vw;
        height: auto;
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .aboutBox {
        height: 80%;
    }
    .aboutText {
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 0;
    }


    .aboutText p {
        padding-top: 1vh;
        font-family: 'Noto Sans Mono', monospace;
        color: #cfcfcf;
        list-style: none;
        font-size: 1.5vh;
        text-align: center;
        letter-spacing: 0rem;
        line-height: 2rem;
    }

   
    .contactPhoneSection {
        width: 75%;
        margin-left: 12.5%;
    }

    .contactemailSection {
        width: 75%;
        margin-left: 12.5%;
    }

    .contactlinkedInSection {
        width: 75%;
        margin-left: 12.5%;
    }

    .contactTwitterSection {
        width: 75%;
        margin-left: 12.5%;
    }

    .contactIcon {
        width: 20%;
        height: 100%;
        padding-left: 1vw;
        padding-top: 1.5vh;
    }

    .wireSales {
        opacity: 0.1;
        background-color: red;
        position: absolute;
        z-index: 2;
        width: 80vw;
        height: 15%;
        margin-top: 18.5vh;
        margin-left: 0vw;
    }

    .wireResume {
        opacity: 0.1;
        background-color: red;
        position: absolute;
        z-index: 2;
        width: 80vw;
        height: 10%;
        margin-top: 3vh;
        margin-left: 0vw;
    }

    .wireService {
        opacity: 0.1;
        background-color: red;
        width: 80vw;
        height: 12.5%;
        margin-top: 31vh;
        margin-left: 0vw;
    }

    .wireDesign {
        opacity: 0.1;
        background-color: red;
        width: 80vw;
        height: 12.5%;
        margin-top: 42.5vh;
        margin-left: 0vw;
    }

    .wireBack {
        opacity: 0.1;
        background-color: red;
        position: absolute;
        width: 80vw;
        height: 12.5%;
        margin-top: 42.5vh;
        margin-left: 00vw;
    }

    #phoneText {
        padding-top: 2.5vh;
    }
    .contactLogo {
        padding: 0;
        width: 2rem;
        height: auto;
    }

    .contactSectionTextBox {
        margin-left: -2.5%;
        padding-right: .75rem;
        width: 75%;
        height: 100%;
        padding-top: 2.6vh;
    }

    .contactSectionTextBox p {
        font-size: .5rem;
        letter-spacing: 0;
     }


   
    
    .footer {
        position: absolute;
        bottom: -45%;
        z-index: -2;
        height: 30vh;
    }

    .footerTopSection {
        height: 0%;
    }

    .footerCopyrightBox {
        font-size: 50%;
    }

    .footerCarrot {
        width: 3%;
        opacity: 0%;
    }

    .footerIcon {
        height: 5vh;
        width: 5vh;
        padding-right: 25%;
        border-radius: 10%;
    }

    .footerLinkBox {
        
        padding-top: 2.25vh;
    }

    #twitterFooter {
        opacity: 0%;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .homeSection-active {
        transform: translateX(-50%);
    }

    .footer-active {
        transform: translateX(-30vw);
    }


}


/*Style for screen size under 600px width*/
@media screen and (max-height: 600px) {
    .contactDivider {
        opacity: 0;
    }

    .contactHeader p {
        font-size: .5rem;
    }
    .contactText p{
        font-size: 2rem;
    }

    .contactLogo {
        width: 1.5rem;
    }

    .contactSectionTextBox p{
        font-size: .5rem;
    }

    .contactemailSection p {
        font-size: .3rem;
    }

    .contactlinkedInSection p {
        font-size: .25rem;
    }

    .contactTwitterSection p {
        font-size: .3rem;
    }

    .aboutText {
        font-size: 1rem;
    }
}


    /*animation for navbar text fade*/
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }


    /*toggles rotation of burger lines on click*/
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px,6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px,-6px);
    }

    /*Footer carrot bounce animation*/
    @-webkit-keyframes swing {
        15% {
            -webkit-transform: translateY(5px);
            transform: translateY(3px);
        }

        30% {
            -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
        }

        50% {
            -webkit-transform: translateY(3px);
            transform: translateY(3px);
        }

        65% {
            -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
        }

        80% {
            -webkit-transform: translateY(2px);
            transform: translateY(2px);
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes swing {
        15% {
            -webkit-transform: translateY(3px);
            transform: translateY(3px);
        }

        30% {
            -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
        }

        50% {
            -webkit-transform: translateY(3px);
            transform: translateY(3px);
        }

        65% {
            -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
        }

        80% {
            -webkit-transform: translateY(2px);
            transform: translateY(2px);
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }




    /*Hover Styles*/



    .footerIcon:hover {
        box-shadow: 0 0 2.5em #2f2f2f;
    }

    .footerTopSection:hover {
        cursor: pointer;
    }

    .footerTopSection:hover {
        -webkit-animation: swing 1s ease;
        animation: swing 1s ease;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
    }

    /*toggles rotation of footer carrot on click*/
    .toggle .footerCarrot {
        transform: rotate(-180deg);
    }