@charset "UTF-8";
@font-face {
  font-family: "RIDIBatang";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "RIDIBatang", "맑은 고딕", sans-serif;
  font-size: 0.75rem;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
  font-size: 0.75rem;
}

button {
  font-family: "RIDIBatang", "맑은 고딕", sans-serif;
}

.hidden {
  display: none;
}

#main_visu {
  position: relative;
  height: 100vh;
  top: -100px;
  background: #3c5296;
  color: #fff;
}
#main_visu p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3vw;
}
#main_visu h2 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6vw;
}
#main_visu h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s ease-in-out;
}
#main_visu h2 .fade {
  opacity: 1;
  transform: translateY(0);
}
#main_visu nav {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
}
#main_visu nav .gnb {
  display: flex;
  gap: 2vw;
}
#main_visu nav .gnb a {
  position: relative;
  color: #fff;
  font-size: 1.25rem;
  padding: 7px;
}
#main_visu nav .gnb a:before, #main_visu nav .gnb a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
}
#main_visu nav .gnb a:before {
  left: 0px;
  top: 0px;
}
#main_visu nav .gnb a:after {
  right: 0px;
  bottom: 0px;
}
#main_visu nav .gnb a:hover:before, #main_visu nav .gnb a:hover:after {
  opacity: 1;
  width: 100%;
}
#main_visu #scroll_down {
  position: relative;
  top: 75%;
  padding-top: 61px;
  text-align: center;
}
#main_visu #scroll_down::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  width: 2px;
  height: 70px;
  background: #fff;
  margin-left: -1px;
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}
#main_visu #scroll_down .arrow_down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 38px;
}
#main_visu #scroll_down .arrow_down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
#main_visu #scroll_down .scroll_title {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@keyframes elasticus {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0);
  }
}

#about {
  width: 75%;
  padding: 50px 0 100px 0;
  margin: 0 auto;
  position: relative;
  padding: 50px 4vw 100px 4vw;
}
#about h2 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 50px;
}
#about .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-right: 30vw;
}
#about .swiper-wrapper .swiper-slide h3 {
  display: inline-block;
  padding: 10px 16px 7px;
  font-size: 1.125rem;
  background: #3c5296;
  color: #fff;
}
#about .swiper-wrapper .swiper-slide .a_title p {
  font-size: 22px;
  line-height: 2rem;
}
#about .swiper-wrapper .swiper-slide .a_title p span {
  color: #3c5296;
  font-weight: bold;
}
#about .swiper-wrapper .swiper-slide .a_con p {
  font-size: 0.875rem;
  line-height: 24px;
}
#about .swiper-wrapper .profile .tag {
  margin-bottom: 4vw;
}
#about .swiper-wrapper .profile .tag span {
  margin-right: 5px;
}
#about .swiper-wrapper .profile > a {
  transition: 0.5s ease;
  background: url(../images/arrow_b.png) no-repeat center right;
  border: none;
  padding: 15px 60px 15px 20px;
  text-transform: uppercase;
  position: relative;
}
#about .swiper-wrapper .profile > a:hover {
  background: url(../images/arrow_w.png) no-repeat center right;
  color: #fff;
  transition-delay: 0.5s;
}
#about .swiper-wrapper .profile > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3c5296;
  transition: 0.5s ease;
}
#about .swiper-wrapper .profile > a:hover::before {
  width: 100%;
}
#about .swiper-wrapper .profile > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #3c5296;
  transition: 0.4s ease;
  z-index: -1;
}
#about .swiper-wrapper .profile > a:hover::after {
  height: 100%;
  transition-delay: 0.4s;
}
#about .swiper-wrapper .profile > a img {
  margin-left: 8px;
}
#about .swiper-wrapper .skil p {
  font-size: 0.875rem;
}
#about .swiper-wrapper .skil ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 4vw;
       column-gap: 4vw;
  row-gap: 2vw;
  margin: 1vw 2vw;
}
#about .swiper-wrapper .skil ul li:hover {
  animation: rubberBand 1s infinite;
}
#about .swiper-wrapper .skil ul li:nth-child(2n) {
  margin-top: 20px;
}
#about .swiper-wrapper .skil ul li img {
  transition: 0.4s;
  cursor: pointer;
}
#about .swiper-button-prev,
#about .swiper-button-next {
  top: auto;
  bottom: 100px;
  width: 40px;
  height: 40px;
  border: 1px solid #3c5296;
  border-radius: 50%;
}
#about .swiper-button-prev {
  left: auto;
  right: 150px;
}
#about .swiper-button-next {
  right: 100px;
}
#about .swiper-button-prev::after,
#about .swiper-button-next::after {
  color: #3c5296;
  font-size: 20px;
}
#about .arch {
  width: 18vw;
  height: 500px;
  border-radius: 500px 500px 0px 0px;
  position: absolute;
  top: 120px;
  right: 16vw;
  padding: 1.2vw 2vw;
  background: #3c5296;
  z-index: 9;
}
#about .arch .arch_con:not(.profile) {
  width: 18vw;
  height: 500px;
  border-radius: 500px 500px 0px 0px;
  padding: 0 2vw;
  background: #fff;
  border: 1px solid #3c5296;
}
#about .arch .profile img {
  width: 18vw;
  height: 500px;
  border-radius: 500px 500px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .arch .skil {
  padding-top: 7vw !important;
}
#about .arch .skil .skil_t {
  font-size: 1.125rem;
  line-height: 30px;
  margin-bottom: 2vw;
}
#about .arch .skil .skil_t span {
  font-size: 1.75rem;
  color: #3c5296;
  font-weight: bold;
  text-transform: uppercase;
}
#about .arch .skil div {
  display: none;
  margin: 0 0 0 15px;
  font-size: 0.875rem;
  line-height: 22px;
}
#about .arch .skil div p {
  margin-bottom: 12px;
}
#about .arch .skil div p::before {
  content: "";
  display: block;
  width: 6px;
  height: 2px;
  position: relative;
  top: 12px;
  left: -12px;
  background: #bbb;
}
#about .arch .logo {
  padding-top: 5vw !important;
  text-align: center;
}
#about .arch .logo img {
  width: 100px;
}
#about .arch .logo dl {
  margin: 30px 0;
  line-height: 18px;
  text-align: left;
}
#about .arch .logo dl dt {
  margin-bottom: 5px;
  font-size: 0.875rem;
  font-weight: bold;
}
#about .arch .logo dl dd {
  margin-bottom: 15px;
}

#projects {
  width: 75%;
  padding: 50px 0 100px 0;
  margin: 0 auto;
}
#projects h2 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 50px;
}
#projects .category {
  position: relative;
  padding: 20px 0;
  font-size: 14px;
  border-bottom: 1px solid #333;
}
#projects .category label {
  margin-right: 30px;
  cursor: pointer;
}
#projects .category .line {
  position: absolute;
  height: 1.5px;
  top: 12px;
  background: #333;
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#projects .year {
  position: absolute;
  display: flex;
  gap: 100px;
  bottom: 10px;
  right: 0;
  font-size: 1.25rem;
  font-style: italic;
}
#projects .year::before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  position: absolute;
  bottom: 8px;
  right: 54px;
  background: #ccc;
}
#projects .project {
  display: flex;
  flex-direction: column;
}
#projects .project input[type=radio] {
  display: none;
}
#projects .project #all:checked ~ .unit {
  display: flex;
}
#projects .project #personal:checked ~ .personal {
  display: flex;
}
#projects .project #team:checked ~ .team {
  display: flex;
}
#projects .project .unit {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 480px;
  margin: 50px 0;
  cursor: pointer;
}
#projects .project .unit::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -50px;
  background: #333;
}
#projects .project .unit:hover .p_img > img {
  filter: brightness(0.6);
  scale: 0.98;
  border-radius: 25% 0 25% 0;
}
#projects .project .unit:hover .p_img .arrow {
  animation: arrow 1s ease-in-out infinite;
}
#projects .project .unit h3 {
  display: inline-block;
  position: relative;
  top: 32px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6235294118);
  z-index: 999;
  font-size: 2rem;
}
#projects .project .unit .p_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  order: -1;
}
#projects .project .unit .p_img {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 14vw;
}
#projects .project .unit .p_img .mockup {
  width: 42vw;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
#projects .project .unit .p_img img {
  transition: 0.8s;
}
#projects .project .unit .p_img .arrow {
  transform: translate(-40px, 0px);
}
#projects .project .unit .p_bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#projects .project .unit .p_bottom div p {
  margin: 10px 0;
}
#projects .project .unit .p_bottom div p span:first-child {
  display: inline-block;
  width: 60px;
  font-weight: bold;
}
#projects .project .unit .p_bottom div .color span:not(:first-child) {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: middle;
}
#projects .project .tgi .p_bottom .color span:nth-child(2) {
  background: #b60000;
}
#projects .project .tgi .p_bottom .color span:nth-child(3) {
  background: #242422;
}
#projects .project .tgi .p_bottom .color span:nth-child(4) {
  background: #f2ede4;
}
#projects .project .freitag .p_bottom .color span:nth-child(2) {
  background: #000;
}
#projects .project .freitag .p_bottom .color span:nth-child(3) {
  background: #fff;
}
#projects .project .freitag .p_bottom .color span:nth-child(3) {
  border: 1px solid #333;
}
#projects .project .emart .p_bottom .color span:nth-child(2) {
  background: #fcb416;
}
#projects .project .emart .p_bottom .color span:nth-child(3) {
  background: #484c55;
}
#projects .project .canon .p_bottom .color span:nth-child(2) {
  background: #de0010;
}
#projects .project .canon .p_bottom .color span:nth-child(3) {
  background: #38373c;
}
#projects .project .canon .p_bottom .color span:nth-child(4) {
  background: #e6e6e6;
}
#projects .project .todo .p_bottom .color span:nth-child(2) {
  background: #3c5296;
}
#projects .project .todo .p_bottom .color span:nth-child(3) {
  background: #d1d1d1;
}
#projects .project .todo .p_bottom .color span:nth-child(4) {
  background: #171717;
}
#projects .project .youtube .p_bottom .color span:nth-child(2) {
  background: #ff0000;
}
#projects .project .youtube .p_bottom .color span:nth-child(3) {
  background: #18181b;
}
#projects .project .youtube .p_bottom .color span:nth-child(4) {
  background: #f9fafb;
}

@keyframes arrow {
  0% {
    transform: translate(-40px, 0px);
  }
  50% {
    transform: translate(-30px, 0px);
  }
  100% {
    transform: translate(-40px, 0px);
  }
}
#contact {
  width: 75%;
  padding: 50px 0 100px 0;
  margin: 0 auto;
}
#contact h2 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 50px;
}
#contact .con_wrap {
  width: 100%;
  text-align: center;
}
#contact .con_wrap .con {
  display: inline-block;
  position: relative;
  width: 17vw;
  height: 25vw;
  font-size: 1.125rem;
}
#contact .con_wrap .con a {
  font-size: 1.125rem;
  color: #3c5296;
}
#contact .con_wrap .con .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 300px;
  backface-visibility: hidden;
  transition: 1s;
}
#contact .con_wrap .con .front {
  position: absolute;
  transform: rotateY(0deg);
}
#contact .con_wrap .con .back {
  background: #fff;
  border: 1px solid #3c5296;
  transform: rotateY(-180deg);
}
#contact .con_wrap .con:hover .front {
  transform: rotateY(180deg);
}
#contact .con_wrap .con:hover .back {
  transform: rotateY(0deg);
  z-index: 9999;
}
#contact .con_wrap .resume {
  right: -2.7vw;
}
#contact .con_wrap .resume .front {
  background-image: url(../images/me2.jpg);
  background-size: cover;
}
#contact .con_wrap .resume .front P {
  position: absolute;
  top: 63%;
  left: 18%;
  color: #fff;
  font-style: italic;
}
#contact .con_wrap .email .front {
  background-image: url(../images/email.png);
  background-size: cover;
}
#contact .con_wrap .phone {
  left: -2.7vw;
}
#contact .con_wrap .phone .front {
  background-image: url(../images/phone.jpg);
  background-size: cover;
}
#contact .con_wrap .phone .front span {
  width: 65px;
  height: 65px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  transform: rotate(45deg);
}
#contact .con_wrap .phone .front span i {
  position: relative;
  top: 18px;
  left: 0;
  color: #3c5296;
  font-size: 28px;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .skil ul li img {
    height: 4.4vw;
    min-height: 55px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .skil ul li img {
    height: 5vw;
    min-height: 50px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  #main_visu p {
    top: max(15%, 100px);
    font-size: 5vw;
  }
  #main_visu h2 {
    top: max(20%, 130px);
    font-size: 15vw;
  }
  #main_visu nav {
    top: max(45%, 230px);
  }
  #main_visu nav .gnb {
    gap: 6vw;
    flex-direction: column;
    align-items: center;
  }
  #main_visu nav .gnb a {
    font-size: 2rem;
  }
  #about {
    width: 100%;
    padding: 50px 6vw 100px 6vw;
  }
  #about .swiper-wrapper .swiper-slide {
    height: auto;
    gap: 15px;
    padding-right: 0;
  }
  #about .swiper-wrapper .swiper-slide .a_title p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  #about .swiper-wrapper .swiper-slide .a_con p {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
  #about .swiper-wrapper .profile .tag span {
    line-height: 1.125rem;
  }
  #about .swiper-wrapper .profile > a {
    padding: 0 60px 0 0;
  }
  #about .swiper-wrapper .skil ul {
    margin: 0;
    justify-content: space-evenly;
  }
  #about .swiper-wrapper .skil ul li img {
    height: 55px;
  }
  #about .swiper-button-prev,
  #about .swiper-button-next {
    bottom: 20px;
  }
  #about .swiper-button-prev {
    left: 30px;
  }
  #about .swiper-button-next {
    left: 80px;
  }
  #about .arch {
    position: static;
    width: 85%;
    height: 350px;
    margin: 20px 0 0 10px;
    padding: 5vw 0 0 7vw;
  }
  #about .arch .arch_con:not(.profile) {
    width: 110%;
    height: 350px;
  }
  #about .arch .profile img {
    width: 110%;
    height: 350px;
  }
  #about .arch .skil .skil_t {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin: 20px 0;
  }
  #about .arch .skil .skil_t span {
    font-size: 1.25rem;
  }
  #about .arch .skil div {
    line-height: 1.25rem;
  }
  #about .arch .logo img {
    width: 70px;
  }
  #about .arch .logo dl {
    margin: 25px 5px;
  }
  #projects {
    width: 100%;
    padding: 50px 6vw 100px 6vw;
  }
  #projects .year {
    display: none;
  }
  #projects .project .unit {
    height: 350px;
    margin: 30px 0;
  }
  #projects .project .unit::after {
    bottom: -30px;
  }
  #projects .project .unit h3 {
    position: static;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 1.25rem;
  }
  #projects .project .unit .p_top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  #projects .project .unit .p_img {
    width: 100%;
    top: 34px;
    left: 0;
    z-index: -9;
  }
  #projects .project .unit .p_img .mockup {
    width: 100%;
    height: 230px;
  }
  #projects .project .unit .p_img .arrow {
    display: none;
  }
  #projects .project .unit .p_bottom {
    display: block;
  }
  #projects .project .unit .p_bottom div p {
    margin: 6px 0;
  }
  #projects .project .unit .p_bottom > p {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
  }
  #projects .project .unit .p_bottom > p::after {
    content: ">";
    display: inline-block;
    margin-left: 4px;
  }
  #contact {
    width: 100%;
    padding: 0 6vw 100px 6vw;
  }
  #contact .con_wrap {
    display: flex;
  }
  #contact .con_wrap .con {
    width: 34%;
    height: 44vw;
  }
  #contact .con_wrap .con a {
    font-size: 0.875rem;
  }
  #contact .con_wrap .resume .front {
    background-size: 180%;
    background-position: bottom;
  }
  #contact .con_wrap .resume .front p {
    top: 30px;
    left: 10px;
    text-align: left;
  }
  #contact .con_wrap .phone .front span {
    width: 40px;
    height: 40px;
  }
  #contact .con_wrap .phone .front span i {
    top: 10px;
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=main.css.map */