@import url(./../../css/common.css);
@import url(./../../css/font.css);


html {height: -webkit-fill-available;}
::-webkit-scrollbar {display: none;}
body{
  font-family: 'ClarityCity';
  font-weight: 400;
  background: #F6F2EE;
  color: #363432;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  -ms-overflow-style: none;
}

.section{
  width:100%;
  height:auto;
  position:relative;
}

/* header */
header{
  width: 100%;
  position: relative;
}
header nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  z-index: 999;
}
header nav ul{
  width: inherit;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #363432;
  transition: 0.3s;
}
header nav ul a i{font-size: 20px;}
header .logo a{
  display: inline-block;
  background: url(../img/logo_b.svg) no-repeat center center;
  width: 140px;
  height: 30px;
  margin-top: 2px;
  transition: 0.3s;
}

header .menu{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: inherit;
  height: 100vh;
  background: #363432;
  color: #fff;
  z-index: 999;
}
.menuText{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.menuText ul li{
  font-family: 'Assassin';
  font-size: 50px;
  line-height: 70px;
}
.menu .close{
  font-size: 40px;
  position: absolute;
  top: 19px;
  left: 22px;
  cursor: pointer;
  color: #837f7c;
}
.shopMenu{
  display: none;
  margin: -5px 0 15px;
}
.shopMenu li a{
  font-family: 'ClarityCity';
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 30px;
}


/* content */
.content{
  width: 100%;
  padding: 100px 30px 40px;
  font-size: 14px;
}
.content h2{
  font-family: 'Assassin';
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.content button{
  font-family: 'ClarityCity';
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  width: 100%;
  height: 50px;
  background: #363432;
  color: #fff;
  border-radius: 50px;
  outline: none;
  border: none;
  box-shadow: 0 8px 10px #36343252;
  margin-bottom: 30px;
  transition: 0.5s;
}
.content button:hover{
  transform: translateY(-10px);
  box-shadow: 0 18px 20px #36343252;
}
.content button.white{
  background: #fff;
  color: #363432;
  box-shadow: none;
  margin-bottom: 20px;
}
.content input{
  font-family: 'ClarityCity';
  font-size: 14px;
  width: 100%;
  border: none;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}
input::placeholder{
  color: #837f7c;
  transition: 0.3s;
}
.content input:focus::placeholder{
  color:transparent;
  transition: 0.3s;
}
.content p{margin: 10px 0 30px;}
.content .font{
  font-family: 'Pretendard';
  font-weight: 300;
}


/* footer */
footer{
  width: 100%;
  height: 300px;
  background: #363432;
  color: #fff;
  padding: 30px;
  position: relative;
}
.logoB{text-align: center;}
footer img{
  width: 140px;
  margin: 20px 0;
}
footer ul{
  width: 350px;
  display: flex;
  justify-content: space-evenly;
  text-transform: uppercase;
  font-size: 13px;
  color: #d4d0cb;
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
}
footer p{
  font-size: 11px;
  text-align: center;
  color: #aca8a4;
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
}
footer p:nth-of-type(1){
  bottom: 65px;
  line-height: 18px;
  text-transform: lowercase;
}