html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-attachment: fixed;
}

input:valid {
    border: 4px solid #33ff00;
}

input:invalid {
    border: 4px solid #ff0000;
}

select:valid {
    border: 4px solid #33ff00;
}

select:invalid {
    border: 4px solid #ff0000;
}

textarea:valid {
    border: 4px solid #33ff00;
}

textarea:invalid {
    border: 4px solid #ff0000;
}

@media (max-width: 600px) {

    input:valid {
        border: 1px solid #33ff00;
    }

    input:invalid {
        border: 1px solid #ff0000;
    }

    select:valid {
        border: 1px solid #33ff00;
    }

    select:invalid {
        border: 1px solid #ff0000;
    }

    textarea:valid {
        border: 1px solid #33ff00;
    }

    textarea:invalid {
        border: 1px solid #ff0000;
    }

}


a {
    color: #52734D;
    text-decoration: none;
}

a:hover {
    color: #52734D;
    text-decoration: underline;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: calc(10px + 1vw);
    background-color: #91C788
        /*#59b459*/
    ;
}

/*Return Top*/
div.returntop {
    width: 25px;
    height: 25px;
    background-color: #DDFFBC;
    border: 1px solid black;
    border-radius: 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    box-shadow: 1px 1px 2px black;
    z-index: 300;
}

.returntop img {
    width: 25px;
    height: 25px;
    position: fixed;
    bottom: 11px;
    right: 11px;
    z-index: 300;
}

div.returntop:hover {
    background-color: #91C788;

}

.centercloud {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 50px;
    position: fixed;
    z-index: -1;
}

.cloud {
    background: #fff;
    border-radius: 100px;
    width: 350px;
    height: 120px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cloud::after,
.cloud::before {
    background: #fff;
    content: '';
    position: absolute;
}

.cloud::after {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    left: 50px;
    top: -50px;
}

.cloud::before {
    border-radius: 200px;
    width: 180px;
    height: 180px;
    right: 50px;
    top: -90px;
}

.cloudone {
    animation: mycloud 22s linear infinite;
    transform: scale(0.55);
    z-index: -1;
}

.cloudtwo {
    animation: mycloud 15s linear infinite;
    transform: scale(0.3);
    z-index: -1;
}

.cloudthree {
    animation: mycloud 30s linear infinite;
    transform: scale(0.45);
    z-index: -1;
}

.cloudfour {
    animation: mycloud 18s linear infinite;
    transform: scale(0.35);
    z-index: -1;
}

@keyframes mycloud {
    0% {
        margin-left: -1500px;
    }

    100% {
        margin-left: 100%;
    }
}

/*NAV BAR*/


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
}

.menu a {
    position: relative;
    font-size: 1.5vw;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 2vw;
}

.header .menu {
    clear: none;
    max-height: none;
}

.header ul {
    background-color: transparent;
    list-style: none;
}

.header li {
    float: left;
    background-color: transparent;
}

.header li a {
    position: relative;
    font-size: 1.5vw;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1vw;
    margin-right: 1vw;
    padding: 10px 10px;
    background-color: transparent;
}

.header li a.link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #52734D;
    transition: 0.3s;
}

.header li a.link:hover::before {
    width: 100%;
}

.header li a.current::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #52734D;
    transition: 0.3s;
}

.header li a.current:hover::before {
    width: 100%;
}

.header .mobile-menu-icon, .mobile-menu-btn {
    display: none;
}

.header .logo {
    max-width: 25vw;
}

@media (max-width: 600px) {

    .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        background-color: transparent;
        z-index: 200;
        margin-bottom: 10%;
        display: block;
    }
    
    .header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color: #52734D;
        color: #fff;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        box-shadow: 2px 2px 8px black;
    }
    
    .header li a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        background-color: #52734D;
        color: #fff;
        text-align: right;
        font-size: 3vw;
    }
    
    .header li a:hover {
        background-color: #FEFFDE;
        color: #52734D;
    }

    .header .logo {
        display: block;
        float: left;
        width: 45vw;
        max-width: 45vw;
        text-decoration: none;
        margin-left: 2vw;
    }

    .header .mobile-menu-icon {
        cursor: pointer;
        display: inline-block;
        float: right;
        padding: 28px 20px;
        position: relative;
        user-select: none;
    }
    
    .header .mobile-menu-icon .navmenu-icon {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }
    
    .header .mobile-menu-icon .navmenu-icon:before,
    .header .mobile-menu-icon .navmenu-icon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    
    .header .mobile-menu-icon .navmenu-icon:before {
        top: 5px;
    }
    
    .header .mobile-menu-icon .navmenu-icon:after {
        top: -5px;
    }
    
    .header .mobile-menu-btn {
        display: none;
    }
    
    .header .mobile-menu-btn:checked ~ .menu {
        max-height: 30%;
    }
    
    .header .mobile-menu-btn:checked ~ .mobile-menu-icon .navmenu-icon {
        background: transparent;
    }
    
    .header .mobile-menu-btn:checked ~ .mobile-menu-icon .navmenu-icon:before {
        transform: rotate(-45deg);
    }
    
    .header .mobile-menu-btn:checked ~ .mobile-menu-icon .navmenu-icon:after {
        transform: rotate(45deg);
    }
    
    .header .mobile-menu-btn:checked ~ .mobile-menu-icon:not(.steps) .navmenu-icon:before,
    .header .mobile-menu-btn:checked ~ .mobile-menu-icon:not(.steps) .navmenu-icon:after {
        top: 0;
    }

    .header .menu {
        clear: both;
        max-height: 0;
        transition: max-height .2s ease-out;
    }

}

.emphasize {
    font-style: italic;
}

.focus {
    width: 68%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #fff;
    z-index: 2;
}

.focus h1 {
    width: 50%;
    text-align: left;
    text-shadow: 2px 2px 4px black;
    margin: 5vh 0 0 0;
}

.focus h4 {
    width: 50%;
    text-align: left;
    text-shadow: 2px 2px 4px black;
}

.hero img {
    padding: 0;
    margin: 0;
    overflow: hidden;
    text-align: left;
    z-index: 0;
}

.hero {
    margin: 0 2vh 0 0;
    padding: 0;
}

.upperhero {
    background: url('../images/headerskylinetallmatte.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 4vw;
    position: relative;
    margin-top: 10%;
}

/*SEARCH FORM CONTAINERS*/

@media (max-width: 600px) {
    input#aptsearch {
        width: 90% !important;
        font-size: 8vw !important;
    }

    input#zipsearch {
        width: 36% !important;
        font-size: 8vw !important;
    }

    button.searchbtn {
        font-size: 6vw !important;
        border: 1px solid black !important;
    }

    button.general {
        font-size: 3vw !important;
    }
}

.searchformcontainer {
    overflow: hidden;
    background-color: #FEFFDE;
    padding-top: 1vh;
    padding-bottom: 2vh;
    padding-right: 1vw;
    padding-left: 1vw;
    border: 2px solid black;
    box-shadow: 2px 2px 8px black;
    text-align: center;
    margin-top: 0;
}

.searchformcontainer label {
    width: 80%;
    display: inline-block;
    margin: 0 auto 1cqw auto;
    font-size: 2.5vw;
    font-weight: bolder;
    text-transform: uppercase;
}

input#aptsearch {
    width: 60%;
    display: inline-block;
    font-size: 2.5vw;
    margin: 0 auto 1vw auto;
    background-color: #ffffff;
    text-align: center;
}

input#zipsearch {
    width: 20%;
    display: inline-block;
    font-size: 2.5vw;
    margin: 0 auto 2vw auto;
    background-color: #ffffff;
    text-align: center;
}

button.searchbtn {
    background-color: #52734D;
    width: auto;
    font-size: 2vw;
    text-align: center;
    margin: 1vw auto 1vw auto;
    border: 2px solid black;
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: 0.6s;
    color: #fff;
    display: flex;
    justify-content: center;
}

button.searchbtn:hover {
    background-color: #91C788;
    transition: 0.6s;

}

button.general {
    transition: 0.6s;
    font-size: 1.5vw;
    cursor: pointer;
    margin-right: 1.25vw;
}

/*PROGRESSION TABS*/

.progression {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
    color: #000;
    font-size: 2vw;
}

@media (max-width: 600px) {

    .intro h2 {
        font-size: 6vw !important;
    }

    div.explain {
        width: 90% !important;
        font-size: 4vw !important;
    }

    #stressed,
    #calm {
        font-size: 4vw !important;
    }

    span.largegreen,
    span.largered {
        font-size: 8vw !important;
    }
}


.prog1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.prog1 img {
    max-width: 60%;
}

.prog2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.prog2 img {
    max-width: 60%;
}

.hr-contain {
    width: 50%;
    margin: 2vw auto;
}

.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: #5a5a5a;
    text-align: center;
    height: 2.5em;
    opacity: 0.5;

    &:before {
        content: '';
        background: linear-gradient(to right, transparent, #818078, transparent);
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
    }

    &:after {
        content: attr(data-content);
        position: relative;
        display: inline-block;
        color: #5a5a5a;
        padding: 0.5em;
        line-height: 1.5em;
        color: #5a5a5a;
        background-color: #e9e9e9;
    }
}


span.largered {
    font-weight: bolder;
    font-size: 5vw;
    color: #A50200;
}

span.largegreen {
    font-weight: bolder;
    font-size: 5vw;
    color: #52734D;
}

div.intro {
    background: #FEFFDE;
    padding-top: 0.5vh;
    padding-bottom: 1.5vh;
    margin-top: 0;
    text-align: center;
    font-size: 2vw;

}

.intro p {
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-size: 2vw;
}

/*FORM CONTAINER*/

@media (max-width: 600px) {
    .formcontainer {
        width: 90% !important;
    }

    input.form_input {
        font-size: 4vw !important;
    }

    .formcontainer select {
        font-size: 4vw !important;

    }

    .formcontainer label {
        font-size: 3vw !important;
    }

    input.submitbtn {
        font-size: 6vw !important;
        border: 1px solid black !important;
    }

    .formcontainer p {
        font-size: 4vw !important;
    }

    #tandc {
        min-height: 4vw !important;
        min-width: 4vw !important;
        margin-bottom: 2vh;
    }

}

.formcontainer {
    width: 70%;
    overflow: hidden;
    margin: 0 auto 3vh auto;
    position: relative;
    padding: 3vh 1vw 1vh 1vw;
    border-radius: 25px;
    transition: 0.2s;
    font-size: 1.6vw;

}

div.formcontainer {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.7) inset;
    background-color: #DDFFBC;
    transition: 0.2s;
}

h1,
h2,
h3 {
    text-align: center;
}

.formcontainer label {
    width: 50%;
    font-size: 2vw;
    font-weight: bolder;
    text-transform: uppercase;
    display: inline-block;
    text-align: right;
}

input.form_input {
    width: 40%;
    font-size: 2vw;
    display: inline-block;
    margin-left: 2vw;
    background-color: #fff;
    text-align: left;
}

.formcontainer select {
    width: 40.75%;
    font-size: 2vw;
    display: inline-block;
    margin-left: 2vw;
    text-align: left;
    background-color: #fff;
    cursor: pointer;
}

input.submitbtn {
    width: auto;
    margin: 1.5vw auto 2vw auto;
    background-color: #52734D;
    font-size: 2vw;
    border: 2px solid black;
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: 0.6s;
    color: #fff;
    display: flex;
    justify-content: center;
}

input.submitbtn:hover {
    background-color: #91C788;
    transition: 0.6s;
}

.formcontainer p {
    font-size: 2vw;
    width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.centertc {
    text-align: center;
    width: 10%;
    margin: 0 auto 0 auto;
}

#tandc {
    min-height: 2vw;
    min-width: 2vw;
    cursor: pointer;
    text-align: center;
    margin-top: 0;
}

/*EXPLAIN BOX*/
div.explain {
    width: 60%;
    margin: 0 auto 0 auto;
    color: #fff;
}

.explain h2 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.bgcover {
    width: 100%;
    background: #91C788;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4vh;
    padding-bottom: 2vh;
}

.bgcoverlight {
    width: 100%;
    background: #DDFFBC;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 4vh;
    padding-bottom: 0;
}

img.imgcenter {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pcenter {
    text-align: center;
}

div.errorcenter {
    width: 70%;
    margin: 5vh auto 5vh auto;
    color: #A50200;
    text-align: center;
    text-transform: uppercase;
}

div.successcenter {
    width: 70%;
    margin: 5vh auto 5vh auto;
    color: #52734D;
    text-align: center;
    text-transform: uppercase;
}

p.success {
    width: 70%;
    margin: 4vh auto 5vh auto;
}

button.greenbtn {
    background-color: #52734D;
    width: auto;
    font-size: 2vw;
    text-align: center;
    margin: 1vw auto 1vw auto;
    border: 2px solid black;
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: 0.6s;
    color: #fff;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

button.greenbtn:hover {
    background-color: #DDFFBC;
    text-decoration: none;
    color: #52734D;
}

a.learnlinks:hover {
    text-decoration: none;
}

.noline a:link {
    text-decoration: none;
}

.noline a:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    button.greenbtn {
        font-size: 5vw;
    }
}

/*FOOTER*/

@media (max-width: 600px) {

    footer {
        font-size: 5vw !important;
        width: 100%;
    }

    .flex-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        text-align: center !important;
    }

    .leftfoot {
        width: 100% !important;
        padding: 1vw;
    }

    .midfoot {
        width: 100% !important;
        padding: 0;
        margin: 0 auto 0 auto;
        text-align: left;
    }

    ul.links {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
    }

    li.footlink {
        margin: 0 auto 0 auto;
        text-align: left;
    }

    .rightfoot {
        width: 100% !important;
        padding: 1vw;
        text-align: center !important;
    }

    div.copyright {
        font-size: 1.5vw;
        padding-bottom: 5px;
    }
}

footer {
    background-color: #52734D;
    padding: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 1vw;
    text-align: left;
}

.flex-column {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
}


.flex-column a:link {
    text-decoration: none;
    list-style-type: none;
    color: #ffffff;
}

.flex-column a:visited {
    text-decoration: none;
    color: #ffffff;
}

.flex-column a:hover {
    text-decoration: underline;
    color: #FEFFDE;
}

.leftfoot {
    width: 25%;
    padding: 1vw;
    margin: 0 auto 0 auto;
}

.midfoot {
    width: 25%;
    padding: 1vw;
    margin: 0 auto 0 auto;
    text-align: center;
}

.midfoot ul {
    list-style-type: none;
    text-align: center;
    padding-left: 0;
}

.rightfoot {
    width: 25%;
    padding: 1vw;
    margin: 0 auto 0 auto;
    text-align: right;
}

div.copyright {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

/*PHP pages*/

.whitefont {
    color: #fff;
}

h2.failure {
    color: #A50200;
    font-size: 3vh;
    margin-top: 1vh;
    margin-left: auto;
    margin-right: auto;
    width: 60%
}

div.container {
    width: 100%;
    margin:0;
}


table {
    text-align: center;
    margin: 0 auto 1vh auto;
    border: none;
    border-collapse: collapse;
}

table.table {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.7) inset;
    transition: 0.3s;
    font-size: 1.5vw;
    cursor: cell;
    margin-bottom: 20vh;
    width: 85%;
    text-align: center;
    user-select: none;
    table-layout: fixed;
}

.table th,
.table td {
    width: 10%;
}

table.proptable {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.7) inset;
    transition: 0.3s;
    font-size: 1.5vw;
    cursor: cell;
    margin-bottom: 10vh;
    width: 68%;
    text-align: center;
    user-select: none;
    table-layout: fixed;
}

.proptable th,
.proptable td {
    width: 20%;
}

table thead {
    border: 2px double black;
    background-color: white;
}

table th {
    border-left: 2px solid black;
    padding: 10px;
}

table tr.proptablerow {
    background-color: #c8ffba;
    transition: 0;
}

table tr.tablerow {
    background-color: #c8ffba;
    transition: 0;
}

table tr.tablerow:hover {
    background-color: #FEFFDE;
    transition: 0;
    font-weight: bolder;
    box-shadow: 0 0 8px black inset;
}

table tr td.tax-check[data-value^="-"] {
    background-color: #33ff00 !important;
}

table tr td.tax-check:not([data-value^="-"]) {
    background-color: #A50200 !important;
    color: #fff;
}

table td {
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    font-size: 1.5vw;
}

table td:last-child {
    border-right: 2px solid black;
}

table td.nodata {
    background-color: #FEFFDE;
}

h6.h6center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {

    table.table,
    table.proptable {
        width: 95%;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.7) inset;
    }

    .table thead, .proptable thead {
        border-left: 1px solid black !important;

    }

    table th {
        border-left: 1px solid black !important;
    }

    .table th {
        font-size: 1.5vw !important;
        width: auto;
        border-left: 1px solid black;
        text-align: center;
        padding: 4px;
    }

    .proptable th {
        font-size: 2vw !important;
        width: auto;
        border-left: 1px solid black;
    }

    .table td {
        font-size: 1.5vw !important;
    }

    .proptable td {
        font-size: 2vw;
    }

    .table td,
    .proptable td {
        width: auto;
        border-left: 1px solid black;
        border-bottom: 1px solid black;

    }

    .table td:last-child,
    .proptable td:last-child {
        border-right: 1px solid black;
    }

}


h1.apt {
    font-size: 4vw;
    background-color: white;
    width: 80%;
    margin: 15% auto 0 auto;
    border: 2px solid black;
    border-radius: 20px;
}

a.breadcrumb:link {
    color: #fff !important;
}

a.breadcrumb:hover {
    text-decoration: none !important;
    color: #52734D !important;
}

a.breadcrumb:visited {
    color: #fff !important;
}

@media (max-width: 600px) {
    
    div.container {
        margin-top: 20%;
    }

    h1.apt {
        margin-top: 20%;
        border: 1px solid #000;
        border-radius: 5px;
    }
}



.aptinfo {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.resultstable {
    margin: 0 auto 10vh auto;
    text-align: center;
    width: 80%;

}

.resultstable thead {
    background-color: #52734D;
    margin-bottom: 2vh;
    color: #fff;
}

.resultstable tr.focusapt {
    background-color: #fff;
}



.resultstable a:link {
    font-size: 8vh;
    text-decoration: none;
}

.resultstable a:visited {
    color: #035301;
}

.resultstable a:hover {
    text-decoration: underline;
}


/*SUBMIT PAGE*/
.rent_header {
    width: 70%;
    margin: 5% auto 2% auto;
}

@media (max-width: 600px) {
    .rent_header {
    margin: 5% auto 2% auto;
    }
}

/*FAQ PAGE*/
hr.dashed {
    border-top: 3px solid #dfdfdf;
    width: 60%;
    margin: 10vh auto 0 auto;
    box-shadow: 2px 2px 4px black;
}

span.question {
    font-weight: bolder;
    text-decoration: underline;
}

.faqs {
    width: 68%;
    margin: 10% auto 0 auto;
}

#faqlist {
    text-align: center;
}

.faq a {
    color: #fff;
    text-decoration: none;
}

.faq a:visited {
    color: #f1f1f1;
    text-decoration: none;
}

.faq a:hover {
    color: #FEFFDE;
}

li.faq {
    padding: 3px;
}

.answers {
    width: 75%;
    margin: 15vh auto 10vh auto;
    background-color: #FEFFDE;
    padding: 3vh 5vw 3vh 5vw;
    border: 4px solid black;
}

.answers p {
    margin-bottom: 5vh;
}

ul.answers {
    margin-top: 2vh;
}

button.backtofaq {
    color: #000;
    text-decoration: none;
    border: 1px solid #fefefe;
    border-radius: 5px;
    font-size: 2vh;
    box-shadow: 0 0 2px black inset;
}

button.backtofaq:hover {
    text-decoration: none;
    background-color: #e0e0e0d7;
    border: 1px solid #52734D;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 0 4px black inset;
    color: #52734D;
}

button.backtofaq a:link {
    text-decoration: none;
}

button.backtofaq a:visited {
    text-decoration: none;
    color: #52734D;
    text-decoration: none;
    border: 1px solid #52734D;
    border-radius: 5px;
    font-size: 2vh;
    box-shadow: 0 0 2px black inset;
}

@media (max-width: 600px) {
    .faqs {
        margin: 20% auto 0 auto;
        width: 90%;
        text-align: left !important;
    }

    .answers {
        width: 90%;
        border: 1px solid black;
        text-align: center;
    }
}

/*CONTACT PAGE*/

@media (max-width: 600px) {
    div.contact {
        margin: 20% auto 0 auto;
        width: 100%;
    }

    .contact form {
        border: 2px solid #000 !important;
        width: 100% !important;
    }

    .contact label {
        font-size: 4vw !important;
    }

    .contact textarea {
        width: 100%;
        font-size: 4vw !important;
    }

    .selector {
        font-size: 4vw !important;
        width: 90% !important;
    }

    .contact input {
        width: 72.5% !important;
        font-size: 4vw !important;
    }

    input.msgsubmitbtn {
        font-size: 4vw !important;
        border: 1px solid black !important;
        width: 15%;
    }
}

.selector {
    width: 90%;
    font-size: 2vw;
    display: inline-block;
    margin-left: 0;
    text-align: left;
    background-color: #fff;
    cursor: pointer;
}

.contact {
    width: 70%;
    margin: 10% auto 0 auto;
    color: #000;
}

.contact label {
    display: inline-block;
    margin: 0 auto 0 auto;
    font-size: 2.5vw;
    font-weight: bolder;
    text-transform: uppercase;
}

.contact p {
    text-align: center;
    margin-bottom: 3vh;
}

.contact form {
    background-color: #FEFFDE;
    padding: 4vw;
    color: #000;
    border: 4px solid #000;
}

.contact input {
    width: 71%;
}

.contact textarea {
    width: 90%;
    font-size: 1.5vw;
}

input.msgsubmitbtn {
    max-width: 30% !important;
    margin: 1.5vw auto 2vw auto;
    background-color: #52734D;
    font-size: 2vw;
    border: 2px solid black;
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: 0.6s;
    color: #fff;
    display: flex;
    justify-content: center;
}

input.msgsubmitbtn:hover {
    max-width: 30% !important;
    margin: 1.5vw auto 2vw auto;
    background-color: #91C788;
    font-size: 2vw;
    border: 2px solid black;
    padding-left: 1vw;
    padding-right: 1vw;
    cursor: pointer;
    transition: 0.6s;
    color: #fff;
    display: flex;
    justify-content: center;
}

/*Terms and Conditions*/
.tandc {
    width: 60%;
    margin: 1vh auto 3vh auto;
    font-size: 0.75vw;
}

@media (max-width: 600px) {
    .tandc {
        width: 95%;
        margin: 20% auto 3vh auto;
        font-size: 5vw;
        text-align: center;
    }
}

/*LEARN*/
.centerul {
    width: 60%;
    margin: 0 auto 2vh auto;
}

div.holding {
    margin-bottom: 5vh;
    margin-top: 10%;
}

@media (max-width: 600px) {
    div.holding {
        margin-top: 20%;
    }
}

/*State Laws*/

h1.start {
    margin-top: 10%;
    margin-bottom: 0;
}

p.learn {
    width: 70%;
    margin: 0 auto 5vh auto;
    text-align: center;
}

table.states {
    width: 80%;
    margin: 0 auto 5vh auto;
}

table tr.tablerowstate {
    background-color: #FEFFDE;
    transition: 0.5;
}

table tr.tablerowstate:hover {
    background-color: #DDFFBC;
    transition: 0.5;
    box-shadow: 0 0 8px black inset;
}

div.state_nav {
    width: 70%;
    margin-left: auto;
    margin-right: auto;

    a:link {
        color: #fff;
    }

    a:visited {
        color: #fff;
    }

    a:hover {
        color: #52734D;
    }
}

@media (max-width: 600px) {
    h1.start {
        margin-top: 20% !important;
    }

    table.states {
        width: 100% !important;
    }

    div.statelaws a, td {
        font-size: 3.5vw !important;
    }

}

/*ARTICLES*/

div.article_nav {
    a:link {
        color: #fff;
    }

    a:visited {
        color: #fff;
    }

    a:hover {
        color: #52734D;
    }
}

div.articles {
    width: 70%;
    margin-left: auto;
    margin-right: auto;

    a:link {
        color: #52734D;
    }

    a:visited {
        color: #52734D;
    }
}

ul.articles {
    list-style-type: none;
    background-color: #FEFFDE;
    border: 3px solid #52734D;
    border-radius: 5px;
    text-align: center;
    padding: 0 10px;
}

@media (max-width: 600px) {
    div.articles {
        width: 90%;
        margin: 0 auto 0 auto;
        text-align: center;
        padding: 0;
    }
    ul.articles {
        padding: 0 5px;
        border: 1px solid #52734D;

    }

    ul.articles li {
        margin-bottom: 20px;
    }
}

.darkgreen {
    color: #52734D !important;
    text-transform: uppercase;
}