body {
    min-height: 100%;
    color: #333;
    background-color: #fffff2;
    margin: 0;
    font-family: Sen, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

body.dark {
    background-color: #333;
    color: #fff;
}
h1 {
    font-size: 2em;
}

h3,h4 {
    color: #3b5741;
}

a {
	color:cadetblue;
    text-decoration: none;
}
a:hover{
	/* color : #032109; */
}

select {
    width: 100%;
    border-radius: 5px;
    padding: 8px;
    font-size: 16px;
}

/* ##### Header ##### */

header {
    z-index: 10;
    background-color: #3b5741;
    background-position: 0 0;
    position: sticky;
    top: 0;
}

.headContainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.normalText{
    font-size: 16px;
}
.text-small{
    font-size: .9rem;
}


.navbar {
    z-index: 20;
    position: relative;
    background-color: rgba(0,0,0,0);
    border-bottom: 1px solid #ffde03;
    padding: 20px 0px;
}

.nav-wrapper {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.logo {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
}

.logo-img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

.logo-text {
    color: #fff;
    font-size: 11px;
    display: block;
    padding-top: 3px;
}

.nav-link-wrapper {
    align-items: center;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    display: flex;
}

.nav-menu {
    text-shadow: 0 2px 1px #000;
    float: right;
    position: relative;
    display: block;
}

.nav-link {
    color: #fff;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 4px 10px;
    font-family: Sen, sans-serif;
    transition: all .3s;
    vertical-align: top;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    position: relative;
    /* text-transform: uppercase; */
}

.nav-link:hover {
    background-color: #296836;
}

.nav-current {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 2px solid #ffde03;
}

.nav-button {
    color: #fff;
    float: right;
    cursor: pointer;
    padding: 12px;
    padding-top: 2vw;
    font-size: 24px;
    position: relative;
}

.nav-flyout {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: #296836;
    text-shadow: 0 2px 1px #000;
    padding-top: 50px;
}

.nav-flyout.dark {
    background-color: #333;
}

.flyout-link {
    width: 80%;
    margin-left: 10%;
    color: #fff;
    border-radius: 8px;
    font-family: Sen, sans-serif;
    font-size: 25px;
    transition: all .3s;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    line-height: 1;
    margin-bottom: 40px;
}

.flyout-link:hover {
    background-color: #3b5741;
}

.flyout-active {
    text-decoration: underline solid #ffde03 2px;
    text-underline-offset: 5px;
}

/* Hamburger Menu */

.hamburger {
    display: none;
    position: relative;
    margin: 0;
    height: 2vw;
    width: 4vw;
}

#nav-icon {
    width: 30px;
    height: 2rem;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
    top: 8px;
}

#nav-icon span:nth-child(4) {
    top: 16px;
}

#nav-icon.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

#nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

/* ##### Footer ##### */

footer {
    background-color: #222;
    border-top: 2px solid #296836;
    padding-top: 15px;
    padding-bottom: 19px;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.footer-wrapper {
    text-align: left;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.footer-logo {
    max-width: 100%;
    display: inline-block;
    text-decoration: none;
}

.footer-img {
    opacity: 0.55;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

.footer-text {
    color: #b8b8b8;
    font-size: 12px;
}

.footer-mobile {
    display: none;
}

.back-to-top {
    color: #b8b8b8;
    cursor: pointer;
}

@media (max-width: 800px) {
    .back-to-top {
        display: none;
    }
}

/* ##### END FOOTER ##### */

.background-video {
    position: static;
    height: 500px;
    overflow: hidden;
}

.background-video > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    vertical-align: baseline;
    display: inline-block;
}

.background-img-div {
    position: static;
    height: 500px;
    overflow: hidden;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    margin: auto;
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    vertical-align: baseline;
    display: inline-block;
}

.video-control {
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
    cursor: pointer;
}

.hero-section {
    margin-top: -500px;
}

.hero-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
    display: flex;
    text-shadow: 2px 2px #000;
    background-color: rgb(0,0,0,0.5);
    padding: 20px;
    border-radius: 20px;
    max-width: 775px;
}

.hero-heading {
    width: 35%;
    color: #f9f9f9;
    font-size: 62px;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 10px;
}

.mobile-hero-heading {
    display: none;
}

.hero-paragraph {
    width: 100%;
    /* max-width: 700px; */
    color: #f9f9f9;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 1.7;
    display: block;
    margin-top: 0;
}

.hero-species {
    cursor: pointer;
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 2;
    color: yellow;
    font-weight: normal;
    text-align: right;
    text-shadow: 1px 1px #000;
    height: 50px;
}
.hero-species:hover {
    color: rgb(200, 200, 0);
}

.btn {
    float: none;
    clear: left;
    color: #f9f9f9;
    background-color: #296836;
    border: 1px solid #296836;
    border-radius: 5px;
    padding: 5px 25px;
    font-size: 15px;
    font-weight: 700;
    transition: border-color .3s, background-color .3s;
    line-height: inherit;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn.green {
    color: #f9f9f9;
    background-color: #296836;
    border: 1px solid #296836;
}
.btn.green:hover {
    background-color: #2e773d;
    border: 1px solid #2e773d;
}

.btn.grey {
    color: #f9f9f9;
    background-color: #e2ebe4;
    border: 1px solid #e2ebe4;
    color:black;
}
.btn.grey:hover {
    background-color: #8d8d8d;
    border: 1px solid #2e773d;
}

.identify-info {
    float: right;
    margin-top: 22px;
    cursor: pointer;
    scale: 1.2;
}

.identify-img {
    width: 90%; 
    height: 150px; 
    margin: 0px auto 5px auto;
    border-radius: 8px; 
    cursor: pointer;
}

.identify-bookmark {
    float: right; 
    margin: 10px; 
    scale: 2; 
    color: #296836;
    cursor: pointer;
}

.clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.zebra-striped tbody tr:nth-child(odd) td, .zebra-striped tbody tr:nth-child(odd) th { background-color: #f2f2f2; }

.zebra-striped tbody tr:hover td, .zebra-striped tbody tr:hover th { background-color: #eaeaea; }

table { width: 100%; margin-bottom: 16px; padding: 0; border-collapse: collapse; }

table tr { margin-bottom: 0; }

table th, table td { padding: 10px 10px 9px; line-height: 18px; text-align: left; }

table th { padding-top: 9px; font-weight: bold; vertical-align: middle; background-color: inherit; }

table td { vertical-align: top; border-top: 1px solid lightgray; padding: 3px; }

table tbody th { border-top: 1px solid lightgray; vertical-align: top; }



/* DYNAMIC CSS */

@media (max-width: 414px) {
    .logo-text {
        display: none;
    }
    .footer-mobile {
        display: block;
        font-size: 12px;
        color: #fff;
        margin: 5px 0px;
        opacity: 0.8;
        text-wrap: balance;
        text-align: center;
    }
    .footer-logo {
        display: none;
    }
    .hero-species {
        top: calc(220px + 5vw) !important;
        font-size: 14px;
    }
}

@media (max-width: 999px) {
    .nav-menu {
        display: none;
    }
    .showWelcome{
        display:block !important;
    }
    .hideWelcome{
        display:none !important;
    }
    .hamburger {
        display: block;
    }
    .nav-flyout {
        display: none;
    }
    .background-video {
        position: relative;
        width: 100%;
        height: 40vw;
        overflow: visible;
    }
    .background-video > video {
        position: absolute;
        max-height: 400px;
        min-height: 300px;
    }
    .background-img-div {
        position: relative;
        width: 100%;
        /* height: 40vw; */
        height: 200px;
        overflow: visible;
    }
    .background-img {
        position: absolute;
        /* max-height: 400px;
        min-height: 300px; */
        height: 200px;
    }
    .mobile-hero-heading {
        display: block;
        height: 40vw;
        color: #f9f9f9;
        font-size: 9vw;
        margin: auto;
        margin-left: 5vw;
        padding-top: 15vw;
        z-index: 10;
    }
    .hero-heading {
        /* display: none; */
        color: black;
        font-size: 40px;
        line-height: 1;
        margin: 10px 0px;
        padding-top: 0px;
    }
    .hero-section {
        position: absolute;
        /* margin-top: calc(200px - 15vw); */
        margin-top: -40px;
    }
    .hero-paragraph {
        color: #222;
        max-width: 900px;
    }
    .hero-paragraph.dark {
        color: #fff;
    }
    .video-control {
        display: none;
    }
    .hero-wrapper {
        text-shadow: 0px 0px #000;
        background-color: rgb(0,0,0,0);
        padding-top: 0;
        max-width: 100%;
    }
    .hero-species {
        /* bottom: auto; */
        top: 250px;
    }
}

/* Toggle Switch */

.toggle-switch {
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggle-switch-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 80px;
    height: 40px;
    background: grey;
    display: block;
    border-radius: 50px;
    position: relative;
}

.toggle-switch-label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 40px;
    transition: 0.3s;
}

.toggle-switch:checked + .toggle-switch-label {
    background: #bada55;
}

.toggle-switch:checked + .toggle-switch-label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.toggle-switch-label:active:after {
    width: 74px;
}

.row { display: flex; flex-wrap: wrap; }

.text-upper { text-transform: uppercase; }

.center { text-align: center; justify-content: center }

.left { text-align: left; }

.right { text-align: right; }

.justify { text-align: justify;  }

.normal {
    font-weight: 400;
}
.bold {
    font-weight: 700;
}

.text-right-conditional { text-align: right; }

.table-text-center { text-align: center; }

.table-text-right { text-align: right; }

.text-large { font-size: 1.125em; line-height: 1.5; }
.text-Xlarge {    
    font-family: ff-utility-web-pro, sans-serif;
    font-size: 1.5rem; 
    line-height: 2.2rem;
}

.col { display: block; float: left; width: 100%; min-height: 30px; margin-right: 2%; }
.col-border-bottom { display: block; float: left; width: 100%; min-height: 30px; height:28px; margin-right: 2%; border-bottom: 1px solid lightgray; border-spacing:0px; }
.col-no-border-bottom { display: block; float: left; width: 100%; min-height: 30px; height:28px; margin-right: 2%; border-bottom: none; }

.one-half { width: 47.5%; }

.one-third { width: 31%; }
.one-third-nowrap { width: 32%; }

.two-thirds { width: 64%; }
.two-thirds-nowrap { width: 64%; }

.one-fourth { width: 22.75%; }
.one-fourth-2 { width: 24.75%; }

.two-fourths { width: 45.5%; }

.three-fourths { width: 72.25%; }
.one-fourth-nowrap { width: 22.75%; }

.three-fourths-nowrap { width: 72.25%; }

.one-fifth { width: 18.2%; }

.two-fifths { width: 36.4%; }

.three-fifths { width: 54.6% }

.four-fifths { width: 72.8%; }
.one-fifth-nowrap { width: 18%; }

.col--1 {
    width: 5%;
}
.col--2 {
    width: 10%;
}
.col--3 {
    width: 15%;
}
.col--4 {
    width: 20%;
}
.col--5 {
    width: 25%;
}
.col--6 {
    width: 30%;
}
.col--7 {
    width: 35%;
}
.col--8 {
width: 40%;
}
.col--9 {
width: 45%;
}
.col--10 {
width: 50%;
}
.col--11 {
width: 55%;
}
.col--12 {
width: 60%;
}
.col--13 {
width: 65%;
}
.col--14 {
width: 70%;
}
.col--15 {
width: 75%;
}
.col--16 {
width: 80%;
}
.col--17 {
width: 85%;
}
.col--18 {
width: 90%;
}
.col--19 {
width: 95%;
}
.col--20 {
width: 100%;
}
.col--oneThird {
width: 33.33333%;
}
.col--twoThirds {
width: 66.66667%;
}
.col--offset--0 {
margin-left: 0;
}
.col--offset--1 {
margin-left: 5%;
}
.col--offset--2 {
margin-left: 10%;
}
.col--offset--3 {
margin-left: 15%;
}
.col--offset--4 {
margin-left: 20%;
}
.col--offset--5 {
margin-left: 25%;
}
.col--offset--6 {
margin-left: 30%;
}
.col--offset--7 {
margin-left: 35%;
}
.col--offset--8 {
margin-left: 40%;
}
.col--offset--9 {
margin-left: 45%;
}
.col--offset--10 {
margin-left: 50%;
}
.col--offset--11 {
margin-left: 55%;
}
.col--offset--12 {
margin-left: 60%;
}
.col--offset--13 {
margin-left: 65%;
}
.col--offset--14 {
margin-left: 70%;
}
.col--offset--15 {
margin-left: 75%;
}
.col--offset--16 {
margin-left: 80%;
}
.col--offset--17 {
margin-left: 85%;
}
.col--offset--18 {
margin-left: 90%;
}
.col--offset--19 {
margin-left: 95%;
}
.col--offset--20 {
margin-left: 100%;
}

.vertAfter {
    padding-bottom: 1rem;
}
.vertAfterMin {
    padding-bottom: 0.5rem;
}
.vertAfter2x {
    padding-bottom: 2rem;
}
.vertAfter3x {
    padding-bottom: 3rem;
}
.vertAfterRow {
    padding-bottom: 5vw;
}
.vertAfterRow2x {
    padding-bottom: 10vw;
}
.vertAfterRow3x {
    padding-bottom: 15vw;
}
.vertBefore {
    padding-top: 1rem;
}
.vertBeforeMin {
    padding-top: 0.5rem;
}
.vertBefore2x {
    padding-top: 2rem;
}
.vertBefore3x {
    padding-top: 3rem;
}
.vertBeforeRow {
    padding-top: 5vw;
}
.vertBeforeRow2x {
    padding-top: 10vw;
}
.vertBeforeRow3x {
    padding-top: 15vw;
}

.floatleft{
    float:left;
}

.hide{
    display: none;
}

input[type="radio"]:checked + label, input[type="checkbox"]:checked + label {
	background-position: 0px -40px !important;
}

input[type="radio"] ~ label:before, input[type="checkbox"] ~ label:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/img/Radio-Sprite.png) no-repeat 0 0 transparent !important;
	background-position: 0px 0px;
    display: inline-block;
	padding:0px;
	margin:5px;
    cursor: pointer;
    vertical-align: middle !important;
}

input[type="radio"]:hover ~ label:before, input[type="checkbox"]:hover ~ label:before {
	background-position: 0px -20px !important;
}

input[type="radio"]:checked ~ label:before, input[type="checkbox"]:checked ~ label:before {
	background-position: 0px -40px !important;
}
input[type="radio"], input[type="checkbox"] {
    display:none !important;
}


@media (min-width: 1200px) {
    .centerdiv--d{
        display: table; 
        margin: 0 auto
    }

    .col--d--1 {
        width: 5%;
    }
    .col--d--2 {
        width: 10%;
    }
    .col--d--3 {
        width: 15%;
    }
    .col--d--4 {
        width: 20%;
    }
    .col--d--5 {
        width: 25%;
    }
    .col--d--6 {
        width: 30%;
    }
    .col--d--7 {
        width: 35%;
    }
    .col--d--8 {
        width: 40%;
    }
    .col--d--9 {
        width: 45%;
    }
    .col--d--10 {
        width: 50%;
    }
    .col--d--11 {
        width: 55%;
    }
    .col--d--12 {
        width: 60%;
    }
    .col--d--13 {
        width: 65%;
    }
    .col--d--14 {
        width: 70%;
    }
    .col--d--15 {
        width: 75%;
    }
    .col--d--16 {
        width: 80%;
    }
    .col--d--17 {
        width: 85%;
    }
    .col--d--18 {
        width: 90%;
    }
    .col--d--19 {
        width: 95%;
    }
    .col--d--20 {
        width: 100%;
    }
    .col--d--oneSixth {
        width: 16.66667%;
    }
    .col--d--oneThird {
        width: 33.33333%;
    }
    .col--d--twoThirds {
        width: 66.66667%;
    }
    .col--d--offset--0 {
        margin-left: 0;
    }
    .col--d--offset--1 {
        margin-left: 5%;
    }
    .col--d--offset--2 {
        margin-left: 10%;
    }
    .col--d--offset--3 {
        margin-left: 15%;
    }
    .col--d--offset--4 {
        margin-left: 20%;
    }
    .col--d--offset--5 {
        margin-left: 25%;
    }
    .col--d--offset--6 {
        margin-left: 30%;
    }
    .col--d--offset--7 {
        margin-left: 35%;
    }
    .col--d--offset--8 {
        margin-left: 40%;
    }
    .col--d--offset--9 {
        margin-left: 45%;
    }
    .col--d--offset--10 {
        margin-left: 50%;
    }
    .col--d--offset--11 {
        margin-left: 55%;
    }
    .col--d--offset--12 {
        margin-left: 60%;
    }
    .col--d--offset--13 {
        margin-left: 65%;
    }
    .col--d--offset--14 {
        margin-left: 70%;
    }
    .col--d--offset--15 {
        margin-left: 75%;
    }
    .col--d--offset--16 {
        margin-left: 80%;
    }
    .col--d--offset--17 {
        margin-left: 85%;
    }
    .col--d--offset--18 {
        margin-left: 90%;
    }
    .col--d--offset--19 {
        margin-left: 95%;
    }
    .col--d--offset--20 {
        margin-left: 100%;
    }
    .normalText{
        font-size: 16px;
    }
}


    @media (min-width: 600px) {
        .show--tp {
            display:block !important;
        }
        .hide--tp {
            display:none !important;
        }

        .centerdiv--tp{
            display: table; 
            margin: 0 auto
        }
        .floatright--tp{
            float:right;
        }
        .floatleft--tp{
            float:left;
        }
        .col--tp--1 {
            width: 5%;
        }
        .col--tp--2 {
            width: 10%;
        }
        .col--tp--3 {
            width: 15%;
        }
        .col--tp--4 {
            width: 20%;
        }
        .col--tp--5 {
            width: 25%;
        }
        .col--tp--6 {
            width: 30%;
        }
        .col--tp--7 {
            width: 35%;
        }
        .col--tp--8 {
            width: 40%;
        }
        .col--tp--9 {
            width: 45%;
        }
        .col--tp--10 {
            width: 50%;
        }
        .col--tp--11 {
            width: 55%;
        }
        .col--tp--12 {
            width: 60%;
        }
        .col--tp--13 {
            width: 65%;
        }
        .col--tp--14 {
            width: 70%;
        }
        .col--tp--15 {
            width: 75%;
        }
        .col--tp--16 {
            width: 80%;
        }
        .col--tp--17 {
            width: 85%;
        }
        .col--tp--18 {
            width: 90%;
        }
        .col--tp--19 {
            width: 95%;
        }
        .col--tp--20 {
            width: 100%;
        }
        .col--tp--oneSixth {
            width: 16.66667%;
        }
        .col--tp--oneThird {
            width: 33.33333%;
        }
        .col--tp--twoThirds {
            width: 66.66667%;
        }
        .col--tp--offset--0 {
            margin-left: 0;
        }
        .col--tp--offset--1 {
            margin-left: 5%;
        }
        .col--tp--offset--2 {
            margin-left: 10%;
        }
        .col--tp--offset--3 {
            margin-left: 15%;
        }
        .col--tp--offset--4 {
            margin-left: 20%;
        }
        .col--tp--offset--5 {
            margin-left: 25%;
        }
        .col--tp--offset--6 {
            margin-left: 30%;
        }
        .col--tp--offset--7 {
            margin-left: 35%;
        }
        .col--tp--offset--8 {
            margin-left: 40%;
        }
        .col--tp--offset--9 {
            margin-left: 45%;
        }
        .col--tp--offset--10 {
            margin-left: 50%;
        }
        .col--tp--offset--11 {
            margin-left: 55%;
        }
        .col--tp--offset--12 {
            margin-left: 60%;
        }
        .col--tp--offset--13 {
            margin-left: 65%;
        }
        .col--tp--offset--14 {
            margin-left: 70%;
        }
        .col--tp--offset--15 {
            margin-left: 75%;
        }
        .col--tp--offset--16 {
            margin-left: 80%;
        }
        .col--tp--offset--17 {
            margin-left: 85%;
        }
        .col--tp--offset--18 {
            margin-left: 90%;
        }
        .col--tp--offset--19 {
            margin-left: 95%;
        }
        .col--tp--offset--20 {
            margin-left: 100%;
        }
        .normalText{
            font-size: 14px;
        }
        .vertAfter-tp{
            padding-bottom: 1rem;
        }

    }
    @media (min-width: 900px) {
        .centerdiv--tl{
            display: table; 
            margin: 0 auto
        }
        .col--tl--1 {
            width: 5%;
        }
        .col--tl--2 {
            width: 10%;
        }
        .col--tl--3 {
            width: 15%;
        }
        .col--tl--4 {
            width: 20%;
        }
        .col--tl--5 {
            width: 25%;
        }
        .col--tl--6 {
            width: 30%;
        }
        .col--tl--7 {
            width: 35%;
        }
        .col--tl--8 {
            width: 40%;
        }
        .col--tl--9 {
            width: 45%;
        }
        .col--tl--10 {
            width: 50%;
        }
        .col--tl--11 {
            width: 55%;
        }
        .col--tl--12 {
            width: 60%;
        }
        .col--tl--13 {
            width: 65%;
        }
        .col--tl--14 {
            width: 70%;
        }
        .col--tl--15 {
            width: 75%;
        }
        .col--tl--16 {
            width: 80%;
        }
        .col--tl--17 {
            width: 85%;
        }
        .col--tl--18 {
            width: 90%;
        }
        .col--tl--19 {
            width: 95%;
        }
        .col--tl--20 {
            width: 100%;
        }
        .col--tl--oneSixth {
            width: 16.66667%;
        }
        .col--tl--oneThird {
            width: 33.33333%;
        }
        .col--tl--twoThirds {
            width: 66.66667%;
        }
        .col--tl--offset--0 {
            margin-left: 0;
        }
        .col--tl--offset--1 {
            margin-left: 5%;
        }
        .col--tl--offset--2 {
            margin-left: 10%;
        }
        .col--tl--offset--3 {
            margin-left: 15%;
        }
        .col--tl--offset--4 {
            margin-left: 20%;
        }
        .col--tl--offset--5 {
            margin-left: 25%;
        }
        .col--tl--offset--6 {
            margin-left: 30%;
        }
        .col--tl--offset--7 {
            margin-left: 35%;
        }
        .col--tl--offset--8 {
            margin-left: 40%;
        }
        .col--tl--offset--9 {
            margin-left: 45%;
        }
        .col--tl--offset--10 {
            margin-left: 50%;
        }
        .col--tl--offset--11 {
            margin-left: 55%;
        }
        .col--tl--offset--12 {
            margin-left: 60%;
        }
        .col--tl--offset--13 {
            margin-left: 65%;
        }
        .col--tl--offset--14 {
            margin-left: 70%;
        }
        .col--tl--offset--15 {
            margin-left: 75%;
        }
        .col--tl--offset--16 {
            margin-left: 80%;
        }
        .col--tl--offset--17 {
            margin-left: 85%;
        }
        .col--tl--offset--18 {
            margin-left: 90%;
        }
        .col--tl--offset--19 {
            margin-left: 95%;
        }
        .col--tl--offset--20 {
            margin-left: 100%;
        }
        .normalText{
            font-size: 16px;
        }
    }
    @media (max-width: 599px) {
        .container{
            padding:0;
        }
        footer {
            padding-top: 5px;
            padding-bottom: 9px;
        }
        .footer-wrapper {
            flex-direction: column;
        }
        .footer-logo {
            margin-bottom: 8px;
        }
        .hero-paragraph {
            font-size: 12px;
        }    
        .hideOffTabletPortrait {
            display: none !important;
        }
        .showOffTabletPortrait {
            display: block !important;
        }
        .centerdiv--m{
            display: table; 
            margin: 0 auto
        }
        .floatleft--m{
            float:left;
        }
        .floatright--m{
            float:right;
        }
        .vertAfter--m {
            padding-bottom: 1rem;
        }
        .vertAfter2x--m {
            padding-bottom: 2rem;
        }
        .vertAfter3x--m {
            padding-bottom: 3rem;
        }
        .vertAfterRow--m {
            padding-bottom: 5vw;
        }
        .vertAfterRow2x--m {
            padding-bottom: 10vw;
        }
        .vertAfterRow3x--m {
            padding-bottom: 15vw;
        }
        .vertAfterKill--m {
            padding-bottom: 0 !important;
        }
        table,  tfoot, tbody, th, td, tr { display: block; width: 100%; float: left; clear: left; }
        thead {display:none};
        /* Hide table headers (but not display: none;, for accessibility) */
        .wrapper thead tr { position: absolute; top: -9999px; left: -9999px; }
        .wrapper tbody tr { border-bottom: 1px solid lightgray; }
        .wrapper tbody td { /* Behave  like a "row" */ border: none; border-bottom: 1px solid #f2f2f2; position: relative; padding-left: 50%; }
        .wrapper tbody td:before { /* Now like a table header */ position: absolute; /* Top/left values mimic padding */ top: 6px; left: 6px; width: 45%; padding-right: 10px; white-space: nowrap; }
        .wrapper td + td, .bordered-table th + td { border-left: none; }
        .wrapper tfoot td { border-top: none; border-bottom: 1px solid #f2f2f2; }
        .wrapper .order-totals td { border-bottom: none; display: inline-block; width: auto; float: none; clear: none; line-height: 1; }
        /* Label the data */
        td:nth-of-type(1):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(2):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(3):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(4):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(5):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(6):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(7):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(8):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(9):before { content: attr(data-label); font-weight: bold; }
        td:nth-of-type(10):before { content: attr(data-label); font-weight: bold; } 
          .table-text-center { text-align: left; }
          
          .table-text-right { text-align: left; }
      
    
    }
    
