@font-face {
  font-family: "Yeseva One";
  src: url("fonts/subset-YesevaOne.woff2") format("woff2"), url("fonts/subset-YesevaOne.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bahnschrift";
  src: url("fonts/subset-Bahnschrift.woff2") format("woff2"), url("fonts/subset-Bahnschrift.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Yeseva One", "Times New Roman", Times, serif;
  line-height: 1.5em;
  font-weight: 500;
}

h2,
h3 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #b99437;
}

.aligncenter {
  text-align: center;
  display: block;
  margin: 0px auto;
}

.mobile-header h1 a:hover {
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Bahnschrift", Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

main {
  padding-bottom: 45px;
}

.page-wrapper {
  min-height: 100vh;
  background-color: #fff;
}

.header {
  width: 90%;
  margin: 0px auto 45px auto;
  padding-top: 100px;
  display: flex;
  position: relative;
  justify-content: space-between;
}
.header__menu {
  font-size: 16px;
  padding-top: 1vw;
  text-transform: uppercase;
  flex-grow: 1;
}
@media (max-width: 1050px) {
  .header__menu {
    display: none;
  }
}
.header .menu {
  display: flex;
  justify-content: end;
}
.header .menu-item {
  list-style: none;
  letter-spacing: 2.5px;
}
.header .menu-item a {
  padding-left: 1vw;
  font-size: 1vw;
}

.header .header-logo {
  font-size: 2.5vw;
  text-transform: uppercase;
  letter-spacing: 14px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .header .header-logo {
    font-size: 30px;
    line-height: 1.3em;
  }
}

.mobile-header {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 340px;
  padding: 30px 30px;
  background-color: #fff;
  display: none;
}
.mobile-header.open-mobile {
  display: block;
}
.mobile-header .header-logo {
  float: right;
  font-size: 30px;
  color: #000;
  margin-top: 30px;
  letter-spacing: 5px;
  text-align: right;
}
.mobile-header .menu {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: right;
  margin-top: 30px;
}
.mobile-header .menu-item {
  list-style: none;
  letter-spacing: 2.5px;
}
.mobile-header .menu-item a {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px 0px;
}

.hamburger-lines {
  height: 26px;
  width: 32px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 1050px) {
  .hamburger-lines {
    display: flex;
  }
}

.hamburger-lines.close {
  float: right;
  cursor: pointer;
}

.hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.hamburger-lines.close .line {
  background: #000;
}

.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines.close .line1 {
  transform: rotate(45deg);
}

.hamburger-lines.close .line2 {
  transform: scaleY(0);
}

.hamburger-lines.close .line3 {
  transform: rotate(-45deg);
}

.container {
  width: 90%;
  max-width: 1715px;
  margin: 0px auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.row .col-50 {
  width: 50%;
}
@media (max-width: 1050px) {
  .row .col-50 {
    width: 100%;
  }
}
.row .col-100 {
  width: 100%;
}

.footer {
  padding: 20px 0px;
  background-color: #000;
  color: #ccc;
}

.text-wrapper {
  background-color: #fff;
  margin: 0px 5%;
  padding: 5%;
}
@media (max-width: 1050px) {
  .text-wrapper {
    margin: 0px;
  }
}

.under-photo-text {
  margin-top: 15px;
}

.portfolio-header-wrapper {
  display: inline-block;
  margin-bottom: 45px;
}

.life-logo-header {
  display: flex;
  align-items: baseline;
}
@media (max-width: 600px) {
  .life-logo-header {
    flex-direction: column;
  }
}
.life-logo-header h2 {
  font-size: 4vw;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .life-logo-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.life-logo-header h3 {
  font-size: 2.5vw;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .life-logo-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.life-logo-header .facebook-icon {
  width: 2vw;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .life-logo-header .facebook-icon {
    width: 20px;
  }
}

.life-logo {
  width: 9vw;
}
@media (max-width: 600px) {
  .life-logo {
    width: 100px;
    margin-bottom: 10px;
  }
}

.portfolio-images-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 45px;
       column-gap: 45px;
  row-gap: 30px;
}
@media (max-width: 1050px) {
  .portfolio-images-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .portfolio-images-wrap {
    grid-template-columns: 1fr;
  }
}
.portfolio-images-wrap .portfolio-item-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
  letter-spacing: 3px;
}
@media (max-width: 600px) {
  .portfolio-images-wrap .portfolio-item-title {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.portfolio-images-wrap .portfolio-item-title span {
  font-size: 24px;
}
.portfolio-images-wrap .portfolio-item:hover {
  transform: scale(1.1);
}

.collection-row {
  display: flex;
}
@media (max-width: 1050px) {
  .collection-row {
    flex-wrap: wrap;
  }
}

.collection-row:nth-child(even) .collection-col {
  order: 1;
}
.collection-row:nth-child(even) .collection-col:first-child {
  order: 2;
}

@media (max-width: 1050px) {
  .collection-row .collection-col {
    order: 2 !important;
  }
  .collection-row .collection-col:first-child {
    order: 1 !important;
  }
}
.collection-col {
  width: 50%;
}
@media (max-width: 1050px) {
  .collection-col {
    width: 100%;
  }
}

.small-photo-wrap {
  margin: 15% 15% 0% 15%;
  padding: 15% 15% 3% 15%;
  background-color: #fff;
}

.painting-title {
  font-size: 18px;
  margin-bottom: 3%;
  letter-spacing: 3px;
  text-align: center;
}
@media (max-width: 600px) {
  .painting-title {
    font-size: 14px;
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=custom.css.map */