#main-header {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding-top: 25px;
    background-image: url('/images/texas-banner.gif');
    background-repeat: no-repeat;
    background-size: cover;
}
#austin-header {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding-top: 25px;
    background-image: url('/images/austin-capital.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#dallas-header {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding-top: 25px;
    background-image: url('/images/dallas-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#houston-header {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding-top: 25px;
    background-image: url('/images/houston-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.main-nav{
    display: flex;
    width: 100%;
    height: 75px;
    justify-content: space-between;
   
}
.logo {
    width: 20%;
}
.logo img{
    position: absolute;
    top: 30px;
    left: 25px;
    width: 15%;
}


.main-nav nav {
    width: 50%;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.main-nav ul li {
    list-style: none;
    width: calc(100% / 5);
}
.main-nav a {
    color: red;
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
}
#banner {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
#banner h1 {
    font-size: 72px;
    color: white;
    
}

#banner button{
    background-color: red;
    color: white;
    border-radius: 20px;
    padding: 10px;
    width: 150px;
    height: 50px;
    border: none;
    font-size: 24px;
    font-weight: bold;
}
.info-btns{
    width: 600px;
    display: flex;
    justify-content: space-around;
}
#banner a {
    color: white;
    text-decoration: none;
}
#about{
    margin-top: 10px;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
#about h2{
    text-align: center;
    font-size: 36px;
}

.main {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    border: 1px solid black;
    border-radius: 10px;
    background: linear-gradient(to bottom right, blue, red)
}
.info {
    width: 70%;
    padding: 15px 44px;
}
h4 {
    font-size: 36px;
    color: white;
    text-decoration: underline;
    margin-bottom: 0;
}
#main-aside {
    border-left: 1px solid black;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#main-aside h3 {
    font-size: 24px;
    text-decoration: underline;
    color: white;
}
#main-aside ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
#main-aside li {
    list-style: none;
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
    color: white;
    cursor: pointer;
}
.active img {
    width: 70%;
}
.active p {
    font-size: 20px;
    color: white;
}
.hidden {
    display: none !important;
}
a:hover {
    color: blue;
}
#active-link {
    color: blue;
}

/* City Page Style */
.city-about {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    
}
.city-info{
    width: 70%;
    margin: 0 auto;
    padding: 25px 85px;
}
.city-info h2{
    font-size: 36px;
}
.city-info h3 {
    font-size:24px;
}
.city-info p {
    font-size: 18px;
    font-family: "Ubuntu", sans-serif;
}
.city-info li {
    margin-top: 12px;
    font-size: 18px;
}

.city-links{
    width: 20%;
    margin: 0 auto;
    padding: 25px 25px;
    border-left: 1px solid black;
}


.city-links h3{
    font-size: 24px;
}
.city-links li {
    font-size: 18px;
}
.city-links img {
    width: 100%;
    margin-top: 10px;
}

th, td {
    width: 500px;
    font-size: 18px;
    border: 1px solid black;
    text-align: center;
}
/* Houston Page */

.houston-about {
    width: 100%;
    box-sizing: border-box;
}
.houston-info {
    width: 52%;
    margin: 0 auto;
    padding: 25px 85px ;
    float: left;
    margin-left: 60px;
    border-right: 1px solid black;
}
.houston-info h2{
    font-size: 36px;
}
.houston-info h3 {
    font-size:24px;
}
.houston-info p {
    font-size: 18px;
    font-family: "Ubuntu", sans-serif;
}
.houston-info li {
    margin-top: 12px;
    font-size: 18px;
}

.houston-info td {
    width: 500px;
    height: 25px;
    font-size: 14px;
    border: 1px solid black;
    text-align: center;
}

.houston-links {
    width: 25%;
    float: left;
    padding: 25px 25px;
    
}
.houston-links img {
    width: 60%;
    top: 10px;
    left: 50px;
    position: relative;
}
.houston-links h3{
    font-size: 24px;
}
.houston-links li {
    font-size: 18px;
}
.houston-links a {
    color: black;
}

/* Form */

#contact-about{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contact-about h2 {
    font-size: 48px;
}
.contact-main {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
}
form{
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 50px;
}
.contact-main aside {
    width: 45%;
    padding-right: 25px;
    border-left: 1px solid black;
}
.contact-main aside > h3 {
    text-align: center;
    font-size: 36px;
    font-weight: bold
}
.contact-main aside li {
    font-size: 22px;
}
label {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}
input{
    width: 50%;
}
textarea {
    width: 500px;
    height: 150px;
}
#submit {
    width: 25%;
    border: none;
    border-radius: 20px;
    margin: 15px 0;
    cursor: pointer;
}
/* Footer */
.footer-info {
    width: 100%;
    height: 250px;
    margin-top: 55px;
    display: flex;
    background-color: blue;
}

.footer-img{
    padding-top: 25px;
    width: 30%;
    
}
.footer-img img {
    width: 100%;
}
.footer-nav {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.footer-nav a {
    text-decoration: none;
    color:white;
}
.footer-nav ul {
    display: flex;
    justify-content: space-evenly;
}
.footer-nav li {
    padding: 0 25px;
    width: calc(100%/5);
    list-style: none;
    font-size: 25px;
    color: white;
}
.footer-nav hr {
    width: 100%;
}
.footer-nav p {
    font-size: 18px;
    color: white;
}

