@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:link, a:hover, a:visited, a:active, a:focus {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div, p, input, button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: inherit;
  font-weight: inherit;
}

.adaptive_image {
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 50% 0px;
  overflow: hidden;
  position: relative;
}

.adaptive_image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.clearfix:after {
  content: '';
  display: table;
  width: 100%;
  clear: both;
}

@font-face {
  font-family: "Photograph Signature";
  font-display: swap;
  src: local("Photograph Signature"), url("../fonts/Photograph Signature.eot?#iefix") format("embedded-opentype"), url("../fonts/Photograph Signature.ttf") format("truetype"), url("../fonts/Photograph Signature.woff") format("woff"), url("../fonts/Photograph Signature.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/*====================================================================*/
.container {
  position: relative;
}

/*====================================================================*/
/*====================================================================*/
li,
span {
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0.025s;
  -o-transition: all 0.25s ease 0.025s;
  transition: all 0.25s ease 0.025s;
}

body {
  font-family: "Open Sans";
  background: #fff;
  color: #020202;
}

.container {
  max-width: 700px;
  margin: 0 auto;
}

/*====================================================================*/
.header__menu-block {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.header__menu-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header__body {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  background-repeat: 50%;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
  display: block;
}

.header__burger {
  display: none;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__list li {
  list-style: none;
  margin: 0px 10px;
}

.header__link {
  text-transform: uppercase;
  text-decoration: none;
}

@media screen and (max-width: calc(768px - 0.02px)) {
  body.lock {
    overflow: hidden;
  }
  .header__logo {
    z-index: 1;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    z-index: 1;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
  }
  .header__burger:hover span {
    background: #fff;
  }
  .header__burger span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
  }
  .header__burger span:nth-child(1) {
    margin: -20px 0px 0px 0px;
  }
  .header__burger span:nth-child(3) {
    margin: 20px 0px 0px 0px;
  }
  .header__burger.active span {
    position: absolute;
    margin: 0;
  }
  .header__burger.active span:nth-child(1) {
    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.active span:nth-child(3) {
    -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  .header__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: auto;
  }
  .header__menu.active {
    top: 0;
  }
  .header__list {
    margin: 90px 0px 0px 0px;
    display: inline-block;
  }
  .header__list li {
    margin: 35px auto;
  }
}

/*============================================================separate*/
.logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.logo__img {
  width: 270px;
}

@media screen and (max-width: calc(375px - 0.02px)) {
  .logo__img {
    margin: 5px 0px 0px 0px;
    width: 245px;
  }
}

/*============================================================separate*/
.section__seen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.section__seen::before {
  content: '';
  position: absolute;
  background: url("../img/seen_background.webp") no-repeat center top;
  z-index: -10;
  width: 800px;
  max-width: 100%;
  height: 1510px;
  bottom: 0;
}

.seen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0px 0px 0px;
}

.seen__title {
  font-family: "Open Sans";
  font-weight: bold;
  font-size: 50px;
}

.seen__style {
  font-family: "Photograph Signature";
  font-size: 90px;
  margin: -40px 0px 0px 0px;
  color: #5e3720;
  white-space: nowrap;
}

.seen__card {
  width: 485px;
  margin: 15px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fff;
  position: relative;
}

.seen__img {
  width: 100%;
  padding: 25px;
}

.seen__shadowbox {
  width: 100%;
  height: 100%;
  position: absolute;
}

.seen__shadow {
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 70px;
  z-index: -1;
}

.seen__shadow:nth-child(1) {
  top: 0px;
  left: 0px;
  -webkit-box-shadow: -10px 10px 25px -15px rgba(0, 0, 0, 0.5), -50px -35px 35px -50px rgba(0, 0, 0, 0.9);
          box-shadow: -10px 10px 25px -15px rgba(0, 0, 0, 0.5), -50px -35px 35px -50px rgba(0, 0, 0, 0.9);
}

.seen__shadow:nth-child(2) {
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 25px -15px rgba(0, 0, 0, 0.5), 50px -35px 35px -50px rgba(0, 0, 0, 0.9);
          box-shadow: 10px 10px 25px -15px rgba(0, 0, 0, 0.5), 50px -35px 35px -50px rgba(0, 0, 0, 0.9);
}

.seen__shadow:nth-child(3) {
  bottom: 0px;
  left: 0px;
  -webkit-box-shadow: -10px 10px 25px -15px rgba(0, 0, 0, 0.5), -35px 60px 40px -50px rgba(0, 0, 0, 0.9);
          box-shadow: -10px 10px 25px -15px rgba(0, 0, 0, 0.5), -35px 60px 40px -50px rgba(0, 0, 0, 0.9);
}

.seen__shadow:nth-child(4) {
  bottom: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 25px -15px rgba(0, 0, 0, 0.5), 35px 60px 40px -50px rgba(0, 0, 0, 0.9);
          box-shadow: 10px 10px 25px -15px rgba(0, 0, 0, 0.5), 35px 60px 40px -50px rgba(0, 0, 0, 0.9);
}

.seen__text {
  font-size: 20px;
  font-family: "PT Sans", sans-serif;
  text-align: center;
  width: 450px;
  margin: 35px 0px 0px 0px;
  line-height: 1.75em;
}

.seen__button {
  width: 230px;
  height: 60px;
  margin: 35px 0px 75px 0px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #020202;
  color: #fff;
  font-size: 14.5px;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn:hover {
  cursor: pointer;
  background-color: #2e241e;
  color: #faf7f4;
}

@media screen and (max-width: calc(666px - 0.02px)) {
  .header__img {
    margin: 5px 0px 0px 0px;
    width: 255px;
  }
  .seen__title {
    margin: 10px 0px 0px 0px;
    font-size: 44px;
  }
  .seen__style {
    margin: -30px 0px 0px 0px;
    font-size: 58px;
  }
  .seen__card {
    width: 345px;
    margin: 30px 0px 0px 0px;
  }
  .seen__img {
    width: 100%;
    padding: 17px;
  }
  .seen__text {
    width: 340px;
  }
  .seen__button {
    margin: 35px 0px 75px 0px;
  }
}

@media screen and (max-width: calc(375px - 0.02px)) {
  .header__img {
    margin: 5px 0px 0px 0px;
    width: 245px;
  }
  .seen__title {
    margin: 10px 0px 0px 0px;
    font-size: 40px;
  }
  .seen__style {
    margin: -25px 0px 0px 0px;
    font-size: 57px;
  }
  .seen__card {
    width: 310px;
    margin: 30px 0px 0px 0px;
  }
  .seen__img {
    width: 100%;
    padding: 15px;
  }
  .seen__button {
    margin: 35px 0px 75px 0px;
  }
}

/*============================================================separate*/
.collection {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.collection__title {
  font-family: "Open Sans";
  font-weight: 700;
  margin: 90px 0px 0px 0px;
  font-size: 36px;
}

.collection__titlespan {
  font-family: "Open Sans";
  font-size: 33px;
}

.collection__new {
  text-align: center;
  width: 300px;
  margin: 30px 0px 0px 0px;
  font-size: 18px;
  line-height: 1.65em;
}

.collection__cards {
  margin: 45px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.collection__know {
  font-size: 18px;
  margin: 35px 163px 0px 163px;
  text-align: center;
  line-height: 1.7em;
}

.collection__button {
  width: 165px;
  height: 55px;
  margin: 40px 0px 0px 0px;
}

.card {
  font-family: "PT Sans", sans-serif;
  margin: 0 2.5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 215px;
          flex: 0 0 215px;
  max-width: 215px;
  min-height: 460px;
  position: relative;
}

.card__img {
  width: 100%;
}

.card__description {
  font-size: 17px;
  margin: 30px 0px 0px 0px;
}

.card__buy {
  font-weight: 700;
  position: absolute;
  bottom: 0;
  text-transform: uppercase;
}

.card__buy span {
  vertical-align: 11%;
  font-size: 11px;
  margin: 0px 0px 0px 5px;
}

.card__buy:hover span {
  margin: 0px 0px 0px 10px;
}

@media screen and (max-width: calc(700px - 0.02px)) {
  .collection__cards {
    margin: 40px 0px 0px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .collection__know {
    margin: 5px 0px 0px 0px;
    min-width: 100px;
    width: 270px;
  }
  .card {
    margin: 0px 2.5px 40px 2.5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    min-width: 300px;
    min-height: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .card__img {
    max-width: 238px;
  }
  .card__description {
    width: 100%;
    text-align: center;
  }
  .card__buy {
    position: relative;
    margin: 20px 0px 0px 0px;
  }
  .card__buy:hover {
    margin-left: 5px;
  }
}

/*============================================================separate*/
.gallery__logo {
  margin: 40px 0px 0px 0px;
}

.gallery-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px 0px 0px 0px;
}

.gallery-image__image {
  width: calc(100% / 4);
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: calc(600px - 0.02px)) {
  .gallery-image {
    margin: 0 auto;
    width: 350px;
  }
  .gallery-image__image {
    width: calc(700px / 4);
  }
}

@media screen and (max-width: calc(375px - 0.02px)) {
  .gallery-image {
    width: 100%;
  }
  .gallery-image__image {
    width: calc(100% / 2);
  }
}

/*============================================================separate*/
.footer {
  font-family: "PT Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__menu {
  margin: 30px auto 0px auto;
}

.footer__rights {
  text-align: center;
  font-size: 14px;
  margin: 10px auto 50px auto;
  letter-spacing: 0.11em;
  color: #979c9f;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-transform: uppercase;
  width: 560px;
}

.menu__item {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.menu__item:hover {
  color: #5e3720;
}

.menu__connector {
  margin: 0px 20px 0px 20px;
  width: 2px;
  height: 17px;
  background: #020202;
}

@media screen and (max-width: calc(600px - 0.02px)) {
  .footer__menu {
    margin: 30px auto 0px auto;
  }
  .footer__rights {
    margin-top: 20px;
    width: 300px;
  }
  .menu {
    width: 300px;
  }
  .menu__connector {
    margin: 0px 20px 0px 20px;
  }
  .menu__connector:nth-child(6) {
    display: none;
  }
}

@media screen and (max-width: calc(375px - 0.02px)) {
  .footer__menu {
    margin: 30px auto 0px auto;
  }
  .footer__rights {
    font-size: 11px;
    margin-top: 20px;
    width: 300px;
  }
  .menu {
    width: 300px;
  }
  .menu__item {
    font-size: 12px;
  }
  .menu__connector {
    margin: 0px 20px 0px 20px;
    height: 15px;
  }
  .menu__connector:nth-child(6) {
    display: none;
  }
}
