#header_area{
    background-image: url(../img/about_img1800.jpg);
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

/********** #header_area **/
.header_title::before{
  top: -30px;
  left: 0;
  margin-left: 50px;
}

/***** scroll-guide
******************************/
.scroll {
    position: relative;
    width: 24px;
    height: 24px;
    left: 104px;
    /* transform: translateX(-50%); */
  }
  
  .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
  }
  
  .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
  }
  
  .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
  }
  
  @keyframes move {
    25% {
      opacity: 1;
  
    }
    33% {
      opacity: 1;
      transform: translateY(30px);
    }
    67% {
      opacity: 1;
      transform: translateY(40px);
    }
    100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
  }
  
  .scroll_txt {
    display: block;
    margin-top: 65px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
  }
  
  @keyframes pulse {
    to {
      opacity: 1;
    }
  }

/***** WORKS *****/



/******************** footer **/
/******************************/
.footer_inner{
}
.footer_nav{
    display: flex;
    height: 90px;
    align-items:end;
    padding-top: 6rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--mywhite);
}
.footer_logo_yago{
    display: flex;
    flex-direction: column;
    width: 300px;
    color: var(--mywhite);
}
.footer_logo_yago .business{
    font-size: 12px;
}
.footer_logo_yago .tago{
    font-size: 16px;
    letter-spacing: 2px;
}

.footer_nav_inner{
    display: flex;
}
.footer_nav_inner a{
    display: block;
    font-size: 1rem;
    color: var(--mywhite);
    transition: 0.3s;
    padding-right: 2rem;
}

/**/
.footer_subnav{
    display: flex;
    color: var(--mywhite);
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}
.footer_subnav small{
    display: block;
    width: 300px;
    font-size: 0.5rem;
}
.footer_subnav_inner{
    display: flex;
}
.footer_subnav_inner a{
    display: block;
    font-size: 0.5rem;
    color: var(--mywhite);
    transition: 0.3s;
    padding-right: 2rem;
}
footer a:hover{
    color:var(--mybeige);
}