@font-face {
  font-family: 'light';
  src: url("../fonts/Gilroy-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'regular';
  src: url("../fonts/Gilroy-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}

html {
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

section.start {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.clip {
  position: relative;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  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;
}

.logotype {
  width: 303px;
}

@media (max-width: 1199px) {
  .logotype {
    width: 250px;
  }
}

@media (max-width: 800px) {
  .logotype {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .logotype {
    width: 140px;
  }
}

.clip.left {
  background: #f5f5f5;
}

.clip.right {
  background: #000;
  -webkit-transform: translateY(-100vh);
          transform: translateY(-100vh);
  -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
          clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

@media (max-width: 767px) {
  .clip.right {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  }
}

.title__wrapper {
  position: absolute;
}

.title {
  font-size: 3.33vw;
  font-family: 'light', sans-serif;
  font-weight: 300;
  color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

.title.reverse {
  color: #fff;
}

.title::after {
  position: absolute;
  width: 0%;
  left: 50%;
  height: 1px;
  background: #000;
  content: '';
  bottom: -20px;
  display: inline-block;
  -webkit-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.title:hover::after {
  width: 100%;
}

@media (max-width: 767px) {
  .title {
    font-size: 24px;
    font-family: 'regular', sans-serif;
    font-weight: 400;
  }
}

.title__wrapper.show {
  left: 10%;
}

@media (max-width: 767px) {
  .title__wrapper.show {
    left: 50%;
    bottom: 15%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.title__wrapper.store {
  right: 14%;
}

@media (max-width: 767px) {
  .title__wrapper.store {
    right: 50%;
    top: 22%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.right .title {
  color: #f5f5f5;
}

.right .title.reverse {
  color: #000;
}

.right .title::after {
  background: #f5f5f5;
}
/*# sourceMappingURL=start.css.map */