
*, :after, :before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased!important;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  /*scroll-behavior: smooth;*/
  touch-action: pan-y !important;
}
body {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;

}
.container,
.content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.smooth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.shadow {
  -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
}
.wrapper {
  width: 100%;
  padding: 0 4.334vw;
}
.list {
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.link {
  position: relative;
  color: #000000;
  text-decoration: none;
}
.link:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.link:hover:after {
  width: 100%;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  z-index: 555;
}
.header-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 100%;
}
.header a {
  position: relative;
  padding: 0 10px;
  color: #000000;
  text-decoration: none;
}
.header-wrapper {

}
.header.full .logo {
  position: absolute;
  left: 2.5vw;
  top: 2.5vw;
  z-index: 100;
}
.header.full .icons {
  position: absolute;
  right: 2.5vw;
  top: 2.5vw;
  z-index: 100;
}
.header .nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header .nav li {
  padding: 0;
  margin: 0;
}
.header.full .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.header.full .nav-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  width: 50%;
  padding: 0 0 0 20%;
}
.header.full .nav, .header.full .nav .nav-list {
  display: block;
  width: 100%;
}
.header.full .nav .nav-container:hover a {
  opacity: 0.5;
}
.header.full .nav .nav-container:hover a:hover {
  opacity: 1;
}
.header.full .nav .nav-list li a {
  display: block;
  padding: 1.5% 0;
  line-height: 1.2;
  font-size: 40px;
  font-weight: 300;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .link-icon {
  display: block;
  width: 50px;
  height: 50px;
  padding: 5px;
  text-align: center;
}
.header .link-icon i {
  height: 40px;
  line-height: 40px;
  font-size: 32px;
}
.header.full.open .link-icon  {
  display: none
}
.header.full .nav-overlay {
  background-color: #FFFFFF;
}
.header .nav-icon {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0 5px;
  cursor: pointer;
}
.header .nav-icon .bar, .header .nav-icon .bar:after, .header .nav-icon .bar:before {
  width: 40px;
  height: 2px;
  background: #000;
}
.header .nav-icon .bar {
  position: relative;
  display: block;
  transform: translateY(25px);
  transition: all 0ms 300ms;
}
.header .nav-icon .bar:before, .header .nav-icon .bar:after {
  content: "";
  position: absolute;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .nav-icon .bar:before {
  left: 0;
  bottom: 10px;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .nav-icon .bar:after {
    left: 0;
    top: 10px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .nav-icon.open .bar {
  background: rgba(255, 255, 255, 0);
}
.header .nav-icon.open .bar:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header .nav-icon.open .bar:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-enter-active,
.nav-leave-active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav-enter,
.nav-leave-to {
  opacity: 0;
}
.nav-leave-active .nav-list li,
.nav-enter-active .nav-list li {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.nav-enter .nav-list li,
.nav-leave-to .nav-list li {
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
          opacity: 0;
}
.nav-list li:nth-child(1) {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}
.nav-list li:nth-child(2) {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav-list li:nth-child(3) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
.nav-list li:nth-child(4) {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
.nav-list li:nth-child(5) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.nav-list li:nth-child(6) {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
.nav-list li:nth-child(7) {
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}
.nav-list li:nth-child(8) {
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}
.nav-list li:nth-child(9) {
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}
.nav-list li:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}


@media screen and (max-width: 500px){
  .header {
    background-color: #FFFFFF;
  }
  .header.full .nav-container {
    width: 100%;
    padding: 70px 10%;

  }
  .header.full .nav-list li a {
    font-size: 28px;
  }
  .header.full .nav .nav-container:hover a {
    opacity: 1;
  }
}
/* Animations */
.fade-up-enter-active,
.fade-up-leave-active {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.fade-up-enter,
.fade-up-leave-to {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
/* Footer */
.footer {
  display: block;
  width: 100%;
  height: 50vh;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}
.footer-container {
  width: 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 15vw;
}
.footer-contact {
  padding: 2vw 0;
}
.footer-contact .link {
  font-size: 4vw;
  line-height: 1;
  font-weight: normal;
  display: inline-block;
  position: relative;
}
.footer .list li {
  margin-right: 15px;
}
@media screen and (max-width: 500px){

}
/* wrappers*/
.wrapper-full .section-container {
  padding: 7.5vw;
}
.wrapper-horizontal .section-container {
  padding: 0 7.5vw;
}
.wrapper-vertical .section-container {
  padding: 7.5vw 0;
}
.wrapper-none .section-container {
  padding: 0;
}
@media screen and (max-width: 500px){
  .wrapper-horizontal .section-container {
    padding: 0;
  }
  .wrapper-full .section-container {
    padding: 7.5vw 0;
  }
}
/* Text */
.title-element h1 {
  font-size: 82px;
  line-height: 94px;
  font-weight: 100;
}
.title-element h2 {
  font-size: 48px;
  line-height: 56px;
}
.text-default .text-element p {
  font-size: 20px;
  margin-bottom: 40px;
}
.text-default .title-element h3 {
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: -0.8px;
  margin-bottom: 40px;
}
.text-default .description-element h6 {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 40px;
}
.text-default .image-element {
  margin-bottom: 40px;
}
.text-small .text-element p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.text-small .title-element h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.text-small .title-element h2 {

}
.text-small .image-element {
  margin-bottom: 20px;
}
.text-large .text-element p {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.text-large .title-element h3 {
  font-size: 48px;
  margin-bottom: 40px;
}
.text-large .title-element h2 {

}
.text-large .image-element {
  margin-bottom: 40px;
}
@media screen and (max-width: 500px){
  .title-element h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .text-default .text-element p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .text-default .title-element h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .text-default .description-element h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .text-default .image-element,
  .text-large .image-element,
  .text-small .image-element {
    margin-bottom: 10px;
  }
}
/* Images */
.article-image {
  width: 100%;
}
.image-element {
  position: relative;
}
/*
.image-element img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
*/
.image-element img.portrait {

}
.image-element img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
/*
.image-element:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(39,36,96, 1);
}
*/
.image-element img.landscape  {
  height: 100%;
}
.image-element img:not(.landscape) {
  width: 100%;
}

/* Main */
.main {
  position: relative;
  display: block;
  width: 100%;
  background-color: #FFFFFF;
}
.main .header-wrapper {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 40px 80px;
  position: relative;
}
.main-container {
  padding-top: 70px;

}
.main-container.empty {
  height:100vh;
}
.main-overlay {
  background: #000;
  opacity: 0;
  visibility: hidden;
}
/* Section */
.section {
  position: relative;
  display: block;
  overflow: hidden;
}
.section-container {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.section-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-footer {
  position: relative;
  display: block;
}
.section-wrapper {
  position: relative;
  display: block;
}
@media screen and (max-width: 500px){
  .section-header {
      padding: 0 20px;
  }
  .section {
    margin-bottom: 40px;
  }
}

/* Articles */
.article {
  width: 100%;
  display: block;
  position: relative;
}
.article .article-content,
.article .article-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.article-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.article-box {
  width: 100%;
}
/* Aligns */
.align-horizontal-ceter .article-content {
  -webkit-justify-content: center;
  justify-content: center;
}
.align-horizontal-center .article-content {
  -webkit-justify-content: center;
  justify-content: center;
}
.align-horizontal-left .article-content {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.align-horizontal-right .article-content {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.align-vertical-ceter .article-content {
  -webkit-jalign-items: center;
  align-items: center;
}
.align-vertical-top .article-content {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.align-vertical-bottom .article-content {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.content-link a {
  text-decoration: none;
  color: #000;
}
/* cursor */
.cursor-link {
  cursor: pointer;
}




/* Detail */



/* Video */
.video {
  overflow: hidden;
  position: relative;
  width:100%;
}
.video::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}
.video-thumb,
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-thumb:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #000;
  opacity: 0.1;
}
.video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.video-control {
  position: absolute;
  bottom: 5vw;
  left: 5vw;
  right: 5vw;
  top: 5vw;
  color: #fff;

}
.video-timeline {
  position: absolute;
  bottom: 5vw;
  left: 5vw;
  right: 5vw;
  height: 40px;
}
.video-timeline:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 15px;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  pointer-events: none;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
}
.video-bar {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 20%;
  height: 4px;
  background: #FFF;
  pointer-events: none;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
}
.video-progress-bar {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
}
.video-info {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 0 5px;
  pointer-events: none;
}
.video-btn {
  box-sizing: border-box;
  height: 26px;
  border-color: transparent transparent transparent #FFFFFF;
  transition: 100ms all ease;
  will-change: border-width;
  cursor: pointer;
  border-style: solid;
  border-width: 13px 0 13px 20px;
}
.video-btn.pause {
  border-style: double;
    border-width: 0px 0 0px 20px;
}
.video-time {
  height: 26px;
  line-height: 26px;
  font-size: 18px;
  margin-left: 15px;
  font-weight: bold;
  letter-spacing: 2px;

}
/* Links */
.links .section-content {
  -webkit-justify-content: center;
  justify-content: center;
}
.links .article {
  padding: 20px;
  width: auto;
}
.links .element img {
  position: relative;
  height: 100%;
  width: auto;
  max-height: 60px;
}
.links .section-header {
  text-align: center;
}
.links .article-list {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
/* Shop */

.shop .article-list {
  margin: 0 -20px;
}
.shop .article {
  width: 50%;
  padding: 20px;
}
.shop .image-element  {
  width: 100%;
  height: 60vh;
  max-height: 600px;
  min-height: 200px;
  margin: 0;
  overflow: hidden;
  display: block;
}
.shop-btn {
  display: inline-block;
  padding: 25px;
  background: #000;
  color: #FFF;
  z-index: 55;
}
/* basket */
.basket {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999999;
}
.basket-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;

}
.basket-content {
  position: relative;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  background-color: #FFFFFF;
  max-height: 100vh;
  overflow: auto;
}
.basket-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.basket-close i {
  line-height: 40px;
  font-size: 28px;
}
/* Controls */

.site-btn {
  width: 70px;
  height: 70px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.site-btn:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.site-btn i {
  line-height: 70px;
  font-size: 40px;
}
.site-btn.disabled {
  opacity: 0.2;
  cursor: auto;
}
.site-btn.disabled:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.content-wrapper {
  padding: 15vw;

}
.text-center {
  text-align: center;
}
/* Rows */
.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -20px;
}
.col {
  padding: 20px;
}
.row .col-1 {
  width: 100%;
}
.row .col-2 {
  width: 50%;
}
.row .col-3 {
  width: 33.33333%;
}
.row .col-4 {
  width: 25%;
}
.row .col-5 {
  width: 20%;
}
@media screen and (max-width: 500px){
  .row .col-2 {
    width: 100%;
  }
  .row .col-3 {
    width: 100%;
  }
  .row .col-4 {
    width: 100%;
  }
  .row .col-5 {
    width: 100%;
  }
}

/* Column */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.col-1 .row {
  width: 100%;
}
.col-2 .row {
  width: 50%;
}
.col-3 .row {
  width: 33.33333%;
}
.col-4 .row {
  width: 25%;
}
.col-5 .row {
  width: 20%;
}
@media only screen and (min-width: 0px) and (max-width: 600px) {
  .col-2 .row,
  .col-3 .row,
  .col-4 .row,
  .col-5 .row {
    width: 100%;
  }
}
/* Error */
.error {
  position: relative;
  display: block;
  padding: 160px 0 120px;
}
.error-container {
  width: 100%;
  max-width: 50vw;
  padding: 0;
  margin: 0 auto;
  -webkit-align-items: stretch;
  align-items: stretch;

}
.error-content {
  width: 66.6666%;
}
.error-content h1 {
  font-size: 15vw;
  line-height: 1.3;
  font-weight: normal;
}
.error-content h3 {
  font-size: 4vw;
  line-height: 1;
  font-weight: normal;
}
.error-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  width: 33.3333%;
}
/* Animations */
.page-enter-active,
.page-leave-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #FFF;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
}
.page-enter-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.page-enter {

  -webkit-transform: translateX(0%) translateY(100vh);
          transform: translateX(0%) translateY(100vh);
}
.page-leave-to {
  -webkit-transform: translateX(0%) translateY(-50vh);
          transform: translateX(0%) translateY(-50vh);
}
.page-leave-active .main-overlay,
.page-leave-active .item,
.page-enter-active .item  {
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
  transition: all cubic-bezier(0.77, 0, 0.175, 1) 1s;
}
.page-leave-to .main-overlay {
  opacity: 0.8;
  visibility: visible;
}
.page-enter .item,
.page-leave-to .item {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  opacity: 0.5;
}
/* dropdown */

/* Auth */
.main-auth .main-container{
  padding: 0;
}
.auth {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  color: #000000;
}
.auth-container {

}
.auth-content {
  position: absolute;
  top: 50%;
  right: 15vw;
  width: 100%;
  max-width: 500px;
  -webkit-transform: translateX(0%) translateY(-50%);
          transform: translateX(0%) translateY(-50%);
          background: #FFFFFF;
}
.auth-message {
  padding: 40px;
}
.auth-message p {
  margin-bottom: 40px;
}
.auth-content h1 {
  font-weight: 300;
}
.auth-content a,
.auth-content span {
  font-weight: 600;
}
.auth-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.auth-form {
  padding: 50px;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

}

@media screen and (max-width: 500px){
  .full-nav .nav-container {
    width: 100%;
    padding: 0 10%;

  }
  .full-nav .nav-list li a {
    font-size: 28px;
  }
  .main .header-wrapper {
      display: block;
      max-width: 800px;
      padding: 60px 20px 20px 20px;
      margin: 0 auto;
      position: relative;
  }
  .main .main-header h1 {
    font-size: 28px;
  }
}

/* Bg */
.main-bg {
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/dark-pattern-bg.svg");
  background-repeat: repeat-y;
  background-position: center top;
  overflow: hidden;

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