/* ANIMATION */
.slide_landing {
  height: 100vh;
  overflow: hidden; }
  @media only screen and (max-width: 737px) {
    .slide_landing {
      padding-left: 10%; } }

.landing_video {
  position: absolute;
  z-index: 2;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%; }
  .landing_video:before {
    content: '';
    position: absolute;
    z-index: 3;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 11%;
    background: url(../img/assets/deco.jpg) top center repeat;
    background-size: 800px; }
    @media only screen and (max-width: 737px) {
      .landing_video:before {
        height: 60px;
        background-position: top left; } }
  .landing_video video {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; }

.landing_texts {
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center; }
  @media only screen and (max-width: 737px) {
    .landing_texts {
      text-align: left;
      top: 10%;
      left: 10%;
      right: 0;
      -webkit-transform: none;
      -moz-transform: none;
      -o-transform: none;
      -ms-transform: none;
      transform: none;
      width: 100%; } }

.landing_text {
  font-family: "hurme-bold", "Helvetica Neue", "Helvetica", Arial, Segoe UI Symbol, sans-serif;
  font-size: 70px;
  color: #ffffff;
  line-height: 1em;
  letter-spacing: 0.1em; }
  @media only screen and (max-width: 737px) {
    .landing_text {
      font-size: 45px;
      line-height: 52px;
      max-width: 200px; } }

.landing_text1 {
  padding-top: 80px;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1.5s ease 0s; }

.landing_text2 {
  transform: translateX(50px);
  opacity: 0;
  transition: all 1.0s ease 0.5s; }

.loaded .landing_text1, .loaded .landing_text2 {
  transform: translateX(0%);
  opacity: 1; }

.landing_buttons {
  display: flex;
  margin-top: 40px;
  flex-direction: row;
  opacity: 0;
  transition: opacity 0.5s ease 1.5s; }
  @media only screen and (max-width: 737px) {
    .landing_buttons {
      flex-direction: column; } }
  .landing_buttons button {
    background: transparent;
    color: #ffffff;
    text-decoration: underline;
    font-family: "hurme-semibold", "Helvetica Neue", "Helvetica", Arial, Segoe UI Symbol, sans-serif;
    font-size: 19px;
    width: 50%;
    font-weight: normal;
    letter-spacing: 0.05em; }
    @media only screen and (max-width: 737px) {
      .landing_buttons button {
        font-size: 18px;
        width: 100%;
        text-align: left;
        margin: 10px 0; } }
    @media (hover: hover) {
      .landing_buttons button:hover {
        text-decoration: none; } }
  .loaded .landing_buttons {
    opacity: 1; }
