* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
body {
  font-family: "proxima_novaregular";
  font-size: 16px;
  line-height: 24px;
}
.start {
  background: #1f1f1f;
}
.start__list-item {
  display: flex;
  overflow: hidden;
}
.start__item {
  position: relative;
  width: 33.333%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 3;
  display: block;
}
.start__item-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center !important;
  background-size: cover !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.start__item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.start__item-logo {
  position: relative;
  z-index: 3;
}
.start__item-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.start__item-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.start__item-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.start__item:hover .start__item-hover {
  bottom: 0;
}
.start__item.v .start__item-hover::before {
  background: #1fffe2;
}
.start__item.v .start__item-hover,
.start__item.v .start__item-hover .enter {
  color: #1f1f1f;
}
.start__item.m .start__item-hover::before {
  background: #ffda00;
}
.start__item.m .start__item-hover,
.start__item.m .start__item-hover .enter {
  color: #ff0096;
}
.start__item.l .start__item-hover::before {
  background: #26bbef;
}
.start__item.l .start__item-hover,
.start__item.l .start__item-hover .enter {
  color: #ffffff;
}
.start__item-desc {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin: 400px 0 50px 0;
  max-width: 277px;
}
.start__item-hover .enter {
  position: relative;
  text-align: center;
  display: block;
  padding-top: 90px;
  cursor: pointer;
}
.start__item .start__item-hover .enter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 66px;
  width: 38px;
  background-size: contain !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.start__item.v .start__item-hover .enter::before {
  background: url("../img/start/enter-1.svg") no-repeat;
}
.start__item.m .start__item-hover .enter::before {
  background: url("../img/start/enter-2.svg") no-repeat;
}
.start__item.l .start__item-hover .enter::before {
  background: url("../img/start/enter-3.svg") no-repeat;
}
.start__item .start__item-hover .enter:hover:before {
  transform: translateY(-10px);
}
@media screen and (max-width: 576px) {
  .start__item-logo {
    max-width: 200px;
  }
  .start__item-logo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1199px) {
  .start__list-item {
    flex-direction: column;
    height: 100vh;
  }
  .start__item {
    width: 100%;
    height: 33.333%;
    min-height: auto;
  }
  .start__item-hover {
    top: 0;
    right: -40%;
    width: 40%;
    bottom: 0;
  }
  .start__item-image {
    background-position: top !important;
  }
  .start__item:hover .start__item-image {
    transform: translateX(-40%);
  }
  .start__item:hover .start__item-hover {
    right: 0;
  }
  .start__item .start__item-hover .enter {
    font-family: "proxima_novabold";
  }
  .start__item .start__item-hover .enter:hover {
    text-decoration: underline;
  }
  .start__item .start__item-hover .enter::before {
    transform: rotate(-90deg);
  }
  .start__item .start__item-hover .enter:hover:before {
    transform: rotate(-90deg);
  }
  .start__item-desc {
    display: none;
  }
}
.created-by {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  font-family: "proxima_novabold";
  letter-spacing: 0.66px;
  color: #ffffff;
  font-size: 11px;
  z-index: 3;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.created-by strong {
  color: #ffffff;
  display: inline-block;
  margin-right: 6px;
}
