
.container{
  width: 90%;
}
.margined{
  margin: 75px auto;
}

.mobilegone{ display: none; }
.mobilehere{ display: block; }




#mobilenav {
  width: 45px;
  height: 35px;
  position: absolute;
  right:10px;
  top:15px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#mobilenav span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#mobilenav span:nth-child(even) {
  left: 50%;
}

#mobilenav span:nth-child(odd) {
  left:0px;
}

#mobilenav span:nth-child(1), #mobilenav span:nth-child(2) {
  top: 5px;
}

#mobilenav span:nth-child(3), #mobilenav span:nth-child(4) {
  top: 15px;
}

#mobilenav span:nth-child(5), #mobilenav span:nth-child(6) {
  top: 25px;
}

#mobilenav.open span:nth-child(1),#mobilenav.open span:nth-child(6) {
  transform: rotate(45deg);
}

#mobilenav.open span:nth-child(2),#mobilenav.open span:nth-child(5) {
  transform: rotate(-45deg);
}

#mobilenav.open span:nth-child(1) {
  left: 5px;
  top: 8px;
}

#mobilenav.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 8px;
}

#mobilenav.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#mobilenav.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#mobilenav.open span:nth-child(5) {
  left: 5px;
  top: 21px;
}

#mobilenav.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 21px;
}



.flex{
  flex-wrap: wrap;
}

.flex .half{
  width: 100%;
  margin-right: 0;
}

.flex .third{
  width: 100%;
  margin-right: 0;
}


.mobile-grid{
  display: grid;
  gap: 0; 
}
.mobile-grid-6{
  grid-template-columns: repeat(6, 1fr); 
}

.mobile-grid-5{
  grid-template-columns: repeat(5, 1fr); 
}

.mobile-grid-4{
  grid-template-columns: repeat(4, 1fr); 
}

.mobile-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mobile-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.mobile-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}


.mobile-span-1 {
  grid-column: span 1;
}
.mobile-span-2 {
  grid-column: span 2;
}
.mobile-span-3 {
  grid-column: span 3;
}
.mobile-span-4 {
  grid-column: span 4;
}
.mobile-span-5 {
  grid-column: span 5;
}
.mobile-gap-0{
  gap:0;
}

.mobile-first{
  order:1;
}
.mobile-second{
  order: 2;
}

header{
  padding: 0; 
}
header h1 img.block{
  width: 200px; 
  margin: 15px; 
}

.header-title{
  bottom:-20px;
  left: 0;
  font-size: 1.4rem;
  font-weight: 400; 
  padding: 15px 25px 15px 20px;
}


#navbar{
  background-color: var(--secondary);
  border-bottom: 1px solid #FFF; 
}
#navbar a{
  display: block;
  text-align:center;
  border:0;
  border-top: 1px solid #FFF;
  padding: 15px; 
  margin:0;
}
#navbar a.current{
  background-color: var(--secondarybg);
  color: var(--secondary);
}

.hero{
  height: 60vh; 
}

.property span{
  bottom:0;
}

.mobile-center{
  text-align:center; 
}

footer img{
  max-width:100%;
}


.listing-icons span{
  border: 0;
  padding: 10px;
  text-align:left;
}

.listing-icons span img{
  height: 20px; 
  vertical-align: middle;
}


