/*usual styles*/
html, body {
  height: auto;
  width: 100%; }

body {
  position: relative;
  padding: 0;
  margin: 0; }

.page-wrapper {
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .page-wrapper {
    padding-top: 160px;
  }
}
@media screen and (max-width: 800px) {
  .page-wrapper {
    padding-top: 90px;
  }
}

.screen.first .screen-title {
  margin-bottom: 5px; }

.screen.first .under-title {
  font-family: Montserrat, serif;
  font-size: 1.8vh;
  color: #505050;
  z-index: 5; }

.content-wrapper {
  z-index: 5;
  margin: 65px 0 0 0;
  width: 80%; }
@media screen and (max-width: 800px) {
  .content-wrapper {
    width: 100%;
    margin-top: 25px;
  }
}
/*products*/
.products-wrapper {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }

.product-photo {
  border: 10px solid #fff;
  border-radius: 100%;
  position: relative;
  width: 50vh;
  height: 50vh;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .product-photo img {
    position: absolute;
    height: auto;
    width: 100%; }
@media screen and (max-width: 800px) {
  .product-photo {
    width: 50vw;
    height: 50vw;
  }
}
@media screen and (max-width: 700px) {
  .product-photo {
    width: 70vw;
    height: 70vw;
  }
}

.product-card {
  margin: 5% 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .product-card:not(:last-child) {
    margin: 5% 5% 0 0; }

.content-row {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .content-row.tag-content {
    font-family: Playball, serif;
    font-size: 3.1vh;
    color: #505050; }
