html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  font-family: "Unbounded", cursive;
}

.wrapper {
  max-width: 100vw;
  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;
}

.title {
  margin: 10vh 20px 0;
  text-align: center;
}
.title__img {
  height: 400px;
  width: 400px;
  margin: 0 auto;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.title__img img {
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
}
.title h1 {
  text-transform: uppercase;
  line-height: 3rem;
  font-size: 3em;
}
.title h2 {
  font-size: 2em;
}
.title a {
  text-decoration: none;
}
.title a .button {
  width: 180px;
  height: 30px;
  border: 3px solid black;
  margin: 0 auto;
  padding-top: 5px;
  color: black;
  font-size: 1.2em;
}

.parrot {
  opacity: 0.7;
  -webkit-animation: rtl 15s linear infinite;
          animation: rtl 15s linear infinite;
  position: fixed;
  bottom: 0;
  right: 0;
}

.parrot img {
  width: 150px;
  overflow: hidden;
}

.parrot:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes rtl {
  0% {
    right: -200px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  40% {
    right: 100%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    right: 100%;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    right: -200px;
  }
}

@keyframes rtl {
  0% {
    right: -200px;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  40% {
    right: 100%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    right: 100%;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    right: -200px;
  }
}
@media (max-width: 851px) and (orientation: landscape) {
  .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .title {
    text-align: right;
  }
}
@media (max-width: 851px) {
  .title {
    margin-top: 10px;
    text-align: right;
  }
  .title__img {
    height: 300px;
    width: 300px;
    margin: 0 auto;
  }
  .title h1 {
    margin-top: 1rem;
    line-height: 3rem;
    font-size: 1rem;
  }
  .title .button {
    margin-right: 0;
    text-align: right;
    padding-right: 20px;
  }
}
@media (max-width: 851px) {
  .parrot img {
    width: 100px;
    overflow: hidden;
  }
}
/*gallery*/
.wrap {
  max-width: 960px;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.gal__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  transition: 1s;
  margin: -30px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.parallax {
  -webkit-perspective: 2px;
          perspective: 2px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.parallax::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.parallax__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.parallax__layer--front {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.parallax__layer--front img {
  opacity: 0.8;
}
.parallax__layer--front img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.parallax__layer--back {
  opacity: 0.6;
  -webkit-transform: translateZ(-1px);
          transform: translateZ(-1px);
}

.sn {
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  -webkit-animation: sn_move 5s linear infinite;
          animation: sn_move 5s linear infinite;
  opacity: 0.7;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sn:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.sn img {
  width: 100%;
  height: 100%;
}

.sn__i:hover {
  -webkit-filter: grayscale(0.2);
          filter: grayscale(0.2);
}

@media (max-width: 768px) {
  .sn {
    width: 40px;
    height: 40px;
  }
}
@-webkit-keyframes sn_move {
  1% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  2% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  3% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes sn_move {
  1% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  2% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  3% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}