/* VARIABLES */
/* GLOBAL */
* {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

html,
body {
  display: block;
  width: 100%;
  background: #fff;
  color: #000;
}

a {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  border: none;
  outline: none;
}

p {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 1.75;
}

ul {
  list-style-type: none;
  font-family: "Raleway", sans-serif;
}

ul li {
  text-align: center;
  font-size: 18px;
  margin: 15px 0;
}

ol {
  font-family: "Raleway", sans-serif;
  display: inline-block;
  width: 19%;
  vertical-align: top;
  list-style: none;
}

ol li {
  font-size: 16px;
  margin: 30px 0;
  text-align: center;
}

@media (max-width: 420px) {
  ol {
    padding-left: 0;
    position: relative;
    width: 100%;
    display: block;
  }

  ol li {
    font-size: 16px;
  }
}
iframe {
  height: 400px;
  max-width: 100%;
  display: block;
  margin: 25px auto;
  border: 1px solid black;
}

p + h2 {
  margin-top: 50px;
}

/* CLASSES */
@media (max-width: 420px) {
  .hidden {
    display: none;
  }
}
img.center {
  display: block;
  margin: 40px auto;
}

/* HEADER */
header {
  display: grid;
  grid-template-columns: 1fr 450px 1fr;
  grid-template-rows: 100px;
  align-items: center;
  padding: 0 3%;
}

header .social-icons {
  justify-self: end;
}

header .social-icons li {
  display: inline-block;
  margin-left: 3px;
}

header nav {
  justify-self: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

header nav a {
  font-size: 1em;
  border-right: 1px solid #999;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  padding: 0 25px;
  color: black;
}

header nav a:last-of-type {
  padding-right: 0;
  border: none;
}

header nav a:first-of-type {
  padding-left: 0;
}

@media (max-width: 900px) {
  header {
    grid-template-columns: 1fr 350px;
  }

  header .social-icons {
    display: none;
  }

  header nav {
    /*justify-self: end;*/
  }
}
@media (max-width: 675px) {
  header {
    grid-template-columns: 1fr;
  }

  header nav {
    padding: 1em 0;
  }

  header img {
    display: block;
    margin: 0 auto;
  }
}
/* HERO */
#hero {
  text-align: center;
  height: 400px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  color: #fff;
  background: url("../images/hero.jpg");
  background-size: cover;
  background-position: 100% 43%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 25px;
  justify-items: center;
}

#hero span {
  font-size: 48px;
  line-height: 3.5rem;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
  align-self: end;
}

#hero p {
  width: 60%;
  font-size: 1.45rem;
  line-height: 1.75rem;
  text-shadow: 1px 1px 3px #000;
}

@media (max-width: 900px) {
  #hero {
    height: 300px;
  }

  #hero div {
    top: 45px;
  }

  #hero span {
    font-size: 32px;
  }

  #hero p {
    font-size: 14px;
  }
}
@media (max-width: 675px) {
  #hero {
    height: 225px;
  }

  #hero div {
    top: 0;
    padding: 30px;
    border: none;
    width: 100%;
    height: 100%;
  }

  #hero div br {
    display: none;
  }

  #hero span {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  #hero {
    height: 300px;
    padding-top: 25px;
    grid-row-gap: 0;
    grid-template-rows: 100px auto;
  }

  #hero span {
    line-height: 1.5rem;
    align-self: center;
  }

  #hero p {
    line-height: 1.5rem;
    width: 95%;
  }
}
/* SEARCH THUMBNAILS */
#searches {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3%;
  padding: 50px 3%;
}

#searches a {
  display: block;
  height: 300px;
  max-width: 100%;
  border: 1px solid black;
}

#searches a span:nth-of-type(1) {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  text-shadow: 0 0 5px #111;
}

#searches a span:nth-of-type(2) {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 0 5px #111;
}

#searches a div {
  top: 80px;
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1200px) {
  #searches a span:nth-of-type(1) {
    font-size: 18px;
  }

  #searches a span:nth-of-type(2) {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  #searches {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-row-gap: 25px;
    padding: 25px 3%;
  }

  #searches a {
    height: 100px;
  }

  #searches a div {
    top: 0;
    height: 100%;
    padding-top: 18px;
    background: rgba(0, 0, 0, 0.45);
  }
}
@media (max-width: 420px) {
  #searches a div {
    padding-top: 25px;
  }

  #searches a span:nth-of-type(2) {
    font-size: 28px;
  }
}
/* BOTTOM BLOCKS */
#apartments-for-rent {
  background: url("../images/apartments-for-rent.jpg");
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  color: #fff;
}

#condos-for-sale {
  background: url("../images/condos-for-sale.jpg");
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  color: #fff;
}

#landlords {
  background: url("../images/renting-tips.png");
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  color: #fff;
}

#searches a span {
  display: block;
}

#intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3%;
  padding: 50px 3%;
  justify-items: center;
}

#intro h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

#intro hr {
  display: block;
  width: 200px;
  border: 1px solid #555;
  margin: 25px auto;
}

#intro p + p {
  margin-top: 30px;
}

@media (max-width: 700px) {
  #intro {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  #intro div {
    padding: 0;
  }
}
@media (max-width: 420px) {
  #intro {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    padding-bottom: 0;
  }

  #intro div {
    margin-bottom: 30px;
    padding: 0;
  }

  #intro div + div {
    margin-top: 20px;
  }

  #intro ul {
    left: 0;
  }

  #intro h2 {
    font-size: 20px;
  }

  #intro h2 br {
    display: none;
  }
}
#thumbnails {
  padding: 25px 3%;
}

#thumbnails a {
  width: 400px;
  max-width: 100%;
  height: 200px;
  border: 1px solid black;
  display: inline-block;
}

#thumbnails a span {
  color: #fff;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
}

#retail-space {
  background: url("../images/retail-space.png");
  background-size: cover;
}

#renting-tips {
  background: url("../images/renting-tips.png");
  background-size: cover;
}

section.normal {
  background: #eee;
  padding: 3%;
}

section.normal h1 {
  font-size: 32px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

section.normal ul {
  margin: 20px 0;
  left: 20px;
}

section.normal ul li {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  line-height: 2;
  font-style: italic;
  text-align: left;
}

section.normal p {
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  line-height: 2;
}

section.normal p + p {
  margin-top: 25px;
}

section.normal img {
  max-width: 600px;
  border: 5px solid #fff;
}

section.normal img.left {
  float: left;
  margin: 0 35px 35px 0;
}

section.normal img.right {
  float: right;
  margin: 0 0 35px 35px;
}

section.normal div + div {
  margin-top: 50px;
}

@media (max-width: 420px) {
  section.normal h1 {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  section.normal img {
    max-width: 100%;
  }

  section.normal ul {
    left: 0;
  }

  section.normal ul li {
    font-size: 16px;
  }

  section.normal p {
    font-size: 16px;
    text-align: left;
  }
}
section.forms {
  background: #eee;
  padding: 3%;
  min-height: 525px;
}

section.forms h1 {
  font-size: 32px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

section.forms p {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  line-height: 2;
  text-align: center;
}

@media (max-width: 420px) {
  section.forms p {
    line-height: 1.5;
    margin-top: 25px;
  }

  section.forms p br {
    display: none;
  }
}
.clear {
  display: block;
  clear: both;
}

footer {
  padding: 50px 3%;
  color: #fff;
  display: grid;
  grid-template-columns: 500px auto;
  font-family: "Open Sans", sans-serif;
  clear: both;
  background: black;
}

footer ul li {
  display: inline-block;
}

footer ul li a {
  font-size: 16px;
  border-right: 1px solid #999;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-right: 25px;
  padding-left: 25px;
}

footer ul li:last-of-type a {
  padding-right: 0;
  border: none;
}

footer a {
  color: #fff;
}

footer span {
  display: inline-block;
  margin-bottom: 5px;
}

footer p {
  margin-top: 30px;
  margin-bottom: 5px;
}

footer .home {
  display: block;
  margin-bottom: 5px;
}

footer .phone {
  margin-right: 20px;
}

footer .copy {
  font-size: 12px;
  display: block;
  top: 25px;
  text-align: right;
}

@media (max-width: 420px) {
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  footer .flags {
    margin: 10px auto 0;
    max-width: 90%;
    display: block;
  }

  footer .logo img {
    display: block;
    margin: 0 auto;
  }

  footer .phone,
footer .address,
footer .languages {
    margin: 5px 0;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  footer div:nth-of-type(2) {
    display: none;
  }
}
footer > div:nth-of-type(2) {
  justify-self: end;
}

/* FORMS */
form {
  font-family: "Open Sans", sans-serif;
  max-width: 100%;
  margin: 50px auto;
  display: block;
}

form legend {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  background: #111;
  color: white;
  padding: 5px 15px;
}

form fieldset {
  background: #ddd;
  padding: 25px;
  border: 1px solid black;
  width: 100%;
  margin: 0 auto;
}

form label {
  display: block;
  margin-bottom: 3px;
  left: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}

form label span {
  font-size: 12px;
  color: red;
  text-transform: lowercase;
}

form input,
form select,
form textarea {
  border: 1px solid #aaa;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

form textarea {
  height: 130px;
  font-family: "Open Sans", sans-serif;
}

form button {
  background: #111;
  color: white;
  padding: 20px;
  border-radius: 3px;
  font-size: 14px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  transition: background 0.3s ease;
  font-weight: bold;
  letter-spacing: 1px;
}

form button:hover {
  background: #000;
  cursor: pointer;
}

@media (max-width: 420px) {
  form fieldset {
    width: 100%;
    border: none;
  }

  form .two-columns {
    grid-template-columns: 1fr;
  }

  form .four-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1%;
  align-items: start;
  grid-column-gap: 3%;
}

.two-columns div {
  margin-top: 0 !important;
}

.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 1%;
  align-items: start;
  grid-column-gap: 3%;
}

.four-columns div {
  margin-top: 0 !important;
}

#trips fieldset {
  display: inline-block;
  vertical-align: top;
  margin-right: 50px;
}

#trips fieldset:nth-of-type(1) {
  width: 25%;
}

#trips fieldset:nth-of-type(2) {
  width: 25%;
}

#trips fieldset:nth-of-type(3) {
  width: 40%;
  margin-right: 0;
  margin-bottom: 20px;
}

/* MULTI SELECT */
#selectall,
#deselectall {
  font-weight: bold;
  font-size: 10px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  left: 2px;
  top: -5px;
  letter-spacing: 1px;
}

#selectall:hover,
#deselectall:hover {
  padding-bottom: 3px;
  border-bottom: 1px dotted #222;
}

#deselectall {
  margin-left: 42%;
}

.clear {
  display: block;
  clear: both;
}

#options {
  display: block;
  text-align: right;
  margin-top: -25px;
  margin-bottom: 10px;
  right: 5px;
}

.ms-container {
  background: transparent url("../images/switch.png") no-repeat 50% 50%;
  width: 100%;
  height: 100%;
}

.ms-container li span {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.ms-container:after {
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  min-height: 0;
  visibility: hidden;
}

.ms-container .ms-selectable,
.ms-container .ms-selection {
  background: #fff;
  color: #555555;
  display: inline-block;
  width: 45%;
  margin: 0;
  padding: 0;
  vertical-align: top;
  height: 85%;
}

.ms-container .ms-selectable {
  margin-right: 10%;
}

.ms-container .ms-list {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  height: 100%;
  padding: 0;
  overflow-y: auto;
}

.ms-container ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.ms-container .ms-optgroup-container {
  width: 100%;
}

.ms-container .ms-optgroup-label {
  margin: 0;
  padding: 5px 0px 0px 5px;
  cursor: pointer;
  color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
  border-bottom: 1px #ccc solid;
  padding: 10px 15px;
  color: #000;
  margin: 0;
  font-size: 14px;
  text-align: left;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-color: #08c;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
  background-color: #eee;
  color: #aaa;
  cursor: text;
}

.status p {
  font-size: 28px !important;
  font-weight: bold;
  line-height: 1.5 !important;
  text-align: center;
}

main.contact p {
  text-align: center;
}

main.contact fieldset {
  width: 100%;
  min-height: auto;
}

@media (max-width: 420px) {
  p {
    text-align: center;
  }

  ul li {
    margin: 20px 0;
  }
}
@media screen and (max-width: 420px) {
  #trips fieldset {
    display: block;
    margin: 50px auto;
    width: 100% !important;
    height: auto;
    padding: 15px;
  }

  .ms-container {
    height: 300px;
  }

  .ms-container .ms-selectable,
.ms-container .ms-selection {
    height: 100%;
  }

  #deselectall {
    margin-left: 35%;
  }

  form button {
    margin-top: 0;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */
