.title-others {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-gray {
  background-color: #F8F9F9;
}

.bg-gray-light {
  background-color: #F9FAFB;
}

.container-padding {
  padding: 3rem;
}

.container-padding-top {
  padding-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.container-padding-bottom {
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.container-padding.pt-0 {
  padding-top: 0;
}

.container-padding.pb-0 {
  padding-bottom: 0;
}

.btn-purple {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8500bd;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8500bd;
  cursor: pointer;
  transition: 300ms all ease;
}
.btn-purple:hover {
  background-color: #8500bd;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .container-padding {
    padding: 6rem;
  }
  .container-padding-top {
    padding-top: 6rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .container-padding-bottom {
    padding-bottom: 6rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .container-padding {
    padding: 5rem 10rem;
  }
  .container-padding-top {
    padding-top: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .container-padding-bottom {
    padding-bottom: 5rem;
    padding-right: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  .container-padding {
    padding: 6rem 15rem;
  }
  .container-padding-top {
    padding-top: 6rem;
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .container-padding-bottom {
    padding-bottom: 6rem;
    padding-left: 15rem;
    padding-right: 15rem;
  }
}
@media screen and (min-width: 1700px) {
  .container-padding {
    padding: 6rem 18rem;
  }
  .container-padding-top {
    padding-top: 6rem;
    padding-left: 18rem;
    padding-right: 18rem;
  }
  .container-padding-bottom {
    padding-bottom: 6rem;
    padding-left: 18rem;
    padding-right: 18rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nanum Gothic", monospace;
}
*::-webkit-scrollbar {
  width: 1rem;
  background-color: #EBEDEF;
}
*::-webkit-scrollbar-thumb {
  background-color: #424949;
  border-radius: 1rem;
}

@font-face {
  font-family: "Nanum Gothic";
  src: url("../font/NanumGothic-light.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

a {
  text-decoration: none;
}

.skills {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  padding-left: 0;
}
.skills.p-skill {
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.skills.pt-0 {
  padding-top: 0;
}
.skills.p-company {
  padding-left: 0;
  padding-bottom: 0;
}
.skills > picture {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin: 0.6rem 0.3rem 0.6rem 0;
  overflow: hidden;
  text-align: center;
}
.skills > picture.circle {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
.skills > picture.no-space {
  width: max-content;
  margin: 0;
  color: #A6ACAF;
}
.skills > picture > img {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  object-fit: cover;
}
.skills > picture > span {
  display: inline-block;
  font-size: 2.3rem;
  font-weight: lighter;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.header > a span {
  display: inline-block;
  font-size: 2rem;
  margin-left: 0.5rem;
  margin-top: 3rem;
  color: #7D3C98;
  font-weight: bolder;
  vertical-align: top;
}
.header figcaption {
  display: none;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.header figcaption a {
  display: inline-block;
}
.header figcaption a > span {
  display: inline-block;
  margin: 0 1rem;
  user-select: none;
  color: #7D3C98;
  cursor: pointer;
  transition: 300ms all ease;
  font-size: 1.6rem;
}
.header figcaption a > span:hover {
  transform: scale(1.1);
}
.header figcaption a > span:hover::after {
  width: 100%;
}
.header figcaption a > span::after {
  content: "";
  display: block;
  width: 0;
  transition: 300ms all ease;
  border-bottom: 0.2rem solid #7D3C98;
  margin-top: 0.6rem;
}
.header figcaption a > button {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8500bd;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8500bd;
  cursor: pointer;
  transition: 300ms all ease;
}
.header figcaption a > button:hover {
  background-color: #8500bd;
  color: #fff;
}
.header figcaption a.active > span::after {
  width: 100%;
}

.button-lang {
  display: inline-block;
  text-align: center;
  padding: 0 1rem;
  vertical-align: middle;
  cursor: pointer;
  clear: both;
}
.button-lang .button-lang-section {
  float: left;
  display: inline-block;
  width: 8rem;
  padding-top: 0.6rem;
}
.button-lang .button-lang-section > span {
  display: block;
  font-size: 1.3rem;
  font-weight: bolder;
}
.button-lang .button-lang-section > img {
  display: inline;
}
.button-lang .button-lang-section:first-child {
  border: 0.1rem solid #CACFD2;
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
}
.button-lang .button-lang-section:last-child {
  border: 0.1rem solid #CACFD2;
  border-left: 0;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.button-lang .button-lang-section:hover, .button-lang .button-lang-section.active {
  background-color: #8500bd;
  border-color: #8500bd;
}
.button-lang .button-lang-section:hover > span, .button-lang .button-lang-section.active > span {
  color: #fff;
}

.header-mobile {
  position: absolute;
  z-index: 50;
  display: block;
  width: 100%;
  background-color: #fff;
  transition: 300ms all ease;
  padding: 1rem;
  text-align: center;
  border-bottom: 0.2rem solid #8E44AD;
  transform: translateY(-300%) scale(0);
  visibility: hidden;
  opacity: 0;
  border-radius: 100%;
}
.header-mobile.active {
  transform: translateY(0) scale(1);
  visibility: visible;
  opacity: 1;
  border-radius: 0;
}
.header-mobile > a {
  display: block;
  font-size: 2.6rem;
  margin: 2rem 0;
}
.header-mobile > a > span {
  display: inline-block;
  margin: 0 1rem;
  user-select: none;
  color: #7D3C98;
  cursor: pointer;
  transition: 300ms all ease;
}
.header-mobile > a > span:hover {
  transform: scale(1.1);
}
.header-mobile > a > span:hover::after {
  width: 100%;
}
.header-mobile > a > span::after {
  content: "";
  display: block;
  width: 0;
  transition: 300ms all ease;
  border-bottom: 0.2rem solid #7D3C98;
  margin-top: 0.6rem;
}
.header-mobile > a.active > span::after {
  width: 100%;
}
.header-mobile > a [class-type=button] {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8500bd;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8500bd;
  cursor: pointer;
  transition: 300ms all ease;
}
.header-mobile > a [class-type=button]:hover {
  background-color: #8500bd;
  color: #fff;
}

.title-others > h6 {
  font-weight: lighter;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  color: #ccc;
  user-select: none;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 0.4rem;
  border: 0.3rem solid #ccc;
  padding: 0.3rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
}
.burger span {
  display: block;
  width: 100%;
  padding: 0.3rem;
  margin: 0.3rem 0;
  border-radius: 0.3rem;
  background-color: #ccc;
}

.arrow-up {
  position: fixed;
  inset: 0;
  top: initial;
  left: initial;
  z-index: 1000;
  display: inline-block;
  margin: 3rem;
  padding: 1.2rem;
  border: 0.2rem solid #fff;
  border-radius: 0.6rem;
  background-color: #fff;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  user-select: none;
  transition: 300ms all ease;
  transform: scale(0);
}
.arrow-up:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
.arrow-up:active {
  border-color: #8500bd;
}
.arrow-up.appear {
  transform: scale(1);
}

.footer {
  position: relative;
  display: block;
  padding: 8rem 3rem;
  background-color: #8500bd;
}
.footer picture {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}
.footer picture > a {
  transition: 500ms all ease;
  display: inline-block;
  margin: 0.3rem 1rem;
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.footer picture > a:hover {
  background-color: #000;
}
.footer picture > a:hover > img {
  filter: invert(100);
}
.footer picture > a > img {
  display: inline-block;
  margin-top: 0.3rem;
  margin-left: 0.1rem;
  filter: invert(100%);
}
.footer small {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 2rem;
  font-weight: lighter;
  letter-spacing: 0.1rem;
  line-height: 3rem;
  color: #fff;
}
.footer .made {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  color: #fff;
}
.footer .made > img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.3rem;
  border-radius: 50%;
}
.footer .promotion {
  position: absolute;
  top: -4rem;
  left: 0;
  display: block;
  width: 100%;
  padding: 2rem;
  background-color: #000;
  text-align: center;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: 1s all ease;
  opacity: 0;
  transform: scale(0) translateX(-50%);
}
.footer .promotion.visible {
  left: 50%;
  opacity: 1;
  transform: scale(1) translateX(-50%);
}
.footer .promotion h3 {
  display: inline-block;
  margin-bottom: 1rem;
  font-style: normal;
  font-size: 2rem;
  font-weight: lighter;
  letter-spacing: 0.1rem;
  line-height: 3rem;
  color: #fff;
  font-weight: 700;
}
.footer .promotion button {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8E44AD;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8E44AD;
  cursor: pointer;
  transition: 300ms all ease;
  font-weight: bold;
}
.footer .promotion button:hover {
  background-color: #8E44AD;
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.6rem;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-x: hidden;
  transition: 150ms all ease;
  opacity: 0;
  visibility: hidden;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay.active .overlay-message {
  transform: scale(1);
}
.overlay.active .overlay-message > picture img {
  animation: image 1s linear 0.3s normal forwards;
}
.overlay .overlay-message {
  display: block;
  width: 100%;
  margin: 10rem auto;
  background-color: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: 150ms all ease;
  transform: scale(0);
}
.overlay .overlay-message > h3 {
  display: block;
  text-align: center;
  font-size: 3rem;
  font-weight: lighter;
  padding: 6rem 0 3rem 0;
}
.overlay .overlay-message > picture {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.overlay .overlay-message > picture img {
  display: inline-block;
  transform: scale(0);
}
@keyframes image {
  0% {
    transform: scale(0) rotate(-360deg);
  }
  25% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.3) rotate(0);
  }
  75% {
    transform: scale(1) rotate(0);
  }
  85% {
    transform: scale(1.2) rotate(0);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.overlay .overlay-message div {
  text-align: center;
  padding-bottom: 3rem;
}
.overlay .overlay-message div > button {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8500bd;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8500bd;
  cursor: pointer;
  transition: 300ms all ease;
}
.overlay .overlay-message div > button:hover {
  background-color: #8500bd;
  color: #fff;
}

.not-found {
  padding: 6rem 2rem;
  min-height: 50vh;
  text-align: center;
  user-select: none;
}
.not-found > h1 {
  font-style: normal;
  font-size: 4rem;
  font-weight: lighter;
  letter-spacing: 0.1rem;
  line-height: 5rem;
  color: #000;
}
.not-found > picture img {
  display: block;
  width: 20rem;
  height: 20rem;
  margin: 3rem auto;
}
.not-found > div {
  margin-top: 2rem;
  padding: 1rem;
}
.not-found > div > a {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0.6rem 1rem;
  padding: 1rem 2rem;
  color: #8500bd;
  background-color: transparent;
  border-radius: 10rem;
  border: 0.2rem solid #8500bd;
  cursor: pointer;
  transition: 300ms all ease;
}
.not-found > div > a:hover {
  background-color: #8500bd;
  color: #fff;
}

@media screen and (min-width: 640px) {
  .overlay .overlay-message {
    width: 80%;
  }
  .promotion {
    padding: 8rem;
    width: 80% !important;
    padding: 3rem;
    border-radius: 1rem;
  }
  .promotion h3 {
    margin-right: 8rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .overlay .overlay-message {
    width: 60%;
  }
  .footer picture > a {
    margin: 2rem 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .overlay .overlay-message {
    width: 40%;
  }
  .promotion {
    width: 50% !important;
  }
}
@media screen and (min-width: 1300px) {
  .header-mobile {
    display: none;
  }
  .header div > span {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1400px) {
  .burger {
    display: none;
  }
  .header figcaption {
    display: block;
  }
}
@media screen and (min-width: 1600px) {
  .header figcaption a > span {
    font-size: 2rem;
  }
}
@keyframes appear-bottom {
  from {
    transform: translateY(-10rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes appear-top {
  from {
    transform: translateY(10rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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