@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&display=swap');

* {
    font-family: 'Lato', sans-serif;
}

.logo {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 36px;
}

.logo span {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 32px;
}

.top-container {
padding-top: 120px;
}

.gz-rose-icon {
    widows: 50px;
    height: 50px;
}

.gz-green-txt { color: #436032; }
.gz-bg-green { background-color: #436032; }

.gz-red-txt { color: #ea402f}
.gz-bg-red { background-color: #ea402f; }

.gz-red-underline { border: 1px solid #ea402f;}

.gz-hero {
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gz-btn {
    font-size: 21px;
}

.btn-primary:hover {
  background-color: #2d4122;
}

.gz-select {
  width: 150px;
  border-radius: 0;
  border: 1px solid #436032;
}

.darken-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  background-color: rgb(0, 0, 0, 0.5);
  display: none;
  z-index: 5;
}

/* menu icon */

.menu-icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-icon {
    position: relative;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    width: 30px;
    height: 2px;
    background-color: #000;
}

.menu-icon::before {
    position: absolute;
    left: 0;
    top: -10px;
    content: '';
    display: block;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.menu-icon::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: '';
    display: block;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}

.menu-icon.menu-icon-active {
    background-color: transparent;
}

.menu-icon.menu-icon-active::before {
    transform: rotate(45deg);
    top: 0;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    background-color: #000;
}

.menu-icon.menu-icon-active::after {
    transform: rotate(-45deg);
    top: 0;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    background-color: #000;
}

header {
  position: fixed;
  width: 100%;
  z-index: 10;
}

#main-header {
  background-color: #fff;
}

header .gz-red-underline {
  width: 100%;
}

nav {
  position: fixed;
  width: 300px;
  background-color: #fff;
  height: 100%;
  z-index: 10;
  display: none;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  margin: 20px;
}

nav ul li a {
  color: #436032;
  font-size: 18px;
}

nav ul li a:hover {
  color: #2d4122;
}

/* home page */

.gz-slanted-image {
  height: 500px;
  background-color: #436032;
  position: relative;
  background-position: center;
}

.gz-slanted-image:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
}

.gz-slanted-image-left {
  background-image: url(../assets/image-slant-left.png);
}

.gz-slanted-image-left:after, .gz-slanted-image-right:after {
  display: none;
}

.gz-slanted-image-right {
  background-image: url(../assets/image-slant-right.png);
}

.sold-tag {
  position: absolute;
  color: #fff;
  padding: 0 10px;
  top: 20px;
  left: 12px;
}

.sold-tag.sold-listing {
  top: auto;
  left: auto;
  margin-top: 20px;
  margin-left: -2px;
  z-index: 5;
}

@media only screen and (min-width: 992px) {

  .gz-slanted-image-left:after, .gz-slanted-image-right:after {
    display: inherit;
  }

  .gz-slanted-image-left:after {
    border-style: solid;
    border-width: 500px 0 0 180px;
    border-color: transparent transparent transparent #fff;
  }

  .gz-slanted-image-right:after {
    border-style: solid;
    border-width: 0 0 500px 180px;
    border-color: transparent transparent #ffffff transparent;
    right: 0;
  }

}

.gz-wrapper {
  margin: 3em auto;
}

/* .masonry .grid{
  margin: 1.5em 0;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: .85em;
} */

figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  break-inside: avoid;
}

/* figure > img {
  grid-row: 1 / -1;
  grid-column: 1;
} */

.grid {
  column-count: 1;
  column-gap: 10px;
}

.item {
  padding: 0em;
  margin: 0 0 1.5em;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.item img, .item .gz-btn {
max-width: 100%;  
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
width: 100%;
}

.item .gz-btn {
  font-size: 18px;
}

.item:hover img, .item:hover .gz-btn {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
transform: scale(1.05);
}

.item .sold-tag {
  transition: margin-left 0.3s;
}

.item:hover .sold-tag {
  margin-left: -10px;
}

/* @media only screen and (min-width: 400px) {
  .masonry .grid{
      -moz-column-count: 2;
      -webkit-column-count: 2;
      column-count: 2;
  }
} */

@media only screen and (min-width:768px) {
  .masonry .grid{
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
  }
}

/*
@media only screen and (min-width: 1080px) {
  .masonry .grid{
      -moz-column-count: 4;
      -webkit-column-count: 4;
      column-count: 4;
  }
} */

/* @media only screen and (min-width: 1100px) {
  .masonry {
      -moz-column-count: 5;
      -webkit-column-count: 5;
      column-count: 5;
  }
} */

.content {
  padding-top: 150px;
  padding-bottom: 150px;
}

.gallery-image {
  cursor: pointer;
}

.selectric {
  width: 150px;
  border: 1px solid #436032;
  background-color: #fff;
}

.selectric .button {
  background-color: #fff;
}

.selectric .label {
  font-size: 14px;
}

.selectric .button:after {
  border-top-color: #436032;
}

#currency-container .selectric {
  width: 100%;
  border-left: none;
  border-right: none;
  border-top: none;
}

.zoom-icon {
  position: absolute;
  color: #fff;
  right: 25px;
  bottom: 10px;
}