@charset "UTF-8";
:root {
  --gray-1: #1B1B1B;
  --white: #FFFFFF;
  --black-gray: #141414;
  --purple: #906AFF;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Основные стили
=========================================================================================*/
* {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}
html ::-webkit-scrollbar {
  width: 6px;
}
html ::-webkit-scrollbar-track {
  background: #333;
}
html ::-webkit-scrollbar-thumb {
  background: #777;
  border-radius: 6px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #fff;
  cursor: pointer;
}

body {
  background: var(--black-gray);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  font-family: "Open sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  min-height: 100%;
  margin: 0;
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-top: 0;
}

h2 {
  font-size: 34px;
  line-height: 41px;
  margin-bottom: 40px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 40px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
h4 {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
h5 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  h5 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
h6 {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 50px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  h6 {
    margin-top: 25px;
  }
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

img {
  max-width: 100%;
}

a {
  color: var(--black);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
a.is-active {
  color: var(--hover);
}
a:focus {
  outline: var(--hover);
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.wrapper {
  overflow: hidden;
  position: relative;
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  height: 100%;
  text-align: center;
}
.wrapper > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

footer {
  display: none;
}
.button {
  padding: 20px 84px;
  background: var(--brown, #8C8479);
  color: var(--white);
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  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;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

/* Тело страницы
=========================================================================================*/
ul {
  padding: 0;
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  list-style: none;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.img-container {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
@keyframes shake {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
a.link {
    display: block;
    position: absolute;
    margin-bottom: 18%;
    transition: transform 0.2s ease-in-out;
    animation: shake 2s infinite;
}
a.link img {
  max-width: none;
  width: 60vw;
}
a.link:hover {
  opacity: 1;
  filter: drop-shadow(2px 4px 6px black);
}