*{
  margin:0;
  padding:0; 

}
.bgliner{
  /* background: linear-gradient(#fff, #f6df9a); */
  background-image: url("../../images/bg_02.png");
  background-repeat: no-repeat;
}
.container{
  width:100%;
  height:80vh;
  /* background: linear-gradient(#fff, #f6df9a); */
  position: relative;
  padding-left: 8%;
  padding-right: 8%;
  box-sizing: border-box;
}

nav {
  display: flex;
  align-items: center;
  height: 1800;
  position: relative;
}

nav ul li{
  list-style: none;
  color: #a1a1a1;
  font-size: 12px;
  margin-bottom: 15px;
  cursor: pointer;
}
.content{
  max-width:600px;
  margin-top:0px;
  
}

.content h1{
  font-size: 60px;
}

.content p{
  max-width: 450px;
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  margin: 40px 0;
}

.content-menu p{
  max-width: auto;
  /* background: linear-gradient(#fff, #dd6f0f); */
  background-color:rgb(54, 33, 6) ;
  color: #a1a1a1;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  margin: 100px 0;
}

.logo-image-pc{
  width:480px;
  position:absolute;
  right:10%;
  bottom:3%;
  animation-name: run;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.logo-image-mobile{
  width:340px;
  margin: auto;
  position:absolute;
  /* left: auto; */
  right:2%;
  bottom:10%;
  animation-name: run;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.bottom-menu{
  display: flex;
  position: absolute;
  bottom: 50px;
}
.bottom-menu div{
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-right: 50px;
}
.bottom-menu img{
  width: 25px;
  margin-right: 15px;
}

* {
  box-sizing: border-box;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  /* height: 70px; /* Should be removed. Only for demonstration */
}

.left {
  width: 18%;
}

.right {
  width: 20%;
}

.middle {
  width: 62%;
  display: inline-block;
  vertical-align: middle;
}
ha {
  font-size: 16px;
  color : #7b5e41;
}

hb {
  font-size: 24px;
  color : #7b5e41;
}

@keyframes run {
  from{ transform: translateY(30px)}
  to{ transform: translateY(-50px);}
  
}

