* {
  box-sizing: border-box;
  text-decoration: none;
}

html, body {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}

body {
  position: fixed;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 40px 0px 0px;
  height: 100px;
  gap: 3px;
}
header img {
  height: 30px;
  width: 30px;
  order: 1;
}
header div li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: none;
  order: 0;
  flex-grow: 0;
  background: #fff;
}
header ul {
  font-weight: 300;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10px 40px;
  margin: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
header a {
  color: #878787;
}
header a:hover {
  color: #55BFBF;
  border-bottom: 1px solid #6AD3BA;
}

.hamburger-lines {
  display: none;
}

.checkbox {
  display: none;
}

.main {
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.left-intro {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px 100px 30px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.left-intro .intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  width: 320px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}
.left-intro .logoandintro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 65vh;
  min-height: 610px;
  max-height: 700px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  gap: 40px;
}
.left-intro .intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  order: 1;
  flex-grow: 0;
}
.left-intro .intro-lg {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #393939;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}
.left-intro .intro-sm {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #606060;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}
.left-intro .block-intro {
  box-sizing: border-box;
  min-height: 15px;
  flex: none;
  align-self: stretch;
  flex-grow: 1;
}
.left-intro .copyright {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #d6d6d6;
}

.right-artwork {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 1;
  width: calc(100vw - 520px);
  overflow: hidden;
}
.right-artwork h2 {
  display: none;
}
.right-artwork #slider {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  overflow-x: scroll;
  flex: none;
  align-self: stretch;
  padding: 0 50px;
  margin: 0;
}
.right-artwork #slider li {
  padding: 0px;
}
.right-artwork #slider a {
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.right-artwork .noscrollbar::-webkit-scrollbar {
  display: none;
}
.right-artwork .noscrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.right-artwork .artwork-item {
  align-items: flex-start;
  gap: 24px;
  flex: none;
  cursor: pointer;
}
.right-artwork .artwork-img {
  width: auto;
  height: 45vh;
  min-height: 490px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.right-artwork .artwork-discription {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.right-artwork .artwork-no {
  padding-top: 8px;
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  color: #55BFBF;
}
.right-artwork .artwork-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 39px;
  color: #393939;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.right-artwork .artwork-sort {
  font-weight: 400;
  font-size: 16px;
  line-height: 33px;
  color: #878787;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

@media screen and (max-width: 1366px) {
  header {
    height: 80px;
  }
  header ul {
    padding: 10px 30px;
  }
  .main {
    height: calc(100vh - 80px);
  }
  .left-intro .intro-content {
    width: 300px;
  }
  .left-intro .logoandintro {
    height: 65vh;
    min-height: 550px;
    max-height: 620px;
    gap: 0px;
  }
  .left-intro img {
    width: 150px;
  }
  .right-artwork {
    width: calc(100vw - 500px);
  }
  .right-artwork #slider {
    padding: 0 30px;
  }
  .right-artwork .artwork-item {
    gap: 8px;
  }
  .right-artwork .artwork-img {
    min-height: 420px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    position: relative;
  }
  .main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100vw;
    position: relative;
    height: auto;
  }
  .left-intro {
    padding-bottom: 80px;
    width: 100vw;
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 0px;
    gap: 30px;
  }
  .left-intro .intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 40vw;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
  }
  .left-intro .logoandintro {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 20px 80px 60px 80px;
    gap: 20px;
    min-height: 0px;
    height: auto;
  }
  .left-intro .intro {
    padding: 0px;
    gap: 20px;
    width: 50vw;
  }
  .left-intro .block-intro {
    display: none;
  }
  .left-intro .copyright {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #d6d6d6;
    position: absolute;
    bottom: 20px;
    align-self: center;
  }
  .right-artwork {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
    width: 100vw;
  }
  .right-artwork h2 {
    margin-bottom: 30px;
    display: block;
    margin-left: 40px;
    font-size: 24px;
    color: #393939;
  }
  .right-artwork #slider {
    margin-bottom: 100px;
    padding: 5vw;
  }
  .right-artwork .artwork-item {
    gap: 30px;
  }
  .right-artwork .artwork-img {
    width: auto;
    height: 450px;
  }
  .right-artwork .artwork-no {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
  }
}
@media screen and (max-width: 576px) {
  header {
    height: 80px;
    padding: 0px 0px 0px 0px;
  }
  header ul {
    padding: 10px 30px;
  }
  header a {
    padding: 10px 30px;
    flex: auto;
  }
  .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 30px;
    position: absolute;
  }
  .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #878787;
  }
  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s linear;
  }
  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    background: #0e2431;
    margin-right: 30px;
  }
  .move {
    z-index: 1;
    margin: auto;
    transform: translateX(-150%);
    transition: transform 0.5s ease-in-out;
  }
  .menu-items {
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 1;
    height: 100vh;
    width: 100vw;
    margin: auto;
    margin-top: 80px;
  }
  input[type=checkbox]:checked ~ .move {
    transform: translateX(0);
  }
  input[type=checkbox]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
    background: #F485A0;
  }
  input[type=checkbox]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
    background: #F485A0;
  }
  input[type=checkbox]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
    background: #F485A0;
  }
  .left-intro {
    padding: 40px 0px 70px;
  }
  .left-intro .logoandintro {
    flex-direction: column;
    align-items: center;
  }
  .left-intro img {
    width: 40vw;
    min-width: 140px;
  }
  .left-intro .intro {
    width: 100vw;
    padding: 0px 20px;
    align-self: center;
    gap: 0;
  }
  .left-intro .intro-lg, .left-intro .intro-sm {
    margin-bottom: 12px;
  }
  .right-artwork {
    width: auto;
    display: block;
  }
  .right-artwork h2 {
    margin: 0px 20px;
  }
  .right-artwork #slider {
    display: block;
  }
  .right-artwork .artwork-item {
    gap: 12px;
    margin-bottom: 50px;
  }
  .right-artwork .artwork-img {
    width: 100%;
    height: auto;
    min-height: 200px;
    order: 2;
  }
  .right-artwork .artwork-discription {
    margin-bottom: 50px;
  }
  .right-artwork .artwork-no {
    font-size: 24px;
    line-height: 32px;
  }
  .right-artwork .artwork-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #393939;
  }
  .right-artwork .artwork-sort {
    font-weight: 400;
    font-size: 15px;
  }
}
grammarly-desktop-integration {
  display: none;
}/*# sourceMappingURL=style.css.map */