* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    font-family: sans-serif;
}

#title-row {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}


#excirionfields {
    color: #697E57;
    font-family: sans-serif;
    position: relative;
    left: 10%;
    display: inline;
}

#solutions {
    font-weight: bold;
    color: #223415;
}

#title-button {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0%, -50%);
}

#title-button:active {
    transform: scale(0.97) translate(0%, -50%);
}

.download-button {
    padding: 15px;
    border-radius: 10px;
    border-width: 0px;
    background-color: green;
    color: white;
}

.download-button:active {
    background-color: #697E57;
    transform: scale(0.97);
}


.hero-image {
    height: 53%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10%;
    padding-right: 10%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/accounting-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
    color: white;
}

#hero-subtext {
    margin-top: 10px;
}

#hero-button {
    margin-top: 20px;
}


h1 {
    font-size: 2.3em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} 

#section1 {
    background-image: linear-gradient(white,  #d4ecc4, white);
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.section-inner {
    position: relative;
    display: inline-block;
}

.section-image {
    height: 380px;
    border-radius: 9px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#section2 {
    background-image: linear-gradient(#414939, #555f4a);
    padding-bottom: 50px;
}

.section {
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

ul li {
    color: white;
    font-size: 14px;
    font-weight: 200;
    list-style-type: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#desc-list {
    width: 70%;
    display: inline-block;
    vertical-align: top;
    margin-top: 50px;
    text-align: justify;
}

#video-container {
    margin-left: 50px;
    display: inline-block;
    text-align: center;
}

#desc-container {
    display: inline-block;
}

#video {
    margin-top: 50px;
    height: 450px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

h2 {
    color: white;
    display: inline;
}

.text-shadow {
    text-shadow: 0 0 1px #000000, 0 0 2px #000000;
}

.footer-container {
    background-color: #141f0c;
    height: 50px;
    text-align: center;
    font-size: 10px;
    color: white;
    position: relative;
}

#copyright {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#section3 {
    height: 28%;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background-image: linear-gradient(white,  #d4ecc4, white);
    position: relative;
}

#download-container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#jumbo-download-btn {
    width: 38%;
    height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 20px;
    font-size: 15px;
    border-radius: 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}


h4 {
    color: #2c2c2c;
}

@media screen and (max-height: 500px) {
    .hero-image {
        height: 75% !important;
    }

    #section3 {
        height: 40% !important;
    }
}

@media screen and (max-width: 1000px) {
    #desc-list {
       width: 100% !important;
    }

    #video-container {
        margin-left: 0px !important;
    }

    #jumbo-download-btn {
        width: 58% !important;
    }
 }

