@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow&family=Barlow+Condensed&family=Bellefair&family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
/*반응형 화면 크기*/
/*반응형, 브라우저 크기가 767px 이하일때*/
/*반응형, 브라우저 크기가 768이상, 1023px 이하일때*/
/*반응형, 브라우저 크기가 1024px 이상일때*/
/*넓이, 높이 자동 계산함수*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Bellefair&family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
body {
  background-size: cover;
  height: 100vh;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
}

header {
  display: flex;
  height: 12%;
  justify-content: space-between;
  align-items: center;
}
header button {
  display: none;
}
header nav {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40.7742px);
  width: 60%;
  padding-left: 8%;
  height: 100%;
}
header nav ul {
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5%;
  height: 100%;
  counter-reset: list-number;
}
header nav li {
  height: 100%;
  counter-increment: list-number;
}
header nav a {
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 2.7px;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-family: "Barlow Condensed", sans-serif;
  border-bottom: 3px solid transparent;
}
header nav a span {
  font-weight: bold;
  margin-right: 12px;
}
header nav a::before {
  content: "0" counter(list-number);
  font-weight: bold;
  margin-right: 12px;
}
header nav a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
header nav .selected {
  border-color: #ffffff !important;
}
header main {
  padding: 5% 8%;
  height: 88%;
}

@media (min-width: 1024px) {
  header {
    border-top: 40px solid transparent;
    border-left: 55px solid transparent;
  }
  header nav::before {
    content: "";
    width: 55%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    position: absolute;
    right: 98%;
    top: 50%;
  }
}
@media (min-width: 767px) and (max-width: 1023px) {
  header {
    height: 96px;
    padding-left: 49px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 2.36px;
  }
  header img {
    height: 48px;
    width: 48px;
  }
  header a::before {
    display: none;
  }
}
@media (max-width: 767px) {
  header {
    padding-top: 24px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 2.36px;
  }
  header img {
    height: 40px;
    width: 40px;
  }
  header nav {
    display: none;
  }
  header button {
    display: block;
    background: transparent;
    border: none;
    height: 40px;
    cursor: pointer;
  }
  header button img {
    width: 24px;
    height: 21px;
  }
  header .close-btn {
    display: none;
  }
  .sidebar-mode {
    position: relative;
  }
  .sidebar-mode .hamburger-btn {
    display: none;
  }
  .sidebar-mode nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 65%;
    box-sizing: border-box;
    z-index: 70;
  }
  .sidebar-mode nav ul {
    flex-direction: column;
    height: 30%;
    text-align: left;
    align-items: flex-start;
  }
  .sidebar-mode nav li {
    width: 100%;
  }
  .sidebar-mode nav a {
    border-bottom: 0px;
    border-right: 3px solid transparent;
    width: 100%;
  }
  .sidebar-mode nav .selected {
    border-color: #ffffff !important;
  }
  .sidebar-mode nav .close-btn {
    display: block !important;
    float: right;
    margin: 33px;
  }
}
#home {
  background-image: url("../assets/home/background-home-desktop.jpg");
  background-size: cover;
  min-height: 100vh;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
}
#home main {
  position: relative;
  top: 10%;
  padding: 7% 10%;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}
#home main .contents {
  width: 33%;
}
#home main .contents h5 {
  letter-spacing: 4.72px;
  color: #d0d6f9;
  text-transform: uppercase;
}
#home main .contents h1 {
  margin: 2rem 0;
  font-size: 8.5rem;
  font-family: "Bellefair", serif;
}
#home main .contents p {
  font-family: "Bellefair", serif;
  color: #d0d6f9;
  font-size: 1.2rem;
  line-height: 1.5;
}
#home main .explore-button-wrap {
  width: 25rem;
  height: 25rem;
  padding: 5rem;
  border-radius: 100%;
  position: relative;
  background-color: transparent;
  transition: background-color 0.2s;
}
#home main .explore-button-wrap .explore-button {
  background-color: #ffffff;
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 100%;
  font-family: "Bellefair", serif;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
#home main .hovered {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1024px) {
  #home main {
    padding-right: 24%;
  }
}
@media (min-width: 767px) and (max-width: 1023px) {
  #home {
    background-image: url("../assets/home/background-home-tablet.jpg");
    height: 100%;
  }
  #home main {
    flex-direction: column;
    align-items: center;
  }
  #home main .contents {
    width: 80%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  #home main .contents h5 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 3.38px;
  }
  #home main .contents h1 {
    margin: 1rem 0;
    font-size: 150px;
    line-height: 1;
  }
  #home main .contents p {
    font-size: 16px;
    line-height: 1.5;
    width: 80%;
  }
  #home main .explore-button-wrap {
    margin-top: 10rem;
    width: 22rem;
    height: 22rem;
  }
}
@media (max-width: 767px) {
  #home {
    background-image: url("../assets/home/background-home-mobile.jpg");
    height: 100%;
  }
  #home main {
    flex-direction: column;
    align-items: center;
  }
  #home main .contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  #home main .contents h5 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 2.7px;
    margin-top: 2.5rem;
  }
  #home main .contents h1 {
    margin: 2rem 0;
    font-size: 80px;
    line-height: 1;
  }
  #home main .contents p {
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    font-family: "Barlow";
  }
  #home main .explore-button-wrap {
    margin-top: 5rem;
    width: 150px;
    height: 150px;
    padding: 0;
  }
  #home main .explore-button-wrap button {
    font-size: 20px !important;
  }
}

/*# sourceMappingURL=home.css.map */
