*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.header_search {
    min-height:85vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(images/cottonwood3.jpg);
    background-size: cover;
    background-position: center;
}

.header_design {
    height: 15vh;
    width: 100%;
}

nav{
    display: flex;
    align-items: center;
    padding: 10px 10px;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: bold;
}
.logo{
    width: 100%;
    cursor: pointer;
}

.nav-links li {
    list-style: none;
    display: inline-block;
    margin: 10px 10px;   
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
}
.register-btn{
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    text-decoration-color: blue;
    font-size: 14px;
}
.container{
    padding: 0 5%;
}
.header_search h1 {
    font-size: 4vw;
    font-weight: 500;
    color: #fff;
    text-align: center;
    padding-top: 22%;
}
.search-bar {
    background: #fff;
    width: 70%;
    margin: 30px auto;
    padding: 6px 10px 6px 30px;
    border-radius: 50px;
    
}
.search-bar form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.search-bar form input {
    display: block;
    border: 0;
    outline: none;
    background: transparent;
}
.search-bar form button {
    background: #ff5361;
    width: 55px;
    height 55px;
    min-height: 55px;
    border-radius: 50%;
    border: 0;
    outline: none;
    cursor: pointer;
}
.search-bar form button img {
    width: 15px;
    margin-top: 7px;       
}
.location-input {
    flex: 1;
}
.search-bar form label {
    font-weight: 600;
}

/************** Destinations *******/
.sub-title {
    font-size: 2vh;
    font-weight: 500;
    color: 333;
}

.sub-title-h2 {
    font-size: 1.7vh;
    font-weight: 400;
    color: 333;
}

.sub-title-h3 {
    font-size: 1.5vh;
    font-weight: 200;
    color: 333;
}

.destination {
    display: grid;
    grid-template-columns: repeat(auto-fit, 50vh);
    grid-gap: 5vh;
    padding-bottom: 5%;
}
.destination div img {
    border-radius: 3vh;
    padding: 1vh 1vh 1vh 1vh;
    width: 100%;
    cursor: pointer;
    height: 100%;
    max-width: 70vh;
    max-height: 80vh;

}
.destination div{
    position: relative;
}
.destination div span {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    text-align: center;
}

/************** Metros *******/
.metros {
    margin: 50px 0 20px;
    font-size: 2vh;
    font-weight: 500;
    color: 333;
}
.houses {
    display: grid;
    grid-template-columns: repeat(auto-fit, 38vh);
    grid-gap: 7vh;
    padding-bottom: 5%;    
}
.houses div img {
    border-radius: 3vh;
    padding: 1vh 1vh 1vh 1vh;
    cursor: pointer;
    width: 100%;
    height: 100%;
    max-width: 60vh;
    max-height: 50vh;
}

.houses div{
    position: relative;
}
.houses div span {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    text-align: center;
}

.houses div span h3 {
    font-weight: bolder;
    font-size: 2vh;
}

/****** footer *******/
.footer {
    margin: 80px 0 10px;
    text-align: center;
}
.footer a {
    text-decoration: none;
    color: #999;
    font-size: 22px;
    margin: 0 10px;   
}

.footer hr {
    background: #999;
    height: 1px;
    width: 100%;
    border: 0;
    margin: 20px 0;
}
.footer p {
    padding-bottom: 15px;
}

/********* Design, Management, Cohost Pages *******/
.nav-links_design li {
    list-style: none;
    display: inline-block;
    margin: 0.5vw 0.5vw;
}

.nav-links_design li a {
    text-decoration: none;
    color: #000;
    font-size: 1.6vh;
}
.design div img{
    padding: 10px;
    border-radius: 30px;
    height: auto;
    width: 48%;
    display: inline-block;
    vertical-align: top
    margin-left: auto;
    margin-right: auto;
}
.design div span {
    padding: 30px;
    display: inline-block;
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    vertical-align: top;
}
.design div span p{
    padding: 30px
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    font-size: 13px;
}
.design div span li{
    padding: 10px
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
    font-size: 13px;
}