@charset "utf-8";

/* font */
@font-face {
  font-family: "KoPub";
  font-weight: 300;
  font-display: block;
  src: url(../font/KoPub\ Dotum_Pro\ Light.otf) format("otf");
}

@font-face {
  font-family: "KoPub";
  font-weight: 400;
  font-display: block;
  src: url(../font/KoPub\ Dotum_Pro\ Medium.otf) format("otf");
}

@font-face {
  font-family: "KoPub";
  font-weight: 500;
  font-display: block;
  src: url(../font/KoPub\ Dotum_Pro\ Bold.otf) format("otf");
}

@font-face {
  font-family: "yg-jalnan";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

@keyframes moveUp {
  from {
    transform: rotate(-25deg) translateY(200px);
  }
  to {
    transform: rotate(-25deg) translateY(0);
  }
}

@keyframes moveDown {
  from {
    transform: rotate(-25deg) translateX(200px);
  }
  to {
    transform: rotate(-25deg) translateX(0);
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "KoPub", "맑은 고딕", arial;
  font-weight: 400;
  font-size: 15px;
}
html {
  overflow-y: hidden;
}
img {
  border: 0;
  vertical-align: middle;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
a {
  text-decoration: none;
}

#wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 1000px; /* 수정 */
}

h2 {
  font-size: 32px;
  font-family: "yg-jalnan";
  font-weight: bold;
  margin-bottom: 15px;
  color: #255a96;
}

h3 {
  font-size: 24px;
  font-family: "yg-jalnan";
  margin: 20px 0 15px 0;
  font-weight: bold;
  color: #538ed0;
}

p {
  line-height: 26px;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

/* 모달팝업 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  text-align: center;
  border-radius: 10px;
}

.modal-content > img {
  width: 300px;
  height: auto;
}

.close {
  float: right;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

/* 상단바 */
#header {
  width: 1600px;
  height: 50px;
  position: fixed;
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
}

#menu {
  width: 1600px;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
}
#menu li {
  width: 100%;
}
#menu li a {
  display: block;
  padding: 2px 4px;
  line-height: 50px;
  font-size: 1.3em;
  font-family: "yg-jalnan";
  text-align: center;
  color: #255a96;
  opacity: 1;
}
#menu li a:hover {
  color: #6ea8eb;
}
#menu li a.on {
  color: #6ea8eb;
}

#contents > div {
  float: left;
} /* 수정 */

/* 수정 */
#main {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  position: absolute;
  left: 0;
  background: url(../images/main/bg1.png);
} /* width: 100%; position: absolute;로 수정. min-height: 100%;추가 .*/

#main .containar {
  width: 100%;
  height: 930px;
  position: relative;
}

#main .containar .com {
  width: 670px;
  height: auto;
}

#main .containar .magazine {
  position: absolute;
  width: 600px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#main .containar .magazine > img {
  position: relative;
  width: 600px;
  height: auto;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 7px 7px 10px -5px #333;
}

.hover-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 16px;
  display: none;
}

.magazine:hover .hover-text {
  display: block;
}

#main .containar .note {
  position: absolute;
  left: 1300px;
  top: 50px;
  width: 330px;
  height: auto;
}

#main .containar .pen {
  position: absolute;
  left: 1730px;
  bottom: 300px;
  width: auto;
  height: 250px;
}

#main .containar .mouse {
  position: absolute;
  left: 1550px;
  bottom: 70px;
  width: 120px;
  height: auto;
}

.mouse {
  opacity: 0;
  transform: rotate(-25deg) translateY(100px);
  animation: fadeIn 1.5s ease-out forwards, moveUp 1s ease-out forwards;
}

.pen {
  opacity: 0;
  transform: rotate(-25deg) translateX(200px);
  animation: fadeIn 1.5s ease-out forwards, moveDown 1s ease-out forwards;
}

#profile {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  position: absolute;
  left: 100%;
}
#project {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  position: absolute;
  left: 200%;
}
#other {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  position: absolute;
  left: 300%;
}
#contact {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  position: absolute;
  left: 400%;
}

#profile > *,
#project > *,
#other > *,
#contact > * {
  position: absolute;
} /* 수정 */

/* profile 시작 */
.mn .containar_1600 {
  position: absolute;
  top: 147px;
  left: 50%;
  transform: translate(-50%);
  width: 1600px;
  background-color: #fff;
}

.containar_1600 h3::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  filter: invert(60%) sepia(13%) saturate(7225%) hue-rotate(189deg)
    brightness(90%) contrast(78%);
}

.mn > .containar_1600 > section {
  width: 775px;
  float: left;
}

.mn > .containar_1600 > section.right {
  float: right;
}

.ment .profile_img {
  width: 270px;
}

.ment .profile_img > img {
  width: 100%;
  height: 340px;
  padding: 15px;
  background-color: #cdeaff;
  border-radius: 10px;
  float: left;
  box-sizing: border-box;
}

.ment .profile_slogun {
  width: 500px;
  height: 340px;
  background-color: #cdeaff;
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
  float: left;
}

.ment .profile_slogun p span {
  line-height: 50px;
  font-weight: 700;
  color: #538ed0;
}

.ment .profile_slogun p:nth-child(3) {
  margin-top: 20px;
}

.ment .profile_slogun p:nth-child(3) span {
  line-height: 28px;
  color: #255a96;
  font-weight: bold;
}

/* 학력 경력 */
.career h3 {
  margin-top: 50px;
}

.career h3::before {
  width: 28px;
  height: 26px;
  background: url("../images/icon/book-open-solid.svg") center no-repeat;
  background-size: 100% auto;
}

.career .line {
  margin-left: 40px;
  float: left;
}

.career > p {
  width: 670px;
  float: left;
  margin-left: 62px;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-indent: -22px;
}

.career > p > span {
  font-family: "KoPub";
  font-weight: 700;
  font-size: 16px;
}

.career > p > span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  background: url("../images/year_bt.png") center no-repeat;
  background-size: 100% auto;
  z-index: 9999;
}

.career > p:last-child {
  margin-bottom: 0;
}

/* 자격증 */
.license h3 {
  margin-top: 0;
}

.license h3::before {
  width: 28px;
  height: 26px;
  background: url("../images/icon/address-card-solid.svg") center no-repeat;
  background-size: 100% auto;
}

.license {
  width: 100%;
  border-bottom: 2px solid #538ed0;
}

.license .lice {
  float: left;
  margin-left: 40px;
  margin-bottom: 25px;
}

.license .lice_t {
  width: 210px;
  float: left;
}

.license .lice_t p {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.license .lice_t .lice_title {
  font-size: 15px;
  font-weight: 700;
}

.license .lice_i {
  width: 135px;
  margin-top: 3px;
  box-sizing: border-box;
  float: left;
}

.license .lice_i > img {
  width: 30px;
  height: auto;
  margin-left: 10px;
}

.license .lice_i > img:first-child {
  margin-left: 0;
}

.skill h3::before {
  width: 28px;
  height: 26px;
  background: url("../images/icon/display-solid.svg") center no-repeat;
  background-size: 100% auto;
}

.skill .text_box {
  margin-left: 40px;
  width: 670px;
  height: 80px;
  background-color: #cdeaff;
  padding: 15px;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 15px;
  line-height: 24px;
  text-align: center;
  white-space: pre-line;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skill .skill_icon {
  width: 670px;
  margin-left: 40px;
}

.skill .skill_icon li {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
}

.skill .skill_icon li img {
  cursor: pointer;
}

.skill .skill_icon li:nth-child(10) {
  margin-right: 0;
}

.skill .skill_icon li:nth-child(n + 11) {
  margin-bottom: 0;
}

.skill .skill_icon li:last-child {
  margin-right: 0;
}

.skill .skill_icon li > button {
  background: none;
}

.skill .skill_icon li > button:hover {
  transform: scale(1.2);
  transition: all 0.3s;
}

.skill .skill_icon li > button > img {
  width: 40px;
  height: 40px;
}

/* profile 끝 */

/* project 시작 */

.left > .project_btn {
  width: 200px;
  float: left;
}

.left > .project_btn button {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: #538ed0;
  color: #fff;
  font-family: "yg-jalnan";
  font-size: 20px;
  cursor: pointer;
}

.left > .project_btn .button #btn1 {
  float: left;
  margin-right: 10px;
}

.left > .project_btn .button #btn1 + p {
  display: none;
  float: left;
  line-height: 50px;
  color: #255a96;
  font-weight: bold;
}

.left > .project_btn .button #btn2 {
  float: left;
  margin-right: 10px;
}

.left > .project_btn .button #btn2 + p {
  display: none;
  float: left;
  line-height: 50px;
  color: #255a96;
  font-weight: bold;
}

.left > .project_btn .button #btn3 {
  float: left;
  margin-right: 10px;
}

.left > .project_btn .button #btn3 + p {
  display: none;
  float: left;
  line-height: 50px;
  color: #255a96;
  font-weight: bold;
}

.left > .project_btn .button #btn4 {
  float: left;
  margin-right: 10px;
}

.left > .project_btn .button #btn4 + p {
  display: none;
  float: left;
  line-height: 50px;
  color: #255a96;
  font-weight: bold;
}

.left > .project_btn button:hover {
  background-color: #255a96;
}

.left > .project_btn .button #btn1:hover + .btn_text {
  display: block;
}

.left > .project_btn .button #btn2:hover + .btn_text {
  display: block;
}

.left > .project_btn .button #btn3:hover + .btn_text {
  display: block;
}

.left > .project_btn .button #btn4:hover + .btn_text {
  display: block;
}

.left > .project_btn button.active {
  background-color: #255a96 !important;
}

.project_img img {
  float: left;
  width: 550px;
  display: none;
}
.project_img img:first-child {
  display: block; /* 초기 상태에서 첫 번째 이미지만 보이도록 설정 */
}

.main_function {
  margin-top: 20px;
  width: 600px;
  float: right;
  display: block;
}

.main_function h3 {
  margin-bottom: 5px;
}

.main_function h3::before {
  width: 19px;
  height: 25px;
  background: url("../images/icon/bookmark-solid.svg") center no-repeat;
  background-size: 100% auto;
}

.main_function > .project_txt {
  margin-left: 30px;
  line-height: 30px;
}

.main_function > .project_txt > p {
  display: none;
}

#project .containar_1600 .right .content > p span {
  color: #ff8800;
  font-weight: bold;
}

#project .containar_1600 .right .content .pro_info > p:first-child {
  margin-bottom: 7px;
}

#project .containar_1600 .right .content > p:nth-child(2) {
  padding-bottom: 15px;
  border-bottom: 2px solid #538ed0;
  margin-bottom: 15px;
}

.pro_fl {
  float: left;
}

.pro_info > p > span {
  font-weight: 600;
  color: #538ed0;
}

.pro_info > img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  float: left;
  margin-bottom: 10px;
}

.pro_info > img:hover {
  transform: scale(1.1);
}

#project .containar_1600 .right button {
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: #71d0ff;
  margin-top: 5px;
  margin-left: 5px;
  margin-bottom: 5px;
}

#project .containar_1600 .right button.pink {
  background: #ffcbd8;
}

#project .containar_1600 .right button.orange {
  background: #ffcb59;
}

#project .containar_1600 .right button a {
  color: #ffffff;
  font-weight: 700;
}

#project .containar_1600 .right button:hover {
  background: #2db9ff;
}

#project .containar_1600 .right button.pink:hover {
  background: #ff97b1;
}

#project .containar_1600 .right button.orange:hover {
  background: #ff8800;
}

#project .containar_1600 .right button:hover a {
  color: #ffffff;
}

#project .containar_1600 .right h3 {
  margin: 0 auto;
  margin-top: 20px;
}

#project .containar_1600 .right h3 + p {
  margin-left: 40px;
}

#project .containar_1600 .right h3::before {
  width: 26px;
  height: 26px;
  background: url("../images/icon/clock-solid.svg") center no-repeat;
  background-size: 100% auto;
}

/* 달력 */

#calendarWrap {
  width: 100%;
  margin: 0px auto;
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 10px 0;
}

.calendar-header .calendar_center {
  width: 120px;
}

.calendar-header div,
.calendar-header div span {
  font-size: 1.1rem;
  font-family: "yg-jalnan";
  font-weight: normal;
  color: #6ea8eb;
}

.calendar-header div {
  padding: 0 5px 5px 5px;
}

/* 이전/다음 버튼 디자인 */
.calendar-header div .fa-chevron-left,
.calendar-header div .fa-chevron-right {
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: #6ea8eb;
  cursor: pointer;
}

.calendar-header div .fa-chevron-left:hover,
.calendar-header div .fa-chevron-right:hover {
  background: #3c70ac;
}

.calendar-header div i {
  color: white;
  font-size: 0.8rem;
}

.calendar-weekdays,
.calendar-days {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #3c70ac;
}

.calendar-weekdays div {
  width: 110px;
}

.calendar-days div {
  width: 110.7px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #3c70ac;
  border-right: 1px solid #3c70ac;
  box-sizing: border-box;
}

.calendar-days div:nth-child(7n) {
  border-right: none;
}

.calendar-weekdays div {
  height: 30px;
  color: #538ed0;
  font-family: "yg-jalnan";
  font-weight: normal;
}

.pastDay {
  color: #999;
}

.today {
  background-color: #538ed0;
  color: #fff;
}

.futureDay {
  background-color: #ffffff;
  color: #999;
}

.highlightedDay {
  background-color: #dffff4;
  color: #3c70ac;
  font-weight: bold;
}

.content {
  display: none;
}
/* project 끝 */

/* other 시작 */

#other .containar_1600 > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#other .containar_1600 > ul > li > img {
  width: auto;
  height: 330px;
  float: left;
  margin-bottom: 30px;
  border: 1px solid #dddddd;
  cursor: pointer;
}

.bold-text {
  font-weight: bold;
  font-size: 18px;
  color: #3c70ac;
  margin-top: 8px;
  margin-bottom: 4px;
}

.flip-btn {
  display: inline-block;
  margin-top: 10px;
  color: #538ed0;
}

.flip-btn:hover {
  color: #1a3d66;
}

/* other 끝 */
/* Contact 시작 */

#contact .containar_1600 .left .contact_img {
  text-align: center;
  box-sizing: border-box;
  margin-right: 50px;
  float: left;
}

#contact .containar_1600 .left .contact_img img {
  width: 460px;
  height: auto;
}

#contact .containar_1600 .left .call {
  margin-top: 0;
}

#contact .containar_1600 .left .call + p {
  margin-top: -8px;
}

#contact .containar_1600 .left > p > span {
  margin-left: 40px;
  font-weight: 600;
  color: #538ed0;
}

#contact .containar_1600 .left h3.call::before {
  width: 26px;
  height: 26px;
  background: url("../images/icon/phone-solid.svg") center no-repeat;
  background-size: 100% auto;
}

#contact .containar_1600 .left h3.call2 {
  margin-top: 30px;
}

#contact .containar_1600 .left h3.call2::before {
  width: 26px;
  height: 26px;
  background: url("../images/icon/face-smile-solid.svg") center no-repeat;
  background-size: 100% auto;
}

#contact .containar_1600 .left > .sns {
  margin-bottom: 15px;
}

#contact .containar_1600 .left > .sns > a {
  color: #255a96;
  font-weight: 700;
  margin-left: 40px;
}

#contact .containar_1600 .left .kakao a::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/icon/kakao.png) center no-repeat;
  background-size: 100% auto;
}

#contact .containar_1600 .left .insta a::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/icon/insta.png) center no-repeat;
  background-size: 100% auto;
}

#contact .containar_1600 .left .blog a::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/icon/blog.png) center no-repeat;
  background-size: 100% auto;
}

#contact .containar_1600 .right h3 {
  margin-top: 60px;
}

#contact .containar_1600 .right h3::before {
  width: 26px;
  height: 26px;
  background: url("../images/icon/paper-plane-solid.svg") center no-repeat;
  background-size: 100% auto;
}

#emailForm .e_form {
  margin-left: 40px;
  width: 730px;
  height: 50px;
  border: 1px solid #3c70ac;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

#emailForm .e_form:focus {
  outline: 2px solid #6ea8eb;
}

#emailForm #message {
  height: 300px;
}

#emailForm button {
  width: 70px;
  height: 30px;
  border: 1px solid #9edcfb;
  border-radius: 8px;
  background: #9edcfb;
  color: #ffffff;
  font-weight: 700;
  float: right;
  cursor: pointer;
}

#emailForm button:hover {
  box-sizing: border-box;
  box-shadow: inset 0 1px 3px 0 #46b8f1;
  color: #ffffff;
}
/* Contact 끝 */
