html {
  --bgcolor: #D6D4CB;
  --bgcolor2: #c2c1b8;
}

html,
body,
#background {
  background: var(--bgcolor);
  color: black;
  font-size: 18px;
  margin: 0px;
  height:100%;
}

p {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}

h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 20px;
}

.para {
  font-weight: bold;
  margin-top: 40px;
}

a         { text-decoration: none; color: #333333; }
a:visited { text-decoration: none; color: #666666; }
a:hover   { text-decoration: none; color: #007BFF; }
a:active  { text-decoration: none; color: #0056b3; }

hr {
  border-top: 2px solid #dddddd;
  margin-left: -1%;
  margin-right: -1%;
}

.table {
  display: table;
  width: auto;
}

.table_row {
  display: table-row;
  width: 100%;
  clear: both;
}

.table_col {
  float: left;
  text-align: left;
  display: table-column;
  width: 250px;
}

.table_col_title {
  float: left;
  text-align: left;
  display: table-column;
  width: 100%;
}

.table_col_center {
  float: left;
  text-align: center;
  display: table-column;
  width: 100%;
}

input[type="image"] {
  margin-top: 5px;
  vertical-align:middle;
}

.sold { position:relative; }
.sold::before{
  content:url(/images/sold.png);
  position:absolute;
  z-index:2;
  top:0;
  left:0;
}

.soldPortrait { position:relative; }
.soldPortrait::before{
  content:url(/images/sold.png);
  position:fixed; 
  z-index:2;
  top:0;
  left:62px;
}

.soldLandscape { position:relative; }
.soldLandscape::before{
  content:url(/images/sold.png);
  position:absolute; 
  z-index:2;
  top:0;
  left:0;
}


.label {
  font-family: PT Sans Narrow;
  font-weight: bold;
  color: black;
  margin-top: 5px;
  margin-bottom: 10px;
}

.label ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: -6px;
  margin-bottom: 0px;
  overflow: hidden;
  background-color: var(--bgcolor);
  filter: drop-shadow(10px 10px 5px #555555);
}

.label li {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 1%;
  margin-bottom: 1%;
}

.icons ul {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  background-color: var(--bgcolor);
}

.icons li {
  float: right;
  padding: 5px;
}

.icons img {
  width: 20px;
  height: 20px;
}

/* numeric lists */
.numlist {
  margin-bottom:10px;
}

.numlist span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:25px;
  height:25px;
  border-radius:50%;
  background-color: var(--bgcolor2);
}

/* NAV */

.navwrapper {
  padding-bottom: 35px;
  background-color: var(--bgcolor);
}

.navinner {
  background-color: var(--bgcolor2);
  display: flex !important;
  flex-wrap: wrap;
  min-width: 0;
  align-content: flex-start;
}

.nav {
  flex-basis: 100%;
  border-bottom: solid 1px black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.isMobile .navinner .nav {
  flex-basis: 50%;
  border: none;
  align-items: baseline;
}

.navinner .nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  padding: 10px 0 10px 0;
}

.inner2 ul {
  padding: 10px 0 10px 40px;
}

body.isMobile .navinner .nav ul {
  padding-top: 0px;
}

.navinner .nav li {
  float: left;
}

.nav li a {
  display: block;
  color: black;
  text-align: center;
  padding: 5px 15px;
  text-decoration: none;
}


.navinner .nav li a:hover {
  color: #59756F;
}

.hamburger {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  padding: 4px;
  border: black solid 1px;
  background: white;
  color: black;
  cursor: pointer;
  text-align: left;
}

body.isMobile .hamburger {
  display: block;
}

body.isMobile .closeIcon {
  display: none;
}

body.isMobile .navinner  {
  top: 0;
  left:0;
  display: inline-block;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.2s;
  opacity:0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  list-style: none;
  padding-top: 3rem;
  border: 1px solid;
  overflow-y: auto;
  vertical-align: top;
  padding-bottom: 20px;
}

body.isMobile .navinner li {
  float: none;
  display: block;
}

body.isMobile .navinner.showMenu {
  transform: translateY(0);
  opacity: 1;
}

body.isMobile .navinner a {
  text-align: left;
}

.searchMobile {
  display: none;
}

body.isMobile .searchDesktop {
  display: none;
}

body.isMobile div.searchMobile {
  display: block;
  flex-basis: 100%;
}

.searchDesktop form,
body.isMobile .searchMobile form {
  display: flex;
  height:100%;
  align-items: stretch;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="emoticon"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type=”email”],
input[type=”tel”],
input[type=”number”],
.input-checkbox {
-webkit-appearance: none !important;
border-radius: 0;
}

input[type="text"] {
  margin-top: 5px;
  vertical-align:middle;
}

input[type="reset"],
input[type="submit"] {
  margin-top: 5px;
  vertical-align:middle;
  cursor: pointer;
}

.searchDesktop form input[type="submit"],
body.isMobile .searchMobile form input[type="submit"],
.searchDesktop form input[type="text"],
body.isMobile .searchMobile form input[type="text"] {
  margin: 0px;
  outline: none;
  border: none;
}

.searchDesktop form input[type="submit"],
body.isMobile .searchMobile form input[type="submit"] {
  padding: 0px;
  background-color: white;
  width: 32px;
  color: black;
  border-width: 0;
 }

.searchDesktop form input[type="text"],
body.isMobile .searchMobile form input[type="text"] {
  flex: 100%;
  font-size: 16px;
  padding: 10px 20px 10px 14px;
}

body.isMobile .searchMobile form input[type="text"],
body.isMobile .searchMobile form input[type="submit"] {
  border: solid black;
  border-width: 1px 0 1px 0;
}

.markets {
}

.mbody {
  display: flex;
  align-items: center;
}

.markets  ul {
  list-style: none;
  display: flex;
  /* flex-direction: row; */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: left;
  justify-content: left;
  justify-items: left;
}

.markets li {
  margin: 5px 5px;
  margin-bottom: 20px;
  /* display: inline-block; */
  /* width: 300px; */
  height: 20px;
  padding: 20px 20px;
  display: block;
  /* position: relative; */
  /* margin-left: auto; */
  margin-right: 20px;
  margin-top: auto;
  margin-bottom: 20px;
  border: 1px solid #000000;
  background: #CCCCCC;
  filter: drop-shadow(10px 10px 5px #555555);
  flex-basis: auto;
  flex-grow: 0;
  justify-content: left;
  /* min-width: 200px; */
  align-self: baseline;
  width: 290px;
  text-align: left;
  justify-content: left;
  justify-items: left;
}

.VITRUGradient li {
  background-color: #9966FF;
}

.markets img {
  width: 16px;
  height: 16px;
  margin-right: 20px;
}

.menu ul {
    display: inline-flex;
    flex-basis: 50%;
    justify-content: center;
    border-top: solid 1px black;
    border-left: solid 1px black;
    border-right: solid 1px black;
    border-bottom: solid 1px black;
    background-color: var(--bgcolor2);
    padding: 10px;
}

.menu li {
    cursor: pointer;
    padding: 5px 15px;
    border: none;
    color: black;
}

.menu a {
  white-space:nowrap;
}

.active {
  background-color: var(--bgcolor);
  color: #59756F;
}

ul.no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

ul.about-bullets {
  list-style-type: circle;
  padding: 0;
  margin: 20px 0px 0px 20px;
}

.box {
  display: inline-block;
  width: 500px;
  height: auto;
  padding: 20px 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid #000000;
  background: #CCCCCC;
  filter: drop-shadow(10px 10px 5px #555555);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.gallerySet {
  margin: 0px;
  padding: 2px;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 20px;
  width: 388px;
  filter: drop-shadow(10px 10px 5px #555555);
}

body.isMobile .gallerySet {
  flex: 100%;
}

.gallerySet video,
.gallerySet img {
  width: 100%;
  object-fit: contain;
}

.gallerySet img.Portrait {
  height: 388px;
}

body.isMobile .gallerySet img.Portrait {
  height: 100%;
}

.image {
  display: block;
  margin: 0px;
  padding: 0px;
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.inner a:link { text-decoration: underline; color: #0000FF; font-weight: bold;}

.image img {
  max-width:100%;
  height: auto;
  margin: 0px;
  filter: drop-shadow(10px 10px 5px #555555);
}

.gallerySet video {
  height: auto;
  margin: 0px;
  filter: drop-shadow(10px 10px 5px #444444);
  object-fit: cover;
}

.page {
  margin-left: 5%;
  margin-right: 5%;
}

.inner {
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
  margin-bottom: 5%;
  font-style: italic;
}

.outer {
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.centering { display: flex; }
.centering .centerimg { margin-left: auto; margin-right: auto; text-align: center; }
.centering .menu      { margin-left: auto; margin-right: auto; text-align: center; }
.centering .inner     { margin-left: auto; margin-right: auto; text-align: center; }
.centering H1         { width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
.centering H2         { width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
.centering H3         { width: 100%; margin-left: auto; margin-right: auto; text-align: center; }

.centerimg img { width: 100%; }

.rightimg {
  display: block;
  float: right;
  margin-left: 20px;
  filter: drop-shadow(10px 10px 5px #444444);
  margin-bottom: 20px;
  text-align: center;
}

.rightimg img {
  margin-bottom: 20px;
}

.centerimg {
  filter: drop-shadow(10px 10px 5px #444444);
  margin-bottom: 20px;
}

.centerimg img {
  margin-bottom: 20px;
}

body.isMobile .rightimg {
  margin-left: auto; margin-right: auto; text-align: center;
  float: none;
  margin-bottom: 20px;
}

body.isMobile .rightimg img {
  width: 100%;
  margin-bottom: 20px;
}

footer a {
  text-decoration: none;
  color: black;
}

footer {
  display: block;
  margin-top: 50px;
  text-align: right;
  padding: 10px;
}

.copy {
  display: block;
  color: grey;
  font-weight: 200;
  font-size: 13px;
  margin-top: 3px
}

        .breadcrumb {
            text-align: center;
            margin: 10px 0;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #007BFF;
            margin: 0 5px;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }

