@import "animate.css";

:root {
  --font-color-900: #212121;
  --font-color-600: #757575;
  --font-color-300: #e0e0e0;
  --font-color-100: #fafafa;
  --main-color: #1e1eca;
}

@font-face {
  font-family: "Mont_Heavy";
  src: url(../font/Mont-HeavyDEMO.otf);
}

@font-face {
  font-family: "Gotham_Black";
  src: url("../font/Gotham-Black.woff") format("woff");
}

@font-face {
  font-family: "Gotham_Bold";
  src: url("../font/Gotham-Bold.woff") format("woff");
}

@font-face {
  font-family: "Gotham_Meduim";
  src: url("../font/Gotham-Medium.woff") format("woff");
}

@font-face {
  font-family: "Black Han Sans";
  src: url("../font/BlackHanSans-Regular.ttf") format("ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Nanum_Gothic";
  src: url("../font/NanumGothic-ExtraBold.ttf") format("ttf");
  font-weight: 800;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

* {
  scroll-behavior: smooth;
}

html {
  height: 100%;
}

body {
  font-family: "Noto Sans KR", "ad", "Malgun Gothic", "맑은 고딕",
    "Nanum Gothic", "나눔 고딕", "돋움", dotum, sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0px auto;
  position: relative;
  background-color: #fff;
  -ms-overflow-style: none;
}

body::after {
  content: "";
  position: absolute;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: #212121;
  opacity: 0.6;
  left: 0;
  top: 0;
  display: none;
}

.inner {
  width: 1440px;
  margin: 0px auto;
}

.section-tit {
  font-size: 36px;
  font-family: "Gotham_Black";
}

nav {
  height: 440px;
  display: flex;
}

/* 헤더 */

.header {
  width: 100%;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.top-gnb-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.top-gnb {
  width: 100%;
  margin: 0px auto;
  padding: 12px 0;
  display: flex;
  justify-content: flex-end;
}

.top-gnb li > a {
  font-size: 15px;
  font-family: "Gotham_Bold";
  margin-left: 40px;
  transition: all 0.5s;
}

.top-gnb li > a:hover {
  color: #1e1eca;
}

/* 메인 비주얼 영역 */

.bg {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 120%;
  z-index: -1000;
  background: url(../img/main-bg-test_optimized.png) no-repeat;
  background-position: center;
  background-size: cover;
  overflow: visible;
}

.bottom-bg {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 110%;
  height: 170%;
  z-index: -1000;
  background: url(../img/bottom-bg_optimized.png) no-repeat;
  background-position: center bottom -15vh;
  background-size: cover;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-tit {
  font-size: 8vw;
  font-family: "Mont_Heavy";
  color: #fff;
}

.left-title p {
  color: #fff;
}

.right-sub {
  margin-left: 40px;
}

.right-sub h2,
.right-sub p,
.right-sub span {
  color: #fff;
}

.right-sub .sub-tit p {
  padding-bottom: 0;
}

.right-sub .sub-tit {
  font-size: 2.5vw;
  font-family: "Gotham_Black";
  padding-bottom: 8px;
}

.right-sub p {
  padding-bottom: 0.25em;
  white-space: nowrap;
}

.sub-year {
  padding-bottom: 16px;
}

.sub-name {
  padding-bottom: 8px;
}

.tit-wrap {
  display: flex;
  width: 70%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.left-title {
  font-family: "Gotham_Black";
  transition: all 1.3s ease;
}

.right-sub {
  transition: all 1.3s ease;
  padding-bottom: 12px;
}

/* 어바웃 */

.about {
  margin-bottom: 160px;
}

.about .section-tit {
  margin-bottom: 8px;
}

.about-txt {
  margin-bottom: 72px;
}

body.modal-open {
  overflow: hidden;
}

.modal-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 640px;
  height: 400px;
  border-radius: 4px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.modal-top {
  padding: 0 32px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-icon {
  display: inline-flex;
  font-size: 24px;
  font-family: "Gotham_Black";
  line-height: 40px;
}

.modal-icon::before {
  content: "";
  display: inline-flex;
  width: 120px;
  height: 120px;
  margin-right: 12px;
  position: absolute;
  bottom: 12px;
  right: 12px;
  opacity: 0.3;
}

.html-detail::before {
  background: url(../img/htmlcss-on.svg) no-repeat center;
  background-size: contain;
}

.react-detail::before {
  background: url(../img/react-icon-on.svg) no-repeat center;
  background-size: cover;
}

.figma-detail::before {
  background: url(../img/figma-icon-on.svg) no-repeat center;
  background-size: cover;
}

.js-detail::before {
  background: url(../img/js-jq-on.svg) no-repeat center;
  background-size: contain;
}
.mongo-detail::before {
  background: url(../img/mongodb-icon-on.svg) no-repeat center;
  background-size: cover;
}
p .photo-detail::before {
  background: url(../img/ph-ai-on.svg) no-repeat center;
  background-size: contain;
}

.modal-skill li {
  font-family: "NanumGothic";
  line-height: 1.8;
}

.modal-explain {
  padding: 0 32px;
}

.modal-explain h3 {
  font-size: 16px;
}

.modal-skill {
  padding-top: 32px;
}

.close-btn {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../img/ic_baseline-close.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
}

.etc-close {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../img/ic_baseline-close-white.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 20px;
}

.modal-bg {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.section-tit {
  margin-bottom: 60px;
}

.skill-tit {
  font-size: 68px;
  font-family: "Gotham_Black";
  padding-bottom: 16px;
}

.about-top,
.about-btm {
  display: flex;
  justify-content: space-between;
}

.about-top {
  padding-bottom: 80px;
}

/* about me */

.about-me {
  margin-bottom: 160px;
}

.about-me .inner {
  position: relative;
  /* border: 1px dashed darkblue; */
}

.about-me .section-tit {
  margin-bottom: 20px;
}

.about-me .about-desc {
  font-size: 16px;
  /* font-weight: 600; */
}

.about-me .col-1 {
  margin-bottom: 8px;
}

.about-me .desc-global {
  /* position: absolute; */
  /* top: 0; */
  /* right: 0; */
  /* border: 1px darkseagreen; */
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.desc-global .desc-box {
  width: 33%;
  position: relative;
  cursor: pointer;

  /* border: 1px dashed blue; */
}

.desc-global .desc-box > div {
  /* padding: 20px; */
}

.desc-global .desc-box .circle {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 20%;
  /* background-color: #1e1eca; */
  background: url(../img/plus_svg.svg) no-repeat center;
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}

.desc-global .desc-box .ko {
  font-size: 14px;
  font-weight: bold;
  color: gray;
}

.desc-box {
  text-align: center;
}

.about-me .title {
  margin-bottom: 16px;
  font-size: 24px;
  white-space: nowrap;
  /* line-height: 48px; */
  height: 48px;
  font-family: "Gotham_Black";
  display: flex;
  align-items: center;
  margin-top: 8px;
  justify-content: center;
}

.about-me .desc-global .desc-box .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  /* background: url(../img/ant-design_global-outlined.svg) no-repeat center; */
}

.about-me .desc-global .desc-box .memo {
  background: url(../img/icons8_document.svg) no-repeat center;
  background-size: cover;
}

.about-me .desc-global .desc-box .global {
  background: url(../img/ant-design_global-outlined.svg) no-repeat center;
  background-size: cover;
}

.about-me .desc-global .desc-box p {
  /* padding-right: 32px; */
  /* line-height: 1.5; */
  font-size: 13px;
  padding-bottom: 8px;
}

/* project change */

.project {
  margin-bottom: 180px;
  position: relative;
}

.btn-active {
  color: #000;
}

.project-sub {
  font-family: "Gotham_Medium";
  font-size: 1vw;
  font-weight: 400;
}

.project .section-tit {
  margin-bottom: 20px;
}

.project .plus-sub {
  margin-bottom: 60px;
}

.project .btn-group .project-change {
  cursor: pointer;
  font-size: 15px;
  color: lightgray;
  padding: 0;
  margin-right: 20px;
  font-family: "Gotham_Bold";
  font-weight: 600;
}

.project .btn-group .btn-active {
  color: #000;
  padding-bottom: 4px;
  border-bottom: 2px solid #000;
}

.project .section-tit {
  margin-right: 120px;
}

.project-wrap {
  position: relative;
  padding: 32px 0;
  border-bottom: 2px solid lightgray;
  vertical-align: middle;
  cursor: pointer;
}

.project-total {
  padding-top: 20px;
  transition: all 0.5s;
}

.etc-modal {
  width: 1024px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 60px;
  transform: translateX(-50%);
  z-index: 1005;
  border-radius: 8px;
}

.project-tit {
  font-size: 40px;
  font-family: "Gotham_Black";
  padding-bottom: 16px;
  display: flex;
  align-items: center;
}

.project-total .project-wrap .preparing-work,
.project-total .project-wrap .pre-index {
  color: lightgray;
}

.project-wrap .project-index {
  color: #1e1eca;
  font-size: 32px;
  padding-right: 16px;
  font-family: "Gotham_Bold";
  font-weight: 600;
}

.etc-wrap .project-index {
  color: #1e1eca;
  font-family: "Gotham_Bold";
}

.etc-tbox {
  position: absolute;
  bottom: 40px;
  left: 20px;
}

.etc-tbox p {
  color: #fff;
}

.etc-text {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 28px;
  font-family: "Gotham_Bold";
  padding-right: 20px;
}

.gall-txt h2,
.gall-txt p {
  color: #fff;
}

.product-line {
  color: lightgray;
  font-size: 15px;
}

.gall-txt h2 {
  padding-bottom: 12px;
}

.gall-txt .title-line {
  padding-bottom: 20px;
}

.gall-txt {
  width: 80%;
  margin: 0px auto;
  margin-top: 20px;
}

.gall-sub {
  line-height: 1.5;
}

.project-skill {
  font-size: 18px;
  color: lightgray;
}

.more-btn {
  font-family: "Gotham_Bold";
  color: #1e1eca;
  font-weight: 600;
  font-size: 22px;
  display: block;
  padding: 8px 0;
}

#preparing {
  /* font-size: 16px; */
}

.mo-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 비전 */

.my-vision {
  padding: 120px 0;
  position: relative;
  margin-bottom: 100px;
  width: 1440px;
  margin: 0px auto;
}

.vision-wrap {
  display: flex;
  align-items: center;
}

.my-vision p {
  color: #000;
}

.my-vision .inner {
  z-index: 333;
  position: relative;
  overflow: hidden;
}

/* 오른쪽 보이는 영역 */

.viewport-wrap {
  width: 1200px;
  overflow: hidden;
}

/* 오른쪽 그룹 */
.right-vision {
  display: flex;
  position: relative;
}

.right-vision p {
  font-family: "Gotham_Black";
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  font-size: 44px;
  font-weight: 900;
  margin-right: 40px;
  flex-shrink: 0;
}

.right-vision .sub-para {
  line-height: 32px;
}

.inner-2 {
  display: inline-block;
}

.left-vision {
  flex: 0 0 480px;
}

#vision-title {
  font-size: 32px;
}

.my-vision .left-vision p:nth-child(2) {
  padding-top: 12px;
  padding-bottom: 8px;
}

/* footer-sns */

.footer-sns {
  padding-top: 120px;
  height: 65vh;
  position: relative;
}

.footer-sns .inner {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-sns p,
.footer-sns h2 {
  color: #fff;
}

.footer-sns .project-change {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.footer-sns .section-tit {
  margin-right: 120px;
}

.footer-sns .section-tit,
.footer-sns .btn-group {
  display: inline-block;
}

.thanks {
  font-size: 5.2vw;
  font-family: "Gotham_Black";
}

.email-link {
  background-color: #fff;
  margin: 0px auto;
  border-radius: 50%;
  font-family: "Gotham_Bold";
  width: 125px;
  height: 125px;
  line-height: 125px;
  text-align: center;
  display: inline-block;
  transition: all 0.5s;
  margin-bottom: 28px;
}

.email-link:hover {
  background-color: var(--font-color-900);
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.sns-links a {
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
}

.sns-links a:hover {
  color: var(--font-color-900);
  border-bottom: 1px solid var(--font-color-900);
}

.sns-links a:nth-child(2) {
  margin: 0 20px;
}

.footer-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.copy-right {
  color: #fff;
  font-size: 15px;
  font-family: "Gotham_Medium";
  white-space: nowrap;
  padding-bottom: 4px;
  opacity: 0.6;
}

.text-align {
  text-align: right;
  padding-bottom: 8px;
}

/* 프로젝트 */

.project-view {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
}

.arrow-down {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/arrow-down.svg) no-repeat center;
  transition: all 0.5s;
}

.prev-btn {
  display: block;
  width: 32px;
  width: 1440px;
  height: 32px;
  background: url(../img/arrow-prev-bold.svg) no-repeat left;
  position: absolute;
  color: #464c52;
  top: 20px;
  font-size: 20px;
  padding-left: 36px;
  padding-top: 8px;
}

.left-detail {
  width: 40%;
}

.left-detail,
.right-detail {
  padding-top: 100px;
}

.btn-wrap .project-link {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
  color: #fff;
  margin-right: 20px;
  border-radius: 32px;
  transition: all 0.5s;
  cursor: pointer;
}

.btn-wrap .project-link a {
  color: #fff;
}

.btn-wrap #web-linker:hover .version-collect {
  display: block;
}

.project-link:hover {
  background-color: var(--main-color);
}

#web-linker:hover {
  height: fit-content;
}

.project-use {
  display: flex;
  padding: 16px 0;
  justify-content: space-between;
  border-bottom: 1px solid gray;
  font-weight: 900;
  align-items: center;
}

.project-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 10vh;
}

.project-wrapper .sub-title {
  font-size: 24px;
  color: gray;
}
.project-wrapper .main-title {
  font-size: 48px;
  font-family: "Gotham_Black";
  padding-top: 16px;
  padding-bottom: 28px;
}

.project-article {
  line-height: 30px;
  font-size: 20px;
}

.etc-inner {
  margin-top: 0;
}

.use-wrap {
  padding-top: 48px;
}

.left-thumb {
  height: 600px;
  width: 60%;
  position: relative;
}

.right-thumb img {
  object-fit: contain;
  width: 100%;
  height: 780px;
}

.sub-project-title {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
}

.new-wrap {
  padding-top: 120px;
  height: 120px;
}

.new-sub {
  font-size: 18px;
  padding-bottom: 8px;
  color: #000;
  opacity: 0.8;
}

.btn-wrap {
  display: flex;
}

.new-wrap-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.version-collect {
  display: none;
}

.version-collect a {
  display: block;
  color: #fff;
}

.version-collect a:hover {
  color: #000;
}

.sub-project-title {
  width: 100%;
}

.program-use {
  display: flex;
}

.program-use li {
  width: 28px;
  height: 28px;
  background-color: #767676;
  margin-right: 12px;
}

.new-title {
  font-weight: 600;
}

.program-use .html {
  background: url(../img/html-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .css {
  background: url(../img/css-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .js {
  background: url(../img/javascript-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .figma {
  background: url(../img/figma-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .photo {
  background: url(../img/photoshop-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .illust {
  background: url(../img/illustration-icon-on.svg) no-repeat center;
  background-size: contain;
}

.program-use .ae {
  background: url(../img/aftereffects-icon-on.svg) no-repeat center;
  background-size: cover;
}

.program-use .react {
  background: url(../img/react-icon-on.svg) no-repeat center;
  background-size: cover;
}

.program-use .next {
  background: url(../img/devicon_nextjs.svg) no-repeat center;
  background-size: cover;
}

.program-use .mongo {
  background: url(../img/mongodb-icon-on.svg) no-repeat center;
  background-size: cover;
}

.use-tool {
  font-size: 16px;
  font-weight: 400;
  padding-left: 8px;
  color: gray;
}

/* 메인 태스크 */

.main-task {
  position: relative;
  /* height: 100vh; */
  padding-top: 80px;
  padding-bottom: 40px;
}

.task-wrap {
  width: 400px;
}

.task-wrap li {
  display: block;
}

.task-wrap li > a {
  display: inline-block;
  width: 100%;
  border-bottom: 1.5px solid lightgray;
  color: lightgray;
  font-weight: 600;
  padding: 16px 0;
  font-size: 20px;
  transition: all 0.5s;
  cursor: pointer;
}

.task-wrap li:last-child > a {
  border-bottom: none;
}

.task-list {
  font-size: 15px;
  font-weight: 400;
  padding-top: 20px;
}

.task-align {
  display: block;
}

.task-box {
  display: none;
}

.code-sub {
  width: 50%;
}

.code-detail span {
  color: #fff;
}

.main-task .section-tit {
  margin-bottom: 0px;
}

.task-flex {
  justify-content: space-between;
  padding: 40px 0;
  height: 700px;
}

.task-flex nav {
  display: flex;
  justify-content: space-between;
}

.task-flexwrap {
  display: flex;
  justify-content: space-between;
}

.code-title > h4 {
  padding-bottom: 12px;
}

.code-title span {
  line-height: 1.3;
}

.code-detail .code-desc {
  color: darkgray;
}

.gasoek-one-regular {
  font-family: "Gasoek One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.black-han-sans-regular {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.right-vision .korean-vision {
  font-family: "Black Han Sans";
  padding-top: 4px;
  -webkit-text-stroke: 0.05px #000;
}

/* 코드 부분 */

.code-real {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  padding-top: 84px;
}

.code-title {
  position: absolute;
  top: 10px;
  left: 0;
}

.code-title p {
  font-weight: 400;
  padding-top: 8px;
}

.code-title span {
  font-size: 14px;
  font-weight: 400;
  padding-top: 8px;
}

.code-number {
  width: 47px;
  background-color: #eeeeee;
  border-left: 1px solid #e5ecef;
  border-right: 3px solid var(--font-color-300);
  text-align: right;
}

.code-number .numberline {
  line-height: 32px;
  height: 32px;
  text-align: center;
}

.code .line01 {
  width: 650px;
  border-right: 1px solid #e5ecef;
  color: black;
  font-size: 12px;
  background-color: var(--font-color-100);
  font-family: inherit;
  line-height: 32px;
  height: 32px;
  padding-left: 8px;
}

.code .line02 {
  width: 650px;
  border-right: 1px solid #e5ecef;
  color: black;
  font-size: 12px;
  background-color: #fefefe;
  font-family: inherit;
  line-height: 32px;
  height: 32px;
  padding-left: 8px;
}

.code-real p {
  font-family: "Gotham_Medium";
}

.code-number .numberline p {
  color: var(--font-color-600);
}

.code-explain {
  color: var(--main-color);
}

.skill-box {
  display: inline-block;
  width: 80px;
  height: 80px;
  transition: all 0.5s;
}

.html-icon {
  background: url(../img/html-icon.svg) no-repeat center;
  background-size: contain;
}
.css-icon {
  background: url(../img/css-icon.svg) no-repeat center;
  background-size: contain;
}
.js-icon {
  background: url(../img/javascript-icon.svg) no-repeat center;
  background-size: contain;
}
.jq-icon {
  background: url(../img/jquery-icon.svg) no-repeat center;
  background-size: contain;
}
.react-icon {
  background: url(../img/react-icon.svg) no-repeat center;
  background-size: contain;
  margin-right: 20px;
}
.figma-icon {
  background: url(../img/figma-icon.svg) no-repeat center;
  background-size: contain;
  margin-right: 20px;
}
.photo-icon {
  background: url(../img/photoshop-icon.svg) no-repeat center;
  background-size: contain;
  margin-right: 8px;
}
.illust-icon {
  background: url(../img/illustration-icon.svg) no-repeat center;
  background-size: contain;
  margin-right: 12px;
}
.mongo-icon {
  background: url(../img/mongodb-icon.svg) no-repeat center;
  background-size: contain;
  margin-right: 20px;
}

.illust-icon,
.photo-icon {
  width: 60px;
  height: 60px;
}

.icon-wrap {
  display: flex;
  flex: 0 0 160px;
  justify-content: end;
}

.skill-txt {
  padding-left: 20px;
  margin-bottom: 8px;
}

.skill-sub {
  line-height: 1.3;
  font-family: "Nanum_Gothic";
  font-size: 15px;
  /* text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
}

.skill-flex {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}

.about-wrap {
  position: relative;
}

.skill-wrap {
  width: calc(33.33% - 20px);
  display: flex;
  align-items: center;
}

.skill-title {
  font-family: "Gotham_Bold";
  font-size: 20px;
  margin: 8px 0;
}

/* 섹션 디자인 */

.main-pg {
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
  margin: 0px auto;
  margin-bottom: 80px;
}

.sub-pg {
  width: 90%;

  border-radius: 8px;
  overflow: hidden;
  margin: 0px auto;
  margin-bottom: 80px;
}

.mo-main-frame {
  position: relative;
  height: 660px;
  margin-top: 40px;
}

#mo-main {
  width: 320px;
  height: 660px;
  border-radius: 12px;
  overflow-y: auto;
  scrollbar-width: auto; /* 스크롤 바의 너비: auto, thin, none */
  scrollbar-color: #ffba00 #ffffff2d; /* 핸들의 색상과 트랙의 색상 */
}

.r1 {
  position: absolute;
  right: 55px;
  top: 0px;
}
.r2 {
  position: absolute;
  right: 55px;
  bottom: 0px;
  transform: rotate(90deg);
}

#mo-sub {
  width: 280px;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
}

.mo-pgwrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.design-page {
  position: relative;
}

.desub {
  padding-bottom: 40px;
}

.right-gnb {
  position: absolute;
  right: 20px;
  top: 20px;
}

.right-gnb li a {
  font-family: "Gotham_Bold";
  color: gray;
}

.fixed {
  position: fixed;
}

.right-gnb a {
  display: block;
  padding-bottom: 20px;
}

.design-page .section-tit {
  margin-bottom: 100px;
}

.design-item {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05),
    0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05),
    0 16px 32px rgba(0, 0, 0, 0.05), 0 32px 64px rgba(0, 0, 0, 0.05);
}

#mo-main {
  box-shadow: none;
}

.top-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  opacity: 0;
}

.mo-back .how-design {
  margin-bottom: 0;
}

.how-design {
  text-align: center;
  margin-bottom: 40px;
  margin-left: 12px;
}

.how-design p {
  font-size: 15px;
  width: 60%;
  margin: 0px auto;
}

.how-design h2 {
  font-size: 32px;
  font-family: "Gotham_Black";
  padding-bottom: 8px;
}

.mo-back {
  position: relative;
  height: 100vh;
}

#mo-title {
  top: 15%;
  border-bottom: 0px;
}

.mo-point-1 {
  position: absolute;
  top: 25%;
  left: 0%;
  border-bottom: 1px solid lightgray;
  padding-bottom: 24px;
  width: 500px;
  z-index: -3;
  display: none;
}

.mo-point-2 {
  position: absolute;
  top: 45%;
  right: 0%;
  text-align: right;
  border-bottom: 1px solid lightgray;
  padding-bottom: 24px;
  z-index: -3;
  width: 500px;
  display: none;
}

.mo-point-3 {
  position: absolute;
  top: 40%;
  left: 0%;
  z-index: -3;
  border-bottom: 1px solid lightgray;
  padding-bottom: 24px;
  width: 500px;
  display: none;
}

.mo-point-4 {
  position: absolute;
  top: 60%;
  right: 0%;
  z-index: -3;
  border-bottom: 1px solid lightgray;
  padding-bottom: 24px;
  width: 500px;
  text-align: right;
  display: none;
}

#mo-main {
  margin-right: 40px;
}

.mo-pgwrap::-webkit-scrollbar {
  width: 12px;
}

#mo-main::-webkit-scrollbar-track {
  background: #f1f1f1; /* 트랙의 배경색 */
  border-radius: 10px; /* 트랙의 모서리 둥글기 */
}

#mo-sub img {
  height: 100%;
}

.top {
  position: relative;
  padding-top: 20px;
}

.sns-links .email {
  display: none;
}

.top::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  background: url(../img/arrow-up-line.svg) no-repeat center;
}

.hidden-thumb {
  width: 100%;
  display: none;
}

.hidden-thumb img {
  width: 100%;
  height: auto;
}

/* media query */

@media screen and (min-width: 1440px) {
  /* 화면 너비가 1440px 이상인 경우에만 적용되는 스타일 */

  .inner {
    width: 1440px;
  }

  .right-thumb {
    width: 840px;
  }

  .my-vision {
    width: 1440px;
  }
}

@media screen and (max-width: 1550px) {
  /* 화면 너비가 1550px 이하인 경우에만 적용되는 스타일 */

  .r1,
  .r2 {
    display: none;
  }

  .right-thumb {
    width: 800px;
  }

  .inner {
    width: 1152px;
  }

  .project-wrapper .main-title {
    font-size: 40px;
  }
  .project-view {
    padding-top: 80px;
  }

  .new-sub {
    font-size: 16px;
  }

  #hundred .img-area {
    top: 28%;
    width: 600px;
    height: 700px;
    display: block;
  }

  .my-vision {
    width: 1152px;
  }

  .bottom-bg {
    height: 180%;
  }
}

@media screen and (max-width: 1200px) {
  /* 화면 너비가 1200px 이하인 경우에만 적용되는 스타일 */

  .about-me .title {
    font-size: 20px;
  }

  .about-me .desc-global .desc-box p {
    font-size: 11px;
  }

  .task-flexwrap {
    flex-wrap: wrap;
    min-height: 800px;
  }

  .project-view {
    height: auto;
  }

  .etc-modal {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gall-txt {
    margin-bottom: 20px;
  }

  #project-etc .swiper .swiper-pagination {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
  }

  .etc-close {
    top: 80px;
    right: 40px;
  }

  .etc-wrap .etc-box .project-detail {
    opacity: 1;
  }

  .mo-point-1,
  .mo-point-2,
  .mo-point-3,
  .mo-point-4 {
    display: none;
  }

  .btn-wrap .project-link {
    margin-right: 0;
    margin: 0 12px;
  }

  .code-real .line01,
  .code-real .line02 {
    width: 100%;
    overflow: auto;
  }

  .main-task {
    height: auto;
  }

  .project-wrapper {
    flex-wrap: wrap;
    padding-top: 0;
  }

  .arrow-down {
    display: none;
  }

  .hidden-thumb {
    display: block;
    text-align: center;
    height: 320px;
    margin-bottom: 40px;
  }

  .hidden-thumb img {
    object-fit: contain;
    height: 100%;
  }

  .program-use {
    justify-content: center;
  }
  .btn-wrap {
    justify-content: center;
  }

  .left-thumb {
    width: 100%;
    height: 400px;
    text-align: center;
  }

  .right-thumb {
    display: none;
  }

  .new-wrap {
    padding-top: 60px;
  }

  .main-task .section-tit {
    text-align: center;
  }

  /* sub mobile to table css */
  .task-flex nav {
    flex-wrap: wrap;
    min-height: 800px;
  }
  .task-wrap li > a {
    font-size: 15px;
    border-bottom: 0;
    padding: 8px 0;
  }
  .task-list {
    display: none;
  }
  .task-wrap {
    width: 100%;
    text-align: center;
    height: 155px;
  }
  .task-flex {
    padding: 0;
    padding-top: 20px;
  }
  .task-flex .code-real {
    width: 100%;
    justify-content: center;
  }
  .btn-wrap {
    padding-top: 20px;
  }
  .new-wrap-top {
    display: block;
  }
  .section-tit {
    font-size: 28px;
  }
  .vision-wrap {
    flex-wrap: wrap;
  }
  .viewport-wrap {
    padding-top: 20px;
  }
  body .inner {
    width: 80%;
  }
  .code-title {
    display: none;
  }
  .code-real {
    padding-top: 0;
  }
  .project-tit {
    font-size: 24px;
  }
  #mo-sub {
    display: none;
  }
  #mo-main {
    margin-right: 0;
  }
  .right-gnb {
    top: 140px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .right-gnb li a {
    color: #000;
  }

  .project-wrap .project-index {
    font-size: 20px;
  }

  .my-vision {
    width: 80%;
  }

  .skill-flex {
    align-items: center;
  }

  .skill-wrap {
    display: block;
  }

  .skill-txt {
    padding-left: 0;
    margin-top: 8px;
  }

  .hero {
    height: 50vh;
  }

  .illust-icon,
  .photo-icon {
    width: 80px;
    height: 80px;
  }

  .bottom-bg {
    height: 200%;
  }

  .icon-wrap {
    justify-content: start;
  }

  .section-tit {
    margin-bottom: 40px;
  }
}

.mo-gnb-wrap {
  text-align: right;
  width: 100%;
  display: none;
}

.mo-gnb-wrap button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--font-color-900);
}

.top-gnb-mo {
  border-radius: 4px;
  margin-top: 12px;
  padding: 12px 8px;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mo-gnb-wrap button::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/hamburger-svg.svg) no-repeat center;
  background-size: contain;
}

@media all and (max-width: 900px) {
  .desc-global .desc-box .circle {
    display: none;
  }

  .about-me .title {
    font-size: 28px;
  }

  .about-me {
    margin-bottom: 80px;
  }

  .about-me .desc-global {
    display: block;
  }

  .about-me .desc-box {
    width: 100%;
    padding-bottom: 40px;
  }
}

@media all and (max-width: 767px) {
  /* 767px 이하인 경우에만 적용되는 스타일 == 모바일 */

  .how-design p {
    width: 80%;
  }

  .about-desc {
    text-align: center;
  }

  .next-flex {
    display: block;
  }

  .project-wrapper .main-title {
    font-size: 28px;
  }
  .project-article {
    font-size: 16px;
  }
  .wrap .project-close {
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
  }
  .new-wrap {
    height: auto;
    padding-top: 32px;
  }
  .project-wrapper .hidden-thumb {
    padding: 0 20px;
    margin-bottom: 0;
    height: auto;
  }
  .project-view {
    padding-top: 0px;
    padding-bottom: 0;
  }
  .main-task {
    padding-top: 60px;
  }
  .task-flex nav {
    display: block;
  }
  .task-flex .code-real {
    padding-top: 40px;
  }
  .sub-project-title {
    top: 54%;
  }
  .design-page {
    display: none;
  }
  .wrap .desub {
    display: block;
  }
  #hundred .img-area {
    width: calc(100% - 40px);
    top: 85%;
  }
  .wrap .hundred-day {
    height: auto;
  }
  #hundred {
    padding: 40px 0px 60px 0;
  }
  .etc-modal .swiper {
    max-height: 300px;
  }

  .right-vision .korean-vision {
    -webkit-text-stroke: 1px #000;
    letter-spacing: 1.5px;
  }

  .etc-box:hover .project-detail {
    opacity: unset;
  }

  .bottom-bg {
    height: 180%;
  }

  .react-icon {
    background-size: cover;
  }

  .button-box {
    padding-top: 20px;
  }

  .modal-body {
    width: calc(100% - 40px);
    overflow: auto;
  }

  .footer-top .section-tit {
    text-align: left;
    width: 100%;
  }

  .footer-top .sns-links a {
    color: transparent;
    width: 32px;
    height: 32px;
    display: inline-block;
    border-bottom: 0px;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top .sns-links {
    text-align: center;
    width: 100%;
    padding-top: 40px;
    justify-content: center;
  }

  .footer-top .sns-links .notion {
    background: url(../img/devicon_notion.svg) no-repeat center;
    background-size: cover;
  }

  .footer-top .sns-links .github {
    background: url(../img/devicon_github.svg) no-repeat center;
    background-size: cover;
  }

  .footer-top .sns-links .email {
    background: url(../img/devicon-outlook.svg) no-repeat center;
    background-size: cover;
  }

  .footer-top .section-tit {
    margin-bottom: 0px;
  }

  .sns-links {
    display: flex;
    align-items: center;
  }

  .footer-box {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 40px;
  }

  .text-align {
    text-align: center;
    margin: 0px auto;
    padding-top: 20px;
  }

  .thanks {
    width: 100%;
    font-size: 32px;
    text-align: center;
  }

  .text-align .email-link {
    display: none;
  }

  .more-btn {
    display: none;
  }

  .project-index {
    width: 100%;
    text-align: center;
  }

  .project-name {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    font-size: 30px;
  }

  .project-skill {
    text-align: center;
  }

  .project-tit {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .project-wrap {
    border-bottom: 1px solid lightgray;
  }

  .plus-sub {
    text-align: center;
  }

  .my-vision {
    width: 100%;
    padding: 0 20px;
  }

  .vision-wrap {
    text-align: center;
  }

  .left-vision {
    flex: auto;
  }

  #vision-title {
    font-size: 24px;
  }

  .viewport-wrap {
    margin-top: 40px;
  }

  .about {
    margin-bottom: 120px;
  }

  .project {
    margin-bottom: 120px;
  }

  .right-vision p {
    font-size: 32px;
  }

  .skill-title,
  .skill-sub {
    display: none;
  }

  .skill-flex {
    justify-content: space-around;
  }
  .icon-wrap a {
    margin-right: 0;
  }
  .icon-wrap {
    justify-content: center;
  }

  body .inner {
    width: 100%;
    padding: 0 20px;
  }

  .mo-gnb-wrap {
    display: block;
  }

  .skill-wrap {
    position: static;
  }

  .about-wrap {
    position: relative;
  }

  #home .top-gnb.inner {
    justify-content: center;
    padding: 12px 0;
  }

  .top-gnb {
    display: none;
  }

  .section-tit,
  .project .section-tit {
    margin-right: 0;
    text-align: center;
  }

  .footer-sns .section-tit {
    margin-right: 0;
    text-align: center;
  }

  .project .btn-group {
    text-align: center;
  }

  .hero-tit {
    font-size: 14vw;
  }

  .tit-wrap {
    top: 50%;
    width: 100%;
  }

  .hero {
    height: 50vh;
  }

  .right-sub {
    display: none;
  }

  .tit-wrap {
    justify-content: center;
  }

  .section-tit {
    font-size: 24px;
  }

  .etc-wrap {
    flex-wrap: wrap;
  }

  .etc-wrap .etc-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .project-total .etc-wrap:nth-child(1) {
    padding-bottom: 0;
  }
}

/* sub-3.html css */

#random-btn {
  padding: 8px 12px;
  background-color: black;
  color: #fff;
  display: block;
  margin: 0px auto;
  border-radius: 4px;
  margin-top: 32px;
  margin-bottom: 20px;
  transition: all 0.5s;
  font-size: 18px;
}

#random-btn:hover {
  background-color: var(--main-color);
}

.img-area {
  position: relative;
  width: 700px;
  z-index: -2000;
  border-radius: 4px;
  margin: 0px auto;
  padding-top: 40px;
}

.img-area img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* border-radius: 8px; */
}

.hundred-day {
  position: relative;
  text-align: center;
  height: 100vh;
}

.hundred-txt {
  padding-top: 40px;
  text-align: center;
}

.hundred-day .section-tit {
  margin-bottom: 12px;
}

.project-close {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 80px;
  top: 40px;
  background: url(../img/ic_baseline-close-thin.svg) no-repeat center;
  background-size: cover;
}

.etc-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}

.etc-second-wrap {
  display: flex;
  border: 1px solid pink;
  padding-top: 20px;
}

.etc-box {
  display: block;
  width: 32%;
  height: 300px;
  position: relative;
  cursor: pointer;
}

.etc-box > div {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.etc-box img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etc-box:hover .project-detail {
  opacity: 1;
}

.project-detail {
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.project-1col {
  padding-bottom: 16px;
}

/* 스와이퍼 */

.swiper {
  width: 100%;
}

.etcSwiper-1,
.etcSwiper-2,
.etcSwiper-3,
.etcSwiper-4,
.etcSwiper-5,
.etcSwiper-6 {
  height: 640px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 100px;
  padding-top: 20px;
}

.swiper-slide img {
  display: block;
  width: 70%;
  height: auto;
  object-fit: cover;
  margin: auto auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.etc-modal .swiper-button-next,
.etc-modal .swiper-button-prev {
  color: #fff;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.etc-modal .swiper-pagination-fraction,
.etc-modal .swiper-pagination-current,
.etc-modal .swiper-pagination-total {
  color: #fff;
  font-size: 20px;
}

.swiper.etcSwiper-1,
.swiper.etcSwiper-2,
.swiper.etcSwiper-3,
.swiper.etcSwiper-4,
.swiper.etcSwiper-5,
.swiper.etcSwiper-6 {
  position: relative;
}

#project-etc .swiper-pagination {
  position: absolute;
  height: 20px;
  top: -10px;
  left: 840px;
  width: auto;
  z-index: 1022;
}

.etc-modal .swiper {
  overflow: visible;
}

.etc-modal .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.etc-modal .swiper-slide-prev {
  opacity: 0;
}
.etc-modal .swiper-slide-next {
  opacity: 0;
}
.etc-modal .swiper-slide-active {
  opacity: 1;
}

.etc-modal .swiper-pagination {
  position: absolute;
}

.strong-txt {
  font-weight: 600;
  color: #fff;
}

.etc-modal .swiper-pagination-bullet-active {
  background: var(--main-color);
}

/* load css */

.l-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0px auto;
  text-align: center;
  overflow: hidden;
  background-color: #fff;
  z-index: 9999;
  display: none;
}

#load-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.load-message {
  margin-top: 16px;
  font-size: 44px;
  font-family: "Gotham_Black";
}

.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 3em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.loader,
.loader:before,
.loader:after {
  animation: 1s infinite ease-in-out;
}
.loader:before,
.loader:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.loader-1 {
  animation-name: loader1;
}
@keyframes loader1 {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

.loader-6 {
  animation: loader6-1 1.5s infinite linear;
}
.loader-6:before,
.loader-6:after {
  content: "";
  margin: -50px 0 0 -50px;
  top: 50%;
  left: 50%;
  opacity: 0.7;
  animation-name: loader6-2;
  filter: blur(15px);
  -webkit-filter: blur(15px);
}
.loader-6:after {
  animation-direction: reverse;
}

@keyframes loader6-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader6-2 {
  0% {
    background-color: #000;

    transform: scale(0.2);
    left: 0%;
  }
  50% {
    transform: scale(1);
    left: 50%;
  }
  100% {
    background-color: #1e1eca;
    transform: scale(0.2);
    left: 100%;
  }
}
