/**
* Template Name: Laura
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/laura-free-creative-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*
#3675EB
#0F55D6
#4275D4
#7EA0DE
*/

/*
#6495ED
#5186e7
#4284FF
#4A70B5
#5370A6
#dfe7f1
*/

/*
#ffc85a
#f3a200
#ffb727
#ffc041
#ffc550
#fff4df
#dfe7f1
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Nanum Gothic", sans-serif;
  /* color: #444444; */
  margin: 0;
  /* overflow-x: hidden;  */
  /* x축 스크롤 */
  transition: background-color 1s;
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* font-size: var(--bs-body-font-size); */
  caret-color: transparent;
}

a {
  color: #4a70b5;
  text-decoration: none;
}

a:hover {
  color: #5186e7;
  text-decoration: none;
}

#footer a {
  color: #5370a6;
}

#footer a:hover {
  color: #4a70b5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

high {
  font-weight: 580;
  color: #ef6262; /* #f05e5e */
  background: #eef0f2;
  padding: 0px 8px;
  border-radius: 2px;
}

@media (min-width: 300px) and (max-width: 1024px) {
  .breadcrumbs high:first-of-type {
    margin-left: 0px !important;
    margin-top: 10px !important;
    display: inline-block;
  }
}

/* 랩탑 화면 (화면 너비 1025px - 1600px) */
@media (min-width: 769px) and (max-width: 1600px) {
  .breadcrumbs high:first-of-type {
    margin-left: 30px !important;
    margin-top: 10px !important;
    display: inline-block;
  }

  /*
  .portfolio-info high:first-of-type {
    margin-top: 20px !important;
    display: inline-block;
  }
  */
}

/*
high {
  font-weight: 550;
  color: #fffee9;
  background: #011936;
  padding: 0px 7px 2px;
  border-radius: 2px;
  align-items: center;
  display: inline-block;
}
*/

term {
  font-style: italic;
  font-size: 16px;
  color: #777;
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Web Font
--------------------------------------------------------------*/

@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);

.nanumgothic * {
  font-family: "Nanum Gothic", sans-serif;
}

@font-face {
  font-family: "SBAggroB";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
# Intro animation
--------------------------------------------------------------*/

.space {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: twinkling infinite;
}

@keyframes twinkling {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.3;
  }
}

.sun {
  position: fixed;
  width: 12rem;
  /* 200px */
  height: 12rem;
  /* 200px */
  background-color: #ffff00;
  border-radius: 50%;
  top: 80%;
  left: 50%;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  transition: top 0.5s, left 0.5s;
  z-index: 1;
}

.moon {
  position: fixed;
  width: 6rem;
  /* 100px */
  height: 6rem;
  /* 100px */
  background-color: #ffffff;
  border-radius: 50%;
  top: 180%;
  left: 50%;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  transition: top 0.5s, left 0.5s;
  z-index: 3;
}

.moon-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 3;
}

.sun,
.moon {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.sun:hover {
  opacity: 1;
}

.moon:hover {
  opacity: 1;
}

/* 달 텍스트 스타일 */
.moon-text {
  width: 300px;
  left: -130%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  color: white;
  position: absolute;
  top: 80px;
  pointer-events: none; /* 호버 효과 비활성화 */
  cursor: default;
}

/* 가로 화면 크기가 1920px 미만인 경우 가운데 정렬 */
@media (min-width: 1920px) {
  .moon-text {
    top: 110%;
    left: -100%;
    transform: translateX(-50%);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutText {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* 달 호버 효과 */
.moon:hover .moon-text {
  opacity: 1;
  animation: fadeInText 0.6s ease-in-out forwards;
}

/* 달이 호버되지 않은 경우 */
.moon:not(:hover) .moon-text {
  opacity: 0;
  animation: fadeOutText 0.3s ease-in-out forwards;
}

.content {
  padding: 20px;
  margin-top: 200px;
  z-index: 2;
}

section {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

h2 {
  color: #ee0000;
}

p {
  color: #555;
}

/* 화면 크기에 따른 스타일 변경 */
/* 화면 너비 320px 이하 */
/* @media (max-width: 320px) {
  .sun {
    width: 60px;
    height: 60px;
  }

  .moon {
    width: 30px;
    height: 30px;
  }
} */

/* 화면 너비 321px - 576px */
/* @media (min-width: 321px) and (max-width: 576px) {
  .sun {
    width: 80px;
    height: 80px;
  }

  .moon {
    width: 40px;
    height: 40px;
  }
} */

/* 화면 너비 577px - 768px */
/* @media (min-width: 577px) and (max-width: 768px) {
  .sun {
    width: 100px;
    height: 100px;
  }

  .moon {
    width: 50px;
    height: 50px;
  }
} */

/* 태블릿 가로 화면 (화면 너비 769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .sun {
    width: 120px;
    height: 120px;
  }

  .moon {
    width: 60px;
    height: 60px;
  }
}

/* 랩탑 화면 (화면 너비 1025px - 1600px) */
@media (min-width: 1025px) and (max-width: 1600px) {
  .sun {
    width: 150px;
    height: 150px;
  }

  .moon {
    width: 75px;
    height: 75px;
  }
}

/* 파동 효과 */
#wave-sun {
  position: fixed;
  top: 80%;
  left: 50%;
  width: 60rem;
  /* 1000px */
  height: 60rem;
  /* 1000px */
  background: radial-gradient(
    circle,
    rgba(200, 200, 200, 0.6) 0%,
    rgb(0, 0, 0, 0) 70%
  );
}

#wave-moon {
  position: fixed;
  top: 180%;
  left: 50%;
  width: 50rem;
  /* 1000px */
  height: 50rem;
  /* 1000px */
  background: radial-gradient(
    circle,
    rgba(230, 230, 230, 0.2) 0%,
    rgb(0, 0, 0, 0) 60%
  );
}

.wave {
  position: absolute;
  transform-origin: center bottom;
  animation: waveAnimation 4s infinite alternate ease-in-out;
  z-index: 0;
  pointer-events: none;
}

@keyframes waveAnimation {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# word-cloud
--------------------------------------------------------------*/

#word-cloud-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.word-cloud-text {
  cursor: default;
  transition: all 0.3s;
  top: 0;
}

@media (max-width: 1440px) {
  .sun,
  .moon,
  .wave {
    display: none;
  }
  #word-cloud-container {
    height: 113vh;
  }
}

@media (max-width: 768px) {
  .sun,
  .moon,
  .wave {
    display: none;
  }
  #word-cloud-container {
    height: 113vh;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(74, 112, 181);
  width: 48px;
  height: 48px;
  border-radius: 4px;
  transition: all 0.4s;
  cursor: pointer;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  margin-left: 3px;
  transition: all 0.4s;
}

.back-to-top:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0.1, 0.1);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: #011936;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  height: 60px;
  background: rgba(1, 25, 54, 0.8);
  /* background: rgba(25, 28, 31, 0.8); */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: #fff;
  white-space: nowrap;
  margin: 26px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(1, 25, 54, 0);
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #5186e7;
  margin: 30px;
  text-shadow: 1px 1px 1px rgba(1, 25, 54, 0.35);
  font-size: 16px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #3b434a;
  letter-spacing: 1px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #4a70b5;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #4a70b5;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #4a70b5;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.65); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0px;
  /* top: 50px; */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  text-align: center;
}

/* @keyframes shimmer {
  0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
  50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
  100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
} */

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 100px;
  font-family: "SBAggroB", "Satisfy", serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  /* animation: shimmer 1s infinite alternate ease-in; */
  /* animation-delay: 3s; */
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#typewriter-text {
  margin-top: 20px;
  margin-bottom: 10px;
  position: absolute;
  transform: translate(-50%, -50%);
}

#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: #4a70b5;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 13px;
  }

  #bx .btn-scroll {
    width: 10px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.container {
  margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

.section-bg {
  background-color: white;
}

.section-title span:first-child,
h2 {
  /* font-family: 'SBAggroB'; */
  font-family: "Raleway", sans-serif;
  font-size: 48px;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f2f2f2;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #3b434a;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3b434a;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.section-title h2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 28%;
  background-color: rgb(237, 238, 238); /* #e7e7e7 */
  box-shadow: 0 0 6px 6px rgba(116, 157, 255, 0.075);
  bottom: 12%;
  left: 0%;
  border-radius: 10px;
  transform: scaleX(1);
  transform-origin: bottom left;
  z-index: -1;
}

/* 
.section-title h2:before {
  content: '';
  position: absolute;
  width: 105%;
  height: 30%;
  background-color: #d9e2ff;
  bottom: 50%;
  left: -2.5%;
  border-radius: 50%;
  transform: scaleX(1);
  transform: scaleX(1) rotate(4deg);
  transform-origin: bottom left;
  z-index: -1;
}
*/

/* 
.section-title:hover h2:before,
.section-title.active h2:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
*/

/*
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}
*/

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f4f5f6;
  min-height: 40px;
  margin-top: 78px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #3b434a;
  text-transform: uppercase;
}

.about .content ul {
  list-style: none;
  padding: 0;
  /* background-color:rgba(36, 41, 46, 0.9); */
  margin-top: 0px;
  /* padding: 5px; */
}

.about .content:first-child {
  margin-top: 20px;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 25px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 10px;
  color: #4a70b5;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .count-box {
  width: 100%;
}

.about .content .count-box i {
  display: block;
  font-size: 36px;
  color: #4a70b5;
  float: left;
  line-height: 0;
}

.about .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #3b434a;
  margin-left: 50px;
}

.about .content .count-box p {
  /* padding: 15px 0 0 0; */
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #5d6a75;
}

.about .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #5d6a75;
  font-size: 15px;
  font-family: "Satisfy", serif;
  transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
  color: #82909c;
}

.image-container {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 500px / 400px * 100% = 125% */
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .image {
  background: url("../img/portfolio/isaac-git.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 350ms ease, box-shadow 350ms ease, filter 350ms ease;
  filter: saturate(1.05) contrast(1.03);
  position: relative;
}

.about .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 600px at 20% 10%,
      rgba(255, 255, 255, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.about .image::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.14)
  );
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/*
.about .image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  filter: saturate(1.12) contrast(1.06);
}
*/

.about .skills-content {
  margin-top: 30px;
}

.about .skills-content .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.about .skills-content .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #3b434a;
}

.about .skills-content .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .skills-content .progress-bar-wrap {
  background: #e6e8eb;
}

.about .skills-content .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4a70b5;
}

/*--------------------------------------------------------------
# My Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #3b434a;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #82909c;
  position: relative;
}

.resume .resume-item h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4a70b5;
  margin-bottom: 15px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #eef0f2;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 2px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #82909c;
}

.arrow_box {
  display: none;
  position: fixed;
  width: 400px;
  padding: 5px 5px 10px 10px;
  border-radius: 5px;
  background: rgba(83, 112, 166, 0.75);
  color: #fff;
  font-size: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 
.arrow_box:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -5%;
  border: solid transparent;
  border-color: rgba(83, 112, 166, 0);
  border-bottom-color: rgba(83, 112, 166, 0.8);
  border-width: 8px;
  pointer-events: none;
}
*/

li:hover .arrow_box {
  display: block;
  opacity: 1;
  /* Show the tooltip with opacity transition */
}

/*--------------------------------------------------------------
# My Archives
--------------------------------------------------------------*/
.archives .icon-box {
  padding: 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  border: 2px solid #fff;
}

.archives {
  height: 100%;
}

.icon-box {
  height: 310px;
}

.archives .icon-box:hover {
  border-color: #4a70b5;
  box-shadow: 0 5px 20px 0 rgba(68, 88, 144, 0.1);
  z-index: 100;
}

.archives .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.archives .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background: #dfe7f1;
}

@media (min-width: 976px) and (max-width: 1300px) {
  .icon-box {
    height: 370px;
  }
}

.archives .icon i {
  font-size: 35px;
  padding: 1px;
  line-height: 1;
  color: #4a70b5;
  transition: all 0.3s ease;
}

.archives .icon-box::before,
.archives .icon-box::after {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  opacity: 10;
  z-index: -1;
}

.archives .icon-box:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(4);
  transition: all 0.5s ease-in-out;
}

.archives .icon-box:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(4.24);
  transition: all 1s ease-in-out;
}

.archives .icon-box::before {
  background: rgba(116, 157, 255, 0.075);
  box-shadow: 0 0 6px 6px rgba(116, 157, 255, 0.075);
}

.archives .icon-box::after {
  background: #ffffff;
  box-shadow: 0 0 8px 8px #ffffff;
}

.archives .title {
  font-weight: 700;
  /* margin-bottom: 10px; */
  font-size: 20px;
  border-radius: 1px;
  /* padding-bottom: 3px; */
  border-bottom: 2px solid transparent;
  position: relative;
}

.archives .title:after {
  content: "";
  position: absolute;
  font-size: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* 
.archives .icon-box:hover * {
  color: #fff;
}

.archives .icon-box:hover .icon {
  background: rgba(1, 25, 54, 0.8);
}

.archives .title:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #fff; 
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(114, 146, 205, 0.8), 0 0 5px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: transform 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.archives .icon-box:hover .title:after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}
*/

/*
.archives .title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #7292cd;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.archives .icon-box:hover .title:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.archives .icon-box:hover .icon i {
  color: cornflowerblue;
}
*/

.archives .title a {
  color: #111;
  transition: 0.3s;
}

.archives .description {
  max-width: 300px;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  align-content: center;
  color: #111;
}

.archives ul {
  padding: 10px;
  margin-bottom: 0;
  color: var(--bs-body-color);
  text-align: left;
}

.archives .description b {
  display: inline-block;
  margin-bottom: 10px;
}

.archives .icon-box:hover .title a {
  color: #4a70b5;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(14, 16, 17, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4a70b5;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
  # My Portfolio
  --------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 18px 11px 17px;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.2s ease-in-out;
  border: 2px solid #f4f4f4;
  border-radius: 2px;
}

.portfolio .portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #4a70b5;
  border-color: #4a70b5;
  cursor: pointer;
}

.portfolio .portfolio-item {
  margin: 0px 10px 30px 10px;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  padding: 20px;
  text-align: center;
}

.portfolio .portfolio-item {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s ease-in-out;
}

.portfolio .portfolio-item .portfolio-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-item .portfolio-info {
  background: rgba(252, 252, 252, 0);
  transition: all ease-in-out 0.1s;
  padding: 15px 0 0 0;
  text-align: center;
}

.portfolio .portfolio-item:hover .portfolio-info {
  background: rgb(250, 250, 250);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #333;
  margin: 10px 0 10px 0;
  font-size: 18px;
}

.fa-expand {
  font-size: 22px;
}

.fa-up-right-from-square {
  font-size: 21px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  display: inline-flex;
  font-size: 24px;
  color: #dcdcdc;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  margin-left: 17px;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  transform: scale(1.2);
  color: #4284ff;
}

.portfolio-button {
  margin-top: -10px;
}

/* 
.portfolio .portfolio-item .portfolio-info .preview-link:hover {
  rotate: 30deg;
}

.portfolio .portfolio-item .portfolio-info .details-link:hover {
  rotate: 30deg;
}
*/

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 0.9;
}

.portfolio-description {
  text-align: center;
  margin: -5px 0px 20px 0px;
}

.portfolio-description p {
  font-size: 14px;
  color: #333;
}

.portfolio-description::before {
  display: block;
  content: "";
  width: 98%;
  height: 1px;
  text-align: center;
  margin: 15px 0px 10px 0px;
  opacity: 0.3;
  background-color: #d1d0d0; /* e5e5e5 */
}

.portfolio .col-lg-4 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.portfolio .col-lg-4.portfolio-item {
  border: 2px solid transparent;
  transition: border 0.3s, cursor 0.3s;
  cursor: pointer;
}

.portfolio .col-lg-4.portfolio-item:hover {
  border: 2px solid #4a70b5;
}

#portfolio .col-lg-4 {
  width: 47%;
  /* width: 100%; */
  /* max-width: 400px; */
}

@media (max-width: 576px) {
  .portfolio .col-lg-4.portfolio-item {
    cursor: default;
  }

  .portfolio .col-lg-4.portfolio-item:hover {
    border: 2px solid transparent;
  }
}

@media (max-width: 1200px) {
  #portfolio .col-lg-4 {
    width: 100%;
  }
}

div.portfolio-info > div > table > tbody > tr:nth-child(1) > th {
  width: 25%;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  padding-right: 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4a70b5;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #4a70b5;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  padding-bottom: 1px;
  box-shadow: 0px 0 30px rgba(59, 67, 74, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details-content h2 {
  color: rgb(1, 25, 54);
  font-size: 30px;
  font-weight: bold;
}

.portfolio-details-content h2 #sub-title {
  color: #5186e7;
  font-size: 29px;
  letter-spacing: 1px;
  /* text-decoration: underline; */
}

@media (min-width: 300px) and (max-width: 1024px) {
  .material-symbols-outlined {
    opacity: 0.9;
    vertical-align: middle;
    padding-right: 5px;
  }

  .portfolio-details-content h2 {
    margin-top: 20px;
  }
}

/* 랩탑 화면 (화면 너비 1025px - 1600px) */
@media (min-width: 769px) and (max-width: 1600px) {
  .material-symbols-outlined {
    opacity: 0.9;
    vertical-align: top;
    padding-top: 10px;
    padding-right: 5px;
  }
}

.portfolio-info ul li strong {
  display: inline-block;
  width: 100px;
  font-weight: bold;
  /* margin-right: 5px; */
  margin-top: 10px;
}

.portfolio-info ul li:first-child strong {
  margin-top: 0;
}

.portfolio-info ul li strong::before {
  content: "•";
  margin-right: 5px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #4a70b5;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-button-prev:hover {
  left: 15px;
}

.swiper-button-next:hover {
  right: 15px;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #4a70b5;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -12px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #4a70b5;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #4a70b5;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #5186e7;
}

.pricing .featured h3 {
  color: #fff;
  background: #4a70b5;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4a70b5;
  color: #fff;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #f4f4f4;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 16px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #5186e7;
}

.departments .nav-link.active {
  background: #eff2f6;
  border-color: #5186e7;
}

.departments .nav-link.active h4 {
  color: #5186e7;
}

.departments .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  /* float: left; */
  /* max-width: 300px; */
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4275d4;
}

.departments .tab-pane p {
  color: #444444;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
#code {
  border: 1px solid #CCC;
  padding: 5px;
  border-radius: 5px;
}

#code * {
  font-family: d2coding;
  background-color: transparent;
}
*/

#code {
  border: 1px solid #4d4d4d;
  padding: 10px;
  border-radius: 5px;
  background-color: #282c34;
  overflow-x: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

#code:hover {
  background-color: #333842;
}

#code * {
  font-family: d2coding, monospace;
  background-color: transparent;
}

.detail-table {
  border-collapse: separate;
  border-spacing: 0 20px;
  width: 100%;
  text-align: left;
}

.activity {
  list-style: none;
  padding: 0;
}

.activity li {
  margin-top: 3px !important;
}

.activity li:first-child {
  margin-top: 0px !important;
}

.portfolio-info-title h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.fa-lemon {
  color: #555;
}

.fa-lightbulb:before {
  color: cornflowerblue;
  /* text-shadow: 0 0 10px #e5e9ed, 0 0 20px #eaecee, 0 0 30px #eaebed; */
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 30px 0;
}

.contact .col-lg-6 .row {
  margin-top: -20px;
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #4a70b5;
  border-radius: 50%;
  padding: 15px;
  background: #dfe7f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #687683;
  line-height: 1;
  margin: 0 8px;
  transition: 0.3s;
  padding: 14px;
  border-radius: 50px;
  border: 1px solid #dde1e4;
}

.contact .social-links a:hover {
  color: #fff;
  border-color: #4a70b5;
  background: #4a70b5;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #4a70b5;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4a70b5;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5186e7;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#contact .col-lg-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#contact .col-lg-6 .row {
  width: 100%;
  max-width: 800px;
}

#contact .icon i {
  font-size: 35px;
  line-height: 1;
  color: #4a70b5;
}

/* 
.col-md-6 {
  position: relative;
}

.col-md-6 .info-box {
  transition: transform 0.5s ease-in-out;
}

.col-md-6:hover .info-box {
  transform: rotateX(180deg);
}

.col-md-6 .info-box:before {
  content: "연락주세요";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateX(0deg);
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.col-md-6:hover .info-box:before {
  opacity: 1;
  transform: rotateX(180deg);
}
*/
/* 
.contact .info-box:hover {
  animation: shake 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(15px);
  }
}
.contact .info-box {
  position: relative;
}

.contact .info-box .tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #4A70B5;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.contact .info-box:hover .tooltip {
  display: block;
  opacity: 1;
}
*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(23 23 23);
}

#footer .container {
  position: relative;
  margin-bottom: 20px !important;
}

#footer h3:first-child {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  /* font-family: "Satisfy", serif; */
  font-family: "SBAggroB";
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #4a70b5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #4284ff;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
  color: rgba(255, 255, 255, 0.5);
}

#footer .credits {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: -10px;
}

#footer > div > div:nth-child(2) {
  font-weight: 600;
}

#pdf-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 52px;
  font-size: 1.4rem;
  text-align: center;
  background: linear-gradient(45deg, #4a70b5, #5186e7);
  color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 0;
  line-height: 50px;
  margin: 0 auto;
  transition: all 0.4s;
}
